/* ==========================================================================
   Venus Tribe — Design System
   "Gentle Systems for Overwhelmed Minds"
   Warm · Human · Premium · Calm · Bohemian
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette (from client style guide) */
  --moonstone:   #F6F1EB;
  --dusty-rose:  #D8B4A0;
  --terracotta:  #C97B63;
  --sage:        #A6B7A1;
  --deep-olive:  #66715E;
  --warm-gold:   #D7B56D;

  /* Derived / functional colours */
  --ink:         #3A3A34;   /* primary readable text — warm charcoal */
  --ink-soft:    #5F5C54;   /* secondary text */
  --paper:       #FBF8F3;   /* lifted surface, slightly lighter than moonstone */
  --paper-warm:  #F1E7DC;   /* warm card / section band */
  --terracotta-dark: #B0654F;
  --line:        #E4D9CC;   /* hairline borders on warm bg */
  --shadow-soft: 0 18px 40px -24px rgba(102, 113, 94, 0.45);
  --shadow-card: 0 12px 30px -18px rgba(102, 113, 94, 0.35);

  /* Typography */
  --font-head:   "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:   "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Allura", "Brush Script MT", cursive;

  /* Spacing scale (8px base) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;

  /* Radii — soft, organic */
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--moonstone);
  /* subtle paper texture via layered gradients */
  background-image:
    radial-gradient(1200px 600px at 100% -10%, rgba(215, 181, 109, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(166, 183, 161, 0.12), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--terracotta-dark); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--deep-olive);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 var(--space-2);
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.7rem); }

p { margin: 0 0 var(--space-2); }

:focus-visible {
  outline: 3px solid var(--warm-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--deep-olive); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-7); }
.section--tight { padding-block: var(--space-6); }
.section--paper { background: var(--paper-warm); }
.section--olive { background: var(--deep-olive); color: var(--moonstone); }
.section--olive h1, .section--olive h2, .section--olive h3 { color: var(--moonstone); }

.eyebrow {
  font-family: var(--font-accent);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 0.35rem;
}
.section--olive .eyebrow { color: var(--warm-gold); }

.section-head { max-width: 640px; margin-bottom: var(--space-5); }
.section-head--center { margin-inline: auto; text-align: center; }
.lede { font-size: 1.15rem; color: var(--ink-soft); }
.section--olive .lede { color: rgba(246, 241, 235, 0.85); }

.grid { display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-card); }
.btn--primary:hover { background: var(--terracotta-dark); color: #fff; }
.btn--secondary { background: transparent; color: var(--deep-olive); border-color: var(--deep-olive); }
.btn--secondary:hover { background: var(--deep-olive); color: var(--moonstone); }
.btn--ghost { background: rgba(255,255,255,0.7); color: var(--deep-olive); border-color: var(--line); }
.btn--ghost:hover { background: #fff; }
.btn--gold { background: var(--warm-gold); color: var(--ink); }
.btn--gold:hover { background: #c9a457; }
.btn--block { width: 100%; }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   5. Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 241, 235, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); min-height: 78px;
}
.brand { display: flex; align-items: baseline; gap: 0.55rem; text-decoration: none; }
.brand__mark { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--deep-olive); letter-spacing: 0.5px; }
.brand__tag { font-family: var(--font-accent); font-size: 1.25rem; color: var(--terracotta); line-height: 1; }
@media (max-width: 560px) { .brand__tag { display: none; } }

.nav__links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink);
  letter-spacing: 0.3px; padding: 0.4rem 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--terracotta); transition: width 0.25s var(--ease); border-radius: 2px;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--deep-olive); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__badge {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.5px;
  background: var(--warm-gold); color: var(--ink); padding: 0.1rem 0.45rem;
  border-radius: var(--radius-pill); margin-left: 0.3rem; vertical-align: middle; font-weight: 600;
}
.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
  color: var(--deep-olive);
}

@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0.25rem;
    background: var(--moonstone); padding: 1.25rem 1.5rem 2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease), visibility 0s linear 0.35s;
    visibility: hidden; pointer-events: none;
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav__links[data-open="true"] {
    transform: translateY(0);
    transition: transform 0.35s var(--ease);
    visibility: visible; pointer-events: auto;
  }
  .nav__links a { width: 100%; padding: 0.7rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__actions .btn { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(3.5rem, 8vw, 6.5rem); overflow: hidden; }
.hero__inner { display: grid; gap: var(--space-5); align-items: center; }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.05fr 0.95fr; } }
.hero__title { margin-bottom: var(--space-3); }
.hero__sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 44ch; margin-bottom: var(--space-4); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__art {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--dusty-rose), var(--terracotta) 55%, var(--warm-gold));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero__art::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.35), transparent 45%);
  mix-blend-mode: soft-light;
}

