:root {
    --bg: #f5efe8;
    --bg-deep: #eadfd3;
    --surface: #ffffff;
    --surface-soft: #fbf7f1;
    --surface-warm: #f8f1e9;
    --surface-blue: #eef5f7;
    --ink: #222225;
    --navy: #1f2430;
    --muted: #6b645d;
    --muted-2: #867b70;
    --red: #c62d2b;
    --red-dark: #9e2322;
    --mauve: #b85c6b;
    --gold: #c9a47b;
    --teal: #2d7f85;
    --teal-dark: #215f64;
    --border: #e8ddd0;
    --border-soft: rgba(232, 221, 208, .68);
    --shadow-xl: 0 24px 80px rgba(41, 35, 29, .13);
    --shadow-lg: 0 18px 48px rgba(41, 35, 29, .10);
    --shadow-md: 0 10px 28px rgba(41, 35, 29, .08);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 50% -8%, rgba(255,255,255,.92) 0, rgba(255,255,255,0) 42%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 88px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.page {
    width: min(100%, var(--container));
    margin: 0 auto;
    background: linear-gradient(180deg, #fff 0%, #fbf6ef 58%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(94, 74, 49, .05), var(--shadow-xl);
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 14px 18px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(231, 221, 208, .8);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: min(58vw, 235px); max-height: 48px; object-fit: contain; object-position: left center; }
.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(31,36,48,.08);
    border-radius: 999px;
    background: rgba(250,246,240,.76);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--navy);
}
.site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    padding: 10px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
}
.site-nav.is-open { display: flex; }
.site-nav a {
    padding: 13px 14px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 800;
    border-radius: 12px;
}
.site-nav a:hover { background: var(--surface-soft); }

.section { padding: 54px 18px; }
.eyebrow {
    margin: 0 0 11px;
    color: var(--mauve);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}
h1, h2, h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.03;
}
h1 { font-size: clamp(48px, 13vw, 76px); letter-spacing: -0.055em; }
h2 { font-size: clamp(32px, 8.5vw, 54px); letter-spacing: -0.04em; }
h3 { font-size: clamp(29px, 7vw, 42px); letter-spacing: -0.035em; }
p { margin: 0; line-height: 1.68; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 850;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
    background: linear-gradient(180deg, #2f8790, var(--teal-dark));
    color: #fff;
    box-shadow: 0 16px 28px rgba(33, 95, 100, .24);
}
.btn--primary:hover { background: linear-gradient(180deg, #2a7780, #1c5358); }
.btn--outline {
    background: rgba(255,255,255,.86);
    color: var(--teal-dark);
    border: 1px solid rgba(45,127,133,.34);
}
.btn--outline:hover { border-color: rgba(45,127,133,.56); }
.btn--wide { width: 100%; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(31,36,48,.18);
    padding-bottom: 6px;
}
.text-link::after { content: '→'; color: var(--red); }

.hero {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 0 18px 46px;
    background:
        radial-gradient(circle at 24% 20%, rgba(255,255,255,.95), rgba(255,255,255,0) 34%),
        linear-gradient(180deg, #fbf5ee 0%, #fff 75%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: auto -18% -20% auto;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,218,203,.46), transparent 68%);
    pointer-events: none;
}
.hero__visual {
    order: -1;
    position: relative;
    z-index: 1;
    margin: 0 -18px;
    overflow: hidden;
    border-radius: 0 0 34px 34px;
    background: #eadfd3;
    box-shadow: 0 18px 42px rgba(41,35,29,.08);
}
.hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 52%, rgba(255,255,255,.72) 100%),
        linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,0) 46%);
    pointer-events: none;
}
.hero__visual img {
    width: 100%;
    height: clamp(305px, 74vw, 460px);
    object-fit: cover;
    object-position: 62% center;
}
.hero__copy {
    position: relative;
    z-index: 2;
    margin-top: -42px;
    padding: 24px 20px 22px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(232,221,208,.76);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
}
.hero__lead {
    margin-top: 18px;
    font-size: 17px;
    color: var(--muted);
    max-width: 500px;
}
.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 22px;
}
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 13px 16px;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    background: rgba(255,255,255,.78);
    box-shadow: var(--shadow-md);
}
.availability-badge img { width: 28px; height: 28px; }
.availability-badge strong { font-size: 14px; line-height: 1.34; color: var(--navy); }

.availability-strip {
    margin: -18px 18px 0;
    padding: 20px 18px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(251,246,240,.94));
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}
.availability-strip img { width: 44px; }
.availability-strip .eyebrow { margin-bottom: 4px; }
.availability-strip h2 { font-size: clamp(24px, 6vw, 34px); line-height: 1.12; }

