/* =====================================================================
   Dolly B. Phillips, LMFT — Therapy practice website
   Rebuilt from the "Harmonise" Framer template as editable code.

   HOW TO EDIT
   -----------
   • Colors, fonts and spacing live in the :root variables just below.
     Change a value once here and it updates everywhere.
   • Each page (index / about / services / contact) shares this file.
   • Photos are CSS background-images marked with  /* PHOTO: ... */ /*
     comments. Drop in real image URLs there (or local files) to replace
     the placeholder gradients.
   ===================================================================== */

:root {
  /* --- Palette (taken from the original template) --- */
  --bg:        #f4f3e4;   /* page background – pale warm cream      */
  --bg-warm:   #ece6d6;   /* sections / cards – warm beige          */
  --bg-deep:   #e4ddca;   /* slightly deeper beige                  */
  --ink:       #211e18;   /* primary text – near-black brown        */
  --ink-soft:  #5d574b;   /* muted body text                        */
  --accent:    #3a2d1e;   /* dark brown – buttons, emphasis         */
  --accent-h:  #4d3d29;   /* button hover                           */
  --sage:      #6f7d63;   /* muted sage green (hero accent)         */
  --sage-deep: #3f4a39;
  --pill:      #e6dfcc;   /* pill / chip background                 */
  --line:      rgba(33, 30, 24, 0.14);
  --line-soft: rgba(33, 30, 24, 0.08);
  --white:     #fbfaf2;

  /* --- Type --- */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* --- Layout --- */
  --maxw: 1240px;
  --gap:  clamp(16px, 4vw, 40px);
  --radius:    18px;
  --radius-lg: 30px;
  --radius-xl: 44px;
}

/* ------------------------------------------------------------------ */
/*  Reset / base                                                       */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* clear the fixed nav pill when jumping to #anchors (e.g. #fees) */
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Display serif uses Fraunces' soft, high-contrast optical setting */
h1, h2 { font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0; }

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gap);
}

section { position: relative; }

.section-pad   { padding-block: clamp(64px, 10vw, 140px); }
.section-pad-s { padding-block: clamp(48px, 7vw, 96px); }

/* ------------------------------------------------------------------ */
/*  Shared atoms                                                       */
/* ------------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pill);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.eyebrow::before { content: "\2726"; color: var(--sage); font-size: 12px; }

.chip {
  display: inline-block;
  background: var(--pill);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, transform .15s ease, border-color .25s ease;
}
.btn:active { transform: translateY(1px); }

.btn--dark  { background: var(--accent); color: var(--white); }
.btn--dark:hover { background: var(--accent-h); }

.btn--light { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn--light:hover { background: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--bg-warm); }

.display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}
.h-section {
  font-size: clamp(2.1rem, 5vw, 3.9rem);
}
.lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 46ch;
}

/* small number labels like 01, 02 ... */
.num { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); font-weight: 500; }

/* ------------------------------------------------------------------ */
/*  Navigation (floating pill)                                         */
/* ------------------------------------------------------------------ */
.nav-wrap {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding-top: 18px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 243, 228, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 8px 8px 8px 10px;
  box-shadow: 0 8px 30px rgba(33, 30, 24, 0.08);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--bg-warm);
  font-family: var(--serif);
  font-size: 18px;
  color: #8d5254; /* dusty rose — matches the nav wordmark */
}
/* Serif wordmark in the nav (replaces the monogram).
   Dusty rose sampled from the hero sky (deepened for contrast) plus a
   hairline divider, so it reads as the brand, not a fifth link. */
.nav__word {
  font-family: var(--serif);
  font-size: clamp(17px, 2.2vw, 21.5px);
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.01em;
  color: #8d5254;
  white-space: nowrap;
  line-height: 1;
  padding: 4px 18px 4px 8px;
}
@media (min-width: 761px) {
  .nav__word { border-right: 1px solid var(--line); }
  .nav__links { padding-left: 10px; }
}
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: background .2s ease;
}
.nav__links a:hover { background: var(--bg-warm); }
.nav__cta {
  background: var(--accent);
  color: var(--white) !important;
}
.nav__cta:hover { background: var(--accent-h) !important; }
.nav__toggle { display: none; }