/* decorative organic blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(6px); opacity: 0.5; z-index: 0; pointer-events: none; }
.blob--sage { width: 340px; height: 340px; background: var(--sage); top: -120px; right: -80px; }
.blob--rose { width: 260px; height: 260px; background: var(--dusty-rose); bottom: -110px; left: -70px; }

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--space-3);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card__icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  display: grid; place-items: center; margin-bottom: var(--space-2);
  background: var(--paper-warm); color: var(--terracotta);
}

/* Product card */
.product-card { padding: 0; overflow: hidden; }
.product-card__media {
  aspect-ratio: 4 / 3; position: relative;
  background: linear-gradient(135deg, var(--sage), var(--deep-olive));
  display: grid; place-items: center;
}
.product-card__media[data-tone="rose"]  { background: linear-gradient(135deg, var(--dusty-rose), var(--terracotta)); }
.product-card__media[data-tone="gold"]  { background: linear-gradient(135deg, var(--warm-gold), var(--terracotta)); }
.product-card__media[data-tone="sage"]  { background: linear-gradient(135deg, var(--sage), var(--deep-olive)); }
.product-card__media[data-tone="olive"] { background: linear-gradient(135deg, var(--deep-olive), var(--ink)); }
.product-card__glyph { font-family: var(--font-head); font-size: 3rem; color: rgba(255,255,255,0.9); }
.product-card__media img, .product-hero__media img, .hero__art img, .founder__photo img, .post-card__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1;
}
.hero__art img, .founder__photo img { border-radius: inherit; }
.product-card__body { padding: var(--space-3); display: flex; flex-direction: column; flex: 1; }
.product-card__cat {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--terracotta); font-weight: 600; margin-bottom: 0.4rem;
}
.product-card__title { font-size: 1.35rem; margin-bottom: 0.4rem; }
.product-card__desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: var(--space-2); flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: auto; }
.price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--deep-olive); }
.price small { font-size: 0.8rem; color: var(--ink-soft); font-family: var(--font-body); }

.badge {
  display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.6px;
  text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: var(--radius-pill);
  background: var(--warm-gold); color: var(--ink);
}
.badge--sage { background: var(--sage); color: #fff; }
.badge--rose { background: var(--dusty-rose); color: var(--ink); }
.badge--soon { background: var(--deep-olive); color: #fff; }

/* Disabled / coming-soon buttons */
.btn.is-disabled {
  opacity: 0.55; cursor: not-allowed; pointer-events: none; filter: grayscale(0.2);
}

/* --------------------------------------------------------------------------
   8. Shop controls
   -------------------------------------------------------------------------- */
.shop-layout { display: grid; gap: var(--space-4); }
@media (min-width: 900px) {
  .shop-layout { grid-template-columns: 240px 1fr; align-items: start; }
  .filters { position: sticky; top: 100px; }
}

.filters__group { margin-bottom: var(--space-3); }
.filters h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.filter-chip {
  display: block; width: 100%; text-align: left; background: transparent;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.5rem 1rem; margin-bottom: 0.5rem; cursor: pointer;
  font-family: var(--font-body); font-size: 0.88rem; color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}
.filter-chip:hover { border-color: var(--sage); color: var(--deep-olive); }
.filter-chip[aria-pressed="true"] { background: var(--deep-olive); color: var(--moonstone); border-color: var(--deep-olive); }

.shop-toolbar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-3);
}
.search {
  display: flex; align-items: center; gap: 0.5rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.55rem 1rem;
  min-width: 240px; flex: 1; max-width: 380px;
}
.search input { border: none; background: none; outline: none; font-family: var(--font-body); font-size: 0.9rem; width: 100%; color: var(--ink); }
.result-count { font-size: 0.85rem; color: var(--ink-soft); }

.empty-state { text-align: center; padding: var(--space-6) var(--space-2); color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   9. Product detail page
   -------------------------------------------------------------------------- */
.product-hero { display: grid; gap: var(--space-5); align-items: start; }
@media (min-width: 900px) { .product-hero { grid-template-columns: 1fr 1fr; } }
.product-hero__media {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dusty-rose), var(--terracotta)); box-shadow: var(--shadow-soft);
  display: grid; place-items: center;
}
@media (min-width: 900px) { .product-hero__media { position: sticky; top: 100px; } }
.product-hero__glyph { font-family: var(--font-head); font-size: 6rem; color: rgba(255,255,255,0.92); }
.product-meta { display: flex; align-items: center; gap: 1rem; margin: var(--space-2) 0 var(--space-3); flex-wrap: wrap; }
.benefit-list, .included-list { list-style: none; padding: 0; margin: 0 0 var(--space-3); }
.benefit-list li, .included-list li { position: relative; padding-left: 1.9rem; margin-bottom: 0.7rem; }
.benefit-list li::before, .included-list li::before {
  content: "✦"; position: absolute; left: 0; top: 0; color: var(--terracotta); font-size: 1rem;
}

