/* ==========================================================================
   Self-hosted fonts (latin subset, woff2)
   Replaces the Google Fonts request: no third-party connection, no FOUT
   from a blocking stylesheet, 108 KB total across 5 faces.
   ========================================================================== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/montserrat-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/montserrat-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/montserrat-latin-600-normal.woff2') format('woff2');
}

/* ==========================================================================
   The Aesthetic Company — Medical Aesthetics
   Brand: quiet luxury / elevated wellness / sophisticated boutique
   --------------------------------------------------------------------------
   Palette
     Espresso        #372306   primary dark, headings, buttons
     Espresso soft   #4A3A28   body copy
     Muted ink       #5C4A35   secondary copy (AA on cream)
     Soft cream      #FAF6EF   page background
     Cream raised    #FFFDF9   cards
     Light taupe     #D6CBBB   borders, rules
     Taupe deep      #B8A891   decorative
     Brushed gold    #A8853F   accents (decorative)
     Gold ink        #8A6C2E   gold used as TEXT (AA on cream)
   ========================================================================== */

:root {
  --espresso: #372306;
  --espresso-soft: #4A3A28;
  --ink-muted: #5C4A35;
  --cream: #FAF6EF;
  --cream-raised: #FFFDF9;
  --taupe: #D6CBBB;
  --taupe-deep: #B8A891;
  --gold: #A8853F;
  --gold-ink: #8A6C2E;

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --radius: 20px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-sm: 0 2px 10px rgba(55, 35, 6, .05);
  --shadow-md: 0 18px 40px -24px rgba(55, 35, 6, .22);
  --shadow-lg: 0 40px 90px -40px rgba(55, 35, 6, .34);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso-soft);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--espresso);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: pretty;
}
p { margin: 0; text-wrap: pretty; }
a { color: var(--espresso); text-decoration: none; }
a:hover { color: var(--gold-ink); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: #E8DCC4; color: var(--espresso); }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--espresso); color: #fff;
  padding: 12px 20px; border-radius: 0 0 12px 12px;
  font-size: 14px; font-weight: 500;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section-pad { padding: clamp(72px, 11vw, 140px) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 18px;
}
.section-head { max-width: 660px; }
.section-head h2 { font-size: clamp(32px, 5vw, 54px); }
.section-head p { margin-top: 20px; color: var(--ink-muted); font-size: clamp(16px, 1.6vw, 18px); }

.rule { height: 1px; background: var(--taupe); border: 0; margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500; letter-spacing: .01em;
  padding: 15px 28px; border-radius: 100px;
  min-height: 48px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn-primary { background: var(--espresso); color: #FFFDF9; }
.btn-primary:hover { color: #FFFDF9; transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(55, 35, 6, .55); }
.btn-ghost { background: transparent; color: var(--espresso); border: 1px solid var(--taupe-deep); }
.btn-ghost:hover { color: var(--espresso); border-color: var(--espresso); transform: translateY(-2px); background: rgba(255, 253, 249, .7); }
.btn-on-dark { background: #FFFDF9; color: var(--espresso); }
.btn-on-dark:hover { color: var(--espresso); transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(0, 0, 0, .45); }
.btn-sm { padding: 11px 20px; font-size: 14px; min-height: 44px; }
.btn .ico { flex: 0 0 auto; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; color: var(--espresso);
  padding: 6px 0; min-height: 44px;
}
.link-arrow .ico { transition: transform .35s var(--ease); }
.link-arrow:hover { color: var(--gold-ink); }
.link-arrow:hover .ico { transform: translateX(4px); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(250, 246, 239, .82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, box-shadow .4s, background .4s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--taupe);
  box-shadow: 0 1px 20px rgba(55, 35, 6, .06);
  background: rgba(250, 246, 239, .93);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 84px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: clamp(46px, 5vw, 58px); width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 30px); }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--espresso);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--taupe-deep);
  align-items: center; justify-content: center;
  background: rgba(255, 253, 249, .8);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--espresso);
  position: relative; transition: background .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: var(--espresso); transition: transform .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { display: none; }
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav ul {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 0 24px;
}
.mobile-nav a {
  display: block; padding: 15px 4px; font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--taupe);
}
.mobile-nav .btn { margin-top: 18px; width: 100%; justify-content: center; }

