/* ═══════════════════════════════════════════════════════
   yourlifeinbooks — Design System
   Terracotta archive · sepia paper · burnt clay + olive
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ── TOKENS ── */
:root {
  /* Warm neutral palette */
  --white:        #FFFDF8;
  --cream:        #F6EFDF;
  --linen:        #EFE3CE;
  --sand:         #E3D3B4;
  --warm-border:  #D2BF9B;
  --warm-shadow:  #B5A183;

  /* Text */
  --ink:          #2A2622;
  --ink-soft:     #4A4238;
  --mist:         #8C8478;
  --mist-light:   #B0A896;

  /* Accent — terracotta */
  --amber:        #B5502E;
  --amber-light:  #D3835A;
  --amber-pale:   #F0DCC8;
  --amber-wash:   #F7EEE0;
  --gold:         #8C3D22;
  --gold-light:   #C97347;
  --gold-dim:     #6B2E18;

  /* Archive olive — secondary accent */
  --archive-olive:       #5F6B45;
  --archive-olive-light: #E4E8D8;
  --archive-olive-pale:  #EEF0E4;
  --archive-olive-mid:   #C3CBA8;
  --archive-olive-dark:  #3D4530;
  --paper-white:          #FBF6EC;

  /* Warm depth */
  --warm-green:   #5F6B45;
  --burgundy:     #6B3324;
  --slate-warm:   #4A4238;
  --slate:        #4A4238;

  /* Shadows — crisp 3D (Scandi-clean) */
  --neu-light:    rgba(255,255,255,0.95);
  --neu-dark:     rgba(160,148,132,0.45);
  --shadow-sm:    5px 5px 12px var(--neu-dark), -3px -3px 8px var(--neu-light);
  --shadow-md:    8px 8px 20px var(--neu-dark), -4px -4px 12px var(--neu-light);
  --shadow-lg:    12px 16px 40px rgba(140,120,96,0.35), -6px -6px 20px rgba(255,255,255,0.9);
  --shadow-card:  0 2px 16px rgba(107,51,36,0.07), 0 8px 32px rgba(140,120,96,0.10);
  --shadow-hover: 0 10px 48px rgba(107,51,36,0.16), 0 2px 8px rgba(140,120,96,0.08);
  --shadow-book:  -10px 8px 28px rgba(0,0,0,0.28), 4px 4px 16px rgba(0,0,0,0.15), inset -4px 0 12px rgba(0,0,0,0.18);

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-pull:    'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --trans:        all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:        1240px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p { color: var(--mist); line-height: 1.75; }
.text-amber { color: var(--amber); }
.text-ink { color: var(--ink); }
.text-gold { color: var(--gold); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--warm-border);
  padding: 0 24px;
  transition: var(--trans);
}
nav.scrolled { box-shadow: 0 4px 24px rgba(140,120,96,0.12); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 900;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 9px;
}
.nav-logo span { color: var(--amber); }
.nav-logo-mark { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--mist);
  transition: var(--trans); text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--amber); color: var(--white) !important;
  padding: 10px 22px; border-radius: 4px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(181,80,46,0.35);
  transition: var(--trans) !important;
}
.nav-cta:hover { background: var(--amber-light) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(181,80,46,0.45) !important; }
/* "Continue Writing My Book" — a returning customer's way back to interview.html, injected
   by nav.js. Outline style so it reads as a real button without competing with the filled
   gold "Start My Story" CTA next to it. */
.nav-continue-btn {
  border: 1.5px solid var(--amber); color: var(--amber) !important;
  padding: 8.5px 18px; border-radius: 4px; font-weight: 600 !important;
  transition: var(--trans) !important;
}
.nav-continue-btn:hover { background: var(--amber); color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--trans); display: block; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 4px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--trans);
  text-decoration: none; white-space: nowrap;
}
.btn-amber {
  background: var(--amber); color: var(--white);
  box-shadow: 0 4px 20px rgba(181,80,46,0.4);
}
.btn-amber:hover { background: #A06820; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(181,80,46,0.5); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--warm-border);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--amber);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
/* Dark-theme equivalents of .btn-amber / .btn-outline, for the app pages (interview, dashboard, uploads, etc.) */
.btn-gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 4px 20px rgba(140,61,34,0.3);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(140,61,34,0.4); }
.btn-dark {
  background: transparent; color: var(--cream);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-dark:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
/* Primary/ghost pair for CTAs set on a dark card within an otherwise light page (e.g. .trust-cta) */
.btn-primary {
  background: var(--white); color: var(--amber);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.btn-ghost {
  background: transparent; border: 2px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber);
  background: var(--amber-wash);
  border: 1px solid rgba(181,80,46,0.2);
  padding: 6px 14px; border-radius: 4px;
  margin-bottom: 16px;
}
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 2px; margin: 20px auto;
}
.divider.left { margin-left: 0; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--trans);
  box-shadow: var(--shadow-card);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(181,80,46,0.25);
}

