:root {
    --ink: #17251f;
    --muted: #5c6b64;
    --green-950: #0b281e;
    --green-900: #12372a;
    --green-700: #27634b;
    --green-500: #4d8d6f;
    --mint: #dcece3;
    --cream: #f6f3ea;
    --white: #fff;
    --gold: #d7a94a;
    --line: #d8dfda;
    --danger: #a12b2b;
    --success: #226342;
    --shadow: 0 18px 50px rgba(9, 42, 30, .12);
    --radius: 18px;
    --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; }
h1 { margin-bottom: 26px; font-size: clamp(2.65rem, 6vw, 5.35rem); }
h1 span { color: #87b99e; }
h2 { margin-bottom: 22px; font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { margin-bottom: 12px; font-size: 1.28rem; }
p { margin-bottom: 22px; color: var(--muted); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 800px; }
.center { text-align: center; }
.section { padding: 110px 0; }
.section-tint { background: var(--cream); }
.eyebrow {
    margin-bottom: 13px;
    color: var(--green-700);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow.light { color: #a9d3bd; }
.lead { color: var(--ink); font-size: 1.23rem; font-weight: 650; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 999; padding: 10px 16px; color: var(--white); background: var(--green-900); }
.skip-link:focus { top: 12px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(216, 223, 218, .8);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1.2; }
.brand-mark { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--green-900); font-weight: 800; letter-spacing: -.04em; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: .95rem; }
.brand small { margin-top: 4px; color: var(--green-700); font-size: .7rem; font-weight: 750; letter-spacing: .12em; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a { font-size: .92rem; font-weight: 650; text-decoration: none; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--green-700); }
.main-nav .nav-cta { padding: 11px 18px; border-radius: 999px; color: var(--white); background: var(--green-900); }
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { color: var(--white); background: var(--green-700); }
.nav-toggle { display: none; border: 0; color: var(--green-900); background: transparent; font-size: 1.55rem; cursor: pointer; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--green-950); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before { width: 650px; height: 650px; top: -380px; right: -140px; border: 1px solid rgba(255, 255, 255, .1); box-shadow: 0 0 0 90px rgba(255, 255, 255, .025), 0 0 0 180px rgba(255, 255, 255, .02); }
.hero::after { width: 280px; height: 280px; left: -180px; bottom: -130px; background: rgba(78, 141, 111, .12); }
.hero-grid { min-height: 710px; padding-top: 95px; padding-bottom: 95px; display: grid; grid-template-columns: 1.45fr .75fr; align-items: center; gap: 80px; }
.hero .eyebrow { color: #a9d3bd; }
.hero-copy { max-width: 760px; color: #d6e2dc; font-size: 1.17rem; }
.button-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 34px 0 30px; }
.button { min-height: 50px; padding: 12px 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 999px; font-weight: 750; text-align: center; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgba(215, 169, 74, .65); outline-offset: 3px; }
.button-primary { color: var(--green-950); background: var(--gold); }
.button-primary:hover { background: #e7bb60; }
.button-secondary { border-color: var(--green-700); color: var(--green-900); background: transparent; }
.hero .button-secondary { border-color: rgba(255, 255, 255, .35); color: var(--white); }
.hero .button-secondary:hover { background: rgba(255, 255, 255, .08); }
.trust-list { display: flex; gap: 22px; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; color: #c5d5cd; font-size: .88rem; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--gold); font-weight: 900; }
.hero-card { position: relative; padding: 36px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 24px; background: rgba(255, 255, 255, .07); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-card h2 { font-size: 1.8rem; }
.hero-card p { color: #d1ddd7; }
.hero-card .card-kicker { color: #95c3aa; font-size: .78rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.signal { height: 72px; margin-bottom: 25px; display: flex; align-items: end; gap: 8px; }
.signal span { width: 9px; border-radius: 8px; background: var(--gold); opacity: .9; }
.signal span:nth-child(1) { height: 27%; }.signal span:nth-child(2) { height: 55%; }.signal span:nth-child(3) { height: 88%; }.signal span:nth-child(4) { height: 65%; }
.text-link { color: var(--green-700); font-weight: 750; text-decoration: none; }
.hero-card .text-link { color: #f0c66e; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.intro p:last-child { font-size: 1.1rem; }
.section-heading { margin-bottom: 48px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 50px; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-height: 255px; padding: 31px; border: 1px solid #e6e1d6; border-radius: var(--radius); background: rgba(255, 255, 255, .75); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(40, 69, 54, .08); }
.service-card .number { display: block; margin-bottom: 35px; color: var(--green-500); font-size: .76rem; font-weight: 850; letter-spacing: .1em; }
.service-card p { margin-bottom: 0; font-size: .95rem; }

.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-intro { position: sticky; top: 125px; }
.process-intro .button { margin-top: 12px; }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { position: relative; padding: 0 0 32px 75px; display: grid; grid-template-columns: 1fr; }
.process-list li:not(:last-child)::before { content: ""; position: absolute; top: 46px; bottom: 5px; left: 22px; width: 1px; background: var(--line); }
.process-list li > span { position: absolute; top: 0; left: 0; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green-900); font-size: .85rem; font-weight: 800; }
.process-list h3 { margin-bottom: 6px; }
.process-list p { margin-bottom: 0; }

.profile-section { color: var(--white); background: var(--green-900); }
.profile-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 90px; }
.profile-section h2 { color: var(--white); }
.profile-section p { color: #d7e3dd; }
.profile-section .lead { color: var(--white); }
.profile-visual { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 30px; background: linear-gradient(145deg, #1f5541, #0d2f24); }
.profile-visual::before, .profile-visual::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .12); }
.profile-visual::before { width: 330px; height: 330px; }.profile-visual::after { width: 240px; height: 240px; }
.monogram { z-index: 1; color: rgba(255, 255, 255, .9); font-family: Georgia, serif; font-size: 7rem; letter-spacing: -.09em; }
.experience-badge { position: absolute; z-index: 2; right: 24px; bottom: 24px; padding: 15px 18px; display: flex; align-items: center; gap: 10px; border-radius: 14px; color: var(--green-950); background: var(--gold); box-shadow: var(--shadow); }
.experience-badge strong { font-size: 1.7rem; line-height: 1; }
.experience-badge span { font-size: .72rem; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.values span { padding: 7px 14px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; color: #dfeae5; font-size: .85rem; }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 23px 50px 23px 0; color: var(--ink); font-weight: 750; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; top: 16px; right: 0; color: var(--green-700); font-size: 1.6rem; font-weight: 400; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding-right: 45px; margin-bottom: 24px; }

.checklist-section { padding-top: 0; }
.checklist-card { padding: 50px 55px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 55px; border-radius: 26px; background: var(--cream); }
.checklist-card h2 { max-width: 760px; }
.checklist-card p:last-child { max-width: 780px; margin-bottom: 0; }
.checklist-card .button { white-space: nowrap; }

.booking-section { color: var(--white); background: var(--green-950); }
.booking-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; align-items: start; }
.booking-section h2 { color: var(--white); }
.booking-section > .container > div > p { color: #cfddd6; }
.booking-benefits { padding: 0; list-style: none; color: #d6e2dc; }
.booking-benefits li { margin: 10px 0; }
.booking-benefits li::before { content: "✓"; margin-right: 10px; color: var(--gold); font-weight: 900; }
.booking-form { padding: 40px; border-radius: 24px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.form-row { margin-bottom: 20px; }
.form-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-row label, legend { display: block; margin-bottom: 7px; font-size: .88rem; font-weight: 750; }
.form-row label span { color: var(--muted); font-weight: 400; }
input[type="text"], input[type="email"], input[type="date"], select, textarea { width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid #bdc8c1; border-radius: 9px; color: var(--ink); background: var(--white); }
textarea { resize: vertical; }
select:disabled { color: #79857e; background: #f0f2f0; }
fieldset { margin: 0; padding: 0; border: 0; }
.radio { display: inline-flex !important; align-items: center; gap: 7px; margin: 3px 20px 0 0; font-weight: 500 !important; cursor: pointer; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 22px; color: var(--muted); font-size: .82rem; cursor: pointer; }
.checkbox input { margin-top: 5px; flex: 0 0 auto; }
.checkbox a { color: var(--green-700); }
.button-full { width: 100%; border: 0; }
.form-note { margin: 10px 0 0; font-size: .76rem; text-align: center; }
.form-status { display: none; margin-top: 18px; padding: 13px 15px; border-radius: 9px; font-size: .9rem; }
.form-status.success { display: block; color: var(--success); background: #e5f3eb; }
.form-status.error { display: block; color: var(--danger); background: #fae9e9; }
.form-status.loading { display: block; color: var(--green-900); background: var(--mint); }
.is-hidden, .honeypot { display: none !important; }

.site-footer { padding: 65px 0 25px; background: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; }
.footer-grid h2 { margin-bottom: 13px; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid p { margin-top: 18px; font-size: .9rem; }
.footer-grid > div > a:not(.brand) { display: block; margin: 7px 0; color: var(--muted); text-decoration: none; }
.footer-grid > div > a:hover { color: var(--green-700); }
.footer-bottom { margin-top: 45px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #dcd8ce; color: var(--muted); font-size: .8rem; }

.legal-page { background: var(--cream); }
.legal-header { padding: 28px 0; border-bottom: 1px solid #dedbd2; background: var(--white); }
.legal-main { min-height: 70vh; padding: 75px 0 100px; }
.legal-content { max-width: 800px; }
.legal-content h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); }
.legal-content h2 { margin-top: 42px; font-size: 1.45rem; }
.legal-content h3 { margin-top: 28px; font-size: 1.12rem; }
.legal-content li { margin-bottom: 8px; color: var(--muted); }
.legal-content a { color: var(--green-700); }
.legal-back { color: var(--green-700); font-weight: 750; text-decoration: none; }
.decision-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.decision-card dl { margin: 0; }
.decision-card dl > div { padding: 11px 0; display: grid; grid-template-columns: 150px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.decision-card dt { font-weight: 750; }
.decision-card dd { margin: 0; overflow-wrap: anywhere; }
.decision-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.decision-accept { border: 0; color: var(--white); background: var(--success); }
.decision-reject { border-color: var(--danger); color: var(--danger); background: var(--white); }
.decision-message { margin: 0 0 25px; padding: 16px 18px; border-radius: 10px; }
.decision-message.success { color: var(--success); background: #e5f3eb; }
.decision-message.error { color: var(--danger); background: #fae9e9; }

@media (max-width: 920px) {
    .section { padding: 85px 0; }
    .nav-toggle { display: block; }
    .main-nav { position: fixed; inset: 82px 0 auto 0; max-height: calc(100vh - 82px); padding: 30px 20px 35px; display: none; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 13px 0; }
    .main-nav .nav-cta { margin-top: 10px; text-align: center; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 55px; }
    .hero-card { max-width: 600px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .process-layout, .profile-grid, .faq-layout, .booking-grid, .checklist-card { grid-template-columns: 1fr; gap: 55px; }
    .checklist-card .button { justify-self: start; }
    .process-intro { position: static; }
    .profile-visual { min-height: 390px; }
    .faq-layout > div:first-child { max-width: 650px; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 68px 0; }
    .nav-wrap { min-height: 72px; }
    .brand strong { font-size: .82rem; }
    .brand-mark { width: 39px; height: 39px; }
    .main-nav { top: 72px; max-height: calc(100vh - 72px); }
    .hero-grid { padding-top: 68px; padding-bottom: 68px; gap: 42px; }
    h1 { font-size: clamp(2.4rem, 13vw, 3.5rem); }
    .hero-card { padding: 28px; }
    .section-heading { grid-template-columns: 1fr; gap: 15px; }
    .card-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 0; }
    .profile-visual { min-height: 320px; }
    .monogram { font-size: 5.3rem; }
    .form-columns { grid-template-columns: 1fr; gap: 0; }
    .booking-form { padding: 26px 20px; }
    .checklist-card { padding: 32px 24px; gap: 28px; }
    .checklist-card .button { width: 100%; white-space: normal; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; }
    .decision-card dl > div { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