@media (max-width: 1060px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-actions .btn-always { display: inline-flex; }
  .nav-toggle { display: flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 34%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(26, 16, 3, .86) 0%, rgba(26, 16, 3, .62) 42%, rgba(26, 16, 3, .22) 78%),
    linear-gradient(180deg, rgba(28, 18, 4, .34) 0%, rgba(28, 18, 4, .28) 40%, rgba(30, 19, 4, .74) 100%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%;
  padding-top: clamp(80px, 13vh, 140px);
  padding-bottom: clamp(48px, 7vh, 76px);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.1vw, 22px);
  font-style: italic;
  letter-spacing: .01em;
  color: #EBD9B4;
  margin: 0 0 18px;
}
.hero h1 {
  color: #FFFDF9;
  font-size: clamp(40px, 7.2vw, 88px);
  line-height: 1.0;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: #E4D2AE; display: block; }
.hero-sub {
  color: #F2EADC;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  max-width: 52ch;
  margin: 26px 0 0;
}
.hero-loc {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 30px 0 0;
  font-size: 14px; font-weight: 500; letter-spacing: .02em;
  color: #F5EFE3;
}
.hero-loc svg { flex: 0 0 auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note {
  margin: 18px 0 0;
  font-size: 14px; letter-spacing: .02em;
  color: #E4D2AE;
}

/* ---------- intro ---------- */
.intro { background: var(--cream); }
.intro-grid {
  display: grid; gap: clamp(36px, 6vw, 76px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .intro-grid { grid-template-columns: 1fr 1.15fr; } }
.intro-lede {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.1vw, 36px);
  line-height: 1.25;
  color: var(--espresso);
}
.intro-body > * + * { margin-top: 20px; }
.intro-body p { color: var(--ink-muted); }

.pillars {
  display: grid; gap: 1px; margin-top: clamp(48px, 6vw, 76px);
  background: var(--taupe);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar { background: var(--cream-raised); padding: 30px 26px; }
.pillar h3 { font-size: 21px; margin-bottom: 9px; }
.pillar p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.6; }

/* ---------- treatments ---------- */
.treatments { background: var(--cream-raised); border-block: 1px solid var(--taupe); }
.cat-grid {
  display: grid; gap: 22px; margin-top: clamp(40px, 5vw, 64px);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat {
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--taupe-deep); }
.cat-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #EFE9DE; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat:hover .cat-media img { transform: scale(1.05); }
.cat-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.cat-body h3 { font-size: 26px; margin-bottom: 16px; }
.cat-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.cat-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--espresso-soft); line-height: 1.45;
}
.cat-list li::before {
  content: ""; flex: 0 0 auto;
  width: 5px; height: 5px; margin-top: 8px;
  border-radius: 50%; background: var(--gold);
}
.cat-body .link-arrow { margin-top: auto; }

.treatment-note {
  margin-top: clamp(32px, 4vw, 48px);
  padding: 22px 26px;
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  font-size: 14.5px; color: var(--ink-muted);
  max-width: 760px;
}

/* ---------- process ---------- */
.process { background: var(--cream); }
.steps {
  display: grid; gap: 18px;
  margin-top: clamp(40px, 5vw, 64px);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1160px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step {
  background: var(--cream-raised);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--taupe-deep); }
.step-n {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500; letter-spacing: .06em;
  color: var(--gold-ink);
  display: block; margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--taupe);
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.6; }