/* Accordion (FAQ) */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.15rem 0; font-family: var(--font-head); font-size: 1.25rem; color: var(--deep-olive);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.accordion__trigger::after { content: "+"; font-size: 1.6rem; color: var(--terracotta); transition: transform 0.25s var(--ease); }
.accordion__trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.accordion__panel > div { padding-bottom: 1.15rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   10. Who We Help / pillars
   -------------------------------------------------------------------------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pill {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.65rem 1.3rem; font-size: 0.92rem; color: var(--deep-olive); font-weight: 500;
  box-shadow: var(--shadow-card);
}

/* Testimonials */
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-3); box-shadow: var(--shadow-card); height: 100%;
}
.quote__mark { font-family: var(--font-head); font-size: 3rem; line-height: 0.4; color: var(--dusty-rose); }
.quote__text { font-style: italic; color: var(--ink); margin: 0.5rem 0 var(--space-2); font-size: 1.02rem; }
.quote__who { font-weight: 600; color: var(--deep-olive); font-size: 0.9rem; }

/* Founder */
.founder { display: grid; gap: var(--space-5); align-items: center; }
@media (min-width: 860px) { .founder { grid-template-columns: 0.85fr 1.15fr; } }
.founder__photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, var(--sage), var(--deep-olive)); position: relative;
  display: grid; place-items: center;
}
.founder__photo span { font-family: var(--font-accent); font-size: 3rem; color: rgba(255,255,255,0.9); }

/* --------------------------------------------------------------------------
   11. Email signup
   -------------------------------------------------------------------------- */
.signup {
  background: linear-gradient(135deg, var(--dusty-rose), var(--terracotta));
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); color: #fff;
  text-align: center; box-shadow: var(--shadow-soft);
}
.signup h2 { color: #fff; }
.signup p { color: rgba(255,255,255,0.9); }
.signup__form { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; max-width: 520px; margin: var(--space-3) auto 0; }
.signup__form input {
  flex: 1; min-width: 220px; border: none; border-radius: var(--radius-pill);
  padding: 0.9rem 1.4rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
}
.signup__note { font-size: 0.8rem; margin-top: 1rem; color: rgba(255,255,255,0.8); }

/* --------------------------------------------------------------------------
   12. Forms
   -------------------------------------------------------------------------- */
.field { margin-bottom: var(--space-3); }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--deep-olive); }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.8rem 1rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--paper); transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--sage); outline-offset: 1px; }
.field textarea { min-height: 140px; resize: vertical; }

/* --------------------------------------------------------------------------
   13. Checkout
   -------------------------------------------------------------------------- */
.checkout-grid { display: grid; gap: var(--space-4); }
@media (min-width: 880px) {
  .checkout-grid { grid-template-columns: 1.3fr 0.7fr; align-items: start; }
  .summary { position: sticky; top: 100px; }
}
.summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); box-shadow: var(--shadow-card); }
.summary__row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.95rem; }
.summary__row--total { border-top: 1px solid var(--line); margin-top: 0.5rem; padding-top: 1rem; font-weight: 700; font-size: 1.15rem; color: var(--deep-olive); }
.pay-methods { display: grid; gap: 0.75rem; margin-top: var(--space-2); }
.pay-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--paper); font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.pay-btn--stripe { background: #635BFF; color: #fff; border-color: #635BFF; }
.pay-btn--paypal { background: #FFC439; color: #003087; border-color: #FFC439; }

/* --------------------------------------------------------------------------
   14. Breadcrumbs, tags, misc
   -------------------------------------------------------------------------- */
.breadcrumbs { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: var(--space-3); }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--terracotta); }

.page-head { text-align: center; padding-block: var(--space-6) var(--space-4); }
.page-head .lede { max-width: 620px; margin-inline: auto; }

.tag { display: inline-block; font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: var(--radius-pill); background: var(--paper-warm); color: var(--deep-olive); margin-right: 0.35rem; }

/* Blog */
.post-card { overflow: hidden; padding: 0; }
.post-card__media { aspect-ratio: 16/9; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--sage), var(--warm-gold)); }
.post-card__body { padding: var(--space-3); }
.post-card__meta { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 0.5rem; }

/* Resource card */
.resource-card { text-align: center; align-items: center; }
.resource-card .card__icon { width: 64px; height: 64px; font-size: 1.6rem; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--deep-olive); color: rgba(246,241,235,0.85); padding-block: var(--space-6) var(--space-4); margin-top: var(--space-6); }
.site-footer h4 { color: var(--moonstone); font-size: 1.15rem; margin-bottom: var(--space-2); }
.footer-grid { display: grid; gap: var(--space-4); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand__mark { font-family: var(--font-head); font-size: 1.6rem; color: var(--moonstone); }
.footer-brand__tag { font-family: var(--font-accent); font-size: 1.3rem; color: var(--warm-gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(246,241,235,0.8); font-size: 0.9rem; }
.footer-links a:hover { color: var(--warm-gold); }
.footer-bottom { border-top: 1px solid rgba(246,241,235,0.15); margin-top: var(--space-4); padding-top: var(--space-3); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.82rem; color: rgba(246,241,235,0.65); }

/* --------------------------------------------------------------------------
   16. Reveal-on-scroll animation
   -------------------------------------------------------------------------- */
/* Reveal only hides when JS is active (progressive enhancement) —
   without JS the content stays fully visible. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* utility */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: var(--space-3); }
