/* Base Styles */
/* ── Tokens ── */
:root {
    --primary: #4d7d55;
    --secondary: #4F4A45;
    --background: #FDFBF7;
    --hero-bg: #f4f7f4;
    --glare: var(--hero-bg);
    --footer-primary: #9ab89c;
    --p: var(--primary);
    --s: var(--secondary);
    --bg: var(--background);
    --gl: var(--glare);
    --hbg: var(--hero-bg);
    --fp: var(--footer-primary)
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

/* ── Base ── */
body {
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--background);
    color: var(--secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6
}

h1,
h2,
h3 {
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.2
}

/* ── Utilities ── */
.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
}

/* ── Button ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: filter .3s, transform .3s
}

.btn:hover {
    filter: brightness(88%);
    transform: translateY(-1px)
}

.btn:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 3px
}

/* ── Animations ── */
@media(prefers-reduced-motion:no-preference) {
    .fade-in {
        animation: fi .5s ease-in forwards
    }

    @keyframes fi {
        from {
            opacity: 0;
            transform: translateY(10px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }
}

/* ── SPA routing ── */
.ps {
    display: none
}

.ps.active {
    display: block
}

.ps[hidden] {
    display: none !important;
}

/* ── Skip link ── */
.skip-link {
    position: absolute;
    top: 0;
    left: 1rem;
    transform: translateY(-120%);
    background: #fff;
    color: var(--secondary);
    padding: var(--space-sm) 1rem;
    border-radius: 0.5rem;
    z-index: 2000;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.skip-link:focus {
    transform: translateY(0.75rem);
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #f3f4f6;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-width: 80rem;
    margin-inline: auto;
    padding: var(--space-md);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none
}

.logo-icon {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Nunito', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--secondary);
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-left: auto;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a,
.site-nav__actions a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: color .2s;
}

.site-nav__list a:hover,
.site-nav__actions a:hover,
.lang-link:hover {
    color: var(--primary);
}

.site-nav__list a:focus-visible,
.site-nav__actions a:focus-visible,
.nav-toggle:focus-visible,
.logo:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 0.5rem;
}

.site-nav__list a[aria-current="page"] {
    color: var(--primary);
    position: relative;
}

.site-nav__list a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.site-nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-left: var(--space-md);
}

.site-nav__actions a.btn {
    color: #fff;
}

.site-nav__actions a.btn:hover {
    color: #fff;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #6b7280;
}

.lang-link {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs);
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.2s, color 0.2s;
}

.nav-toggle:hover {
    background: var(--hero-bg);
    color: var(--primary);
}

/* ── Booking Calendar ── */
.calendar-picker {
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
    padding: calc(var(--space-md) + var(--space-2xs)) 1.25rem 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.calendar-picker[hidden] {
    display: none !important;
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid #e5e5e5;
}

.cal-nav button {
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    color: #3d3d3d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    font-family: inherit;
    line-height: 1;
    transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.cal-nav button:hover:not(:disabled) {
    background: #fafafa;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
}

.cal-nav button:active:not(:disabled) {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cal-nav button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
    background: #f2f2f2;
}

#cal-title {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    letter-spacing: 0.02em;
}

.cal-dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: var(--space-xs);
    text-align: center;
}

.cal-dow span {
    padding: var(--space-2xs) 0;
    font-size: 0.7rem;
    font-weight: 500;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-day {
    aspect-ratio: 1;
    max-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0.5rem;
    background: transparent;
    color: #2d2d2d;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.15s, color 0.15s;
}

.cal-day:hover:not(.cal-day--off):not(.cal-day--empty) {
    background: #f0f0f0;
    color: #2d2d2d;
}

.cal-day--other-month {
    color: #b8b8b8;
    font-weight: 500;
}

.cal-day--other-month:hover {
    color: #818181;
}

.cal-day--off {
    color: #cacaca;
    cursor: default;
    pointer-events: none;
    font-weight: 500;
}

.cal-day--empty {
    pointer-events: none;
    visibility: hidden;
}

.cal-day--sel {
    background: #6b7b4c !important;
    color: #fff !important;
    font-weight: 700;
}

.cal-day--sel:hover {
    background: #5c6b41;
    color: #fff;
}

.cal-day--today {
    box-shadow: inset 0 0 0 1px rgba(107, 123, 76, 0.55);
    color: #6b7b4c;
}

.cal-day--today.cal-day--sel {
    box-shadow: none;
    color: #fff;
}

.cal-selected-wrap {
    min-height: 1.75rem;
    margin-top: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cal-selected-label {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5e5e5e;
}

.cal-footer {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e5e5e5;
}

.cal-done {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 9999px;
    background: #6b7b4c;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(107, 123, 76, 0.3);
    transition: background 0.2s, box-shadow 0.2s, opacity 0.2s, transform 0.2s;
}

.cal-done:hover:not(:disabled) {
    background: #5c6b41;
    box-shadow: 0 2px 6px rgba(107, 123, 76, 0.35);
}

.cal-done:active:not(:disabled) {
    transform: scale(0.98);
}

.cal-done:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(5.25rem, 1fr));
    gap: .5rem;
}

.slot-btn {
    padding: .65rem .5rem;
    border: 1px solid rgba(77, 125, 85, .22);
    border-radius: .5rem;
    background: var(--background);
    cursor: pointer;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 500;
    color: var(--secondary);
    transition: background .2s, border-color .2s, color .2s;
    text-align: center;
}

