/* ============================================================
   Jacob AcuBalance v27 — Design System
   jacobclinic.com
   ============================================================ */

/* --- 1. TOKENS -------------------------------------------- */
:root {
  --cream:        #f7f2e8;
  --cream2:       #fffaf0;
  --green:        #073f35;
  --green2:       #0d6b55;
  --navy:         #0b3159;
  --gold:         #b5832f;
  --soft-gold:    #b88a3a;
  --burgundy:     #8b1e2d;
  --ink:          #18221f;
  --muted:        #5d6863;
  --line:         #e6dccb;
  --white:        #fffdf8;
  --sage:         #e8f0ec;
  --sage2:        #d4e6db;
  --green-light:  #f0f7f4;
  --gold-light:   #fdf6e8;
  --shadow-soft:  0 4px 24px rgba(7,63,53,.07);
  --shadow-med:   0 12px 48px rgba(7,63,53,.11);
  --shadow-str:   0 24px 72px rgba(7,63,53,.16);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
}

/* --- 2. RESET & BASE -------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Outfit, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* --- 3. LAYOUT -------------------------------------------- */
.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

/* --- 4. TOPBAR -------------------------------------------- */
.topbar {
  background: var(--green);
  color: #fff;
  font-size: .88rem;
  letter-spacing: .01em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 9px 0;
}
.topbar a { text-decoration: none; color: rgba(255,255,255,.9); transition: color .2s; }
.topbar a:hover { color: #fff; }

/* --- 5. NAV ----------------------------------------------- */
nav {
  position: sticky;
  top: 0;
  background: rgba(255,253,248,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(7,63,53,.10); }

.nav-inner {
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand-row img { width: 58px; height: 58px; object-fit: contain; }
.brand-text strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.48rem;
  color: var(--green);
  line-height: 1;
}
.brand-text span {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  color: var(--green);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 22px;
  background: var(--green);
  color: #fff !important;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(7,63,53,.18);
  transition: all .25s ease;
}
.nav-cta:hover { background: var(--green2); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(7,63,53,.22); }
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.6rem;
  color: var(--green);
  cursor: pointer;
  padding: 4px;
}

/* --- 6. BUTTONS ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
}
.btn.primary {
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(7,63,53,.18);
}
.btn.primary:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(7,63,53,.22); }
.btn.secondary {
  background: #fff;
  color: var(--green);
  border-color: var(--line);
}
.btn.secondary:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* --- 7. TYPOGRAPHY ---------------------------------------- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--green);
  line-height: 1.06;
  margin-bottom: 16px;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }
.section-head h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); max-width: 680px; margin-left: auto; margin-right: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 900;
  margin-bottom: 14px;
}

/* --- 8. HERO ---------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #fffdf4 0%, #fff8e8 45%, #f2ede0 100%);
  padding: 80px 0 56px;
  min-height: calc(100vh - 88px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,.95), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(13,107,85,.07), transparent 30%);
  pointer-events: none;
}
.hero .container { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-copy { padding: 24px 0; }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: -.03em;
  line-height: 1.0;
  margin-bottom: 22px;
}
.hero .eyebrow {
  color: var(--green);
  font-size: .9rem;
  letter-spacing: .26em;
  margin-bottom: 28px;
}
.gold-rule { width: 52px; height: 2px; background: var(--soft-gold); margin: 0 0 26px; }

.hero p.lead {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--burgundy);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  max-width: 640px;
  margin-bottom: 20px;
}
.hero-body {
  font-size: 1.06rem;
  color: #24302d;
  line-height: 1.78;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* Hero visual */
.hero-visual { position: relative; min-height: 580px; }
.hero-visual img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 5%;
  border-radius: 16px;
  box-shadow: var(--shadow-str);
}
.credential-card {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  width: 100%;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(230,220,203,.9);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 18px 24px;
  box-shadow: var(--shadow-med);
}
.credential-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.credential-card p { margin: 3px 0; color: #26312e; font-size: .9rem; line-height: 1.5; }

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 36px;
  box-shadow: var(--shadow-med);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.trust-pill--highlight {
  background: linear-gradient(135deg, #f0f7f4, #e8f5ee);
  border-right: 1px solid var(--sage2) !important;
}
.trust-pill--highlight strong { color: var(--green2); }
.trust-icon--gold { background: var(--gold-light) !important; border-color: #eadbc1 !important; font-size: 1.4rem; }
/* Nav highlight link */
.nav-links .nav-highlight {
  color: var(--green2) !important;
  font-weight: 900 !important;
  background: var(--green-light);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--sage2);
  font-size: .84rem !important;
  letter-spacing: .01em;
  transition: all .2s ease;
}
.nav-links .nav-highlight:hover { background: var(--sage2); }
.nav-links .nav-highlight::after { display: none !important; }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}
.trust-pill:last-child { border-right: 0; }
.trust-pill:hover { background: var(--green-light); }
.trust-icon {
  width: 54px; height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold-light);
  border: 1px solid #eadbc1;
  color: var(--soft-gold);
  font-size: 1.45rem;
  flex-shrink: 0;
}
.trust-pill strong { display: block; color: #112d27; font-weight: 800; font-size: .96rem; }
.trust-pill span { display: block; color: var(--muted); font-size: .88rem; }

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.scroll-indicator span {
  display: block;
  width: 28px; height: 28px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: .5;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .4; }
  50% { transform: rotate(45deg) translateY(6px); opacity: .8; }
}

