/* =========================================================
   Anniks Beauty — Landing Page
   Palette: Coastal Teal / Golden Mirage / Soft Nude / Luminous Pearl / Mist Blue
   ========================================================= */

:root{
  --teal:        #6d9f9c;
  --teal-deep:   #3f6664;
  --teal-ink:    #2b3f3d;
  --gold:        #d1a679;
  --gold-deep:   #b8874f;
  --nude:        #e6d5c3;
  --pearl:       #f4f3ec;
  --mist:        #d6dff1;
  --white:       #ffffff;
  --ink:         #33413f;
  --ink-soft:    #647573;

  /* header/title — 迷你簡特粗黑 (falls back to heavy Noto Sans SC for visitors without it) */
  --font-cn-serif: "迷你簡特粗黑", "MiniJianTeCuHei", "MI Jian Te Cu Hei", "Noto Sans SC", "PingFang SC", sans-serif;
  /* content — 思源黑体 (Source Han Sans = Noto Sans SC) */
  --font-cn-sans:  "思源黑体", "Source Han Sans SC", "Source Han Sans CN", "Noto Sans SC", "PingFang SC", sans-serif;
  /* english headers */
  --font-en:       "DM Serif Display", "Georgia", serif;

  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 88px; }
body{
  margin:0;
  font-family: var(--font-cn-sans);
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.7;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-weight:600; }
p{ margin:0; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.serif-cn{ font-family: var(--font-cn-serif); }

.eyebrow{
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--teal-deep);
  margin: 0 0 14px;
  display:block;
}
.eyebrow--onhero{ color: rgba(255,255,255,.92); }

.dot{ color: var(--gold-deep); }