/* mobile */
@media (max-width: 760px) {
  .nav { width: calc(100% - 32px); justify-content: space-between; }
  .nav__links {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 2px;
    background: var(--bg);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(33,30,24,.14);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { width: 100%; padding: 12px 16px; }
  .nav__cta { text-align: center; }
  .nav__toggle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
  }
  .nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
    content: ""; display: block; width: 16px; height: 1.6px;
    background: var(--white); border-radius: 2px; position: relative;
  }
  .nav__toggle span::before { position: absolute; top: -5px; }
  .nav__toggle span::after  { position: absolute; top:  5px; }
}

/* ------------------------------------------------------------------ */
/*  Hero                                                               */
/* ------------------------------------------------------------------ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  /* reserve clearance for the fixed nav so tall hero content
     never rides up under it on short / landscape viewports */
  padding-top: clamp(108px, 14vh, 150px);
  padding-bottom: clamp(40px, 6vw, 72px);
  overflow: hidden;
  position: relative;
  color: var(--white);
  /* Calming hero photo with a tint for legibility.
     Swap images/hero.jpg to change it; keep the overlay for contrast. */
  background:
    linear-gradient(180deg, rgba(40,46,34,.45) 0%, rgba(40,46,34,.18) 30%, rgba(40,46,34,.72) 100%),
    #59654c url("images/hero.jpg");
  background-size: cover;
  /* pan the wide crop so the footpath sits clear of the text column */
  background-position: 15% center;
}
@media (max-width: 860px) {
  /* narrow screens: text spans full width, so keep the path centered */
  .hero { background-position: center; }
}
.hero__inner { width: 100%; }
.hero .eyebrow { background: rgba(33,30,24,.42); color: #fff; backdrop-filter: blur(6px); }
.hero .eyebrow::before { color: #dfe6d2; }
.hero h1 {
  color: #fff;
  margin: 0 0 18px;
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.18);
}
.hero__sub {
  color: rgba(255,255,255,.92);
  max-width: 52ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  margin-bottom: 28px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ */
/*  Specialties marquee strip                                          */
/* ------------------------------------------------------------------ */
.strip { background: var(--bg-warm); border-bottom: 1px solid var(--line-soft); }
.strip__row {
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  justify-content: center;
  padding-block: 22px;
}
.strip__row .chip { background: var(--bg); font-size: 14px; padding: 8px 16px; }

/* ------------------------------------------------------------------ */
/*  Big statement w/ floating pills                                    */
/* ------------------------------------------------------------------ */
.statement { text-align: center; }
.statement__wrap { position: relative; max-width: 1000px; margin-inline: auto; padding-block: 64px; }
.statement h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  max-width: 860px;
  margin-inline: auto;
}

/* ------------------------------------------------------------------ */
/*  Section heading block                                              */
/* ------------------------------------------------------------------ */
.head { max-width: 760px; }
.head .eyebrow { margin-bottom: 22px; }
.head .lead { margin-top: 20px; }
.head--center { margin-inline: auto; text-align: center; }
.head--center .lead { margin-inline: auto; }

/* ------------------------------------------------------------------ */
/*  Philosophy / values grid                                          */
/* ------------------------------------------------------------------ */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.value {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
}
.value__icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--bg);
  margin-bottom: 22px;
  color: var(--accent);
}
.value h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 12px; }
.value p  { color: var(--ink-soft); font-size: 15.5px; }
.value .num { display: block; margin-bottom: 18px; }
@media (max-width: 720px) { .values { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/*  Services                                                           */
/* ------------------------------------------------------------------ */
.svc-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 44px;
}
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 2.6vw, 34px);
  color: #fff;
  /* Photo per card (see .svc--1…4); sage fallback + cover sizing here. */
  background-color: var(--sage);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