/* ---------- team ---------- */
.team { background: var(--cream-raised); border-block: 1px solid var(--taupe); }
.team-grid {
  display: grid; gap: 22px; margin-top: clamp(40px, 5vw, 64px);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  overflow: hidden; text-align: left;
  display: flex; flex-direction: column;
  width: 100%;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--taupe-deep); }
.member-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #EFE9DE; }
.member-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; transition: transform .9s var(--ease); }
.member:hover .member-media img { transform: scale(1.04); }
.member-noimg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(170deg, #4A3A28, var(--espresso));
}
.member-noimg span {
  font-family: var(--font-display);
  width: 104px; height: 104px; border-radius: 50%;
  border: 1px solid rgba(235, 217, 180, .45);
  background: rgba(235, 217, 180, .1);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; color: #F2E6CB;
}
.member-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.member-body h3 { font-size: 23px; margin-bottom: 6px; }
.member-role { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); }
.member-cred { font-size: 14.5px; color: var(--ink-muted); margin-top: 12px; line-height: 1.6; }
.member-body .link-arrow { margin-top: 16px; }

.med-dir {
  margin-top: clamp(40px, 5vw, 60px);
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  display: grid; gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .med-dir { grid-template-columns: auto 1fr; align-items: start; } }
.med-dir-mark {
  font-weight: 500;
  width: 86px; height: 86px; border-radius: 50%;
  border: 1px solid var(--taupe-deep);
  background: var(--cream-raised);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 27px; color: var(--espresso);
}
.med-dir h3 { font-size: clamp(24px, 2.8vw, 31px); margin-bottom: 6px; }
.med-dir .member-role { display: block; margin-bottom: 16px; }
.med-dir p { color: var(--ink-muted); font-size: 15.5px; max-width: 70ch; }
.med-dir p + p { margin-top: 14px; }