/* ── NEUMORPHIC ICON — 3D Scandi clean ── */
.neu-icon {
  width: 68px; height: 68px;
  background: linear-gradient(145deg, #FFFFFF, #F0EBE3);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    6px 6px 14px rgba(160,148,132,0.4),
    -4px -4px 10px rgba(255,255,255,0.95),
    inset 0 1px 0 rgba(255,255,255,0.8);
  margin-bottom: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.6);
  transition: var(--trans);
}
.neu-icon:hover {
  transform: translateY(-2px);
  box-shadow:
    8px 10px 20px rgba(160,148,132,0.45),
    -4px -4px 12px rgba(255,255,255,0.98),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.neu-icon svg, .neu-icon i { width: 28px; height: 28px; stroke: var(--amber); stroke-width: 1.5; }

.neu-icon-circle {
  width: 64px; height: 64px;
  background: linear-gradient(145deg, #FFFFFF, #F0EBE3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    5px 5px 12px rgba(160,148,132,0.38),
    -3px -3px 8px rgba(255,255,255,0.95),
    inset 0 1px 0 rgba(255,255,255,0.8);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.6);
}
.neu-icon-circle svg, .neu-icon-circle i { width: 24px; height: 24px; stroke: var(--amber); stroke-width: 1.5; }

/* ── CARD-ICON (legacy compat) ── */
.card-icon {
  width: 68px; height: 68px;
  background: linear-gradient(145deg, #FFFFFF, #F0EBE3);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    6px 6px 14px rgba(160,148,132,0.4),
    -4px -4px 10px rgba(255,255,255,0.95),
    inset 0 1px 0 rgba(255,255,255,0.8);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.6);
}
.card-icon svg, .card-icon i { width: 28px; height: 28px; stroke: var(--amber); stroke-width: 1.5; }

/* ── BOOK COVERS (CSS) ── */
.book-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow-card);
}
.book-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: var(--shadow-hover);
}
.book-cover {
  width: 100%; aspect-ratio: 2/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.9rem; color: rgba(255,255,255,0.9);
  padding: 20px; text-align: center;
  position: relative; overflow: hidden;
}
.book-cover::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: rgba(0,0,0,0.2);
}
.book-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, transparent 55%);
}
.book-cover-title {
  font-family: var(--font-serif); font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.95); line-height: 1.3; margin-bottom: 8px; z-index: 1;
}
.book-cover-rule { width: 20px; height: 1px; background: rgba(255,255,255,0.6); margin: 0 auto 8px; z-index: 1; }
.book-cover-author { font-size: 0.55rem; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; z-index: 1; }
.book-info { padding: 14px 16px; background: var(--white); }
.book-title { font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; font-family: var(--font-serif); }
.book-author { font-size: 0.75rem; color: var(--mist); }
.book-era { font-size: 0.7rem; color: var(--amber); margin-top: 4px; }

/* ── IMAGE PANELS ── */
.img-panel {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; display: block;
  box-shadow: var(--shadow-lg);
}
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ── TRUST / OCCASION BAR ── */
.occasion-bar {
  background: var(--linen);
  border-top: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
  padding: 18px 0;
}
.occasion-items {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.occasion-pill {
  background: var(--white);
  border: 1px solid var(--warm-border);
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 0.82rem; font-weight: 500; color: var(--ink-soft);
  display: flex; align-items: center; gap: 6px;
  box-shadow: 2px 2px 6px rgba(180,168,152,0.25), -1px -1px 4px rgba(255,255,255,0.8);
  transition: var(--trans);
  white-space: nowrap;
}
.occasion-pill:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-1px); }
.occasion-pill-icon { font-size: 1rem; }

/* ── PROCESS STEPS ── */
.process-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--warm-border);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 900;
  color: var(--sand); line-height: 1; min-width: 52px; flex-shrink: 0;
}
.step-content h3 { color: var(--ink); margin-bottom: 6px; font-size: 1.1rem; }
.step-content p { font-size: 0.88rem; }

