:root {
  --bg: #f8f6ef;
  --paper: #fffdf6;
  --ink: #08241a;
  --muted: #64766d;
  --green-950: #031b12;
  --green-900: #06331f;
  --green-800: #0a4731;
  --green-700: #0b6b46;
  --green-600: #0c8c58;
  --green-400: #6bd17e;
  --cream: #f8f1dc;
  --gold: #e9c46a;
  --orange: #f4a261;
  --coral: #e76f51;
  --line: rgba(8, 36, 26, .12);
  --shadow: 0 28px 80px rgba(3, 27, 18, .14);
  --shadow-soft: 0 18px 45px rgba(3, 27, 18, .10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(107, 209, 126, .18), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(233, 196, 106, .22), transparent 26rem),
    linear-gradient(180deg, #fdfbf3 0%, var(--bg) 42%, #f6f0df 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: 112px 0; }
.skip-link {
  position: fixed; top: 14px; left: 14px; z-index: 9999;
  transform: translateY(-150%); background: var(--green-900); color: #fff;
  padding: 12px 18px; border-radius: 999px; transition: transform .25s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-bg { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 999px; filter: blur(4px); opacity: .7; animation: float 16s ease-in-out infinite; }
.orb-one { width: 420px; height: 420px; background: rgba(107, 209, 126, .13); left: -180px; top: 160px; }
.orb-two { width: 520px; height: 520px; background: rgba(233, 196, 106, .18); right: -220px; top: 20px; animation-delay: -5s; }
.orb-three { width: 360px; height: 360px; background: rgba(12, 140, 88, .10); right: 20%; bottom: -170px; animation-delay: -9s; }

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  padding: 16px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease, backdrop-filter .25s ease;
}
.header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 253, 246, .76);
  box-shadow: 0 14px 45px rgba(3, 27, 18, .10);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(8, 36, 26, .08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 240px; }
.brand-logo {
  width: 58px; height: 58px; border-radius: 18px; overflow: hidden;
  background: rgba(255, 255, 255, .8); box-shadow: var(--shadow-soft);
  display: grid; place-items: center; border: 1px solid rgba(8, 36, 26, .09);
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy strong { display: block; font-size: 1.02rem; letter-spacing: -.03em; }
.brand-copy small { display: block; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 5px; padding: 7px; border: 1px solid rgba(8, 36, 26, .08); border-radius: 999px; background: rgba(255, 253, 246, .55); backdrop-filter: blur(18px); }
.nav a { padding: 10px 15px; border-radius: 999px; color: rgba(8, 36, 26, .78); font-weight: 750; font-size: .92rem; transition: background .2s ease, color .2s ease; }
.nav a:hover, .nav a.is-active { background: var(--green-900); color: #fff; }
.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 18px; border-radius: 999px; font-weight: 850;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta { background: var(--green-900); color: #fff; box-shadow: 0 15px 35px rgba(6, 51, 31, .22); }
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 16px; background: var(--green-900); padding: 12px; }
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 5px; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 150px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 26, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 26, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--green-700); font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--green-600), var(--gold)); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 6.2vw, 6.8rem); line-height: .92; letter-spacing: -.075em; margin-bottom: 26px; max-width: 920px; }
h2 { font-size: clamp(2.2rem, 4vw, 4.4rem); line-height: .98; letter-spacing: -.065em; margin-bottom: 20px; }
h3 { letter-spacing: -.03em; }
.hero-lead, .section-heading p, .program-copy p, .tech-copy p, .faq-copy p, .contact-copy p { color: var(--muted); font-size: 1.1rem; line-height: 1.75; }
.hero-lead { max-width: 690px; font-size: clamp(1.1rem, 1.6vw, 1.32rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn-primary { background: linear-gradient(135deg, var(--green-900), var(--green-600)); color: #fff; box-shadow: 0 20px 42px rgba(6, 51, 31, .25); }
.btn-ghost { background: rgba(255, 253, 246, .8); color: var(--green-900); border-color: rgba(8, 36, 26, .10); box-shadow: var(--shadow-soft); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-strip div { padding: 14px 18px; border-radius: 18px; background: rgba(255, 253, 246, .62); border: 1px solid rgba(8, 36, 26, .08); backdrop-filter: blur(14px); box-shadow: 0 12px 26px rgba(3, 27, 18, .06); }
.trust-strip strong { display: block; font-size: 1.5rem; letter-spacing: -.05em; color: var(--green-800); }
.trust-strip span { color: var(--muted); font-size: .82rem; font-weight: 700; }

.hero-visual { position: relative; min-height: 650px; }
.hero-card { position: relative; }
.main-card {
  width: min(100%, 520px); margin-left: auto; border-radius: 46px; padding: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.38));
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.78); backdrop-filter: blur(18px);
  transform: rotate(1.2deg);
}
.photo-frame { position: relative; min-height: 610px; overflow: hidden; border-radius: 34px; background: var(--green-900); }
.photo-frame img { width: 100%; height: 610px; object-fit: cover; filter: saturate(1.05) contrast(1.05); transform: scale(1.03); }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(3, 27, 18, .78)); }
.photo-shine { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.18) 47%, transparent 58%); transform: translateX(-90%); animation: shine 5.8s ease-in-out infinite; }
.metric-card {
  position: absolute; z-index: 3; width: 180px; padding: 18px; border-radius: 22px;
  background: rgba(255,253,246,.82); border: 1px solid rgba(255,255,255,.75); backdrop-filter: blur(18px); box-shadow: var(--shadow-soft);
}
.metric-card span, .metric-card small { display: block; color: var(--muted); font-weight: 750; font-size: .78rem; }
.metric-card strong { font-size: 3rem; letter-spacing: -.07em; color: var(--green-800); }
.metric-card em { font-style: normal; font-weight: 900; color: var(--green-800); font-size: 1.25rem; margin-left: 2px; }
.metric-card-a { top: 68px; left: -44px; }
.metric-card-b { right: -34px; bottom: 86px; }
.orbital-panel {
  position: absolute; left: 0; bottom: 16px; width: 220px; height: 220px; border-radius: 50%;
  background: linear-gradient(140deg, rgba(6, 51, 31, .96), rgba(12, 140, 88, .88));
  box-shadow: var(--shadow); display: grid; place-items: center; color: #fff;
}
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; inset: 28px; animation: spin 18s linear infinite; }
.orbit-two { inset: 54px; animation-duration: 11s; animation-direction: reverse; }
.orbit i { position: absolute; top: -6px; left: 48%; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(233,196,106,.18); }
.orbit-center { width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.13); font-weight: 950; font-size: 1.55rem; letter-spacing: -.04em; border: 1px solid rgba(255,255,255,.22); }

