:root {
    --forest: #143d35;
    --forest-2: #1f5448;
    --forest-3: #2f6b5c;
    --sage: #7fa28c;
    --sage-soft: #dfeae2;
    --sage-pale: #eff5f0;
    --cream: #f7f4ed;
    --sand: #eee7da;
    --peach: #efc2a6;
    --white: #ffffff;
    --ink: #173a34;
    --muted: #6d7e78;
    --line: #e1e8e3;
    --danger: #a84940;
    --shadow-sm: 0 12px 34px rgba(20, 61, 53, .08);
    --shadow: 0 28px 80px rgba(20, 61, 53, .14);
    --radius-sm: 16px;
    --radius: 26px;
    --radius-lg: 42px;
    --content: 1220px;
}

* { 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;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 12px max(24px, calc((100vw - var(--content)) / 2));
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(20, 61, 53, .07);
    backdrop-filter: blur(18px) saturate(140%);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
    width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: 14px 14px 14px 5px; background: var(--forest); color: white;
    font-weight: 950; letter-spacing: -.07em;
}
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-size: .98rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 1px; color: #798883; font-size: .65rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 25px; font-size: .9rem; font-weight: 760; }
.main-nav > a:not(.btn) { position: relative; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--sage); transition: right .25s ease; }
.main-nav > a:not(.btn):hover::after { right: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--forest); border-radius: 10px; transition: .25s ease; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px;
    font-weight: 850; letter-spacing: -.01em; transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: white; box-shadow: 0 12px 26px rgba(20, 61, 53, .17); }
