/* ==========================================================================
   Aesthetic Med Spa LLC — bookaestheticmedspa.com
   Warm & luxurious design system
   ========================================================================== */

:root {
  /* Palette */
  --cream:      #FBF7F1;
  --ivory:      #FFFDFA;
  --sand:       #F1E7DA;
  --linen:      #E6D8C6;
  --champagne:  #D8C0A0;
  --gold:       #A8823F;
  --gold-deep:  #8A6A2F;
  --espresso:   #2C241D;
  --cocoa:      #4A3D33;
  --muted:      #7A6B5D;
  --line:       #E4D8C8;
  --white:      #FFFFFF;

  /* Type */
  --serif: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --sans:  "Jost", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --sec: clamp(4.5rem, 10vw, 8rem);
  --radius: 2px;

  --shadow-sm: 0 1px 2px rgba(44, 36, 29, .06), 0 4px 14px rgba(44, 36, 29, .05);
  --shadow-md: 0 2px 6px rgba(44, 36, 29, .07), 0 18px 40px rgba(44, 36, 29, .09);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cocoa);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

/* --- Typography ----------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.12;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.75rem, 7vw, 4.75rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); line-height: 1.25; }
h4 { font-size: 1.1rem; line-height: 1.35; }

p { max-width: 68ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: block;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }
.center { text-align: center; }
.center p { margin-inline: auto; }

/* Gold hairline flourish */
.rule {
  width: 56px; height: 1px; background: var(--champagne);
  margin: 1.75rem 0;
}
.center .rule { margin-inline: auto; }

/* --- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--sand { background: var(--sand); }
.section--ivory { background: var(--ivory); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.stack > * + * { margin-top: 1.15rem; }

/* --- Skip link ------------------------------------------------------------ */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--espresso); color: var(--cream);
  padding: .8rem 1.4rem; text-decoration: none;
}
.skip:focus { left: 1rem; top: 1rem; }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 2.1rem;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn--gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn--ghost { background: transparent; color: var(--espresso); border-color: var(--linen); }
.btn--ghost:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.btn--light { background: var(--cream); color: var(--espresso); border-color: var(--cream); }
.btn--light:hover { background: transparent; color: var(--cream); border-color: var(--cream); }

.btn--outline-light { background: transparent; color: var(--cream); border-color: rgba(251,247,241,.45); }
.btn--outline-light:hover { background: var(--cream); color: var(--espresso); border-color: var(--cream); }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.center .btn-row { justify-content: center; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 82px;
}
.site-header.is-solid {
  background: rgba(251, 247, 241, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand__mark { flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif); font-size: 1.4rem; color: var(--espresso);
  letter-spacing: .01em;
}
.brand__sub {
  font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-top: .35rem;
}
/* Over-hero (transparent) state */
.site-header:not(.is-solid) .brand__name,
.site-header:not(.is-solid) .nav__link { color: var(--cream); }
.site-header:not(.is-solid) .brand__sub { color: var(--champagne); }
.site-header:not(.is-solid) .brand__mark path,
.site-header:not(.is-solid) .brand__mark circle { stroke: var(--champagne); }
.site-header:not(.is-solid) .nav__cta { color: var(--cream); border-color: rgba(251,247,241,.45); }
.site-header:not(.is-solid) .nav__cta:hover { background: var(--cream); color: var(--espresso); }
.site-header:not(.is-solid) .burger span { background: var(--cream); }
body.no-hero .site-header { background: rgba(251,247,241,.94); border-bottom-color: var(--line); }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.nav__link {
  position: relative; text-decoration: none; color: var(--cocoa);
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  padding-block: .4rem;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--gold); }
.site-header:not(.is-solid) .nav__link[aria-current="page"] { color: var(--champagne); }