.slot-btn:hover {
    border-color: var(--primary);
    background: rgba(77, 125, 85, .08);
    color: var(--primary);
}

.slot-btn--sel {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    font-weight: 600;
}

.booking-summary {
    background: rgba(77, 125, 85, .08);
    border: 1px solid rgba(77, 125, 85, .18);
    border-radius: .75rem;
    padding: var(--space-md) 1.25rem;
    font-size: .95rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.booking-summary svg {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .calendar-picker {
        max-width: min(100%, 20rem);
    }
}

/* ── FAQ (native details/summary) ── */
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    cursor: pointer;
    font-family: inherit;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
}

.faq-item .faq-chevron {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

/* ── Hero ── */
.hero {
    background: linear-gradient(to bottom, var(--hero-bg), transparent);
    padding: var(--space-section) 1rem;
    text-align: center
}

.hero-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-md);
}

.hero-logo {
    display: block;
    width: clamp(100px, 20vw, 180px);
    height: auto;
    margin-bottom: calc(var(--space-md) + var(--space-2xs));
}

.hero-brand-title {
    font-family: 'Nunito', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    color: #555b53;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}

.hero-brand-sub {
    font-family: 'Nunito', serif;
    font-size: clamp(0.85rem, 2vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    color: #64745a;
    text-transform: uppercase;
    margin: var(--space-2xs) 0 0;
}

.hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 900;
    margin-bottom: var(--space-lg)
}

/* ── Layout ── */
.ctr {
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: var(--space-md)
}

/* ── Card ── */
.card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
    border: 1px solid #f3f4f6;
}

.card-hov {
    transition: box-shadow .2s;
}

.card-hov:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

/* ── Timeline dot ── */
.tdot {
    z-index: 10;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    outline: 8px solid var(--background);
    flex-shrink: 0
}

.tline {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(77, 125, 85, .2);
    transform: translateX(-50%)
}

/* ── Timeline step layout ── */

/* Mobile: show stacked badge+card, hide desktop row */
.ts-mobile {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.ts-card {
    flex: 1;
    background: #fff;
    border-radius: 1rem;
    padding: calc(var(--space-md) + var(--space-2xs)) 1.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
    border: 1px solid #f3f4f6;
}

.ts-desktop {
    display: none;
}

/* Desktop: hide mobile, show alternating row */

/* ── Form ── */
.finput {
    display: block;
    width: 100%;
    padding: .75rem;
    border-radius: .75rem;
    border: none;
    box-shadow: 0 0 0 1px rgba(77, 125, 85, .3);
    font-family: inherit;
    font-size: 1rem;
    transition: box-shadow .2s;
    background: #fff
}

.finput:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary)
}

label {
    display: block;
    font-size: .875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .5rem
}

/* ── Footer (expect-strip style) ── */
.ftr {
    background: rgba(79, 74, 69, .1);
    color: var(--secondary);
    padding: 4rem 1rem 2rem;
}

.expect-strip {
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
}

.expect-eyebrow {
    font-size: .875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem;
}

.expect-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.expect-body {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.expect-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1.25rem;
    margin-bottom: var(--space-xl);
}

.expect-strip .pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(77, 125, 85, .12);
    padding: .5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(77, 125, 85, .25);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.ftr-socials {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: calc(var(--space-md) + var(--space-2xs));
}

.ftr-social-badge {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: var(--secondary);
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(79, 74, 69, .15);
    box-shadow: 0 10px 24px rgba(79, 74, 69, .08);
}

.ftr-social-badge svg {
    width: 1.15rem;
    height: 1.15rem;
}

.expect-strip .ftr-copy {
    font-size: .875rem;
    color: #4b5563; /* Improved contrast from #6b7280 */
    margin: 0;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(79, 74, 69, .15);
}

/* Navigation Dropdowns */

.has-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    transition: color .2s;
    padding: 0;
}

.site-nav__list .nav-dropdown-toggle:hover {
    color: var(--primary);
}

.nav-dropdown-toggle svg {
    transition: transform 0.2s;
}

.has-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
}

@media (min-width: 961px) {

    .has-dropdown:hover .dropdown-menu,
    .has-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .has-dropdown:hover .nav-dropdown-toggle svg {
        transform: rotate(180deg);
    }
}

@media (max-width: 960px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0.5rem 0 0.5rem 1rem;
        margin: 0;
        border-left: 2px solid var(--hero-bg);
        margin-left: 1.5rem;
        min-width: auto;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .site-nav__list .nav-dropdown-toggle {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        padding: var(--space-sm) 1rem;
        border-radius: 0.5rem;
    }

    .site-nav__list .nav-dropdown-toggle svg {
        margin-left: auto;
    }
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: var(--glare);
    color: var(--primary);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
        padding: var(--space-md);
        background: #fff;
        border: 1px solid #f3f4f6;
        border-radius: 1rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .site-nav[data-open="true"] {
        display: flex;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xs);
        margin: 0;
    }

    .site-nav__actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .site-nav__list a {
        display: block;
        padding: var(--space-sm) 1rem;
        border-radius: 0.5rem;
    }

    .site-nav__actions a.btn {
        padding: 0.5rem 1.25rem;
        border-radius: 9999px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        font-weight: 600;
    }

    .site-nav__list a[aria-current="page"]::after {
        display: none;
    }

    .site-nav__list a[aria-current="page"] {
        background: var(--hero-bg);
    }
}

