/* =========================================================
   Chinese Acupuncture & Herbology Clinic — redesign
   Design system + homepage styles
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* color — brand kit applied (green-led):
     sage-teal primary + purple/lavender secondary + terracotta warm accent */
  --paper:      #F6F2EA;   /* warm cream page background */
  --paper-2:    #EFE8DB;   /* alternating section tint */
  --paper-3:    #E7DECE;   /* deeper cream for cards */
  --ink:        #24302A;   /* deep pine-charcoal text */
  --ink-soft:   #5C665D;   /* muted body text */
  --jade:       #2B6457;   /* primary green — deep sage-teal (dark sibling of brand sage #96B4AD) */
  --jade-700:   #214F45;   /* darker green — bars / hover */
  --jade-050:   #E7EFEC;   /* faint sage tint */
  --sage:       #96B4AD;   /* brand sage-teal — decorative accents */
  --sage-soft:  #D3DCD3;   /* brand pale sage */
  --plum:       #6E5B9A;   /* brand purple — secondary accent */
  --plum-700:   #574780;   /* darker purple — hover */
  --lav:        #E7E7FF;   /* brand lavender — soft fills / on-dark buttons */
  --lav-050:    #F6F6FF;   /* near-white lavender */
  --lav-200:    #D1CFF0;   /* brand periwinkle — accents on dark bands */
  --clay:       #B65C3C;   /* terracotta — warm accent pop */
  --clay-700:   #98492D;
  --line:       rgba(36, 48, 42, 0.14);
  --white:      #FFFFFF;

  /* type — brand kit: Cambria for headings (via Gelasio webfont clone), Georgia for body.
     Sans kept for small UI chrome (buttons, eyebrows, badges); Nunito stays for the wordmark. */
  --serif: "Gelasio", Cambria, Georgia, "Times New Roman", serif;
  --body:  Georgia, Cambria, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wordmark: "Nunito", var(--sans);

  /* layout */
  --wrap: 1160px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 40px -24px rgba(36, 48, 42, 0.45);
  --shadow-sm: 0 8px 22px -16px rgba(36, 48, 42, 0.5);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0 0 .4em; }
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tint { background: var(--paper-2); }
.section--jade { background: var(--jade); color: #EAF3EC; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 .9rem;
}
.section--jade .eyebrow { color: var(--lav-200); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section--jade .section-head p { color: rgba(234, 243, 236, 0.82); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; white-space: nowrap;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-compact { display: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--jade); color: #F4FbF6; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--jade-700); }
.btn--clay { background: var(--clay); color: #FFF6F1; box-shadow: var(--shadow-sm); }
.btn--clay:hover { background: var(--clay-700); }
.btn--ghost { background: transparent; color: var(--jade); border-color: rgba(43, 100, 87, 0.35); }
.btn--ghost:hover { background: var(--jade-050); }
.btn--onjade { background: var(--lav); color: var(--plum-700); }
.btn--onjade:hover { background: var(--lav-050); }

/* ---------- Utility bar ---------- */
.util {
  background: var(--jade-700);
  color: #E7F0E9;
  font-size: .88rem;
  text-align: center;
}
.util .wrap { display: flex; align-items: center; justify-content: center; gap: 1.2rem; min-height: 42px; flex-wrap: wrap; }
.util strong { color: #fff; }
.util a { color: var(--lav-200); font-weight: 600; white-space: nowrap; }
.util a:hover { text-decoration: underline; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 242, 234, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark { flex: none; display: block; height: 48px; width: 48px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text b { font-family: var(--wordmark); font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em; color: var(--ink); }
.brand__text span { font-family: var(--wordmark); font-weight: 700; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--jade); }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { font-weight: 500; font-size: .98rem; color: var(--ink); position: relative; }
.nav__links a:hover { color: var(--jade); }
.nav__actions { display: flex; align-items: center; gap: .8rem; }
.nav__phone { font-weight: 600; color: var(--jade); white-space: nowrap; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
  padding-block: 80px 90px;
}
.hero__eyebrow { color: var(--clay); }
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.1rem);
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--jade); }
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 40ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero__note { font-size: .92rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; }
.hero__note svg { color: var(--jade); flex: none; }
.hero__media { position: relative; }
.hero__media .ph { min-height: 460px; border-radius: var(--radius-lg); }

/* ---------- Trust bar ---------- */
.trust { background: var(--jade); color: #E7F0E9; }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 30px 24px; }
.trust__item { text-align: center; }
.trust__item b { display: block; font-family: var(--serif); font-size: 1.7rem; color: #fff; line-height: 1; margin-bottom: .3rem; }
.trust__item span { font-size: .86rem; color: rgba(231, 240, 233, 0.82); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: .5rem;
  transition: transform .18s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--jade-050); color: var(--jade); margin-bottom: .6rem;
}
.pillar h3 { font-size: 1.4rem; margin: 0; }
.pillar p { color: var(--ink-soft); margin: .3rem 0 0; }
.pillar a { color: var(--clay); font-weight: 600; margin-top: .8rem; display: inline-flex; align-items: center; gap: .35rem; }
.pillar a:hover { gap: .6rem; }

/* ---------- About / practitioners ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about__media .ph { min-height: 420px; border-radius: var(--radius-lg); }
.about__lead { font-size: 1.15rem; }
.about__cred { color: var(--jade); font-weight: 600; font-size: .92rem; letter-spacing: .02em; margin: -.2rem 0 1.1rem; }
.staff { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.staff__card { text-align: center; }
.staff__photo.ph { min-height: 210px; border-radius: var(--radius); margin-bottom: 1rem; }
.staff__card b { display: block; font-family: var(--serif); font-size: 1.25rem; }
.staff__card .cred { font-size: .82rem; color: var(--jade); letter-spacing: .04em; margin-bottom: .5rem; }
.staff__card p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Dispensary (jade band) ---------- */
.disp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.disp__media .ph { min-height: 380px; border-radius: var(--radius-lg); background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 12px, rgba(255,255,255,.12) 12px 24px);
  border-color: rgba(255,255,255,.5); color: #EAF3EC; }
.disp__media .ph .ph__desc { color: rgba(234,243,236,.85); }
.disp__media .ph .ph__dim { background: rgba(255,255,255,.16); color: #fff; }
.disp__list { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0; }
.disp__list span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); padding: .35rem .85rem; border-radius: 999px; font-size: .9rem; }

/* ---------- Insurance ---------- */
.insurance__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.insurance__card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.insurance__card h3 { font-size: 1.5rem; }

/* ---------- Locations ---------- */
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.loc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.loc__map.ph { min-height: 190px; border-radius: 0; border: 0; border-bottom: 2px dashed rgba(43, 100, 87,.4); }
.loc__body { padding: 28px 30px 30px; }
.loc__body h3 { font-size: 1.5rem; margin-bottom: .2rem; }
.loc__since { color: var(--clay); font-size: .84rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.loc__row { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .7rem; color: var(--ink-soft); }
.loc__row svg { color: var(--jade); flex: none; margin-top: 3px; }
.loc__row a { color: var(--jade); font-weight: 600; }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .2s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post__img.ph { min-height: 180px; border-radius: 0; border: 0; border-bottom: 2px dashed rgba(43, 100, 87,.4); }
.post__body { padding: 24px; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post__date { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); }
.post h3 { font-size: 1.25rem; margin: 0; }
.post p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.post a.readmore { margin-top: auto; color: var(--jade); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--clay); color: #FFF6F1; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; }
.cta-band p { color: rgba(255, 246, 241, 0.9); max-width: 52ch; margin: 0 auto 1.6rem; font-size: 1.1rem; }
.cta-band .btn--onjade { background: #fff; color: var(--clay-700); }
.cta-band .btn--onjade:hover { background: #fdeee7; }

/* ---------- Footer ---------- */
.footer { background: var(--jade-700); color: #cfe0d5; padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: #fff; font-family: var(--sans); font-weight: 700; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: #cfe0d5; display: block; margin-bottom: .5rem; font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer__brand p { color: #a9c1b3; font-size: .95rem; max-width: 34ch; }
.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #cfe0d5;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.social a:hover { background: var(--plum); color: #fff; border-color: var(--plum); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; display: block; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .85rem; color: #9db6a8; }

/* Placed photos (replace the .ph placeholders) */
.media-img { width: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.hero__media .media-img { height: 500px; }
.about__media .media-img { height: 480px; }
.disp__media .media-img { height: 400px; }
@media (max-width: 720px) {
  .hero__media .media-img { height: 300px; }
  .about__media .media-img { height: 340px; }
  .disp__media .media-img { height: 280px; }
}

/* =========================================================
   PHOTO PLACEHOLDER COMPONENT
   Every .ph marks a spot where a real photo should be dropped in.
   Swap the whole <div class="ph"> for an <img> when photos arrive.
   ========================================================= */
.ph {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .55rem; text-align: center; padding: 26px;
  color: var(--jade-700);
  background:
    repeating-linear-gradient(45deg, rgba(43, 100, 87,.05) 0 12px, rgba(43, 100, 87,.10) 12px 24px);
  border: 2px dashed rgba(43, 100, 87, 0.45);
  border-radius: var(--radius);
}
.ph__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--clay); color: #fff;
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .55rem; border-radius: 6px;
}
.ph__icon { opacity: .8; }
.ph__label { font-weight: 700; font-size: .98rem; text-transform: uppercase; letter-spacing: .03em; }
.ph__desc { color: var(--ink-soft); font-size: .92rem; max-width: 32ch; margin: 0; }
.ph__dim {
  font-size: .76rem; font-weight: 600; color: var(--jade);
  background: rgba(43, 100, 87, 0.10); padding: .22rem .7rem; border-radius: 999px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .hero__inner, .about__grid, .disp__grid, .insurance__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { order: -1; }
  .pillars, .locations { grid-template-columns: 1fr; }
  .staff, .posts { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1040px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav[data-open="true"] .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 24px; box-shadow: var(--shadow-sm);
  }
  .nav { position: relative; }
}
@media (max-width: 480px) {
  .trust .wrap { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
@media (max-width: 600px) {
  /* Utility bar — tighter when it wraps */
  .util { font-size: .82rem; }
  .util .wrap { gap: .3rem 1rem; padding: 9px 20px; min-height: 0; }
  /* Compact header booking button + roomier wordmark */
  .btn-full { display: none; }
  .btn-compact { display: inline; }
  .nav__actions .btn--primary { padding: .58rem 1.05rem; font-size: .92rem; }
  .nav { gap: .5rem; }
  .brand { gap: .55rem; }
  .brand__text b { font-size: 1rem; }
  .brand__text span { font-size: .62rem; }
  /* Hero — tighter top gap, smaller placeholder */
  .hero__inner { padding-block: 20px 36px; }
  .hero__media .ph { min-height: 300px; }
  /* Subpage banners — tighter top on mobile */
  .page-hero { padding: 38px 0 30px; }
}

/* =========================================================
   SUBPAGE COMPONENTS
   ========================================================= */

/* Active nav link */
.nav__links a.is-active { color: var(--jade); font-weight: 600; }

/* Compact page banner */
.page-hero { padding: 60px 0 46px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; max-width: 62ch; margin: 0; }

/* Service groups & cards */
.svc-group { margin-bottom: 56px; }
.svc-group:last-child { margin-bottom: 0; }
.group-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 24px; }
.group-head h2 { font-size: 1.7rem; margin: 0; white-space: nowrap; }
.group-head .rule { flex: 1; height: 1px; background: var(--line); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .18s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-card h3 { font-size: 1.22rem; margin-bottom: .35rem; }
.svc-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.svc-card .badge {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--clay); margin-bottom: .6rem;
}

/* Condition chips inside cards */
.cond-list { list-style: none; margin: .8rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.cond-list li { font-size: .8rem; background: var(--jade-050); color: var(--jade-700); padding: .22rem .6rem; border-radius: 999px; }

/* Condition directory (grouped lists) */
.directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.directory h3 {
  font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--clay); margin-bottom: .6rem;
}
.directory ul { list-style: none; margin: 0; padding: 0; }
.directory li { color: var(--ink-soft); font-size: .93rem; padding: .28rem 0; border-bottom: 1px solid var(--line); }

/* Disclaimer note */
.note-disclaimer {
  background: var(--paper-3); border-left: 3px solid var(--clay); border-radius: 10px;
  padding: 20px 24px; font-size: .9rem; color: var(--ink-soft); margin-top: 40px;
}

/* Practitioner bios */
.bio { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; padding: 44px 0; border-top: 1px solid var(--line); }
.bio:first-of-type { border-top: 0; padding-top: 8px; }
.bio__photo.ph { min-height: 340px; border-radius: var(--radius); }
img.bio__photo { width: 100%; height: 380px; object-fit: cover; object-position: center 28%; border-radius: var(--radius); display: block; }
@media (max-width: 920px) { img.bio__photo { max-width: 320px; height: 340px; } }
.bio__role { color: var(--clay); font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.bio__name { font-size: 1.8rem; margin-bottom: .15rem; }
.bio__cred { color: var(--jade); font-size: .85rem; letter-spacing: .03em; margin-bottom: 1.1rem; }
.bio__body p { color: var(--ink-soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; background: var(--paper); color: var(--ink); transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--jade); box-shadow: 0 0 0 3px var(--jade-050);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: .4rem; }
.form-success {
  display: none; background: var(--jade-050); border: 1px solid var(--jade); color: var(--jade-700);
  padding: 16px 18px; border-radius: 10px; margin-bottom: 18px; font-weight: 500;
}
.form-success.show { display: block; }
.contact-aside .aside-block { margin-bottom: 28px; }
.contact-aside h3 { font-size: 1.35rem; margin-bottom: .2rem; }
.contact-aside .loc__since { color: var(--clay); font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .8rem; }
.map-link {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  margin-top: 14px; padding: 16px 18px; border: 1.5px solid var(--line); border-radius: var(--radius);
  color: var(--jade); font-weight: 600; font-size: .95rem;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(43, 100, 87,.06) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(43, 100, 87,.06) 23px 24px),
    var(--jade-050);
  transition: transform .15s ease, border-color .2s ease, background-color .2s ease;
}
.map-link:hover { transform: translateY(-2px); border-color: var(--jade); }
.map-link svg { flex: none; }

/* Booking page */
.book-points { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; justify-content: center; margin-bottom: 30px; }
.book-point { display: flex; align-items: center; gap: .55rem; color: var(--ink-soft); font-size: .98rem; font-weight: 500; }
.book-point svg { color: var(--jade); flex: none; }
.book-card { max-width: 920px; margin: 0 auto; }
.book-note { text-align: center; color: var(--ink-soft); margin-top: 26px; font-size: .98rem; }
.book-note a { color: var(--jade); font-weight: 600; white-space: nowrap; }

/* Contact — three-options chooser */
.options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.option { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.option__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--jade-050); color: var(--jade); display: grid; place-items: center; margin-bottom: .9rem; }
.option h3 { font-size: 1.3rem; margin: 0 0 .3rem; }
.option p { color: var(--ink-soft); font-size: .96rem; margin: 0 0 1rem; flex: 1; }
.option .opt-link { color: var(--clay); font-weight: 600; font-size: .95rem; display: block; }
.option .opt-link + .opt-link { margin-top: .35rem; }

/* Responsive video embed (16:9) */
.video-embed { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Single article */
.article { max-width: 820px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; align-items: center; margin-bottom: 1rem; }
.article__meta .tag { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--clay); }
.article__meta .dot { color: var(--line); }
.article__meta .muted { color: var(--ink-soft); font-size: .92rem; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.6rem; }
.article__body { font-size: 1.14rem; margin-top: 2rem; }
.article__body p { margin-bottom: 1.15rem; color: var(--ink); }
.article__byline { display: flex; gap: 1rem; align-items: center; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.article__byline .avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--jade-050); color: var(--jade); display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 1.25rem; flex: none; }
.article__byline b { display: block; font-size: 1.02rem; }
.article__byline span { color: var(--ink-soft); font-size: .9rem; }

/* Featured post (homepage) */
.feature-post { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.feature-post__media { position: relative; min-height: 300px; display: grid; place-items: center; color: #eaf3ec; text-decoration: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.14), transparent 60%),
    var(--jade); }
.feature-post__play { display: grid; place-items: center; gap: .8rem; text-align: center; }
.feature-post__play .disc { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,.16); border: 1.5px solid rgba(255,255,255,.5); display: grid; place-items: center; transition: transform .18s ease, background .2s ease; }
.feature-post__media:hover .disc { transform: scale(1.06); background: rgba(255,255,255,.26); }
.feature-post__play span { font-weight: 600; font-size: .95rem; letter-spacing: .02em; }
.feature-post__body { padding: 44px; display: flex; flex-direction: column; }
.feature-post__body .post__date { color: var(--clay); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-bottom: .6rem; }
.feature-post__body h3 { font-size: 1.7rem; margin-bottom: .5rem; }
.feature-post__body p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.feature-post__body .btn { align-self: flex-start; margin-top: auto; }

/* Newsletter */
.newsletter { background: var(--plum); color: #f2effa; border-radius: var(--radius-lg); padding: 48px 40px; text-align: center; }
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(242,239,250,.85); max-width: 46ch; margin: 0 auto; }
.newsletter form { display: flex; gap: .6rem; max-width: 460px; margin: 1.4rem auto 0; }
.newsletter input { flex: 1; padding: .8rem 1.1rem; border-radius: 999px; border: 0; font: inherit; }
.newsletter .btn { flex: none; }

/* Subpage responsive */
@media (max-width: 920px) {
  .svc-grid, .directory { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 1fr; gap: 24px; }
  .bio__photo.ph { min-height: 260px; max-width: 320px; }
  .feature-post { grid-template-columns: 1fr; }
  .feature-post__media { min-height: 220px; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .svc-grid, .directory, .options { grid-template-columns: 1fr; }
  .newsletter form { flex-direction: column; }
  .field--row { grid-template-columns: 1fr; }
  .group-head h2 { white-space: normal; }
}