.btn-primary:hover { background: #0e3029; box-shadow: 0 16px 34px rgba(20, 61, 53, .24); }
.btn-ghost { border-color: #cbd8d1; background: rgba(255,255,255,.78); }
.btn-ghost:hover { background: white; box-shadow: var(--shadow-sm); }
.btn-light { background: white; color: var(--forest); }
.btn-small { min-height: 41px; padding-inline: 17px; font-size: .86rem; }
.btn-large { min-height: 57px; padding-inline: 27px; }
.full { width: 100%; }

.eyebrow, .hero-kicker {
    color: #6e8e7d; font-size: .72rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase;
}
.eyebrow-light { color: #bed2c9; }
.pulse-dot { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: #6da27e; box-shadow: 0 0 0 6px rgba(109, 162, 126, .12); margin-right: 8px; }

.hero {
    max-width: 1380px;
    min-height: 700px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 85px) clamp(24px, 5vw, 72px) 65px;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: clamp(40px, 6vw, 82px);
    align-items: center;
    overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1,
.page-hero h1,
.service-detail-copy h1,
.success-page h1 {
    margin: 16px 0 24px;
    font-size: clamp(3.6rem, 6.4vw, 6.8rem);
    line-height: .91;
    letter-spacing: -.066em;
    font-weight: 760;
}
.hero-copy h1 em { display: inline; color: #779581; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-lead { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.16rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin: 34px 0 40px; }
.hero-proof { max-width: 650px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 22px; }
.hero-proof > div { padding: 0 18px; border-right: 1px solid var(--line); }
.hero-proof > div:first-child { padding-left: 0; }
.hero-proof > div:last-child { border-right: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: .96rem; }
.hero-proof span { color: #81908b; font-size: .72rem; margin-top: 2px; }

.hero-visual { position: relative; min-width: 0; }
.hero-photo {
    position: relative; z-index: 2; overflow: hidden; margin: 0 auto;
    width: min(100%, 540px); aspect-ratio: .84;
    border-radius: 46% 46% 30% 30% / 34% 34% 23% 23%;
    background: var(--sage-soft); box-shadow: var(--shadow);
}
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12, 48, 39, .17)); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 210px; height: 210px; top: -40px; right: -22px; background: #e9c8b3; }
.orb-two { width: 160px; height: 160px; left: -24px; bottom: 5px; background: #d7e7dc; }
.hero-badge {
    position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px;
    padding: 13px 16px; border: 1px solid rgba(255,255,255,.55); border-radius: 18px;
    background: rgba(255,255,255,.91); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px);
}
.hero-badge > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--sage-pale); }
.hero-badge strong, .hero-badge small { display: block; }
.hero-badge strong { font-size: .88rem; }
.hero-badge small { margin-top: 1px; color: #75847f; font-size: .68rem; }
.hero-badge-top { top: 17%; left: -26px; }
.hero-badge-bottom { right: -12px; bottom: 10%; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: #fbfcfa; }
.ticker-track { max-width: var(--content); margin: auto; min-height: 63px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; white-space: nowrap; color: #536b63; font-size: .82rem; font-weight: 800; }
.ticker-track i { color: #b4c4bb; }

.section { max-width: var(--content); margin: auto; padding: clamp(76px, 8vw, 112px) 24px; }
.section-soft { max-width: none; background: var(--cream); padding-inline: max(24px, calc((100vw - 1172px) / 2)); }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading h2, .editorial-split h2, .faq-layout h2, .detail-grid h2, .cta-section h2 {
    margin: 12px 0 16px; font-size: clamp(2.5rem, 5vw, 4.75rem); line-height: .99; letter-spacing: -.054em; font-weight: 730;
}
.section-heading p, .lead { color: var(--muted); font-size: 1.07rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.service-card {
    min-width: 0; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: #cbdad1; box-shadow: var(--shadow); }
.service-image { position: relative; display: block; height: 245px; overflow: hidden; background: #edf2ee; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(14,48,40,.14)); pointer-events: none; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-icon { position: absolute; z-index: 2; left: 15px; top: 15px; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.92); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.service-duration { position: absolute; z-index: 2; right: 15px; top: 15px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--forest); font-size: .72rem; font-weight: 850; }
.service-body { padding: 22px; }
.service-meta { color: #789087; font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.service-body h3 { margin: 8px 0 9px; font-size: 1.37rem; line-height: 1.13; letter-spacing: -.035em; }
.service-body p { margin: 0; min-height: 68px; color: #6f807a; font-size: .9rem; }
.service-footer { margin-top: 22px; padding-top: 17px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-footer strong { font-size: 1.12rem; }
.service-footer .price-muted { color: #788882; font-size: .9rem; }
.service-footer a { color: var(--forest-2); font-size: .86rem; font-weight: 900; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 7vw, 92px); align-items: center; }
.editorial-split { min-height: 660px; }
.feature-list { display: grid; gap: 10px; margin-top: 34px; }
.feature-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 13px 0; border-bottom: 1px solid #dedfd7; }
.feature-list > div > span { color: #86a191; font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.feature-list strong { display: block; }
.feature-list p { margin: 2px 0 0; color: #75837f; font-size: .86rem; }
.data-visual { position: relative; min-height: 500px; }
.data-card { position: absolute; border-radius: 26px; background: white; box-shadow: var(--shadow-sm); }
.data-main { z-index: 2; left: 10%; top: 12%; width: 66%; min-height: 335px; padding: 32px; }
.data-main strong { display: block; margin-top: 8px; font-size: 2.5rem; line-height: .98; letter-spacing: -.05em; }
.mini-label { color: #83a08f; font-size: .67rem; letter-spacing: .15em; font-weight: 900; }
.spark-bars { position: absolute; left: 32px; right: 32px; bottom: 35px; height: 105px; display: flex; align-items: end; gap: 10px; }
.spark-bars i { flex: 1; min-width: 8px; border-radius: 99px 99px 6px 6px; background: var(--sage-soft); }
.spark-bars i:nth-child(1){height:31%}.spark-bars i:nth-child(2){height:50%}.spark-bars i:nth-child(3){height:41%}.spark-bars i:nth-child(4){height:70%}.spark-bars i:nth-child(5){height:63%}.spark-bars i:nth-child(6){height:88%;background:var(--forest)}.spark-bars i:nth-child(7){height:78%}
.data-a { z-index: 4; right: 1%; top: 24%; width: 180px; padding: 19px; }
.data-b { z-index: 4; left: 3%; bottom: 9%; width: 185px; padding: 19px; }
.data-a > span, .data-b > span { display: block; margin-bottom: 8px; font-size: 1.4rem; }
.data-a strong, .data-a small, .data-b strong, .data-b small { display: block; }
.data-a small, .data-b small { color: #73837e; font-size: .72rem; }
.data-ring { position: absolute; z-index: 1; width: 300px; height: 300px; right: 3%; bottom: 0; border: 40px solid #d8e7dc; border-radius: 50%; display: grid; place-items: center; color: #769381; font-family: Georgia,serif; font-style: italic; }

.journey-section { padding-top: 105px; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.journey-card { position: relative; min-height: 250px; padding: 27px; border: 1px solid var(--line); border-radius: 24px; background: white; }
.journey-card > span { color: #86a190; font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.journey-card h3 { margin: 60px 0 8px; font-size: 1.45rem; letter-spacing: -.035em; }
.journey-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.journey-card::after { content: ""; position: absolute; top: 27px; right: 27px; width: 36px; height: 36px; border: 1px solid #cfdad4; border-radius: 50%; }

.media-section { padding-top: 80px; }
.media-heading { margin-bottom: 35px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.media-heading h2 { max-width: 700px; margin: 11px 0 0; font-size: clamp(2.5rem, 4.5vw, 4.3rem); line-height: 1; letter-spacing: -.05em; }
.text-link { font-size: .87rem; font-weight: 900; white-space: nowrap; }
.media-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: 255px; gap: 14px; }
.media-card { position: relative; overflow: hidden; min-width: 0; min-height: 0; padding: 0; border: 0; border-radius: 22px; background: #dfe9e2; text-align: left; }
.media-featured { grid-row: span 2; }
.media-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.media-card:hover img { transform: scale(1.04); }
.media-overlay { position: absolute; z-index: 3; left: 12px; right: 12px; bottom: 12px; padding: 13px 14px; border-radius: 14px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); }
.media-overlay strong, .media-overlay small { display: block; }
.media-overlay strong { font-size: .88rem; }
.media-overlay small { margin-top: 2px; color: #6e7f79; font-size: .68rem; }
.video-card { display: grid; place-items: center; }
.video-pattern { position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, #f2d1bd, transparent 35%), linear-gradient(135deg,#d8e8dd,#f3f0e8); }
.video-play { position: absolute; z-index: 4; width: 66px; height: 66px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--forest); color: white; box-shadow: var(--shadow); }
.video-play span { transform: translateX(2px); }

.faq-section { padding-top: 70px; }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 23px 44px 23px 0; list-style: none; cursor: pointer; font-weight: 850; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 5px; top: 18px; font-size: 1.45rem; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion p { max-width: 720px; margin: -5px 0 23px; color: var(--muted); }

.cta-wrap { padding: 20px 24px 100px; }
.cta-section { max-width: 1172px; margin: auto; padding: clamp(36px, 5vw, 62px); display: flex; align-items: center; justify-content: space-between; gap: 50px; border-radius: 34px; background: var(--forest); color: white; overflow: hidden; position: relative; }
.cta-section::after { content: ""; position: absolute; width: 330px; height: 330px; right: -100px; top: -160px; border: 55px solid rgba(255,255,255,.06); border-radius: 50%; }
.cta-section > * { position: relative; z-index: 2; }
.cta-section h2 { max-width: 740px; margin-bottom: 13px; }
.cta-section p { max-width: 640px; margin: 0; color: #c8d8d2; }

.page-hero { max-width: var(--content); margin: auto; padding: 96px 24px 45px; }
.page-hero.compact h1 { max-width: 930px; font-size: clamp(3.4rem, 6vw, 6rem); }
.page-hero > p { max-width: 720px; color: var(--muted); font-size: 1.08rem; }

.service-detail-hero { max-width: var(--content); margin: auto; padding: 74px 24px 85px; display: grid; grid-template-columns: 1fr .88fr; gap: 65px; align-items: center; }
.service-detail-copy h1 { font-size: clamp(3.4rem, 5.8vw, 6rem); }
.service-detail-copy > p { max-width: 620px; color: var(--muted); font-size: 1.1rem; }
.back-link { display: inline-block; margin-bottom: 34px; color: #73847e; font-size: .82rem; font-weight: 850; }
.detail-facts { margin: 30px 0; display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); padding: 20px 0; }
.detail-facts div { padding: 0 18px; border-right: 1px solid var(--line); }
.detail-facts div:first-child { padding-left: 0; }.detail-facts div:last-child { border: 0; }
.detail-facts span, .detail-facts strong { display: block; }.detail-facts span { color: #7a8a84; font-size: .7rem; }.detail-facts strong { margin-top: 3px; font-size: .9rem; }
.service-detail-image { position: relative; margin: 0; height: 610px; overflow: hidden; border-radius: 38px; background: var(--sage-soft); box-shadow: var(--shadow); }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-image figcaption { position: absolute; left: 18px; bottom: 18px; padding: 12px 15px; border-radius: 14px; background: rgba(255,255,255,.91); backdrop-filter: blur(12px); font-size: .8rem; font-weight: 800; }
.service-detail-image figcaption span { margin-right: 6px; }
.narrow { max-width: 1050px; }
.detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.includes-card { padding: 31px; border-radius: 26px; background: var(--cream); }
.includes-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: white; font-weight: 900; }
.includes-card h3 { margin: 18px 0 13px; font-size: 1.5rem; }
.includes-card ul { padding-left: 20px; color: #5f746c; }
.includes-card li { margin: 10px 0; }.includes-card .btn { margin-top: 20px; }
.service-bottom-cta { max-width: 1050px; margin: 0 auto 100px; padding: 24px 28px; border: 1px solid var(--line); border-radius: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.service-bottom-cta span { color: var(--muted); }.service-bottom-cta a { font-weight: 900; }

.gallery-section { padding-top: 35px; }
.gallery-full { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; grid-auto-flow: dense; gap: 14px; }
.gallery-wide { grid-column: span 2; }.gallery-tall { grid-row: span 2; }
.empty-state { padding: 70px; text-align: center; border: 1px dashed #cad6cf; border-radius: 24px; color: var(--muted); background: var(--sage-pale); }

.booking-shell { max-width: 1170px; margin: auto; padding: 75px 24px 105px; display: grid; grid-template-columns: .77fr 1.23fr; gap: 72px; align-items: start; }
.booking-intro { position: sticky; top: 120px; }
.booking-intro h1 { margin: 13px 0 20px; font-size: clamp(3.2rem, 5vw, 5rem); line-height: .94; letter-spacing: -.058em; }
.booking-intro > p { color: var(--muted); font-size: 1.03rem; }
.booking-benefits { margin-top: 32px; display: grid; gap: 12px; }
.booking-benefits > div { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: start; }
.booking-benefits > div > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--sage-pale); color: var(--forest-2); font-weight: 900; }
.booking-benefits p { margin: 0; }.booking-benefits strong, .booking-benefits small { display: block; }.booking-benefits small { margin-top: 2px; color: #7a8984; }
.booking-progress { margin-top: 38px; display: flex; align-items: center; }
.booking-progress > span { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; background: var(--cream); text-align: center; }
.booking-progress b, .booking-progress small { display: block; }.booking-progress b { font-size: .86rem; }.booking-progress small { color: #7e8b87; font-size: .6rem; }
.booking-progress .active { background: var(--forest); color: white; }.booking-progress .active small { color: #cddcd6; }.booking-progress i { width: 22px; height: 1px; background: #d9e1dc; }
.booking-card { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: var(--shadow); }
.form-section { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 34px; border-bottom: 1px solid var(--line); }
.form-section:last-child { border-bottom: 0; }
.form-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--sage-pale); color: var(--forest-2); font-size: .72rem; font-weight: 950; }
.form-title span { color: #81958a; font-size: .64rem; font-weight: 900; letter-spacing: .14em; }.form-title h2 { margin: 3px 0 20px; font-size: 1.5rem; letter-spacing: -.035em; }
label { display: block; margin: 14px 0 6px; color: #38564e; font-size: .79rem; font-weight: 850; }
label small { color: #82918c; font-weight: 600; }
input, select, textarea { width: 100%; padding: 12px 13px; border: 1px solid #d3ded8; border-radius: 12px; background: white; color: var(--ink); outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
input:focus, select:focus, textarea:focus { border-color: #7da08a; box-shadow: 0 0 0 4px rgba(125,160,138,.12); }
textarea { resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.slot-label-row { display: flex; align-items: end; justify-content: space-between; gap: 15px; }.slot-label-row small { color: #899690; font-size: .68rem; }
.slots { min-height: 44px; display: flex; flex-wrap: wrap; gap: 8px; }
.slot { padding: 9px 12px; border: 1px solid #ccd9d2; border-radius: 10px; background: white; color: var(--forest); font-size: .82rem; font-weight: 850; transition: .18s ease; }
.slot:hover { border-color: var(--sage); background: var(--sage-pale); }.slot.selected { background: var(--forest); border-color: var(--forest); color: white; }
.slots-empty { margin: 6px 0; color: #82918c; font-size: .84rem; }
.phone-input { display: grid; grid-template-columns: auto 1fr; border: 1px solid #d3ded8; border-radius: 12px; overflow: hidden; }.phone-input:focus-within { border-color: #7da08a; box-shadow: 0 0 0 4px rgba(125,160,138,.12); }.phone-input span { display: flex; align-items: center; padding: 0 12px; background: var(--sage-pale); color: #5e786e; font-size: .72rem; font-weight: 850; }.phone-input input { border: 0; border-radius: 0; box-shadow: none !important; }
.field-validation, .field-validation-error { display: block; margin-top: 5px; color: var(--danger); font-size: .72rem; }.validation-summary { margin: 20px 34px 0; padding: 12px 15px; border-radius: 11px; background: #fbebe9; color: #8d3932; font-size: .8rem; }.validation-summary:empty { display: none; }.validation-summary ul { margin: 0; padding-left: 18px; }
.consent { margin: 18px 0; display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: #647871; font-size: .75rem; font-weight: 500; line-height: 1.4; }.consent input { width: auto; margin: 2px 0 0; }.submit-booking { justify-content: space-between; }.form-note { margin: 10px 0 0; text-align: center; color: #86938e; font-size: .7rem; }

.success-page { max-width: 760px; margin: auto; padding: 105px 24px 120px; text-align: center; }
.success-mark { width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 28px; border-radius: 50%; background: var(--sage-soft); }.success-mark span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: white; font-size: 1.4rem; }.warning-mark { color: var(--forest); font-size: 2rem; font-weight: 900; }
.success-page h1 { font-size: clamp(3rem, 6vw, 5.2rem); }.success-page > p { max-width: 610px; margin: 0 auto; color: var(--muted); font-size: 1.02rem; }
.success-card { margin: 35px 0 20px; padding: 18px 25px; border: 1px solid var(--line); border-radius: 22px; text-align: left; box-shadow: var(--shadow-sm); }.success-card div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); }.success-card div:last-child { border-bottom: 0; }.success-card span { color: #788984; font-size: .78rem; }.success-card strong { text-align: right; }.pending-text { color: #8a6b18; }
.success-note { margin: 0 0 30px; padding: 12px 15px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 14px; background: var(--sage-pale); }.success-note p { margin: 0; color: #5f746c; font-size: .8rem; }

.auth-shell { min-height: calc(100vh - 78px); display: grid; grid-template-columns: 1.08fr .92fr; background: var(--cream); }
.auth-visual { min-height: 690px; position: relative; overflow: hidden; display: flex; align-items: end; padding: 60px; background: linear-gradient(145deg,rgba(10,45,37,.15),rgba(10,45,37,.65)), url('https://images.unsplash.com/photo-1543362906-acfc16c67564?auto=format&fit=crop&w=1600&q=85') center/cover; color: white; }
.auth-visual::after { content: ""; position: absolute; width: 390px; height: 390px; right: -120px; top: -120px; border: 60px solid rgba(255,255,255,.1); border-radius: 50%; }.auth-visual-copy { position: relative; z-index: 2; max-width: 620px; }.auth-visual h1 { margin: 12px 0 18px; font-size: clamp(3rem,5vw,5.3rem); line-height: .94; letter-spacing: -.06em; }.auth-visual p { max-width: 550px; color: #d5e1dd; }
.auth-card { width: min(460px, calc(100% - 40px)); margin: auto; padding: 38px; border-radius: 28px; background: white; box-shadow: var(--shadow); }.auth-card h2 { margin: 8px 0 5px; font-size: 2.1rem; letter-spacing: -.04em; }.auth-card > p { margin-top: 0; color: var(--muted); }.compact-consent { grid-template-columns: 18px 1fr; }.auth-back { display: block; margin-top: 18px; text-align: center; color: #71827c; font-size: .78rem; font-weight: 800; }

.prose-card { margin-bottom: 90px; padding: 45px; border: 1px solid var(--line); border-radius: 25px; box-shadow: var(--shadow-sm); }.prose-card h2 { margin: 35px 0 8px; font-size: 1.4rem; }.prose-card h2:first-child { margin-top: 0; }.prose-card p { color: var(--muted); }

.site-footer { padding: 55px max(24px, calc((100vw - var(--content)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 35px; background: #0d2e27; color: white; }
.footer-brand { display: flex; align-items: center; gap: 14px; }.footer-brand strong { display: block; }.footer-brand p { margin: 3px 0 0; color: #aebfb9; font-size: .76rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: #d2ded9; font-size: .78rem; font-weight: 750; }
.floating-book { position: fixed; z-index: 60; right: 20px; bottom: max(20px, env(safe-area-inset-bottom)); min-height: 52px; padding: 0 18px; display: flex; align-items: center; gap: 8px; border-radius: 999px; background: var(--forest); color: white; box-shadow: 0 16px 45px rgba(20,61,53,.3); font-size: .82rem; }.floating-book b { font-weight: 900; }

.lightbox, .video-modal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 34px; background: rgba(5, 23, 18, .92); backdrop-filter: blur(8px); }.lightbox[hidden], .video-modal[hidden] { display: none; }.lightbox img { max-width: min(1120px, 94vw); max-height: 88vh; border-radius: 20px; box-shadow: 0 30px 100px rgba(0,0,0,.35); }.modal-close { position: absolute; z-index: 3; right: 20px; top: 18px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: white; color: var(--forest); font-size: 1.65rem; line-height: 1; }.video-stage { width: min(1050px, 92vw); aspect-ratio: 16 / 9; }.video-stage iframe, .video-stage video { width: 100%; height: 100%; border: 0; border-radius: 20px; background: #000; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: .98fr 1.02fr; gap: 35px; }
    .hero-badge-top { left: -6px; }.hero-badge-bottom { right: -4px; }
    .ticker-track { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }.ticker-track::-webkit-scrollbar { display:none; }
    .media-grid { grid-template-columns: 1.1fr .9fr; }.media-grid .media-card:nth-child(n+4) { display: none; }
}

@media (max-width: 850px) {
    .site-header { min-height: 70px; padding-inline: 18px; }
    .nav-toggle { display: block; }
    .main-nav { position: absolute; left: 14px; right: 14px; top: 76px; display: none; align-items: stretch; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); }
    .main-nav.open { display: flex; flex-direction: column; }.main-nav > a { padding: 11px 12px; }.main-nav .btn { margin-top: 5px; }.main-nav > a:not(.btn)::after { display:none; }
    .nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}.nav-toggle.open span:nth-child(2){opacity:0}.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

    .hero { min-height: auto; grid-template-columns: 1fr; padding: 38px 22px 60px; gap: 38px; }
    .hero-copy { order: 2; }.hero-visual { order: 1; max-width: 620px; margin: auto; width: 100%; }.hero-photo { width: min(100%, 480px); max-height: 480px; border-radius: 30px; }.hero-copy h1 { font-size: clamp(3.4rem, 12vw, 5.3rem); }.hero-proof { max-width: none; }.hero-badge-top { top: 10%; left: 2%; }.hero-badge-bottom { right: 1%; }
    .split, .faq-layout, .service-detail-hero, .detail-grid, .booking-shell, .auth-shell { grid-template-columns: 1fr; }
    .editorial-split { min-height: auto; }.data-visual { min-height: 470px; max-width: 600px; width: 100%; margin: auto; }
    .journey-grid { grid-template-columns: 1fr; }.journey-card { min-height: 190px; }.journey-card h3 { margin-top: 35px; }
    .faq-layout { gap: 40px; }
    .cta-section { align-items: flex-start; flex-direction: column; }
    .service-detail-hero { padding-top: 45px; }.service-detail-image { height: 500px; order: -1; }.detail-facts { max-width: 600px; }
    .booking-shell { gap: 38px; padding-top: 50px; }.booking-intro { position: static; }.booking-benefits { grid-template-columns: repeat(3,1fr); }.booking-benefits > div { grid-template-columns: 1fr; }.booking-progress { display:none; }
    .auth-visual { min-height: 360px; padding: 40px 28px; }.auth-card { margin: 50px auto; }
    .gallery-full { grid-template-columns: repeat(2,1fr); }.gallery-wide { grid-column: span 2; }
}

@media (max-width: 620px) {
    .brand-copy small { display: none; }.brand-mark { width: 40px; height: 40px; }
    .hero { padding-inline: 18px; }.hero-kicker { font-size: .65rem; }.hero-copy h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
    .hero-actions { display: grid; }.hero-actions .btn { width: 100%; }.hero-proof { grid-template-columns: 1fr; gap: 0; border: 0; padding-top: 3px; }.hero-proof > div { padding: 9px 0; border-right: 0; border-bottom: 1px solid var(--line); display:grid; grid-template-columns:100px 1fr; align-items:center; }.hero-proof span { margin:0; }
    .hero-photo { height: 390px; aspect-ratio: auto; }.hero-badge { padding: 10px 12px; }.hero-badge > span { width: 34px; height: 34px; }.hero-badge strong { font-size:.76rem; }.hero-badge small { font-size:.6rem; }.hero-badge-top { top: 7px; left: 5px; }.hero-badge-bottom { bottom: 10px; right: 5px; }
    .ticker-track { min-height: 55px; gap: 14px; padding-inline: 18px; }
    .section { padding: 72px 18px; }.section-soft { padding-inline: 18px; }.section-heading { margin-bottom: 30px; }.section-heading h2,.editorial-split h2,.faq-layout h2,.detail-grid h2,.cta-section h2 { font-size: clamp(2.45rem, 11vw, 3.6rem); }
    .service-grid { grid-template-columns: 1fr; }.service-image { height: 235px; }.service-body p { min-height: 0; }
    .data-visual { min-height: 390px; }.data-main { left: 4%; top: 8%; width: 78%; min-height: 285px; padding: 23px; }.data-main strong { font-size: 2rem; }.spark-bars { left:23px;right:23px;bottom:28px;height:85px; }.data-a { width:155px;right:0;top:32%; }.data-b { width:150px;left:0;bottom:3%; }.data-ring { width:230px;height:230px;border-width:30px;right:0; }
    .media-heading { align-items:flex-start; flex-direction:column; }.media-grid { grid-template-columns:1fr; grid-auto-rows:280px; }.media-featured { grid-row:span 1; }.media-grid .media-card:nth-child(n+4){display:block}.media-grid .media-card:nth-child(n+5){display:none}
    .faq-layout { gap:25px; }
    .cta-wrap { padding-inline: 14px; }.cta-section { padding: 34px 25px; border-radius: 25px; }.cta-section .btn { width:100%; }
    .site-footer { padding: 42px 20px 80px; align-items:flex-start; flex-direction:column; }.footer-links { display:grid; grid-template-columns:1fr 1fr; width:100%; }
    .floating-book { width:52px;height:52px;padding:0;justify-content:center }.floating-book b{display:none}

    .page-hero { padding: 70px 18px 30px; }.page-hero.compact h1 { font-size: clamp(3rem, 13vw, 4.7rem); }
    .service-detail-hero { padding: 35px 18px 55px; gap:30px; }.service-detail-copy h1 { font-size: clamp(3rem,13vw,4.6rem); }.service-detail-image { height: 390px; border-radius:26px; }.detail-facts { grid-template-columns:1fr; }.detail-facts div { border:0;border-bottom:1px solid var(--line);padding:10px 0;display:flex;justify-content:space-between; }.detail-facts div:last-child{border:0}.service-bottom-cta{margin:0 18px 70px;align-items:flex-start;flex-direction:column}
    .gallery-full { grid-template-columns:1fr; grid-auto-rows:280px; }.gallery-wide { grid-column:span 1; }.gallery-tall{grid-row:span 1;}

    .booking-shell { padding: 45px 14px 80px; }.booking-intro { padding-inline:4px; }.booking-intro h1 { font-size: clamp(3rem, 13vw, 4.4rem); }.booking-benefits { grid-template-columns:1fr; }.booking-benefits > div { grid-template-columns:32px 1fr; }.booking-card { border-radius:22px; }.form-section { grid-template-columns:1fr; padding:24px 20px; }.form-number { width:36px;height:36px; }.form-grid { grid-template-columns:1fr; }.slots { gap:6px; }.slot { flex: 1 0 calc(33.333% - 6px); padding-inline:7px; text-align:center; }.phone-input { grid-template-columns:78px 1fr; }.validation-summary { margin:18px 20px 0; }
    .success-page { padding: 80px 18px 95px; }.success-card { padding:15px 17px; }.success-card div { align-items:flex-start; flex-direction:column; gap:3px; }.success-card strong { text-align:left; }
    .auth-visual { min-height:300px; padding:30px 22px; }.auth-visual h1 { font-size:3.1rem; }.auth-card { width:calc(100% - 28px); padding:28px 22px; margin:28px auto 50px; }.prose-card { margin-inline:14px; padding:28px 22px; }
}

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