@media (min-width: 961px) {
    .site-nav {
        display: flex !important;
    }
}

@media(min-width:768px) {

    .g2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3xl)
    }

    .g3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg)
    }

    .g4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-3xl)
    }

    .tline {
        display: block
    }

    .md-tr {
        text-align: right
    }

    .md-pr {
        padding-right: var(--space-3xl)
    }

    .md-pl {
        padding-left: var(--space-3xl)
    }

    .md-hw {
        width: 50%
    }

    /* Timeline desktop overrides */
    .ts-mobile {
        display: none
    }

    .ts-desktop {
        display: flex;
        align-items: center;
        gap: 0
    }

    .ts-left {
        flex: 1;
        padding-right: var(--space-3xl);
        text-align: right
    }

    .ts-right {
        flex: 1;
        padding-left: var(--space-3xl)
    }
}

/* ── Color helpers ── */
.tc-s {
    color: var(--secondary)
}

.tc-p {
    color: var(--primary)
}

.tc-w {
    color: #fff
}

.bg-w {
    background: #fff
}

.bg-gl {
    background: var(--glare)
}

.bg-bg {
    background: var(--background)
}

.bg-hbg {
    background: var(--hero-bg)
}

.tc-g3 {
    color: #d1d5db
}

.tc-g4 {
    color: #9ca3af
}

.tc-g5 {
    color: #6b7280
}

.tc-g6 {
    color: #4b5563
}

.hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #4a4a4a;
    margin-bottom: var(--space-md);
}

.hero-desc {
    font-size: 1.125rem;
    color: #3a3a3a;
    margin-bottom: var(--space-xl);
    max-width: 42rem;
    margin-inline: auto;
}

.p-btn-sm {
    padding: 0.4rem 1rem;
}

.p-btn-md {
    padding: var(--space-md) 2rem;
}

.br-pill {
    border-radius: 9999px;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.sh-sm {
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.sh-md {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
}

.m-l-1 {
    margin-left: var(--space-md);
}

.w-full {
    width: 100%;
}

.p-form {
    padding: .75rem;
}

.br-form {
    border-radius: .75rem;
}

.m-t-1 {
    margin-top: var(--space-md);
}

.v-box-inner {
    background: #fff;
    padding: var(--space-xl) 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
    border: 1px solid #f3f4f6;
    text-align: center;
}

.contact-grid--single {
    grid-template-columns: minmax(0, 1fr) !important;
}

/* Keep single-card contact layouts compact instead of stretching full width */
.contact-grid--single #contact-message-card,
.contact-grid--single #contact-booking-card {
    max-width: 32rem;
    margin-inline: auto;
    width: 100%;
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── Extracted Inline Utilities ── */

/* ── UI Polish Overrides ── */
:root {
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-section: 4rem;
    --page-gutter: 1rem;
    --container-narrow: 56rem;
    --container-default: 64rem;
    --container-wide: 80rem;
    --measure: 60ch;
    --body-leading: 1.7;
    --heading-leading: 1.15;
    --focus-ring: 2px solid var(--primary);
    --focus-offset: 4px;
    --control-min-size: 44px;
    --card-radius: 1.5rem;
    --card-padding: clamp(2rem, 3vw, 2.5rem);
    --card-shadow: 0 18px 32px rgba(79, 74, 69, 0.08);
    --card-shadow-hover: 0 26px 42px rgba(79, 74, 69, 0.14);
    --reveal-offset: 24px;
}

body {
    line-height: var(--body-leading);
}

h1,
h2,
h3 {
    line-height: var(--heading-leading);
}

p,
li {
    line-height: inherit;
}

section {
    scroll-margin-top: 7.5rem;
}

.ctr,
.container--wide,

.container--default,

.container--narrow,

.section-frame {
    padding: var(--space-section) var(--page-gutter) !important;
    background-color: var(--hero-bg);
}

.section-frame--tight {
    padding: clamp(2rem, 4vw, 3rem) var(--page-gutter) !important;
}

.section-intro {
    max-width: var(--container-narrow);
    margin-inline: auto;
}

.text-measure {
    max-width: min(100%, var(--measure));
    margin-inline: auto;
}

.text-measure--left {
    text-align: left !important;
}

.readable-card {
    text-align: left !important;
}

.readable-card>h2,
.readable-card>h3,
.readable-card .card-title {
    text-align: center;

    display: flex;
    flex-direction: column;
}

.readable-card>p,
.readable-card>ul,
.readable-card>ol,
.section-intro>p,
.expect-body {
    max-width: min(100%, var(--measure));
    margin-inline: auto;
}

.section-intro>p,
.readable-card>p,
.expect-body {
    text-align: left;
}

/* Remove padding between titles and header (but not hero) */
.ps> :first-child:not(.hero) {
    padding-top: 0 !important;
}

.segmented-control {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-xs);
    border-radius: 999px;
    background: transparent;
}

[hidden] {
    display: none !important;
}

.btn {
    border-radius: 9999px;
    min-height: var(--control-min-size);
    letter-spacing: 0.01em;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, filter .25s ease;
}

.btn:not(.contact-choice-btn) {
    background: linear-gradient(180deg, #5f8d67 0%, var(--primary) 100%);
    box-shadow: 0 14px 28px rgba(77, 125, 85, 0.2), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.btn:not(.contact-choice-btn):hover {
    filter: none;
    transform: translateY(-2px);
    background: linear-gradient(180deg, #688f70 0%, #466f4c 100%);
    box-shadow: 0 18px 34px rgba(77, 125, 85, 0.24), 0 8px 18px rgba(0, 0, 0, 0.08);
}

.contact-choice-btn {
    background: #fff;
    color: var(--secondary);
    border: 1px solid rgba(77, 125, 85, 0.22);
    box-shadow: none;
    min-height: var(--control-min-size);
    padding: 0.875rem 1.25rem !important;
    border-radius: 999px !important;
    line-height: 1.35 !important;
}

.contact-choice-btn:hover {
    filter: none;
    transform: translateY(-1px);
    background: rgba(77, 125, 85, 0.08);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(77, 125, 85, 0.1);
}

.contact-choice-btn[aria-pressed="true"] {
    background: linear-gradient(180deg, #5f8d67 0%, var(--primary) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(77, 125, 85, 0.18);
}

.contact-choice-btn[aria-pressed="false"] {
    background: transparent;
    color: var(--primary);
}

.card:not(.faq-item),
.process-card,
.surface-card,
.contact-panel,
.booking-panel,
.ts-card,
.callout-panel,
.program-card,
.workshop-card,
.about-safe-card {
    border-radius: var(--card-radius) !important;
    box-shadow: var(--card-shadow);

    display: flex;
    flex-direction: column;
}

.card:not(.faq-item),
.process-card,
.surface-card,
.contact-panel,
.booking-panel,
.ts-card,
.callout-panel,
.program-card,
.workshop-card {
    padding: var(--card-padding) !important;

    display: flex;
    flex-direction: column;
}

.faq-item {
    border-radius: var(--card-radius) !important;
}

.card-hov {
    transition: transform .28s ease, box-shadow .28s ease;

    display: flex;
    flex-direction: column;
}

.card-hov:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);

    display: flex;
    flex-direction: column;
}

.focus-section {
    position: relative;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
}

.focus-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--card-padding) !important;
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    text-align: left;
    min-height: 100%;
    background:
        radial-gradient(circle at top, rgba(154, 184, 156, 0.18), transparent 46%),
        #fff;
}

.focus-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.86), rgba(197, 214, 199, 0.58) 34%, rgba(77, 125, 85, 0.12) 100%);
    color: var(--primary);
    border: 1px solid rgba(77, 125, 85, 0.14);
    box-shadow:
        0 10px 22px rgba(77, 125, 85, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.focus-icon svg {
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: currentColor;
}

.focus-card h3 {
    margin: 0;
}

.focus-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.process-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}