/* ── PRICING ── */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--warm-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative; transition: var(--trans);
  box-shadow: var(--shadow-card);
}
.pricing-card.featured {
  border-color: var(--amber);
  background: linear-gradient(160deg, #FFFDF8, #FBF5E8);
  box-shadow: 0 8px 40px rgba(181,80,46,0.2);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 20px; border-radius: 4px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(181,80,46,0.4);
}
.pricing-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.pricing-price {
  font-family: var(--font-serif); font-size: 3.2rem; font-weight: 900;
  color: var(--ink); line-height: 1; margin: 12px 0 4px;
}
.pricing-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 8px; }
.pricing-period { font-size: 0.8rem; color: var(--mist); margin-bottom: 20px; }
.pricing-features { list-style: none; margin: 20px 0 28px; }
.pricing-features li {
  padding: 9px 0; border-bottom: 1px solid var(--sand);
  font-size: 0.88rem; color: var(--mist);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✦'; color: var(--amber); font-size: 0.5rem; flex-shrink: 0; }

/* ── TESTIMONIALS — set like excerpted manuscript pages, not review cards ── */
.testimonial {
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 36px;
  border: none;
  border-left: 3px solid var(--amber);
  box-shadow: none;
  transition: var(--trans);
}
.testimonial:hover { transform: none; box-shadow: none; background: var(--amber-wash); }
.testimonial-text {
  font-family: var(--font-pull);
  font-size: 1.25rem; line-height: 1.6;
  color: var(--ink-soft); font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author { font-size: 0.78rem; font-weight: 600; color: var(--ink); letter-spacing: 0.03em; }
.testimonial-meta { font-size: 0.72rem; color: var(--mist); }
.testimonial-stars { display: none; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── PULLQUOTE ── */
.pullquote {
  border-left: 3px solid var(--amber);
  padding: 16px 24px;
  background: var(--amber-wash);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote p { font-family: var(--font-pull); font-style: italic; font-size: 1.05rem; color: var(--ink-soft); }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--linen);
  border: 1px solid var(--warm-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: inset 2px 2px 6px rgba(180,168,152,0.2), inset -2px -2px 6px rgba(255,255,255,0.7);
}

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--amber-wash); color: var(--amber);
  border: 1px solid rgba(181,80,46,0.2);
  border-radius: 4px; padding: 4px 14px;
  font-size: 0.75rem; font-weight: 600;
}
.genre-chip {
  background: var(--white); border: 1.5px solid var(--warm-border);
  border-radius: 50px; padding: 8px 18px;
  font-size: 0.82rem; font-weight: 500; color: var(--mist);
  cursor: pointer; transition: var(--trans);
  box-shadow: 2px 2px 6px rgba(180,168,152,0.2), -1px -1px 4px rgba(255,255,255,0.8);
}
.genre-chip:hover, .genre-chip.active {
  background: var(--amber); color: var(--white); border-color: var(--amber);
  box-shadow: 0 4px 12px rgba(181,80,46,0.3);
}

/* ── ACCORDION ── */
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  padding: 18px 0; font-family: var(--font-serif); font-size: 1.05rem;
  font-weight: 600; color: var(--ink); text-align: left;
  border-bottom: 1px solid var(--warm-border);
}
.accordion-trigger.open { color: var(--amber); }
.accordion-trigger::after { content: '+'; font-size: 1.4rem; color: var(--amber); transition: var(--trans); flex-shrink: 0; }
.accordion-trigger.open::after { content: '−'; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body.open { max-height: 400px; }
.accordion-body p { padding: 16px 0 20px; font-size: 0.9rem; color: var(--mist); }

/* ── TIMELINE ── */
.timeline-item { display: flex; gap: 20px; padding-bottom: 36px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: 19px; top: 40px; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--amber-light), transparent);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--linen); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--amber);
  box-shadow: var(--shadow-sm);
}
.timeline-body { padding-top: 6px; }
.timeline-body h4 { color: var(--ink); margin-bottom: 4px; font-size: 1rem; }

/* ── STAT BLOCK ── */
.stat-block { text-align: center; }
.stat-value {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 900;
  color: var(--ink); line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--mist); margin-top: 6px; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 900;
  color: var(--white); text-decoration: none;
}
.footer-logo span { color: var(--amber-light); }
.footer-tagline {
  font-family: var(--font-pull); font-style: italic;
  font-size: 0.95rem; color: rgba(255,255,255,0.5);
  margin: 12px 0 24px;
}
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: var(--trans); text-decoration: none;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; flex-wrap: wrap; gap: 16px;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--trans);
}
.footer-social a:hover { background: var(--amber); border-color: var(--amber); color: var(--white); }

/* ── FADE-UP ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── FORM INPUTS ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--white); border: 1.5px solid var(--warm-border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.92rem;
  color: var(--ink); outline: none; transition: var(--trans);
  box-shadow: inset 2px 2px 5px rgba(180,168,152,0.15);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(181,80,46,0.12), inset 2px 2px 5px rgba(180,168,152,0.1);
}

/* ── MOBILE NAV OPEN ── */
nav.menu-open .nav-links { display: flex; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--warm-border);
    flex-direction: column; padding: 24px; gap: 20px;
  }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 15px 28px; font-size: 0.95rem; }
}