/* --- 9. SECTIONS ------------------------------------------ */
section { padding: 88px 0; }
.section-head { text-align: center; margin: 0 auto 48px; max-width: 820px; }
.section-head p { font-size: 1.16rem; color: var(--muted); margin-top: 16px; }

.soft  { background: var(--cream); }
.sage  { background: var(--sage); }
.light { background: var(--green-light); }

/* --- 10. CARDS -------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-med); }
.card:hover::before { transform: scaleX(1); }

.card.feature { background: linear-gradient(180deg, #fff, var(--cream2)); }

.icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gold-light);
  border: 1px solid #eadbc1;
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p, .card ul { color: var(--muted); }
.card ul { padding-left: 18px; margin: 12px 0 0; }
.card ul li { margin-bottom: 4px; }

/* Category color pills for blog */
.post-meta {
  display: inline-block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: var(--gold-light);
  border-radius: 999px;
  border: 1px solid #eadbc1;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
  transition: gap .2s ease;
}
.more:hover { gap: 8px; }

/* --- 11. GRIDS -------------------------------------------- */
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
/* Programs 6-card 2×3 grid */
.grid-programs { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* --- 12. PHILOSOPHY BAND ---------------------------------- */
.philosophy {
  background: linear-gradient(110deg, var(--green), #0a5547);
  color: #fff;
  padding: 88px 0;
}
.philosophy h2 { color: #fff; }
.philosophy p { color: rgba(255,255,255,.82); font-size: 1.1rem; line-height: 1.8; }
.quote {
  font-family: 'Playfair Display';
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1.12;
  color: #fff;
  font-style: italic;
}

/* --- 13. CTA BAND ----------------------------------------- */
.cta-band {
  background: linear-gradient(110deg, var(--navy), var(--green));
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; }

/* --- 14. LOCATIONS ---------------------------------------- */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.loc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  transition: box-shadow .2s ease;
}
.loc:hover { box-shadow: var(--shadow-med); }
.loc h3 { font-size: 1.2rem; margin-bottom: 8px; }
.loc p { color: var(--muted); font-size: .95rem; }

/* --- 15. PAGE HERO (inner pages) -------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--cream), #fff);
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb { font-size: .84rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--green); }

/* --- 16. PROSE LAYOUT (service pages) -------------------- */
.layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 36px; }
.prose {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.prose h2 { font-size: 1.9rem; margin-top: 36px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.prose ul { padding-left: 20px; }
.prose ul li { margin-bottom: 6px; }

.sidebox {
  position: sticky;
  top: 108px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.sidebox h3 { font-size: 1.2rem; margin-bottom: 12px; }
.sidebox p { color: var(--muted); font-size: .94rem; margin-bottom: 10px; }
.sidebox hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }

.notice {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: #5a3d10;
  font-size: .94rem;
  margin: 24px 0;
  line-height: 1.7;
}

/* --- 17. ABOUT PAGE --------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 48px; align-items: start; }
.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-str);
}
.about-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.credential-list { list-style: none; padding: 0; margin: 20px 0; }
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .96rem;
}
.credential-list li:last-child { border-bottom: 0; }
.credential-list .badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- 18. CONTACT PAGE ------------------------------------- */
.booking-placeholder {
  background: var(--sage);
  border: 1px dashed var(--sage2);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  margin-bottom: 36px;
  position: relative;
}
.booking-placeholder .coming-soon {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.booking-placeholder h2 { font-size: 1.6rem; margin-bottom: 10px; }
.booking-placeholder p { color: var(--muted); }

/* --- 19. DISCLAIMER / NOTICE PAGES ------------------------ */
.legal-page { max-width: 760px; margin: 0 auto; }
.legal-page h2 { font-size: 1.5rem; margin-top: 36px; margin-bottom: 12px; color: var(--green); }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.82; margin-bottom: 12px; font-size: .97rem; }
.legal-page ul { padding-left: 20px; }
.legal-highlight {
  background: var(--green-light);
  border: 1px solid var(--sage2);
  border-radius: var(--r-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.legal-highlight p { margin-bottom: 4px; color: var(--ink); }

/* --- 20. KOREAN LANDING PAGE ------------------------------ */
.korean-hero {
  background: linear-gradient(135deg, var(--cream), var(--cream2));
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.korean-hero h1 {
  font-family: 'Noto Sans KR', Outfit, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 16px;
}
.korean-hero .sub { color: var(--muted); font-size: 1.1rem; margin-bottom: 8px; }
.korean-hero .locations-pill {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 6px 20px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-top: 12px;
}
.kakao-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FEE500;
  color: #3A1D1D;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(254,229,0,.4);
  transition: all .25s ease;
}
.kakao-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(254,229,0,.5); }
.kakao-icon { width: 24px; height: 24px; }
.korean-disclaimer {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  font-family: 'Noto Sans KR', sans-serif;
}

/* --- 21. BLOG --------------------------------------------- */
.article-list { display: grid; gap: 20px; }
.article-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.article-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-med); }
.article-row h3 { margin-bottom: 8px; font-size: 1.3rem; }
.article-row p { color: var(--muted); font-size: .95rem; }

/* --- 22. FOOTER ------------------------------------------- */
footer {
  background: #0a2e28;
  color: #fff;
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
footer h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}
footer a, footer p { color: rgba(255,255,255,.68); text-decoration: none; font-size: .9rem; line-height: 1.8; }
footer a:hover { color: rgba(255,255,255,.95); }
.footer-divider { border: 0; border-top: 1px solid rgba(181,131,47,.3); margin: 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom a { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .8rem;
  color: rgba(255,255,255,.65) !important;
  transition: all .2s ease;
  text-decoration: none;
}
.footer-social a:hover { background: rgba(255,255,255,.15); color: #fff !important; }
.legal {
  font-size: .76rem;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* --- 23. BACK TO TOP -------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(7,63,53,.3);
  opacity: 0;
  transform: translateY(12px);
  transition: all .3s ease;
  z-index: 50;
  display: grid;
  place-items: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green2); transform: translateY(-2px); }

/* --- 24. FAQ (service pages) ------------------------------ */
.faq { margin-top: 24px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--gold); }
.faq details[open] summary::after { content: '−'; }
.faq details[open] { background: var(--green-light); }
.faq details p { padding: 0 20px 16px; color: var(--muted); line-height: 1.75; }

/* --- 25. RESPONSIVE --------------------------------------- */
@media (max-width: 1000px) {
  .hero-grid, .layout, .grid-2, .footer-grid, .locations, .about-grid {
    grid-template-columns: 1fr;
  }
  .grid-5, .grid-3, .blog-grid { grid-template-columns: 1fr 1fr; }
  .grid-programs { grid-template-columns: 1fr 1fr; }
  .sidebox { position: static; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-pill { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-pill:last-child { border-bottom: 0; }
  .trust-pill:nth-child(odd) { border-right: 1px solid var(--line); }
  .hero { min-height: auto; padding-top: 52px; }
  .hero-visual { min-height: auto; }
  .hero-visual img { height: auto; max-height: 560px; }
  .credential-card { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-photo { max-width: 380px; }
}

@media (max-width: 720px) {
  .topbar .container { flex-direction: column; text-align: center; gap: 4px; font-size: .82rem; }
  .nav-inner { height: 74px; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 74px;
    background: var(--white);
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    gap: 6px;
    box-shadow: 0 12px 32px rgba(7,63,53,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a::after { display: none; }
  .mobile-toggle { display: block; }
  .brand-row img { width: 46px; height: 46px; }
  .brand-text strong { font-size: 1.1rem; }
  .grid-5, .grid-3, .blog-grid, .grid-programs { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .prose { padding: 26px 22px; }
  .hero { padding: 48px 0 36px; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.8rem); }
  .hero p.lead { font-size: clamp(1.25rem, 6vw, 1.9rem); }
  .hero-visual img { border-radius: 14px; }
  .credential-card {
    position: relative;
    left: auto; right: auto; bottom: auto;
    width: auto;
    margin: -32px 12px 0;
    padding: 18px 20px;
    border-radius: 10px;
  }
  .credential-card h3 { font-size: 1.45rem; }
  .trust-bar { grid-template-columns: 1fr; margin-top: 24px; }
  .trust-pill { border-right: 0 !important; padding: 20px; }
  .trust-pill:nth-child(odd) { border-right: 0 !important; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .locations { grid-template-columns: 1fr; }
  .booking-placeholder { padding: 26px 22px; }
  .booking-placeholder .coming-soon { position: static; display: inline-block; margin-bottom: 14px; }
}

/* --- 26. BLOG ARTICLE ENHANCED STYLES -------------------- */
.blog-article h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}
.blog-article h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--green2);
}
.blog-article p { color: #2e3d38; line-height: 1.85; margin-bottom: 18px; font-size: 1.02rem; }
.blog-article ul, .blog-article ol {
  padding-left: 22px;
  margin-bottom: 20px;
  color: #2e3d38;
}
.blog-article ul li, .blog-article ol li {
  margin-bottom: 8px;
  line-height: 1.78;
  font-size: 1.02rem;
}
.blog-article .lead-para {
  font-size: 1.15rem;
  color: var(--green);
  font-weight: 500;
  line-height: 1.78;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 28px;
}
/* In-article image */
.article-img {
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--shadow-med);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-img-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream), var(--green-light));
  padding: 40px 24px;
  min-height: 200px;
}
.article-img-icon { font-size: 4.5rem; }
.article-img-caption {
  width: 100%;
  background: rgba(7,63,53,.04);
  padding: 12px 20px;
  font-size: .84rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  border-top: 1px solid var(--line);
}
/* Key takeaway box */
.key-takeaway {
  background: var(--green-light);
  border: 1px solid var(--sage2);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin: 28px 0;
}
.key-takeaway strong {
  display: block;
  color: var(--green);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.key-takeaway ul { margin-bottom: 0; padding-left: 18px; }
.key-takeaway ul li { color: var(--ink); font-size: .97rem; }
/* Pull quote */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: var(--green);
  line-height: 1.4;
  font-style: italic;
  text-align: center;
  padding: 28px 32px;
  margin: 32px 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
/* Reading time badge */
.read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 22px;
}