.process-card p {
    color: #4b5563;
}

.about-layout {
    align-items: start;
}

.about-copy,
.about-sidebar {
    gap: 1.75rem;
}

.about-title {
    max-width: 16ch;
    margin-inline: auto;
    text-align: center;
}

.about-lead {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    line-height: 1.8;
    color: var(--secondary);
}

.about-lead strong,
.about-body strong,
.about-sidebar-copy strong {
    color: var(--secondary);
}

.about-quote {
    margin: 0;
    padding: 0 0 0 1.5rem;
    border-left: 4px solid rgba(77, 125, 85, 0.55);
    color: #4b5563;
}

.about-goal-card {
    display: grid;
    gap: calc(var(--space-md) + var(--space-2xs));
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
        var(--background);
    border: 1px solid rgba(77, 125, 85, 0.14);
}

.about-body {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #4b5563;
}

.about-pullquote {
    margin: 0;
    padding: calc(var(--space-md) + var(--space-2xs)) 1.5rem;
    border-radius: 1.25rem;
    background: rgba(77, 125, 85, 0.08);
    color: var(--secondary);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.65;
}

.about-credentials {
    padding: 1.1rem 1.25rem;
    border-radius: 1.25rem;
    background: rgba(240, 244, 241, 0.72);
}

.about-purpose-card p,
.about-sidebar-copy,
.about-safe-card p {
    line-height: 1.8;
}

.about-sidebar-copy {
    margin: 0;
    color: #4b5563;
}

.about-safe-card {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 42%),
        var(--primary);
}

.contact-panel,
.booking-panel {
    border-radius: var(--card-radius) !important;
    padding: clamp(1.5rem, 3vw, 2rem) !important;
}

.stack-form {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-md) + var(--space-2xs));
}

.finput {
    border: 1px solid rgba(77, 125, 85, 0.22);
    min-height: var(--control-min-size);
    padding: var(--space-md);
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(79, 74, 69, 0.06);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

textarea.finput {
    min-height: 8.5rem;
}

.finput:focus,
.finput:focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(77, 125, 85, 0.14), 0 1px 2px rgba(79, 74, 69, 0.08);
    background: #fff;
}

.finput:not(:placeholder-shown):invalid {
    border-color: #c85f5f;
    box-shadow: 0 0 0 4px rgba(200, 95, 95, 0.12);
}

.finput:not(:placeholder-shown):valid {
    border-color: rgba(77, 125, 85, 0.55);
    box-shadow: 0 0 0 3px rgba(77, 125, 85, 0.08);
}

.cal-back {
    transition: opacity .2s ease;
}

.cal-back:hover {
    opacity: 0.7;
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
}