.section-heading { max-width: 850px; margin-bottom: 42px; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .timeline-item, .quote-card, .contact-card, .dashboard, .program-showcase {
  background: rgba(255, 253, 246, .72); border: 1px solid rgba(8, 36, 26, .08);
  box-shadow: var(--shadow-soft); backdrop-filter: blur(18px);
}
.feature-card { padding: 28px; border-radius: var(--radius-lg); min-height: 270px; transition: transform .25s ease, background .25s ease; }
.feature-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .9); }
.feature-card .icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--green-900); color: var(--gold); font-weight: 950; margin-bottom: 24px; }
.feature-card p { color: var(--muted); line-height: 1.65; }

.programs { background: linear-gradient(180deg, rgba(6,51,31,.03), rgba(233,196,106,.10)); }
.programs-grid { display: grid; grid-template-columns: .75fr .68fr .82fr; gap: 24px; align-items: center; }
.inline-link { display: inline-flex; gap: 8px; align-items: center; color: var(--green-800); font-weight: 900; margin-top: 14px; }
.inline-link span { transition: transform .2s ease; }
.inline-link:hover span { transform: translateX(4px); }
.program-cards { display: grid; gap: 13px; }
.program {
  text-align: left; padding: 18px 20px; border-radius: 20px; border: 1px solid rgba(8,36,26,.08);
  background: rgba(255,253,246,.72); color: var(--ink); box-shadow: 0 10px 24px rgba(3,27,18,.06); transition: transform .2s ease, background .2s ease, color .2s ease;
}
.program:hover { transform: translateX(4px); }
.program.active { background: var(--green-900); color: #fff; }
.program span { display: block; font-weight: 900; font-size: 1.05rem; margin-bottom: 4px; }
.program small { color: currentColor; opacity: .72; line-height: 1.5; }
.program-showcase { position: relative; overflow: hidden; min-height: 520px; border-radius: 38px; padding: 18px; }
.program-showcase img { position: absolute; inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); object-fit: cover; border-radius: 28px; }
.program-showcase::after { content: ""; position: absolute; inset: 18px; border-radius: 28px; background: linear-gradient(180deg, transparent 25%, rgba(3,27,18,.86)); }
.showcase-glow { position: absolute; inset: auto -70px -80px auto; width: 280px; height: 280px; border-radius: 50%; background: rgba(233,196,106,.42); filter: blur(30px); z-index: 2; }
.showcase-content { position: absolute; z-index: 3; left: 44px; right: 44px; bottom: 44px; color: #fff; }
.showcase-content p { margin-bottom: 8px; color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }
.showcase-content h3 { font-size: 2.2rem; margin-bottom: 8px; }
.showcase-content span { color: rgba(255,255,255,.82); line-height: 1.6; }

.journey { overflow: hidden; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 10%; right: 10%; top: 42px; height: 2px; background: linear-gradient(90deg, var(--green-600), var(--gold), var(--green-600)); opacity: .35; }
.timeline-item { position: relative; padding: 26px; border-radius: var(--radius-lg); min-height: 230px; }
.timeline-item span { position: relative; z-index: 2; width: 58px; height: 58px; border-radius: 20px; display: grid; place-items: center; background: linear-gradient(135deg, var(--green-900), var(--green-600)); color: #fff; font-weight: 950; margin-bottom: 30px; box-shadow: 0 12px 26px rgba(6,51,31,.22); }
.timeline-item p { color: var(--muted); line-height: 1.65; }

.tech { background: var(--green-950); color: #fff; overflow: hidden; }
.tech::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 20%, rgba(107,209,126,.22), transparent 28rem), radial-gradient(circle at 80% 60%, rgba(233,196,106,.15), transparent 28rem); }
.tech-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.tech .eyebrow { color: var(--gold); }
.tech-copy p { color: rgba(255,255,255,.74); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: rgba(255,255,255,.82); line-height: 1.6; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(107,209,126,.2); color: var(--green-400); display: grid; place-items: center; font-weight: 950; }
.dashboard { border-color: rgba(255,255,255,.12); background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04)); border-radius: 34px; overflow: hidden; box-shadow: 0 34px 90px rgba(0,0,0,.28); }
.dash-top { display: flex; align-items: center; gap: 8px; padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.07); }
.dash-top span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.32); }
.dash-top strong { margin-left: 12px; color: rgba(255,255,255,.82); }
.dash-body { padding: 30px; display: grid; grid-template-columns: 210px 1fr; gap: 28px; align-items: center; }
.radial { width: 190px; height: 190px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--gold) calc(var(--value) * 1%), rgba(255,255,255,.11) 0); position: relative; }
.radial::after { content: ""; position: absolute; inset: 18px; border-radius: 50%; background: #0a2c20; }
.radial span, .radial small { position: relative; z-index: 2; grid-column: 1; grid-row: 1; }
.radial span { font-size: 2.8rem; font-weight: 950; letter-spacing: -.06em; }
.radial small { align-self: end; margin-bottom: 48px; color: rgba(255,255,255,.68); font-weight: 750; }
.bars { display: grid; gap: 18px; }
.bars div { display: grid; gap: 8px; }
.bars span { color: rgba(255,255,255,.74); font-weight: 750; }
.bars i { display: block; height: 12px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.bars i::before { content: ""; display: block; width: var(--w); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green-400), var(--gold)); animation: growBar 1.4s ease both; }
.mini-note { grid-column: 1 / -1; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.72); line-height: 1.6; }