.section-heading { max-width: 760px; margin: 0 auto 26px; text-align: center; }
.section-heading--left { margin-inline: 0; text-align: left; }
.section-heading h2 span { display: block; }
.section-heading p { margin-top: 14px; color: var(--muted); }
.products {
    background:
        radial-gradient(circle at 92% 4%, rgba(201,164,123,.15), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fbf6ef 100%);
}
.product-intro { display: grid; gap: 18px; margin-bottom: 28px; }
.direction-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.direction-card {
    flex: 0 0 156px;
    min-height: 132px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 18px 14px;
    text-align: center;
    text-decoration: none;
    color: var(--navy);
    background: rgba(255,255,255,.78);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
}
.direction-card img {
    width: 42px;
    height: 42px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(201,164,123,.15);
}
.direction-card span { font-weight: 850; line-height: 1.22; }

.product-feature-list { display: grid; gap: 22px; }
.product-feature {
    display: grid;
    border: 1px solid var(--border-soft);
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    background: #fff;
}
.product-feature::after {
    content: '';
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.64), transparent 68%);
    pointer-events: none;
}
.product-feature--warm { background: linear-gradient(180deg, #f8f1e9, #fff); }
.product-feature--blue { background: linear-gradient(180deg, #f1f7f7, #fff); }
.product-feature--soft { background: linear-gradient(180deg, #f7f4ef, #fff); }
.product-feature__media {
    position: relative;
    min-height: 315px;
    overflow: hidden;
    background: #eadfd3;
}
.product-feature__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 54%, rgba(255,255,255,.84) 100%),
        radial-gradient(circle at 12% 12%, rgba(255,255,255,.34), transparent 34%);
    pointer-events: none;
}
.product-feature__media img {
    width: 100%;
    height: 100%;
    min-height: 315px;
    object-fit: cover;
    filter: saturate(.98) contrast(1.01);
}
.product-feature--warm .product-feature__media img { object-position: 47% center; }
.product-feature--blue .product-feature__media img { object-position: 53% center; }
.product-feature--soft .product-feature__media img { object-position: 50% center; }
.product-feature__content {
    position: relative;
    z-index: 1;
    margin-top: -26px;
    padding: 26px 20px 26px;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.82));
    backdrop-filter: blur(12px);
}
.product-feature__lead {
    margin-top: 14px;
    color: var(--navy);
    font-weight: 760;
}
.product-feature__text { margin-top: 12px; color: var(--muted); }
.product-feature__bullets {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}
.product-feature__bullets li {
    position: relative;
    padding-left: 28px;
    color: var(--navy);
    line-height: 1.48;
}
.product-feature__bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(184,92,107,.10);
    color: var(--mauve);
    font-size: 12px;
    font-weight: 900;
}
.product-feature__availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(251,247,241,.88);
    border: 1px solid rgba(201,164,123,.30);
    color: var(--navy);
    font-weight: 800;
    font-size: 13px;
}
.product-feature__availability span {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
}
.product-feature__content .btn { margin-top: 18px; }

.support-grid {
    display: grid;
    gap: 18px;
    background:
        radial-gradient(circle at 0 0, rgba(201,164,123,.12), transparent 30%),
        linear-gradient(180deg, #fbf6ef, #fff);
}
.expert,
.locator,
.benefit-card,
.faq details {
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
}
.expert {
    display: grid;
    gap: 18px;
    align-items: start;
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(251,246,240,.88));
    border-radius: 30px;
}
.expert__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(201,164,123,.16);
}
.expert__icon img { width: 38px; }
.expert p:last-child { margin-top: 12px; color: var(--muted); }
.locator {
    display: grid;
    gap: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #eef5f7, #fbfcfd);
    border-radius: 30px;
}
.locator__map {
    min-height: 172px;
    background: rgba(255,255,255,.48);
    overflow: hidden;
}
.locator__map img {
    width: 100%;
    height: 100%;
    min-height: 172px;
    object-fit: cover;
}
.locator__content { padding: 24px 20px; }
.locator__content p:last-of-type { margin-top: 12px; color: var(--muted); }
.locator__content .btn { margin-top: 20px; }

