:root {
  --ink: #2a3319;
  --muted: #5c6350;
  --cream: #f5f4ef;
  --paper: #ffffff;
  --sage: #87896b;
  --sage-dark: #4a5735;
  --sky: #e8e0cd;
  --gold: #c79a44;
  --line: #ded7c2;
  --shadow: 0 18px 45px rgba(42, 51, 25, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 223, 220, 0.8);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span { color: var(--sage-dark); }

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:not(.button) {
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a.active:not(.button),
.nav-links a:not(.button):hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: white;
  font-weight: 800;
  border: 2px solid var(--sage-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(95, 120, 106, 0.24);
}

.button.secondary {
  background: transparent;
  color: var(--sage-dark);
}

.page-hero {
  padding: 64px 0 48px;
  background:
    radial-gradient(circle at 90% 10%, rgba(219, 238, 244, 0.9), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
}

.hero {
  padding: 76px 0 64px;
  background:
    radial-gradient(circle at 90% 10%, rgba(219, 238, 244, 0.9), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 900;
  color: var(--sage-dark);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  margin-bottom: 22px;
  max-width: 760px;
}

h1 em { color: var(--sage-dark); font-style: normal; }

.hero-copy p, .page-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.small-note { font-size: 0.9rem; color: var(--muted); }

.hero-image { position: relative; }

.dimension-badge {
  position: absolute;
  z-index: 3;
  left: -22px;
  bottom: 24px;
  max-width: 230px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(36, 53, 58, 0.2);
  border: 1px solid var(--line);
  font-weight: 800;
  line-height: 1.35;
}

.dimension-badge span {
  display: block;
  margin-top: 4px;
  color: var(--sage-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 76%;
  right: -16px;
  bottom: -16px;
  border-radius: var(--radius);
  background: var(--sky);
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 10px solid white;
}

section { padding: 84px 0; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-heading h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); margin-bottom: 14px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }

.product-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  padding: 28px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 16px;
}

.product-info { padding: 20px 12px 16px; display: flex; flex-direction: column; justify-content: center; }
.product-info h3 { font-size: 2.2rem; margin-bottom: 14px; }

.price { font-size: 1.3rem; font-weight: 900; color: var(--sage-dark); margin-bottom: 18px; }

.features { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.features li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); }
.features li::before { content: "✦"; color: var(--gold); font-weight: 900; }

.ideas { background: #f1f6f3; }
.idea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.idea-card { background: white; padding: 28px; border-radius: 18px; border: 1px solid var(--line); min-height: 200px; }
.idea-card .number { font-weight: 900; color: var(--gold); letter-spacing: 0.1em; font-size: 0.8rem; margin-bottom: 20px; }
.idea-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.idea-card p { color: var(--muted); margin: 0; }

.story-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.story-panel { background: var(--sky); padding: 38px; border-radius: var(--radius); }
.story-panel h3 { font-size: 1.9rem; }

.quote { font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; line-height: 1.45; color: var(--sage-dark); margin: 0; }

.contact-box {
  background: var(--ink);
  color: white;
  border-radius: 28px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.contact-box h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px; }
.contact-box p { margin: 0; color: #d6e1e3; max-width: 680px; }
.contact-box .button { background: white; border-color: white; color: var(--ink); white-space: nowrap; }

footer { padding: 32px 0 40px; color: var(--muted); font-size: 0.9rem; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { aspect-ratio: 16 / 9; }

.gallery-caption { padding: 16px 18px 18px; }
.gallery-caption .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.gallery-caption p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Process steps (Custom Orders) */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  position: relative;
}

.step-card .step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 16px;
}

.step-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.faq-item p { color: var(--muted); margin: 0; }

/* Placeholder callouts for the vendor to fill in */
.todo-note {
  background: #fbeed9;
  border: 1px dashed var(--gold);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #7a5a1e;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .nav-links a:not(.button) { display: none; }
  .hero-grid, .product-card, .story-grid, .contact-box { grid-template-columns: 1fr; }
  .idea-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .hero { padding-top: 48px; }
  .dimension-badge { left: 12px; bottom: 12px; }
  .contact-box .button { justify-self: start; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1160px); }
  .nav { min-height: 66px; }
  .brand { font-size: 1.2rem; }
  .nav .button { min-height: 42px; padding: 0 14px; }
  h1 { font-size: 2.6rem; }
  section { padding: 56px 0; }
  .idea-grid, .steps, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .product-card { padding: 14px; }
  .product-card img { min-height: 280px; }
  .contact-box { padding: 30px 22px; }
}