.gallery-grid { display: grid; grid-template-columns: 1fr .9fr 1fr; gap: 20px; align-items: stretch; }
.gallery figure { margin: 0; position: relative; min-height: 440px; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 15px 16px; border-radius: 18px; color: #fff; background: rgba(3,27,18,.68); backdrop-filter: blur(14px); line-height: 1.45; }
.quote-card { border-radius: 34px; padding: 38px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, var(--green-900), var(--green-700)); color: #fff; }
.quote-card span { font-size: 5rem; line-height: .8; color: var(--gold); }
.quote-card p { font-size: 1.55rem; line-height: 1.35; letter-spacing: -.04em; }
.quote-card small { color: rgba(255,255,255,.72); font-weight: 800; }

.faq-grid { display: grid; grid-template-columns: .72fr 1fr; gap: 58px; align-items: start; }
.accordion { display: grid; gap: 12px; }
.faq-item { border-radius: 22px; background: rgba(255,253,246,.78); border: 1px solid rgba(8,36,26,.08); box-shadow: 0 10px 24px rgba(3,27,18,.06); overflow: hidden; }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; padding: 22px 24px; border: 0; background: transparent; color: var(--ink); font-weight: 900; }
.faq-item button span { font-size: 1.45rem; transition: transform .2s ease; }
.faq-item.open button span { transform: rotate(45deg); }
.faq-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-item.open .faq-content { grid-template-rows: 1fr; }
.faq-content p { overflow: hidden; margin: 0; padding: 0 24px 22px; color: var(--muted); line-height: 1.65; }

.contact { padding-top: 60px; }
.contact-card { display: grid; grid-template-columns: .92fr 1.08fr; gap: 40px; border-radius: 42px; padding: 42px; overflow: hidden; position: relative; }
.contact-card::before { content: ""; position: absolute; right: -120px; top: -120px; width: 330px; height: 330px; border-radius: 50%; background: rgba(107,209,126,.18); filter: blur(10px); }
.contact-copy, .contact-form { position: relative; z-index: 2; }
.contact-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-links a { padding: 11px 15px; border-radius: 999px; background: rgba(6,51,31,.08); color: var(--green-900); font-weight: 850; }
.contact-form { display: grid; gap: 15px; }
.contact-form label { display: grid; gap: 8px; color: var(--green-900); font-weight: 850; }
.contact-form input, .contact-form textarea, .contact-form select { border: 1px solid rgba(8,36,26,.12); background: rgba(255,255,255,.72); border-radius: 16px; padding: 14px 15px; outline: none; color: var(--ink); transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(12,140,88,.12); }
.form-status { min-height: 24px; color: var(--green-700); font-weight: 850; margin: 0; }