.nav__cta {
  padding: .7rem 1.5rem; border: 1px solid var(--espresso);
  border-radius: var(--radius); text-decoration: none;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  transition: all .3s var(--ease);
}
.nav__cta:hover { background: var(--espresso); color: var(--cream); }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 0; cursor: pointer;
}
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--espresso);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 82px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gut) 2rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease);
    max-height: calc(100vh - 82px); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { color: var(--cocoa) !important; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.4rem; text-align: center; color: var(--espresso) !important; border-color: var(--espresso) !important; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative; min-height: min(92vh, 860px);
  display: grid; align-items: center;
  padding-block: 9rem 5rem;
  isolation: isolate; overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(216,192,160,.30) 0%, transparent 58%),
    radial-gradient(90% 80% at 12% 88%, rgba(168,130,63,.20) 0%, transparent 60%),
    linear-gradient(155deg, #3A2F26 0%, #2C241D 42%, #221B15 100%);
  color: var(--cream);
}
/* Soft light sweep */
.hero::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background: conic-gradient(from 210deg at 70% 30%,
    rgba(216,192,160,.16), transparent 28%, rgba(168,130,63,.13) 55%, transparent 78%);
  filter: blur(70px);
}
/* Fine grain so the gradient never bands */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero h1 { color: var(--cream); max-width: 15ch; }
.hero .eyebrow { color: var(--champagne); }
.hero__inner { max-width: 720px; }
.hero__lede { color: rgba(251,247,241,.80); font-size: clamp(1.05rem, 1.7vw, 1.25rem); max-width: 52ch; }
.hero .btn-row { margin-top: 2.4rem; }
.hero__meta {
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(251,247,241,.16);
  display: flex; flex-wrap: wrap; gap: 2.5rem;
}
.hero__meta div { min-width: 120px; }
.hero__meta dt {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: .45rem;
}
.hero__meta dd { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); margin: 0; }

/* Page banner (interior pages) */
.banner {
  position: relative; isolation: isolate;
  padding-block: clamp(8.5rem, 15vw, 11rem) clamp(3.5rem, 7vw, 5rem);
  background:
    radial-gradient(100% 100% at 80% 0%, rgba(216,192,160,.26) 0%, transparent 60%),
    linear-gradient(150deg, #3A2F26 0%, #2C241D 100%);
  color: var(--cream);
}
.banner h1 { color: var(--cream); }
.banner .eyebrow { color: var(--champagne); }
.banner p { color: rgba(251,247,241,.78); max-width: 58ch; }

/* --- Cards ---------------------------------------------------------------- */
.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.4rem);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--champagne); }
.card__icon {
  width: 46px; height: 46px; color: var(--gold);
  margin-bottom: 1.4rem;
}
.card h3 { margin-bottom: .7rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card__link {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.3rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.card__link::after { content: "→"; transition: transform .3s var(--ease); }
.card__link:hover::after { transform: translateX(4px); }

/* Numbered steps */
.step { position: relative; padding-left: 4.25rem; }
.step__num {
  position: absolute; left: 0; top: -.35rem;
  font-family: var(--serif); font-size: 2.75rem; color: var(--champagne); line-height: 1;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* --- Treatment menu ------------------------------------------------------- */
.menu-group + .menu-group { margin-top: clamp(3rem, 6vw, 4.5rem); }
.menu-group__head {
  display: flex; align-items: baseline; gap: 1.25rem;
  padding-bottom: 1.1rem; margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.menu-group__head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.menu-group__count {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.menu-list { list-style: none; padding: 0; display: grid; gap: 0; }
@media (min-width: 760px) { .menu-list { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 4vw, 3.5rem); } }
.menu-item {
  padding: 1.1rem 0;
  border-bottom: 1px dotted var(--line);
}
.menu-item__name {
  font-family: var(--serif); font-size: 1.22rem; color: var(--espresso);
  display: block; margin-bottom: .2rem;
}
.menu-item__desc { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; max-width: none; }

/* --- Price list ----------------------------------------------------------- */
.price-row {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1.15rem 0; border-bottom: 1px dotted var(--line);
}
.price-row__name { font-family: var(--serif); font-size: 1.18rem; color: var(--espresso); }
.price-row__note { display: block; font-family: var(--sans); font-size: .84rem; color: var(--muted); margin-top: .15rem; }
.price-row__dots { flex: 1 1 auto; border-bottom: 1px dotted var(--linen); transform: translateY(-.3rem); min-width: 1.5rem; }
.price-row__amt { font-family: var(--serif); font-size: 1.18rem; color: var(--gold-deep); white-space: nowrap; }

/* --- Quote / testimonial -------------------------------------------------- */
.quote { text-align: center; max-width: 760px; margin-inline: auto; }
.quote__mark { font-family: var(--serif); font-size: 4.5rem; color: var(--champagne); line-height: .6; display: block; margin-bottom: 1.25rem; }
.quote blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 1.95rem); line-height: 1.45; color: var(--espresso); }
.quote figcaption { margin-top: 1.5rem; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.testimonial {
  background: var(--ivory); border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.25rem); border-radius: var(--radius);
  display: flex; flex-direction: column;
}
.testimonial blockquote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.55; color: var(--espresso); flex: 1; }
.testimonial figcaption { margin-top: 1.4rem; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: .18em; font-size: .9rem; margin-bottom: 1rem; }

/* --- Split feature -------------------------------------------------------- */
.split { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--reverse > :first-child { order: 2; }
@media (max-width: 899px) { .split--reverse > :first-child { order: 0; } }

.figure-panel {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  background:
    radial-gradient(80% 70% at 30% 25%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(150deg, var(--linen) 0%, var(--champagne) 55%, #C4A87F 100%);
  overflow: hidden;
}
.figure-panel::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.4);
  z-index: 1; pointer-events: none;
}
/* Photograph fills the panel; the gradient stays visible while it loads. */
.figure-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.figure-panel--tall { aspect-ratio: 3 / 4; }

/* --- Stat band ------------------------------------------------------------ */
.stat { text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 3.4rem); color: var(--gold-deep); line-height: 1; }
.stat__label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .8rem; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background:
    radial-gradient(90% 120% at 85% 15%, rgba(216,192,160,.28) 0%, transparent 60%),
    linear-gradient(150deg, #3A2F26 0%, #2C241D 100%);
  color: var(--cream); text-align: center;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(251,247,241,.78); margin-inline: auto; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.35rem); color: var(--espresso);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; font-family: var(--sans); font-size: 1.5rem;
  color: var(--gold); font-weight: 300; transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.6rem; color: var(--muted); }