/* Tint keeps the white title/copy legible over each photo. */
.svc--1 { background-image: linear-gradient(180deg, rgba(33,30,24,.15) 0%, rgba(33,30,24,.45) 50%, rgba(33,30,24,.9) 100%), url("images/svc-1.jpg"); }
.svc--2 { background-image: linear-gradient(180deg, rgba(33,30,24,.15) 0%, rgba(33,30,24,.45) 50%, rgba(33,30,24,.9) 100%), url("images/svc-2.jpg"); }
.svc--3 { background-image: linear-gradient(180deg, rgba(33,30,24,.15) 0%, rgba(33,30,24,.45) 50%, rgba(33,30,24,.9) 100%), url("images/svc-3.jpg"); }
.svc--4 { background-image: linear-gradient(180deg, rgba(33,30,24,.15) 0%, rgba(33,30,24,.45) 50%, rgba(33,30,24,.9) 100%), url("images/svc-4.jpg"); }
.svc .num { color: rgba(255,255,255,.8); margin-bottom: auto; }
.svc h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2.05rem); margin: 14px 0 10px; }
.svc p { color: rgba(255,255,255,.86); font-size: 15px; max-width: 42ch; }
@media (max-width: 720px) { .services { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/*  Modalities accordion                                               */
/* ------------------------------------------------------------------ */
.modalities { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.modalities__intro { position: sticky; top: 110px; }
/* Flat list — every approach visible; no hidden-behind-a-click content. */
.acc { display: flex; flex-direction: column; gap: 14px; }
.acc__item {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 26px clamp(22px, 2.4vw, 34px);
}
.acc__top { display: flex; align-items: center; gap: 20px; }
.acc__title { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.9rem); flex: 1; }
.acc__body { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 820px) {
  .modalities { grid-template-columns: 1fr; gap: 28px; }
  .modalities__intro { position: static; }
}

/* ------------------------------------------------------------------ */
/*  Practitioner spotlight (solo)                                      */
/* ------------------------------------------------------------------ */
.spotlight { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-color: #c9bca0; /* fallback while the image loads */
  background-image: url("images/dolly.jpg");
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.portrait__mono {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  color: rgba(58,45,30,.5);
  letter-spacing: .04em;
}
.portrait__note {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  text-align: center; font-size: 12px; color: rgba(58,45,30,.65);
  background: rgba(251,250,242,.7); border-radius: 999px; padding: 6px 10px;
}
.spotlight__body .eyebrow { margin-bottom: 22px; }
.spotlight__body h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 10px; }
.spotlight__role { color: var(--sage-deep); font-weight: 500; margin-bottom: 22px; }
.spotlight__body p { color: var(--ink-soft); margin-bottom: 16px; }
.spotlight__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; }
@media (max-width: 820px) { .spotlight { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/*  Approach quote (replaces testimonials)                             */
/* ------------------------------------------------------------------ */
.quote-band {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-xl);
}
.quote-band .eyebrow { background: rgba(255,255,255,.12); color: #fff; }
.quote-band .eyebrow::before { color: #d8c7a8; }
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.16;
  margin: 26px 0 0;
  max-width: 22ch;
}
.quote-band cite { display: block; margin-top: 26px; font-style: normal; color: rgba(255,255,255,.7); font-size: 15px; }

/* ------------------------------------------------------------------ */
/*  Fees & insurance                                                   */
/* ------------------------------------------------------------------ */
.fees { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.fee-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
}
.fee-card--dark { background: var(--accent); color: var(--white); }
.fee-card__price { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; }
.fee-card__price span { font-size: 1rem; font-family: var(--sans); color: var(--ink-soft); }
.fee-card--dark .fee-card__price span { color: rgba(255,255,255,.7); }
.fee-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.fee-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.fee-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.fee-card--dark .fee-list li { color: rgba(255,255,255,.85); }
.fee-list li::before { content: "\2713"; color: var(--sage); font-weight: 700; }
.fee-card--dark .fee-list li::before { color: #cdd6bd; }
@media (max-width: 720px) { .fees { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/*  FAQ                                                                */
/* ------------------------------------------------------------------ */
.faq { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: var(--ink);
}
.faq__sign { position: relative; width: 16px; height: 16px; flex: none; }
.faq__sign::before, .faq__sign::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.faq__sign::before { top: 7px; left: 0; width: 16px; height: 1.6px; }
.faq__sign::after  { left: 7px; top: 0; width: 1.6px; height: 16px; }
.faq__item[aria-expanded="true"] .faq__sign::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--ink-soft); font-size: 15.5px; }
.faq__item[aria-expanded="true"] .faq__a { max-height: 260px; padding: 0 4px 26px; }
@media (max-width: 820px) { .faq { grid-template-columns: 1fr; gap: 24px; } }

/* ------------------------------------------------------------------ */
/*  Final CTA                                                          */
/* ------------------------------------------------------------------ */
.cta {
  text-align: center;
  border-radius: var(--radius-xl);
  /* Calming photo bookends the page with the hero; strong tint keeps
     the centered white text legible over the light image. */
  background-color: #3f4a39;
  background-image: linear-gradient(180deg, rgba(40,46,34,.66) 0%, rgba(40,46,34,.74) 100%), url("images/cta.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-block: clamp(64px, 9vw, 120px);
}
.cta .eyebrow { background: rgba(33,30,24,.4); color: #fff; }
.cta h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 4.2rem); max-width: 16ch; margin: 22px auto 18px; }
.cta p { color: rgba(255,255,255,.9); max-width: 48ch; margin: 0 auto 30px; }
.cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------------------ */
/*  Contact page                                                       */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info { display: grid; gap: 14px; }
.info-card {
  background: var(--bg-warm); border-radius: var(--radius); padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.info-card h4 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin: 0 0 6px; font-weight: 600; }
.info-card p { font-size: 16px; }
.info-card a { font-weight: 500; }
.info-ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center; color: var(--accent);
}
.form { background: var(--bg-warm); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--bg);
  font-family: inherit; font-size: 15px; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--sage); outline-offset: 1px; }
.form__note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* page hero (interior pages) */
.page-hero { padding-top: 150px; padding-bottom: 20px; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 16ch; }
.page-hero .lead { margin-top: 22px; }

/* generic prose */
.prose p { color: var(--ink-soft); margin-bottom: 18px; max-width: 64ch; }
.prose h3 { font-size: clamp(1.5rem,2.6vw,2.1rem); margin: 36px 0 14px; }

/* two-col list */
.col-list { columns: 2; column-gap: 40px; list-style: none; padding: 0; margin: 0; }
.col-list li { padding: 10px 0; border-bottom: 1px solid var(--line-soft); break-inside: avoid; color: var(--ink-soft); }
@media (max-width: 560px) { .col-list { columns: 1; } }

/* ------------------------------------------------------------------ */
/*  Footer                                                             */
/* ------------------------------------------------------------------ */
.footer { background: var(--bg-warm); margin-top: 40px; padding-top: clamp(56px, 7vw, 90px); overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer__intro p { color: var(--ink-soft); max-width: 38ch; margin: 18px 0 24px; }
.footer h4 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin: 0 0 18px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a, .footer ul li { color: var(--ink); font-size: 15.5px; }
.footer ul a:hover { color: var(--sage-deep); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-block: 24px; font-size: 14px; color: var(--ink-soft); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__word {
  font-family: var(--serif);
  font-size: clamp(3rem, 16vw, 13rem);
  line-height: .9;
  text-align: center;
  color: var(--bg-deep);
  letter-spacing: .04em;
  padding-bottom: 10px;
  user-select: none;
}
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__intro { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* reveal-on-scroll — only hidden when JS is active (progressive enhancement).
   Without JS, the .js class is never added, so all content stays visible. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