.form-grid { display: grid; gap: 15px; }
.form-grid.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booking-location-card {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px; border-radius: 20px; border: 1px solid rgba(8,36,26,.10);
  background: linear-gradient(135deg, rgba(107,209,126,.13), rgba(233,196,106,.16));
}
.booking-location-card strong { display: block; color: var(--green-900); letter-spacing: -.02em; }
.booking-location-card small { display: block; color: var(--muted); line-height: 1.45; margin-top: 4px; }
.location-button { white-space: nowrap; min-height: 42px; padding-inline: 15px; }
.location-button:disabled { opacity: .72; cursor: progress; transform: none; }
.privacy-note { margin: -3px 0 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }

.footer { padding: 42px 0; background: var(--green-950); color: rgba(255,255,255,.82); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.footer strong { color: #fff; font-size: 1.1rem; }
.footer p, .footer small { color: rgba(255,255,255,.66); line-height: 1.65; }

.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 13px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.88); font-weight: 850; font-size: .9rem; transition: background .2s ease, transform .2s ease; }
.social-links a:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.top-button { position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--green-900); color: #fff; box-shadow: var(--shadow-soft); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease; z-index: 60; }
.top-button.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@keyframes float { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(22px,-28px,0) scale(1.04); } }
@keyframes shine { 0%, 55% { transform: translateX(-95%); } 75%, 100% { transform: translateX(95%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes growBar { from { width: 0; } to { width: var(--w); } }

@media (max-width: 1060px) {
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav.is-open { display: grid; position: absolute; top: calc(100% + 10px); left: 20px; right: 20px; border-radius: 24px; padding: 12px; background: rgba(255,253,246,.95); box-shadow: var(--shadow); }
  .nav.is-open a { padding: 14px 16px; }
  .hero-grid, .programs-grid, .tech-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .main-card { margin: 10px auto 0; }
  .method-grid, .timeline, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .program-showcase { min-height: 430px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 76px 0; }
  .hero { padding-top: 120px; }
  .brand { min-width: auto; }
  .brand-copy small { display: none; }
  .brand-logo { width: 50px; height: 50px; border-radius: 16px; }
  h1 { font-size: clamp(2.72rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .hero-actions, .trust-strip, .contact-links, .booking-location-card { flex-direction: column; align-items: stretch; }
  .btn, .nav-cta { width: 100%; }
  .method-grid, .timeline, .gallery-grid, .footer-grid, .form-grid.two-columns { grid-template-columns: 1fr; }
  .photo-frame, .photo-frame img { height: 500px; min-height: 500px; }
  .metric-card { width: 158px; }
  .metric-card-a { left: -8px; }
  .metric-card-b { right: -8px; bottom: 46px; }
  .orbital-panel { width: 166px; height: 166px; left: 8px; bottom: -26px; }
  .orbit-center { width: 72px; height: 72px; }
  .program-showcase { min-height: 390px; }
  .timeline::before { display: none; }
  .dash-body { grid-template-columns: 1fr; justify-items: center; }
  .bars, .mini-note { width: 100%; }
  .gallery figure { min-height: 360px; }
  .contact-card { padding: 24px; border-radius: 30px; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 22px, var(--container)); }
  .contact-card { padding: 20px; }
  .brand-copy strong { font-size: .92rem; }
  .trust-strip div { width: 100%; }
  .metric-card { width: 142px; padding: 14px; }
  .metric-card strong { font-size: 2.35rem; }
  .photo-frame, .photo-frame img { height: 430px; min-height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Booking hardening and accessibility refinements */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  align-items: start;
  padding: .85rem 1rem;
  border: 1px solid rgba(25, 96, 62, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .62);
  color: var(--muted);
  font-size: .92rem;
}

.consent-line input {
  width: auto;
  margin-top: .2rem;
  accent-color: var(--green);
}

button[disabled], .btn[aria-disabled="true"] {
  cursor: progress;
  opacity: .68;
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .hero-actions, .contact-links, .social-links { gap: .55rem; }
  .hero-actions .btn, .contact-links a, .social-links a { width: 100%; justify-content: center; text-align: center; }
  .booking-location-card { grid-template-columns: 1fr; }
  .metric-card { transform: scale(.86); transform-origin: center; }
}