.btn:focus-visible,
.finput:focus-visible,
.cal-nav button:focus-visible,
.slot-btn:focus-visible,
.cal-done:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
}

.cal-nav {
    margin-bottom: var(--space-md);
}

.cal-day {
    min-height: 0;
    min-width: 0;
}

.cal-day--off,
.cal-day--other-month {
    opacity: 1;
}

.u-d-flex-f7dbb.u-ai-center-1e2cc .u-d-flex-f7dbb.u-ai-center-1e2cc.u-gap-5rem-60f84>svg {
    margin-top: var(--space-2xs);
}

.reveal {
    opacity: 0;
    transform: translateY(var(--reveal-offset));
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s ease, transform .7s ease;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal.active {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 767px) {
    .segmented-control {
        width: 100%;
        border-radius: 1.5rem;
    }

    .contact-choice-btn {
        width: 100%;
    }

    .focus-card {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--card-padding) !important;
        padding: var(--card-padding);
        text-align: center;
        align-items: center;
    }

    .about-title {
        max-width: none;
    }

    .about-pullquote {
        font-size: 1.05rem;
    }
}

/* Component Styles */
.layout-block-1 {
    flex: 1 1 auto;
}

.layout-block-2 {
    max-width: var(--container-narrow);
    margin-inline: auto;
    margin-inline: auto;
}

.u-fw-900-5e8a7--style-8778 {
    font-size: 1.875rem;
    margin-bottom: var(--space-lg);
}

.hero-desc--style-3da3 {
    font-size: 1.125rem;
    color: #4b5563;
}

.btn--style-ae6b {
    margin-top: var(--space-md);
}

.reveal--style-8efb {
    background: var(--hero-bg);

}

.g2--style-cebd {
    align-items: center;
}

.layout-block-3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
}

.layout-block-4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    color: #444;
}

.layout-block-5 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    font-size: 1.125rem;
}

.layout-block-6 {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.layout-block-7 {
    margin-top: .2rem;
    flex-shrink: 0;
}

.layout-block-8 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout-block-9 {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.ctr--style-8ba4 {
    padding: var(--space-section) 1rem;
}

.reveal--style-00ee {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.reveal--style-4509 {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: var(--space-section);
    max-width: 42rem;
    margin-inline: auto;
}

.u-gtc-repeat-auto-fit-minmax-200px-1fr-a4173--style-c5b2 {
    display: grid;
    gap: var(--space-xl);
}

.layout-block-10 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: .5rem;
    color: var(--secondary);
}

.layout-block-11 {
    font-size: .875rem;
    color: #444;
}

.container--default--style-ff7c {
    max-width: var(--container-default);
    margin-inline: auto;
    margin-inline: auto;
    padding: var(--space-section) 1rem;
}

.surface-card--style-7e70 {
    background: #fff;
    padding: var(--space-xl) 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
    border: 1px solid #f3f4f6;
    text-align: center;
}

.layout-block-12 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.layout-block-13 {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: var(--space-xl);
}

.btn--style-485c {
    border-radius: 9999px;
    font-weight: 700;
    color: var(--primary);
}

.layout-block-14 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-3xl);
}

.card--style-f474 {
    text-align: center;
    display: flex;
    flex-direction: column;

    display: flex;
    flex-direction: column;
}

.u-fs-1-5rem-e80aa--style-9b35 {
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--secondary);
}

.u-fs-1rem-8c29b--style-1641 {
    color: #4b5563;
    margin-bottom: var(--space-xl);
}

.btn--style-a775 {
    border-radius: 9999px;
    font-weight: 700;
}

.layout-block-15 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem;
}

.layout-block-16 {
    font-size: .875rem;
    color: #4b5563;
}

.u-mt-3rem-f7dbb--style-3fc5 {
    text-align: center;
}

.btn--style-7b24 {
    padding: var(--space-md) 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
}

.reveal--style-d751 {
    max-width: var(--container-narrow);
    margin-inline: auto;
    margin-inline: auto;
    padding: var(--space-3xl) 1rem;
}

.surface-card--style-5dc0 {
    background: var(--secondary);
    color: #fff;
    padding: var(--space-2xl);
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, .1);
    position: relative;
    overflow: hidden;
}

.layout-block-17 {
    position: relative;
    z-index: 10;
}

.layout-block-18 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.layout-block-19 {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    color: #e5e7eb;
}

.layout-block-20 {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: #fff;
    opacity: .05;
    border-radius: 50%;
}

.reveal--style-fc24 {
    background: var(--hero-bg);
    padding: var(--space-section) 1rem;
    text-align: center;
}

.layout-block-21 {
    max-width: 42rem;
    margin-inline: auto;
}

.layout-block-22 {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: var(--space-xl);
}

.reveal--style-ef2e {
    background: var(--hero-bg);
    padding: var(--space-section) 1rem;
    text-align: center;
}

.layout-block-23 {
    max-width: 42rem;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
    font-size: 1.125rem;
}

.g2--style-7ab3 {
    gap: var(--space-section);
    align-items: flex-start;
    margin-bottom: 6rem;
}

.about-copy--style-f563 {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-title--style-e3e6 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: .5rem;
}

.about-lead--style-424a {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 600;
    line-height: 1.6;
}

.about-quote--style-47c5 {
    padding-left: var(--space-lg);
    border-left: 4px solid var(--primary);
    opacity: 0.9;
}