/* --- Forms ---------------------------------------------------------------- */
.form-card {
  background: var(--ivory); border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 3rem); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.35rem; }
.field label {
  display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .55rem;
}
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: .95rem 1.1rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: .98rem; color: var(--espresso);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168,130,63,.13);
}
.field input::placeholder, .field textarea::placeholder { color: #B5A695; }
.field--half { display: grid; gap: 1.35rem; }
@media (min-width: 620px) { .field--half { grid-template-columns: 1fr 1fr; } }
.field--half .field { margin-bottom: 0; }

.checkbox { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.6rem; }
.checkbox input { width: auto; margin-top: .3rem; flex: none; accent-color: var(--gold); }
.checkbox label { text-transform: none; letter-spacing: 0; font-size: .85rem; line-height: 1.6; color: var(--muted); margin: 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: .8rem; color: var(--muted); margin-top: 1.2rem; }
.form-status {
  margin-top: 1.25rem; padding: 1rem 1.2rem; border-radius: var(--radius);
  font-size: .9rem; display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #EFF4EC; border: 1px solid #C8D9BF; color: #3E5732; }
.form-status--err { background: #FBEEEA; border: 1px solid #E6C4B8; color: #8A3D24; }

/* --- Contact detail list -------------------------------------------------- */
.detail-list { list-style: none; padding: 0; }
.detail-list li { display: flex; gap: 1.1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.detail-list svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: .35rem; }
.detail-list dt, .detail-list strong {
  display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: .3rem;
}
.detail-list a { color: var(--espresso); text-decoration: none; border-bottom: 1px solid var(--linen); }
.detail-list a:hover { border-bottom-color: var(--gold); color: var(--gold-deep); }

.hours { list-style: none; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dotted var(--line); font-size: .95rem; }
.hours span:first-child { color: var(--muted); }
.hours span:last-child { color: var(--espresso); }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--espresso); color: rgba(251,247,241,.72); padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; }
.site-footer h4 {
  color: var(--champagne); font-family: var(--sans);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1.35rem; font-weight: 500;
}
.site-footer .brand__name { color: var(--cream); }
.site-footer .brand__sub { color: var(--champagne); }
.site-footer .brand__mark path, .site-footer .brand__mark circle { stroke: var(--champagne); }
.site-footer p { font-size: .92rem; }
.footer-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: .7rem; }
.footer-grid a { text-decoration: none; font-size: .92rem; transition: color .25s var(--ease); }
.footer-grid a:hover { color: var(--champagne); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.75rem;
  border-top: 1px solid rgba(251,247,241,.13);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: .8rem; color: rgba(251,247,241,.55);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--champagne); }
.footer-legal { font-size: .78rem; color: rgba(251,247,241,.45); margin-top: 1.5rem; max-width: 70ch; line-height: 1.65; }

/* --- Reveal on scroll ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- Utilities ------------------------------------------------------------ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.tag {
  display: inline-block; padding: .35rem .85rem; margin: 0 .4rem .5rem 0;
  background: var(--sand); border: 1px solid var(--linen); border-radius: 100px;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cocoa);
}