.benefits { display: grid; gap: 14px; }
.benefit-card {
    padding: 22px 18px;
    border-radius: 26px;
    background: linear-gradient(180deg, #fff, #fbf8f3);
    text-align: center;
}
.benefit-card img {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    padding: 7px;
    border-radius: 999px;
    background: rgba(201,164,123,.13);
}
.benefit-card h3 { font-size: 24px; }
.benefit-card p { margin-top: 8px; color: var(--muted); }

.faq {
    position: relative;
    background: linear-gradient(180deg, #fff, #fbf6ef);
}
.faq details {
    border-radius: 18px;
    padding: 18px;
    background: rgba(255,255,255,.94);
}
.faq details + details { margin-top: 12px; }
.faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 850;
    color: var(--navy);
    position: relative;
    padding-right: 26px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: -2px;
    color: var(--mauve);
    font-size: 24px;
    line-height: 1;
}
.faq details[open] summary::after { content: '–'; }
.faq details p { margin-top: 12px; color: var(--muted); }

.site-footer {
    padding: 30px 22px 112px;
    text-align: center;
    border-top: 1px solid rgba(231,221,208,.8);
    background: linear-gradient(180deg, #fff, #faf6f0);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-brand img { width: 180px; }
.footer-brand strong { color: var(--navy); }
.site-footer p { max-width: 760px; margin: 16px auto 0; color: var(--muted); }
.footer-links {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(31,36,48,.15);
}

.sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2f8790, var(--teal-dark));
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(33, 95, 100, .34);
}

@media (min-width: 760px) {
    body { padding-bottom: 0; }
    .section { padding: 72px 34px; }
    .hero { padding-inline: 34px; padding-bottom: 64px; }
    .hero__visual { margin-inline: -34px; }
    .hero__copy { max-width: 680px; margin-inline: auto; padding: 32px; }
    .hero__actions { flex-direction: row; align-items: center; }
    .availability-strip { margin-inline: 34px; padding: 24px 26px; }
    .product-feature__media { min-height: 400px; }
    .product-feature__media img { min-height: 400px; }
    .benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
    body { padding: 14px; }
    .page { border-radius: 34px; }
    .section { padding: 84px 64px; }
    .site-header {
        min-height: 92px;
        padding: 22px 44px;
        border-radius: 34px 34px 0 0;
    }
    .brand img { width: 305px; max-height: 56px; }
    .menu-toggle { display: none; }
    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 8px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }
    .site-nav a { padding: 10px 14px; }

    .hero {
        display: grid;
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.16fr);
        align-items: center;
        gap: 38px;
        min-height: 690px;
        padding: 62px 64px 64px;
        background:
            linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.72) 52%, rgba(255,255,255,.34)),
            linear-gradient(135deg, #fff 0%, #faf4ed 62%, #efe3d8 100%);
    }
    .hero__visual {
        order: 0;
        margin: -62px -64px -64px 0;
        height: calc(100% + 126px);
        min-height: 690px;
        border-radius: 0;
        box-shadow: none;
    }
    .hero__visual img { height: 100%; object-position: center; }
    .hero__visual::after {
        background:
            linear-gradient(90deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.18) 36%, rgba(255,255,255,0) 72%),
            linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.12));
    }
    .hero__copy {
        margin: 0;
        max-width: 540px;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
    }
    h1 { font-size: clamp(64px, 6.5vw, 92px); }
    .hero__lead { font-size: 18px; }

    .availability-strip {
        grid-template-columns: 58px 1fr;
        padding: 26px 32px;
        margin: -28px 64px 0;
        border-radius: 26px;
    }
    .availability-strip img { width: 58px; }
    .availability-strip h2 { font-size: 30px; }

    .product-intro {
        grid-template-columns: minmax(0, .95fr) minmax(430px, .78fr);
        align-items: end;
        gap: 44px;
        margin-bottom: 34px;
    }
    .direction-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; padding: 0; }
    .direction-card { flex: none; min-height: 154px; }

    .product-feature-list { gap: 24px; }
    .product-feature {
        grid-template-columns: minmax(380px, .92fr) minmax(0, 1.08fr);
        min-height: 430px;
        padding: 0;
    }
    .product-feature--reverse { grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); }
    .product-feature--reverse .product-feature__media { order: 2; }
    .product-feature--reverse .product-feature__content { order: 1; }
    .product-feature__media { min-height: 430px; height: 100%; }
    .product-feature__media::after {
        background:
            linear-gradient(90deg, rgba(255,255,255,0) 50%, rgba(255,255,255,.66) 100%),
            radial-gradient(circle at 20% 16%, rgba(255,255,255,.28), transparent 34%);
    }
    .product-feature--reverse .product-feature__media::after {
        background:
            linear-gradient(270deg, rgba(255,255,255,0) 50%, rgba(255,255,255,.66) 100%),
            radial-gradient(circle at 80% 16%, rgba(255,255,255,.28), transparent 34%);
    }
    .product-feature__media img { min-height: 430px; }
    .product-feature__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
        padding: 46px 42px;
        border-radius: 0;
        background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.74));
    }
    .product-feature__content .btn { align-self: flex-start; }

    .support-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 22px; align-items: stretch; }
    .expert { grid-template-columns: 84px 1fr; padding: 34px 30px; }
    .locator { grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); }
    .locator__map { order: 2; min-height: 100%; }
    .locator__content { padding: 34px 30px; }
    .sticky-cta { display: none; }
}