.layout-block-24 {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
}

.surface-card--style-5c82 {
    background: var(--background);
    padding: var(--space-lg);
    border-radius: 1rem;
    border: 1px solid rgba(77, 125, 85, .1);
}

.about-body--style-eb75 {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: var(--space-md);
    line-height: 1.75;
}

.about-credentials--style-8080 {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.layout-block-25 {
    flex-shrink: 0;
    margin-top: var(--space-2xs);
}

.card--style-fe8c {
    padding: var(--space-xl);
    margin-top: var(--space-lg);

    display: flex;
    flex-direction: column;
}

.layout-block-26 {
    margin-bottom: var(--space-lg);
}

.layout-block-27 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.layout-block-28 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: var(--space-lg);
}

.layout-block-29 {
    display: flex;
    align-items: center;
    align-items: flex-start;
}

.layout-block-30 {
    flex-shrink: 0;
}

.layout-block-31 {
    font-style: italic;
}

.about-sidebar--style-26e7 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding-top: 12rem;
}

.layout-block-32 {
    height: 31.25rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
}

.layout-block-33 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-safe-card--style-9524 {
    padding: var(--space-xl);
    border-radius: 1rem;
    background: var(--primary);
    color: #fff;
}

.layout-block-34 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.layout-block-35 {
    margin-bottom: var(--space-md);
    opacity: .9;
}

.layout-block-36 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .75rem;
    font-size: .875rem;
    list-style: none;
}

.layout-block-37 {
    margin-top: var(--space-md);
    font-size: .875rem;
    opacity: .9;
}

.layout-block-38 {
    margin-bottom: 6rem;
}

.layout-block-39 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 36rem;
    margin-inline: auto;
    margin-bottom: var(--space-3xl);
}

.layout-block-40 {
    background: var(--background);
    padding: var(--space-md);
    border-radius: .75rem;
    text-align: center;
    font-weight: 700;
    border: 1px solid rgba(77, 125, 85, .2);
}

.layout-block-41 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.layout-block-42 {
    text-align: center;
    color: #4b5563;
    margin-bottom: var(--space-md);
}

.layout-block-43 {
    max-width: 36rem;
    margin-inline: auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    color: #4b5563;
}

.layout-block-44 {
    display: flex;
    align-items: flex-start;
    align-items: flex-start;
}

.layout-block-45 {
    text-align: center;
    color: #4b5563;
    max-width: 42rem;
    margin-inline: auto;
}

.layout-block-46 {
    text-align: center;
    color: #4b5563;
    margin-bottom: var(--space-xl);
}

.layout-block-47 {
    max-width: 42rem;
    margin-inline: auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    font-size: 1.125rem;
}

.layout-block-48 {
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.layout-block-49 {
    text-align: center;
    margin-top: var(--space-lg);
    color: #4b5563;
}

.layout-block-50 {
    text-align: center;
    padding: var(--space-section) 2rem;
    background: var(--hero-bg);
    border-radius: 1.5rem;
}

.layout-block-51 {
    margin-bottom: var(--space-xl);
    max-width: 36rem;
    margin-inline: auto;
}

.section-intro--style-3a3a {
    text-align: center;
    max-width: var(--container-narrow);
    margin-inline: auto;
    margin-inline: auto;
    margin-bottom: var(--space-section);
}

.layout-block-52 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
}

.layout-block-53 {
    font-size: 1.125rem;
}

.g2--style-abbf {
    gap: var(--space-2xl);
    margin-bottom: var(--space-section);
}

.layout-block-54 {
    background: #fff;
    border-radius: 1.5rem;
    padding: var(--space-2xl);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    border-top: 8px solid var(--primary);
    display: flex;
    flex-direction: column;
}

.layout-block-55 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
}

.layout-block-56 {
    color: var(--primary);
    font-weight: 600;
}

.layout-block-57 {
    margin-bottom: var(--space-xl);
}

.layout-block-58 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .75rem;
}

.layout-block-59 {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: .875rem;
}

.layout-block-60 {
    margin-top: .75rem;
    font-size: .875rem;
}

.layout-block-61 {
    margin-top: auto;
}

.layout-block-62 {
    background: var(--background);
    padding: var(--space-md);
    border-radius: .75rem;
    margin-bottom: var(--space-lg);
}

.layout-block-63 {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6b7280;
    margin-bottom: .25rem;
}

.layout-block-64 {
    font-weight: 700;
}

.btn--style-06f2 {
    display: block;
    width: 100%;
    padding: var(--space-md);
    border-radius: .75rem;
    font-weight: 700;
    text-align: center;
}

.layout-block-65 {
    background: #fff;
    border-radius: 1.5rem;
    padding: var(--space-2xl);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    border-top: 8px solid var(--secondary);
    display: flex;
    flex-direction: column;
}

.layout-block-66 {
    font-weight: 600;
    opacity: .7;
    color: var(--secondary);
}

.layout-block-67 {
    display: inline-block;
    margin-top: .5rem;
    padding: .25rem .75rem;
    background: var(--primary);
    color: #fff;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
}



.layout-block-69 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-xl);
}

.card--style-cbb2 {
    padding: var(--space-lg);

    display: flex;
    flex-direction: column;
}

.layout-block-70 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: .75rem;
}

.layout-block-71 {
    font-size: .875rem;
}