.section-title{
  font-family: var(--font-cn-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.35;
  font-weight: 700;
  color: var(--teal-ink);
  margin: 0 0 20px;
}

.lede{ font-size: 17px; color: var(--ink); max-width: 46ch; }
.body-copy{ margin-top:14px; color: var(--ink-soft); max-width: 46ch; }

.section{ padding: 50px 0; }
.section--tint{ background: linear-gradient(180deg, var(--pearl), #eee9df 60%, var(--pearl)); }

.section-head{ max-width: 640px; margin: 0 auto 56px; text-align:center; }
.section-head .eyebrow{ text-align:center; }

/* reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-cn-sans);
  font-weight:600; font-size:15px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary{ background: var(--teal); color: var(--white); }
.btn-primary:hover{ background: var(--teal-deep); transform: translateY(-2px); }
.btn-lg{ padding: 18px 38px; font-size:16px; }
.btn-sm{ padding: 10px 20px; font-size:13px; }
.btn-ghost-onhero{
  color: var(--white); border-color: rgba(255,255,255,.55);
  padding: 15px 28px; border-radius:999px;
}
.btn-ghost-onhero:hover{ background: rgba(255,255,255,.14); border-color: var(--white); }
.icon-wa{ width:17px; height:17px; fill: currentColor; flex-shrink:0; }

.badge{
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing:.03em;
  padding: 6px 16px;
  border-radius: 999px;
}
.badge--gold{ background: var(--gold); color: var(--white); }
.badge--outline{ border:1px solid var(--gold-deep); color: var(--gold-deep); display:inline-block; margin-bottom:10px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .3s var(--ease);
  padding: 20px 0;
}
.site-header.is-scrolled{
  background: rgba(244,243,236,.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(43,63,61,.08);
  padding: 12px 0;
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand-logo{ height: 42px; width:auto; transition: filter .3s var(--ease); }
.site-header:not(.is-scrolled) .brand-logo{ filter: brightness(0) invert(1); }

.main-nav{ display:flex; gap:34px; }
.main-nav a{
  font-size: 14.5px; font-weight:500; color: var(--ink);
  position:relative; padding: 4px 0;
}
.site-header:not(.is-scrolled) .main-nav a{ color: var(--white); }
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1px;
  background: currentColor; transition: right .35s var(--ease);
}
.main-nav a:hover::after{ right:0; }

.nav-actions{ display:flex; align-items:center; gap:16px; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:6px; }
.nav-toggle span{ width:22px; height:2px; background: var(--ink); transition: all .3s var(--ease); }
.site-header:not(.is-scrolled) .nav-toggle span{ background: var(--white); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex; align-items:flex-end;
  overflow:hidden;
  padding: 120px 0 84px;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media video{ width:100%; height:100%; object-fit:cover; object-position: 50% 22%; display:block; }
.hero-scrim{
  position:absolute; inset:0;
  background:
    radial-gradient(130% 100% at 15% 100%, rgba(18,28,26,.9) 0%, rgba(18,28,26,.55) 34%, rgba(18,28,26,0) 66%),
    linear-gradient(180deg, rgba(18,28,26,.45) 0%, rgba(18,28,26,.2) 30%, rgba(18,28,26,.72) 100%);
}
.hero-blob{ position:absolute; border-radius:50%; filter: blur(2px); opacity:.4; z-index:1; }
.hero-blob--gold{ width:240px; height:240px; background:var(--gold); top:12%; right:7%; border-radius:42% 58% 63% 37% / 41% 44% 56% 59%; }
.hero-blob--mist{ width:180px; height:180px; background:var(--mist); bottom:24%; left:5%; border-radius:63% 37% 30% 70% / 50% 45% 55% 50%; opacity:.3; }

.hero > .container{ width:100%; }
.hero-content{ position:relative; z-index:2; color: var(--white); max-width: 660px; text-align:left; }
.hero-content .eyebrow--onhero,
.hero-content .hero-title,
.hero-content .hero-sub{ text-shadow: 0 4px 24px rgba(10,18,17,.55), 0 1px 4px rgba(10,18,17,.7); }
.hero-title{
  font-size: clamp(40px, 6.2vw, 82px);
  line-height:1.18;
  font-weight:700;
  margin: 6px 0 24px;
}
.hero-title .serif-cn{ display:block; }
.hero-sub{ font-size: clamp(16px,1.7vw,20px); max-width: 40ch; color: rgba(255,255,255,.9); margin-bottom: 36px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; }

.scroll-cue{
  position:absolute; left:50%; bottom:32px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.7); border-radius: 20px; z-index:2;
}
.scroll-cue span{
  position:absolute; top:8px; left:50%; width:4px; height:4px; margin-left:-2px;
  background: var(--white); border-radius:50%;
  animation: scrollcue 1.8s infinite var(--ease);
}
@keyframes scrollcue{ 0%{ opacity:1; transform: translateY(0);} 70%{opacity:0; transform: translateY(16px);} 100%{opacity:0;} }

/* =========================================================
   SPLIT LAYOUT (image + copy)
   ========================================================= */
.split{
  display:grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items:center;
  margin-bottom: 64px;
}
.split--reverse .split-media{ order:2; }
.split--reverse .split-copy{ order:1; }

.split-media{ position:relative; }
.split-media img{ border-radius: var(--radius-lg); width:100%; aspect-ratio: 4/5; object-fit:cover; }
.media-blob{ position:absolute; z-index:-1; border-radius:50%; opacity:.7; filter: blur(1px); }
.media-blob--nude{ width:170px; height:170px; background:var(--nude); bottom:-40px; left:-40px; border-radius:47% 53% 61% 39% / 44% 49% 51% 56%; }
.media-blob--teal{ width:190px; height:190px; background:var(--teal); opacity:.28; top:-36px; right:-36px; border-radius:60% 40% 35% 65% / 55% 40% 60% 45%; }
.media-blob--gold{ width:160px; height:160px; background:var(--gold); opacity:.4; bottom:-30px; right:-30px; border-radius:42% 58% 63% 37% / 41% 44% 56% 59%; }

.split-copy{ max-width: 480px; }

/* Vision banner — the big statement */
.vision-banner{
  position: relative;
  overflow:hidden;
  background: var(--teal-ink);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  margin-bottom: 24px;
  text-align:center;
}
.vision-blob{
  position:absolute; width:340px; height:340px; right:-90px; top:-110px;
  background: var(--teal); opacity:.35; border-radius:42% 58% 63% 37% / 41% 44% 56% 59%;
}
.vision-banner .eyebrow{ position:relative; text-align:center; font-size: 17px; }
.vision-statement{
  position:relative;
  font-family: var(--font-cn-serif);
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.55;
  color: var(--white);
  max-width: 20ch;
  margin: 6px auto 0;
}

/* Pillars (mission/values/manifesto) */
.pillars{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 56px;
}
.pillar-card{
  position:relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: 0 18px 40px -30px rgba(43,63,61,.35);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pillar-card:hover{ transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(43,63,61,.45); }
.pillar-icon{
  display:flex; align-items:center; justify-content:center;
  width: 46px; height: 46px; margin-bottom:18px;
  border-radius:50%; background: var(--pearl); color: var(--teal-deep);
}
.pillar-icon svg{ width:22px; height:22px; }
.pillar-tag{
  display:block; font-family: var(--font-en); font-size:16px;
  color: var(--gold-deep); letter-spacing:.04em; margin-bottom:12px;
}
.pillar-card p{ font-size:15px; color: var(--ink); }
.value-chips{ display:flex; flex-wrap:wrap; gap:8px; }
.value-chips span{
  font-size:13px; padding:7px 16px; border-radius:999px;
  background: var(--pearl); color: var(--teal-deep); border:1px solid var(--nude);
  font-weight:600;
}
.pillar-card--manifesto{ background: var(--gold); }
.pillar-card--manifesto .pillar-tag{ color: rgba(255,255,255,.85); }
.pillar-quote-mark{
  position:absolute; top:8px; right:24px;
  font-family: var(--font-cn-serif); font-size: 80px; line-height:1;
  color: rgba(255,255,255,.3);
}
.pillar-manifesto-text{
  position:relative; font-family: var(--font-cn-serif); font-size:17px;
  color: var(--white); line-height:1.6;
}

.team-feature{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 50px -30px rgba(43,63,61,.4);
}
.team-feature img{ width:100%; height:auto; max-height: 620px; object-fit:cover; object-position: 50% 22%; }
.team-feature-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 48px 40px 32px;
  background: linear-gradient(0deg, rgba(43,63,61,.82) 0%, rgba(43,63,61,.35) 60%, rgba(43,63,61,0) 100%);
}
.team-feature-caption .eyebrow{ color: var(--gold); margin-bottom:8px; }
.team-feature-caption p{ color: var(--white); font-size: 17px; max-width: 46ch; }

/* Steps (method) */
.steps{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 20px 0 56px;
}
.step-card{
  background: var(--white); border-radius: var(--radius-md);
  padding: 34px 28px; position:relative;
  box-shadow: 0 18px 40px -30px rgba(43,63,61,.35);
}
.step-no{
  font-family: var(--font-en); font-size: 34px; color: var(--nude);
  font-weight:600; display:block; margin-bottom: 10px;
}
.step-card h3{ font-family: var(--font-cn-serif); font-size:19px; color: var(--teal-ink); margin-bottom:10px; }
.step-card p{ font-size:14.5px; color: var(--ink-soft); }

/* =========================================================
   SERVICES
   ========================================================= */
.service-row{
  display:grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items:center;
  padding: 56px 0; border-bottom: 1px solid rgba(43,63,61,.1);
}
.service-row:last-of-type{ border-bottom:none; padding-bottom:0; }
.service-row:first-of-type{ padding-top:0; }
.service-row--reverse{ direction: rtl; }
.service-row--reverse > *{ direction: ltr; }

.service-media{ position:relative; }
.service-media img{ border-radius: var(--radius-lg); width:100%; aspect-ratio: 5/4; object-fit:cover; }
.service-media .badge{ position:absolute; top:20px; left:20px; }

.service-index{
  font-family: var(--font-en); font-size:13px;
  color: var(--gold-deep); letter-spacing:.03em; display:block; margin-bottom:10px;
}
.service-copy h3{ font-family: var(--font-cn-serif); font-size: clamp(24px,2.6vw,32px); color: var(--teal-ink); margin-bottom: 8px; }
.service-duration{
  display:inline-block; font-size:13px; color: var(--teal-deep);
  border:1px solid var(--teal); border-radius:999px; padding:4px 14px; margin-bottom:18px;
}
.service-copy > p{ margin-bottom: 16px; color: var(--ink); font-size:15px; }
.service-suited{ font-size:14.5px; color: var(--ink-soft); margin-bottom:18px !important; }
.service-results{ display:flex; flex-direction:column; gap:10px; }
.service-results li{
  position:relative; padding-left:22px; font-size:14.5px; color: var(--ink);
}
.service-results li::before{
  content:""; position:absolute; left:0; top:8px; width:8px; height:8px;
  background: var(--gold); border-radius:50%;
}

/* =========================================================
   STORIES / BEFORE-AFTER GALLERY (sliding)
   ========================================================= */
#stories .section-head{ max-width: none; }
#stories .section-title{ white-space: nowrap; }
.gallery-slider{ position:relative; }
.gallery-track{
  display:flex; align-items:stretch; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory;
  scroll-behavior:smooth; scrollbar-width:none; -webkit-overflow-scrolling:touch;
  height: clamp(240px, 32vw, 400px);
  padding: 4px 4px 12px;
}
.gallery-track::-webkit-scrollbar{ display:none; }
.gallery-item{
  display:block; position:relative; border-radius: var(--radius-lg); overflow:hidden;
  flex: 0 0 auto; height:100%; scroll-snap-align:start;
  box-shadow: 0 18px 40px -30px rgba(43,63,61,.35);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gallery-item:hover{ transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(43,63,61,.45); }
.gallery-item img{ height:100%; width:auto; display:block; }

.gallery-nav{
  position:absolute; top:50%; transform: translateY(-50%);
  width:48px; height:48px; border-radius:50%; border:none; cursor:pointer;
  background: var(--white); color: var(--teal-deep);
  box-shadow: 0 12px 30px -14px rgba(43,63,61,.5);
  display:flex; align-items:center; justify-content:center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.gallery-nav:hover{ background: var(--teal); color: var(--white); }
.gallery-nav svg{ width:20px; height:20px; }
.gallery-nav--prev{ left:-22px; }
.gallery-nav--next{ right:-22px; }

/* =========================================================
   VIDEO TESTIMONIALS
   ========================================================= */
.video-testi-row{
  display:flex; flex-direction:column; align-items:center; gap:36px;
  padding: 56px 0; border-bottom: 1px solid rgba(43,63,61,.1);
}
.video-testi-row:first-of-type{ padding-top: 0; }
.video-testi-row:last-of-type{ border-bottom:none; padding-bottom:0; }
.video-testi-media{
  position:relative; width:100%; max-width: 820px; border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: 0 18px 40px -30px rgba(43,63,61,.35); background: var(--ink);
}
.video-testi-media video{ width:100%; aspect-ratio: 16/9; display:block; }
.video-testi-copy{ width:100%; max-width: 820px; }
.video-testi-copy h3{
  font-family: var(--font-cn-serif); font-size: clamp(20px,2.2vw,26px);
  color: var(--teal-ink); margin-bottom: 18px; line-height:1.4; text-align:center;
}
.video-testi-copy p{ font-size:14.5px; color: var(--ink); line-height:1.85; margin-bottom:14px; }
.video-testi-copy p:last-child{ margin-bottom:0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list{ margin-top: 28px; display:flex; flex-direction:column; }
.faq-item{ border-bottom: 1px solid rgba(43,63,61,.15); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  background:none; border:0; cursor:pointer; text-align:left;
  padding: 22px 0; font-size:16.5px; font-weight:600; color: var(--teal-ink);
  font-family: var(--font-cn-sans);
}
.faq-icon{ position:relative; width:18px; height:18px; flex-shrink:0; }
.faq-icon::before, .faq-icon::after{
  content:""; position:absolute; background: var(--teal); border-radius:2px;
  transition: transform .3s var(--ease);
}
.faq-icon::before{ width:100%; height:2px; top:50%; left:0; margin-top:-1px; }
.faq-icon::after{ width:2px; height:100%; left:50%; top:0; margin-left:-1px; }
.faq-q[aria-expanded="true"] .faq-icon::after{ transform: rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a p{ padding-bottom: 22px; color: var(--ink-soft); font-size:14.5px; max-width:60ch; }

/* =========================================================
   LOCATIONS
   ========================================================= */
.branch-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; }
.branch-card{
  background: var(--white); border-radius: var(--radius-md);
  padding: 28px 24px; box-shadow: 0 18px 40px -30px rgba(43,63,61,.35);
}
.branch-card h3{ font-family: var(--font-cn-serif); font-size:17px; color: var(--teal-ink); margin-bottom:12px; }
.branch-addr{ font-size:13.5px; color: var(--ink-soft); margin-bottom:16px; min-height: 60px; }
.branch-tel{ font-size:14px; font-weight:600; color: var(--teal-deep); border-bottom:1px solid var(--teal); padding-bottom:2px; }
.branch-card--soon{ background: var(--nude); }

/* =========================================================
   CTA / BOOKING
   ========================================================= */
.cta{ position:relative; padding: 130px 0; overflow:hidden; }
.cta-media{ position:absolute; inset:0; }
.cta-media img{ width:100%; height:100%; object-fit:cover; object-position: 50% 25%; }
.hero-scrim--cta{ background: linear-gradient(120deg, rgba(43,63,61,.9) 20%, rgba(43,63,61,.35) 100%); }
.cta-content{ position:relative; z-index:2; color: var(--white); max-width: 640px; }
.cta-title{ font-family: var(--font-cn-serif); font-size: clamp(28px,3.6vw,44px); line-height:1.4; margin-bottom:34px; }
.cta-title .dot{ color: var(--gold); }
.cta-info{ display:flex; gap:48px; margin-bottom:38px; flex-wrap:wrap; }
.cta-info-label{ display:block; font-family: var(--font-en); font-size:12.5px; color: var(--gold); margin-bottom:6px; }
.cta-info > div{ font-size:15px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--teal-ink); color: rgba(244,243,236,.85); padding: 72px 0 0; }
.footer-inner{ display:flex; justify-content:space-between; gap:60px; padding-bottom:56px; border-bottom:1px solid rgba(244,243,236,.15); flex-wrap:wrap; }
.footer-logo{ height:24px; filter: brightness(0) invert(1); margin-bottom:14px; }
.footer-tagline{ font-family: var(--font-en); font-size:14px; color: var(--gold); }
.footer-cols{ display:flex; gap:64px; flex-wrap:wrap; }
.footer-col h4{ font-size:13px; letter-spacing:.05em; color: var(--gold); margin-bottom:16px; font-weight:600; }
.footer-col{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color: rgba(244,243,236,.85); }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{ padding: 22px 28px; font-size:12.5px; color: rgba(244,243,236,.5); }

/* =========================================================
   BLOG / SCE CONTENT SURFACE
   ========================================================= */
.blog-main{
  padding-top: 82px;
  background: var(--pearl);
}
.blog-hero{
  padding: 72px 0 34px;
  background: linear-gradient(180deg, #fffdf7 0%, var(--pearl) 100%);
}
.blog-hero .lede{
  max-width: 66ch;
}
.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.blog-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: 0 18px 40px -30px rgba(43,63,61,.35);
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.blog-card-media{
  display:block;
  aspect-ratio: 4/3;
  overflow:hidden;
  background: var(--nude);
}
.blog-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .45s var(--ease);
}
.blog-card:hover .blog-card-media img{ transform: scale(1.04); }
.blog-card-body{
  padding: 24px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  flex:1;
}
.blog-card-meta{
  display:block;
  font-size:12.5px;
  font-weight:700;
  color: var(--gold-deep);
}
.blog-card h2{
  font-family: var(--font-cn-serif);
  font-size: 20px;
  line-height:1.45;
  color: var(--teal-ink);
}
.blog-card p{
  font-size:14.5px;
  color: var(--ink-soft);
  line-height:1.75;
}
.blog-card-link,
.blog-back{
  margin-top:auto;
  font-size:14px;
  font-weight:700;
  color: var(--teal-deep);
}
.blog-article-hero{
  padding: 70px 0 44px;
  background: linear-gradient(180deg, #fffdf7 0%, var(--pearl) 100%);
}
.blog-article-hero h1{
  font-family: var(--font-cn-serif);
  font-size: clamp(30px, 4vw, 52px);
  line-height:1.25;
  color: var(--teal-ink);
  max-width: 980px;
  margin: 12px 0 18px;
}
.blog-article-hero p:last-child{
  max-width: 760px;
  font-size:17px;
  color: var(--ink-soft);
}
.blog-article-shell{
  max-width: 920px;
  padding-bottom: 96px;
}
.blog-article-image{
  width:100%;
  aspect-ratio: 16/9;
  object-fit:cover;
  border-radius: var(--radius-lg);
  margin: 8px 0 42px;
  box-shadow: 0 24px 50px -30px rgba(43,63,61,.42);
}
.blog-prose{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 18px 40px -30px rgba(43,63,61,.35);
}
.blog-prose h2{
  font-family: var(--font-cn-serif);
  color: var(--teal-ink);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height:1.4;
  margin: 34px 0 12px;
}
.blog-prose h2:first-child{ margin-top:0; }
.blog-prose p,
.blog-prose li{
  font-size:16px;
  color: var(--ink);
  line-height:1.9;
}
.blog-prose p{ margin-bottom:18px; }
.blog-prose ul,
.blog-prose ol{
  list-style:disc;
  padding-left: 1.4rem;
  margin: 0 0 22px;
}
.blog-prose strong{ color: var(--teal-ink); }
.blog-prose a{ color: var(--teal-deep); border-bottom:1px solid var(--teal); }
.blog-cta{
  margin-top: 36px;
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--teal-ink);
  color: var(--white);
}
.blog-cta .eyebrow{ color: var(--gold); margin-bottom:8px; }
.blog-cta h2{
  font-family: var(--font-cn-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom:10px;
}
.blog-cta p{
  color: rgba(244,243,236,.86);
  margin-bottom:22px;
  max-width: 64ch;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .split, .service-row{ grid-template-columns: 1fr; gap:32px; }
  .hero{ padding-top: 130px; }
  .split--reverse .split-media{ order:0; }
  .split--reverse .split-copy{ order:0; }
  .service-row--reverse{ direction: ltr; }
  .pillars{ grid-template-columns: repeat(2,1fr); }
  .steps{ grid-template-columns: 1fr; }
  .branch-grid{ grid-template-columns: repeat(2,1fr); }
  .blog-grid{ grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gallery-nav--prev{ left:8px; }
  .gallery-nav--next{ right:8px; }
  .footer-inner{ flex-direction:column; gap:32px; }
}

@media (max-width: 760px){
  .main-nav{
    position: fixed; inset: 72px 0 0 0; background: var(--pearl);
    flex-direction:column; padding: 30px 28px; gap:6px;
    transform: translateY(-12px); opacity:0; pointer-events:none;
    transition: all .35s var(--ease);
  }
  .main-nav.is-open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .main-nav a{ color: var(--ink) !important; font-size:20px; padding:14px 0; border-bottom:1px solid rgba(43,63,61,.1); }
  .nav-toggle{ display:flex; }
  .nav-actions .btn-sm span{ display:none; }

  .section{ padding: 76px 0; }
  .vision-banner{ padding: 48px 28px; }
  .pillars{ grid-template-columns: 1fr; }
  .branch-grid{ grid-template-columns: 1fr; }
  .blog-grid{ grid-template-columns: 1fr; }
  .blog-main{ padding-top: 72px; }
  .blog-hero,
  .blog-article-hero{ padding: 52px 0 30px; }
  .blog-prose{ padding: 26px 22px; }
  .blog-cta{ padding: 28px 22px; }
  #stories .section-title{ white-space: normal; }
  .gallery-nav{ display:none; }
  .team-strip{ flex-direction:column; text-align:center; }
  .team-strip img{ width:100%; height:160px; }
  .cta-info{ gap:28px; }
}