/* ---------- gallery ---------- */
.gallery { background: var(--cream); }
.gal-grid {
  display: grid; gap: 16px; margin-top: clamp(40px, 5vw, 64px);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .gal-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
.gal-item {
  position: relative; padding: 0; width: 100%;
  border: 1px solid var(--taupe); border-radius: var(--radius);
  overflow: hidden; background: #EFE9DE;
  aspect-ratio: 4 / 3.4;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.gal-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--taupe-deep); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gal-item:hover img { transform: scale(1.05); }
.gal-badge {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(28, 18, 4, .72);
  color: #FFFDF9;
  font-size: 12px; font-weight: 500; letter-spacing: .05em;
  padding: 7px 13px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.consent-note { margin-top: 22px; font-size: 13.5px; color: var(--ink-muted); }

/* ---------- reviews ---------- */
.reviews { background: var(--espresso); }
.reviews .eyebrow { color: #D9BE85; }
.reviews h2 { color: #FFFDF9; }
.reviews .section-head p { color: #E2D6C0; }
.rev-rating {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255, 253, 249, .08);
  border: 1px solid rgba(235, 217, 180, .28);
  border-radius: 100px; padding: 9px 18px;
  margin-bottom: 22px;
  font-size: 14px; color: #F5EFE3;
}
.rev-rating a { color: #F0E3C6; text-decoration: underline; text-underline-offset: 3px; }
.rev-rating a:hover { color: #fff; }
.rev-stars { display: inline-flex; gap: 2px; }
.rev-grid {
  display: grid; gap: 18px; margin-top: clamp(36px, 5vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .rev-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: rgba(255, 253, 249, .055);
  border: 1px solid rgba(235, 217, 180, .2);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column;
}
.review blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.45;
  color: #FFFCF5;
}
.review figcaption { margin-top: auto; font-size: 14px; color: #DFD2B9; }
.review figcaption strong { display: block; color: #FFFDF9; font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.review .rev-stars { margin-bottom: 20px; }

/* ---------- faq ---------- */
.faq { background: var(--cream-raised); border-block: 1px solid var(--taupe); }
.faq-list { margin-top: clamp(36px, 5vw, 52px); max-width: 820px; border-top: 1px solid var(--taupe); }
.faq-item { border-bottom: 1px solid var(--taupe); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--espresso);
  list-style: none;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: 0 0 auto;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--taupe-deep);
  background:
    linear-gradient(var(--espresso), var(--espresso)) center/11px 1.5px no-repeat,
    linear-gradient(var(--espresso), var(--espresso)) center/1.5px 11px no-repeat;
  transition: transform .4s var(--ease), border-color .3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: var(--espresso);
}
.faq-item summary:hover { color: var(--gold-ink); }
.faq-answer { padding: 0 4px 26px; max-width: 70ch; }
.faq-answer p { color: var(--ink-muted); font-size: 16px; }
.faq-answer p + p { margin-top: 14px; }

/* ---------- cta ---------- */
.cta-band { padding: clamp(60px, 8vw, 100px) 0; }
.cta-inner {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--taupe);
  background: linear-gradient(145deg, #F3ECDF 0%, #FFFDF9 42%, #EFE4CE 100%);
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  text-align: center;
}
.cta-inner img.leaf { width: 50px; margin: 0 auto 24px; opacity: .9; }
.cta-inner h2 { font-size: clamp(34px, 6vw, 66px); }
.cta-inner p { margin: 22px auto 0; max-width: 50ch; color: var(--ink-muted); font-size: clamp(16px, 1.7vw, 19px); }
.cta-inner .btn { margin-top: 34px; }
.cta-fine { margin-top: 22px !important; font-size: 14px !important; }

/* ---------- footer ---------- */
.site-footer { background: var(--espresso); color: #E7DCC7; padding: clamp(56px, 7vw, 84px) 0 32px; }
.site-footer a { color: #F0E6D2; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot-grid {
  display: grid; gap: clamp(36px, 5vw, 52px);
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-brand img { height: 44px; width: auto; margin-bottom: 20px; }
.foot-brand p { font-size: 14.5px; color: #D6C9B2; max-width: 32ch; }
.foot-tag { font-family: var(--font-display); font-style: italic; color: #E4D2AE; margin-top: 14px !important; font-size: 16px; }
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: #C0AE90; margin-bottom: 18px;
}
.foot-list { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.foot-hours { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.foot-hours div { display: flex; justify-content: space-between; gap: 14px; }
.foot-hours dt { color: #D6C9B2; }
.foot-hours dd { margin: 0; color: #F0E6D2; text-align: right; white-space: nowrap; }
.foot-map {
  display: block; margin-top: 20px;
  border: 1px solid rgba(235, 217, 180, .28); border-radius: 14px;
  overflow: hidden;
}
.foot-map-canvas {
  height: 104px;
  background:
    radial-gradient(circle at 34% 40%, rgba(168, 133, 63, .3), transparent 58%),
    repeating-linear-gradient(0deg, rgba(235, 217, 180, .09) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(235, 217, 180, .09) 0 1px, transparent 1px 22px),
    #43301A;
  display: flex; align-items: center; justify-content: center;
}
.foot-map-pin { width: 16px; height: 16px; border-radius: 50%; border: 3px solid #D9BE85; background: var(--espresso); }
.foot-map-label {
  padding: 11px 14px; font-size: 13px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(255, 253, 249, .06);
}
.foot-bottom {
  margin-top: clamp(44px, 5vw, 64px); padding-top: 26px;
  border-top: 1px solid rgba(235, 217, 180, .22);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 13px; color: #C7B999;
}
.foot-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(24, 15, 3, .68);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  overflow-y: auto;
  animation: mFade .25s ease;
}
.modal[hidden] { display: none; }
@keyframes mFade { from { opacity: 0; } to { opacity: 1; } }
.modal-panel {
  position: relative; margin: auto;
  width: min(720px, 100%);
  background: var(--cream-raised);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: mRise .4s var(--ease);
}
@keyframes mRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 253, 249, .94);
  border: 1px solid var(--taupe);
  display: flex; align-items: center; justify-content: center;
  color: var(--espresso); font-size: 17px;
  box-shadow: var(--shadow-sm);
}
.modal-close:hover { background: #fff; }
.modal-media { aspect-ratio: 16 / 9; overflow: hidden; background: #EFE9DE; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: clamp(26px, 4vw, 40px); }
.modal-body:first-child { padding-top: clamp(44px, 5vw, 56px); }
.modal-body h2, .modal-body h3 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 8px; }
.modal-body .member-role { display: block; margin-bottom: 20px; }
.modal-body p { color: var(--ink-muted); font-size: 16px; }
.modal-body p + p { margin-top: 16px; }
.modal-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.modal-lightbox .modal-panel { background: transparent; border: none; box-shadow: none; width: min(880px, 100%); }
.modal-lightbox img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.modal-lightbox[hidden] img { width: 1px; height: 1px; }
.modal-lightbox figcaption {
  margin-top: 14px; text-align: center; color: #F2EADC; font-size: 14px;
}
body.modal-open { overflow: hidden; }

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

/* ---------- legal pages ---------- */
.legal { padding: clamp(56px, 8vw, 110px) 0; }
.legal-inner { max-width: 760px; }
.legal h1 { font-size: clamp(34px, 5vw, 54px); }
.legal .updated { margin-top: 14px; font-size: 14px; color: var(--ink-muted); }
.legal h2 { font-size: clamp(22px, 2.6vw, 28px); margin-top: 44px; margin-bottom: 12px; }
.legal p, .legal li { color: var(--espresso-soft); font-size: 16px; }
.legal p + p { margin-top: 14px; }
.legal ul { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.legal ul li { display: flex; gap: 10px; align-items: flex-start; }
.legal ul li::before {
  content: ""; flex: 0 0 auto; width: 5px; height: 5px;
  margin-top: 9px; border-radius: 50%; background: var(--gold);
}
.legal a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- referral ---------- */
.referral { background: var(--cream); }
.ref-inner {
  display: grid; gap: clamp(30px, 4vw, 52px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .ref-inner { grid-template-columns: 1.25fr 1fr; } }
.ref-lead h2 { font-size: clamp(30px, 4.2vw, 48px); }
.ref-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--espresso);
  margin: 18px 0 0;
}
.ref-lead > p:not(.ref-sub) { margin-top: 16px; color: var(--ink-muted); font-size: 16.5px; max-width: 52ch; }
.ref-em {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold-ink) !important; font-size: 18px !important;
}
.ref-lead .btn { margin-top: 30px; }
.ref-how {
  background: var(--cream-raised);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
}
.ref-how h3 { font-size: 23px; margin-bottom: 14px; }
.ref-how p { color: var(--ink-muted); font-size: 15.5px; line-height: 1.65; }
.ref-terms {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--taupe);
  font-size: 13px !important; line-height: 1.6;
}

/* ---------- gift cards ---------- */
.gift { background: var(--cream-raised); border-block: 1px solid var(--taupe); }
.gift-inner {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .gift-inner { grid-template-columns: 1.3fr 1fr; } }
.gift-inner h2 { font-size: clamp(30px, 4.2vw, 48px); }
.gift-inner > div > p { margin: 20px 0 32px; color: var(--ink-muted); font-size: 16.5px; max-width: 54ch; }
.gift-points {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(26px, 3vw, 34px);
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
}
.gift-points li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.55; color: var(--espresso-soft);
}
.gift-points li::before {
  content: ""; flex: 0 0 auto; width: 6px; height: 6px;
  margin-top: 8px; border-radius: 50%; background: var(--gold);
}

/* ---------- journal ---------- */
.journal { background: var(--cream); }
.jgrid {
  display: grid; gap: 22px; margin-top: clamp(40px, 5vw, 60px);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .jgrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .jgrid { grid-template-columns: repeat(3, 1fr); } }
.jcard {
  background: var(--cream-raised);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.jcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--taupe-deep); }
.jcard[hidden] { display: none; }
.jcard-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.jcard-link:hover { color: inherit; }
.jcard-media { aspect-ratio: 16 / 10; overflow: hidden; background: #EFE9DE; }
.jcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.jcard:hover .jcard-media img { transform: scale(1.05); }
.jcard-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.jcard-meta {
  font-size: 12.5px; color: var(--ink-muted);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.jcard-cat {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-ink);
  border: 1px solid var(--taupe); border-radius: 100px;
  padding: 4px 10px; background: var(--cream);
}
.jcard h3 { font-size: 21px; line-height: 1.2; margin-bottom: 10px; }
.jcard-ex { font-size: 14.5px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 18px; }
.jcard .link-arrow { margin-top: auto; }
.journal-more { margin-top: clamp(36px, 4vw, 52px); display: flex; justify-content: center; }

/* journal archive page */
.journal-page { padding: clamp(56px, 8vw, 110px) 0 clamp(60px, 8vw, 100px); }
.journal-page h1 { font-size: clamp(34px, 5.4vw, 58px); }
.jfilters { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.jchip {
  font-size: 13.5px; font-weight: 500;
  padding: 10px 18px; border-radius: 100px;
  border: 1px solid var(--taupe); background: var(--cream-raised);
  color: var(--espresso-soft); min-height: 44px;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.jchip:hover { border-color: var(--taupe-deep); transform: translateY(-1px); }
.jchip.is-on { background: var(--espresso); color: #FFFDF9; border-color: var(--espresso); }
.jcount { margin-top: 18px; font-size: 13.5px; color: var(--ink-muted); }
.journal-page .jgrid { margin-top: 22px; }

/* ---------- article page ---------- */
.article { padding: clamp(40px, 6vw, 72px) 0 clamp(60px, 8vw, 100px); }
.article-inner { max-width: 780px; }
.crumbs { font-size: 13px; color: var(--ink-muted); display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.crumbs a { color: var(--ink-muted); text-decoration: underline; text-underline-offset: 3px; }
.crumbs a:hover { color: var(--espresso); }
.article-head h1 { font-size: clamp(32px, 5.2vw, 52px); margin: 10px 0 0; }
.article-meta { margin-top: 16px; font-size: 14px; color: var(--ink-muted); }
.article-hero {
  margin: clamp(30px, 4vw, 44px) 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--taupe); background: #EFE9DE;
}
.article-hero img { width: 100%; height: auto; display: block; }
.article-body > p { font-size: 17px; line-height: 1.75; color: var(--espresso-soft); }
.article-body > p + p { margin-top: 20px; }
.article-body > p:first-child {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(21px, 2.5vw, 26px); line-height: 1.4; color: var(--espresso);
}
.article-cta {
  margin-top: clamp(44px, 6vw, 68px);
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid var(--taupe); border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #F3ECDF 0%, #FFFDF9 52%, #EFE4CE 100%);
  text-align: center;
}
.article-cta h2 { font-size: clamp(24px, 3.2vw, 34px); }
.article-cta p { margin: 14px auto 26px; max-width: 46ch; color: var(--ink-muted); font-size: 16px; }
.post-nav {
  margin-top: clamp(40px, 5vw, 60px); padding-top: 30px;
  border-top: 1px solid var(--taupe);
  display: grid; gap: 22px; grid-template-columns: 1fr;
}
@media (min-width: 680px) { .post-nav { grid-template-columns: 1fr 1fr; } }
.pn-link { display: flex; flex-direction: column; gap: 7px; }
.pn-next { text-align: right; }
.pn-dir { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-ink); }
.pn-title { font-family: var(--font-display); font-weight: 500; font-size: 19px; line-height: 1.25; color: var(--espresso); }
.pn-link:hover .pn-title { color: var(--gold-ink); }