.layout-block-72 {
    text-align: center;
    max-width: var(--container-narrow);
    margin-inline: auto;
    margin-inline: auto;
    margin-bottom: var(--space-3xl);
}

.layout-block-73 {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: .5rem;
}

.layout-block-74 {
    font-size: 1.125rem;
    color: #4b5563;
    font-style: italic;
}

.layout-block-75 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.layout-block-76 {
    background: #fff;
    border-radius: 1.5rem;
    padding: var(--space-2xl);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    border-top: 6px solid var(--primary);
    display: flex;
    flex-direction: column;
}

.layout-block-77 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .5rem;
}

.layout-block-78 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.layout-block-79 {
    margin-bottom: var(--space-md);
}

.layout-block-80 {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: .875rem;
    margin-bottom: var(--space-lg);
}

.layout-block-81 {
    margin-top: auto;
    font-style: italic;
    font-size: .875rem;
    color: var(--primary);
    font-weight: 600;
}

.layout-block-82 {
    background: #fff;
    border-radius: 1.5rem;
    padding: var(--space-2xl);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    border-top: 6px solid var(--secondary);
    display: flex;
    flex-direction: column;
}

.layout-block-83 {
    text-align: center;
    background: var(--background);
    padding: var(--space-2xl);
    border-radius: 1.5rem;
}

.layout-block-84 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.layout-block-85 {

    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.card--style-87d2 {
    padding: var(--space-xl);

    display: flex;
    flex-direction: column;
}

.layout-block-86 {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.layout-block-87 {
    font-style: italic;
    color: #4b5563;
}

.layout-block-88 {
    margin-bottom: var(--space-lg);
    max-width: 36rem;
    margin-inline: auto;
}

.btn--style-042d {
    padding: var(--space-md) 2rem;
    border-radius: 9999px;
    font-weight: 700;
}

.section-intro--style-7239 {
    text-align: center;
    max-width: 48rem;
    margin-inline: auto;
    margin-bottom: var(--space-section);
}

.layout-block-89 {
    position: relative;
    padding: var(--space-3xl) 0;
}

.layout-block-90 {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.layout-block-91 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .75rem;
}

.layout-block-92 {
    color: #4b5563;
    margin-bottom: .75rem;
}

.layout-block-93 {
    font-size: .875rem;
    font-style: italic;
    color: #6b7280;
}

.layout-block-94 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .75rem;
}

.layout-block-95 {
    color: #4b5563;
    margin-bottom: var(--space-md);
}

.layout-block-96 {
    font-size: .875rem;
    font-style: italic;
}

.layout-block-97 {
    color: #4b5563;
}

.layout-block-98 {
    margin-top: var(--space-section);
    background: var(--background);
    padding: var(--space-3xl);
    border-radius: 1.5rem;
    text-align: center;
    border: 2px dashed rgba(77, 125, 85, .3);
}

.layout-block-99 {
    max-width: 42rem;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
}

.layout-block-100 {
    margin-bottom: var(--space-lg);
    color: #4b5563;
}

.btn--style-97ff {
    padding: var(--space-md) 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
}

.layout-block-101 {
    max-width: var(--container-narrow);
    margin-inline: auto;
    margin-inline: auto;
    margin-bottom: var(--space-section);
}

.layout-block-102 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.layout-block-103 {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: var(--space-lg);
}

.layout-block-104 {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: var(--space-xl);
}

.layout-block-105 {
    text-align: center;
    margin-bottom: var(--space-section);
}

.layout-block-106 {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-inline: auto;
    border-radius: 1rem;
}

.card--style-6059 {
    padding: var(--space-2xl);
    margin-bottom: var(--space-3xl);

    display: flex;
    flex-direction: column;
}

.layout-block-107 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.layout-block-108 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: .5rem;
}

.layout-block-109 {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: var(--space-md);
}

.layout-block-110 {
    text-align: center;
    margin-top: var(--space-xl);
}

.layout-block-111 {
    margin-bottom: var(--space-section);
}

.g2--style-452a {
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.layout-block-112 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .25rem;
}

.layout-block-113 {
    padding-left: var(--space-lg);
    font-size: .875rem;
    margin-bottom: var(--space-md);
}

.layout-block-114 {
    background: var(--secondary);
    color: #fff;
    border-radius: 1.5rem;
    padding: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.layout-block-115 {
    font-size: 1.125rem;
    opacity: .9;
}

.layout-block-116 {
    margin-top: var(--space-lg);
    max-width: 48rem;
    margin-inline: auto;
    opacity: .85;
}

.layout-block-117 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.card--style-1aa0 {
    padding: var(--space-md);
    text-align: center;

    display: flex;
    flex-direction: column;
}

.layout-block-118 {
    background: var(--background);
    border-radius: 1.5rem;
    padding: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    border: 1px solid rgba(77, 125, 85, .2);
}

.layout-block-119 {
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.layout-block-120 {
    max-width: 48rem;
    margin-inline: auto;
}

.layout-block-121 {
    background: #fff;
    padding: var(--space-2xl);
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
    border: 1px solid #f3f4f6;
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.layout-block-122 {
    color: #4b5563;
    max-width: 42rem;
    margin-inline: auto;
}

.reveal--style-e92f {
    max-width: 48rem;
    margin-inline: auto;
    margin-bottom: var(--space-section);
    padding: var(--space-xl) 2.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
}

.layout-block-123 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.u-fs-1rem-8c29b--style-9755 {
    color: #4b5563;
    list-style: disc;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.u-fs-1rem-8c29b--style-9dc7 {
    color: #4b5563;
    list-style: disc;
    padding-left: var(--space-lg);
}

.layout-block-124 {
    max-width: 48rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item--style-ff89 {
    overflow: hidden;
}

.layout-block-125 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
}

.layout-block-126 {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
}

.u-mb-0-a19c5--style-5815 {
    max-width: 48rem;
    margin-inline: auto;
    margin-top: var(--space-section);
}

.reveal--style-a2a5 {
    padding: var(--space-lg);
    border-radius: 1rem;
    background: rgba(77, 125, 85, .1);
    border: 1px solid rgba(77, 125, 85, .2);
}

.layout-block-127 {
    font-size: .875rem;
    color: #444;
    line-height: 1.6;
}

.layout-block-128 {
    color: var(--secondary);
}

.layout-block-129 {
    text-align: center;
    margin-top: var(--space-section);
}

.reveal--style-4ba6 {
    background: transparent;
}

.section-intro--style-52a9 {
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
}

.reveal--style-c0f3 {
    margin-top: calc(var(--space-md) + var(--space-2xs));
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn--style-1cbf {
    padding: 0.875rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.35;
}

.btn--style-e90e {
    padding: 0.875rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.35;
}

.reveal--style-0392 {
    max-width: var(--container-wide);
    margin-inline: auto;
    padding: clamp(4rem, 8vw, 6rem) 1rem;
}

.contact-grid--style-cc1f {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.contact-panel--style-2590 {
    background: var(--background);
    padding: var(--space-xl) 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px rgba(77, 125, 85, .12);
    border: 1px solid rgba(77, 125, 85, .2);
}

.layout-block-130 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.layout-block-131 {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    border-radius: 1rem;
    text-align: center;
    background: rgba(77, 125, 85, .1);
    border: 2px solid var(--primary);
}

.layout-block-132 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem;
}

.finput--style-8b39 {
    margin-top: .5rem;
}

.finput--style-1f35 {
    margin-top: .5rem;
    resize: none;
}

.btn--style-d4b1 {
    width: 100%;
    padding: var(--space-md);
    border-radius: .75rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.layout-block-133 {
    font-size: .875rem;
    color: #6b7280;
    text-align: center;
}

.layout-block-134 {
    display: flex;
    flex-direction: column;
}

.booking-panel--style-8d81 {
    background: var(--background);
    padding: var(--space-xl) 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(77, 125, 85, .1);
    border: 1px solid rgba(77, 125, 85, .15);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.layout-block-135 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    text-align: center;
}

.layout-block-136 {
    text-align: center;
    color: #4b5563;
    font-size: .95rem;
    max-width: 28rem;
    margin: 0 auto;
    line-height: 1.6;
}

.btn--style-0944 {
    align-self: center;
    padding: .875rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(77, 125, 85, .2);
}

.cal-back--style-528f {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0;
    margin-bottom: var(--space-md);
    transition: opacity .2s;
}

.layout-block-137 {
    font-size: .875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: .75rem;
}

.stack-form--style-fc1d {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-md) + var(--space-2xs));
    margin-top: calc(var(--space-md) + var(--space-2xs));
}

.layout-block-138 {
    font-weight: 400;
    color: #6b7280;
}

.layout-block-139 {
    font-size: .8rem;
    color: #6b7280;
    text-align: center;
}

.layout-block-140 {
    text-align: center;
    padding: var(--space-lg) 0;
}

.layout-block-141 {
    background: rgba(77, 125, 85, .1);
    border: 2px solid var(--primary);
    border-radius: 1rem;
    padding: var(--space-xl);
}

.layout-block-142 {
    color: #4b5563;
    margin-bottom: var(--space-lg);
    max-width: 24rem;
    margin-inline: auto;
}

.expect-strip--style-180b {
    margin-top: clamp(3rem, 6vw, 4rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(77, 125, 85, .15);
}

.card .btn {
    margin-top: auto;
}

h1,
h2,
h3 {
    margin-bottom: var(--space-md) !important;
}

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}



html {
    scroll-padding-top: 100px;
}

h1,
h2,
h3 {
    margin-bottom: var(--space-sm) !important;
}

p {
    margin-bottom: var(--space-md) !important;
}

.card p:last-child {
    margin-bottom: 0 !important;
}

/* ── Focus grid (extracted inline styles) ── */
.focus-section {
    padding: var(--space-section) 1rem;
}

.focus-section__title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-section) !important;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.focus-grid__card {
    padding: 1.5rem;
    text-align: center;
}

.focus-grid__emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.focus-grid__heading {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: .5rem !important;
    color: var(--secondary);
}

.focus-grid__text {
    font-size: .875rem;
}

/* ── Inline form errors ── */
.form-error {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: 0.75rem;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
}

.form-error[hidden] {
    display: none;
}

/* ── Status banner (booking return) ── */
.status-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    animation: slide-down 0.3s ease-out;
}

.status-banner[hidden] {
    display: none;
}

.status-banner--success {
    background: #ecfdf5;
    border-bottom: 2px solid #6ee7b7;
    color: #065f46;
}

.status-banner--warning {
    background: #fffbeb;
    border-bottom: 2px solid #fcd34d;
    color: #92400e;
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}