:root {
    --ink: #20171f;
    --muted: #736673;
    --rose: #b35a8b;
    --rose-dark: #7e3b65;
    --rose-soft: #f8e8f1;
    --rose-pale: #fff6fa;
    --sage: #e3eee8;
    --sage-ink: #395d50;
    --petal: #fcf7fa;
    --mist: #f1f8f4;
    --line: #ead6e2;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(87, 52, 75, .14);
    --soft-shadow: 0 14px 34px rgba(87, 52, 75, .08);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, var(--rose-pale) 0%, var(--petal) 34%, var(--mist) 100%);
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 14px clamp(18px, 4vw, 46px);
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(234, 214, 226, .86);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    color: var(--rose-dark);
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 8px 22px rgba(126, 59, 101, .14);
}

.nav {
    display: flex;
    justify-content: center;
    gap: clamp(14px, 2vw, 30px);
    color: var(--muted);
    font-size: 15px;
}

.nav a,
.language-menu a {
    text-decoration: none;
}

.nav a:hover {
    color: var(--rose-dark);
}

.nav a {
    position: relative;
    padding-block: 4px;
}

.nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--rose);
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .2s ease, transform .2s ease;
}

.nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--rose-dark);
    background: var(--white);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.nav-toggle-icon {
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before {
    top: -6px;
}

.nav-toggle-icon::after {
    top: 6px;
}

.language-control {
    position: relative;
    justify-self: end;
}

.language-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, .92);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.language-button::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 25;
    display: grid;
    min-width: 190px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
}

.language-control.is-open .language-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.language-menu a:hover,
.language-menu a.active {
    color: var(--rose-dark);
    background: var(--rose-soft);
}

.hero,
.section,
.principles,
.banner,
.intro-offer {
    width: min(var(--max), calc(100% - 36px));
    margin-inline: auto;
}

.hero {
    min-height: calc(100vh - 84px);
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
    align-items: center;
    gap: clamp(32px, 6vw, 72px);
    padding: clamp(42px, 7vw, 88px) 0 52px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--rose-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 820px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6.2vw, 86px);
    line-height: .96;
    letter-spacing: 0;
    color: #211620;
}

h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.hero-text,
.lead,
.section-head p,
.banner p,
.benefits p {
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 20px);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 21px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 850;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    box-shadow: 0 16px 34px rgba(179, 90, 139, .28);
}

.btn.secondary {
    color: var(--rose-dark);
    background: rgba(255, 255, 255, .82);
    border-color: var(--line);
}

.btn.secondary:hover {
    border-color: rgba(179, 90, 139, .38);
    box-shadow: var(--soft-shadow);
}

.btn.light {
    color: var(--rose-dark);
    background: var(--white);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span,
.benefit-list span,
.review-highlights span,
.offer-box span {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.trust-row span:first-child,
.review-highlights span:first-child,
.offer-box span:first-child {
    border-color: rgba(179, 90, 139, .28);
    color: var(--rose-dark);
    background: var(--rose-soft);
}

.benefit-list span:nth-child(2n) {
    border-color: #c8d8cf;
    color: var(--sage-ink);
    background: var(--sage);
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.main-photo {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    filter: saturate(1.02) contrast(1.02);
}

.logo-medallion {
    position: absolute;
    right: -18px;
    bottom: 28px;
    width: min(260px, 58%);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(234, 214, 226, .86);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow);
}

.logo-medallion img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.logo-medallion strong {
    display: block;
    line-height: 1.2;
}

.section {
    padding: clamp(58px, 8vw, 96px) 0;
}

.intro-offer {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    gap: clamp(22px, 5vw, 58px);
    align-items: center;
    margin-top: -14px;
    padding: clamp(26px, 5vw, 44px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 246, 250, .9));
    box-shadow: var(--soft-shadow);
}

.intro-offer p {
    color: var(--muted);
    font-size: 18px;
}

.offer-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.offer-box .btn {
    flex-basis: 100%;
    margin-top: 8px;
}

.split {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(26px, 5vw, 76px);
    align-items: start;
    border-top: 1px solid var(--line);
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.principles article,
.program-card,
.package-card,
.review-card,
.contact-panel,
.policy-box,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--soft-shadow);
}

.principles article,
.program-card,
.package-card,
.review-card {
    position: relative;
    overflow: hidden;
}

.principles article::before,
.program-card::before,
.package-card::before,
.review-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--rose), var(--sage));
}

.principles article {
    padding: 28px;
}

.principles span {
    color: var(--rose);
    font-weight: 900;
}

.principles p,
.review-card p {
    color: var(--muted);
}

.benefits {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: clamp(30px, 6vw, 72px);
    align-items: center;
}

.benefit-image img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 34px;
}

.program-grid,
.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.program-card,
.package-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.program-card:hover,
.package-card:hover,
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 52px rgba(87, 52, 75, .12);
}

.program-card p,
.package-card p,
.policy-box p,
.faq-list p,
.google-review-link p {
    color: var(--muted);
}

.program-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--rose-dark);
    font-weight: 900;
    text-decoration: none;
}

.program-card a .icon {
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.program-card a:hover .icon {
    transform: translateX(3px);
}

.package-card span {
    color: var(--rose);
    font-weight: 900;
}

.package-card .btn {
    width: 100%;
    margin-top: auto;
}

.policy-box {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(20px, 4vw, 44px);
    margin-top: 18px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(241, 248, 244, .86));
}

.policy-box h3 {
    font-size: 26px;
}

.policy-box ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-block: 20px;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(126, 59, 101, .94), rgba(38, 31, 38, .88)),
        url("../images/site/reformer-cta.webp") center / cover;
    box-shadow: var(--shadow);
}

.banner .section-kicker,
.banner p {
    color: rgba(255, 255, 255, .82);
}

.section-head {
    max-width: 760px;
    margin-bottom: 30px;
}

.review-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.review-marquee {
    position: relative;
    overflow: hidden;
    padding-block: 6px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: review-scroll 46s linear infinite;
}

.review-marquee:hover .review-track {
    animation-play-state: paused;
}

.review-card {
    width: min(430px, calc(100vw - 56px));
    flex: 0 0 auto;
    padding: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 246, 250, .78));
}

.stars {
    color: #c98842;
    font-size: 18px;
    margin-bottom: 12px;
}

.review-card strong {
    display: block;
    margin-top: 18px;
}

.google-review-link {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--soft-shadow);
}

.google-review-link p {
    margin: 0;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 0 22px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-list details[open] {
    border-color: rgba(179, 90, 139, .34);
    box-shadow: 0 18px 42px rgba(87, 52, 75, .1);
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 0;
    color: var(--ink);
    font-weight: 900;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--rose-dark);
    font-size: 22px;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0;
    padding: 0 0 20px;
}

.location {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 18px;
}

.contact-panel {
    padding: 30px;
}

dl {
    display: grid;
    gap: 18px;
    margin: 26px 0;
}

dt {
    color: var(--rose-dark);
    font-weight: 900;
}

dd {
    margin: 4px 0 0;
    color: var(--muted);
}

iframe {
    width: 100%;
    min-height: 480px;
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.final-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
}

.final-contact h2 {
    max-width: 820px;
    font-size: clamp(28px, 3.4vw, 44px);
}

footer {
    padding: 28px 18px 92px;
    text-align: center;
    color: var(--muted);
    background: rgba(255, 255, 255, .92);
}

footer a {
    color: var(--rose-dark);
    font-weight: 900;
}

.cookie-banner {
    position: fixed;
    right: 96px;
    bottom: 20px;
    left: 20px;
    z-index: 35;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    max-width: 920px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-actions .btn {
    min-height: 44px;
    white-space: nowrap;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 999px;
    color: var(--white);
    background: #1fb75d;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(31, 183, 93, .32);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

@keyframes review-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .nav {
        grid-column: 1 / -1;
        order: 3;
        display: none;
        flex-direction: column;
        gap: 6px;
        justify-content: flex-start;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 16px 38px rgba(87, 52, 75, .08);
    }

    .site-header.nav-open .nav {
        display: flex;
    }

    .nav a {
        padding: 11px 12px;
        border-radius: 6px;
        background: var(--petal);
    }

    .language-control {
        justify-self: end;
    }

    .hero,
    .intro-offer,
    .split,
    .benefits,
    .location,
    .policy-box {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual,
    .main-photo {
        min-height: 0;
        height: auto;
    }

    .main-photo {
        aspect-ratio: 4 / 3;
    }

    .principles,
    .program-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .banner,
    .final-contact {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .hero,
    .section,
    .principles,
    .banner,
    .intro-offer {
        width: min(100% - 28px, var(--max));
    }

    .site-header {
        gap: 8px;
        padding-inline: 14px;
    }

    .brand {
        gap: 0;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand span {
        display: none;
    }

    .nav {
        font-size: 14px;
        gap: 16px;
    }

    .language-button {
        width: 46px;
        justify-content: center;
        padding-inline: 0;
    }

    .language-button span:last-child {
        display: none;
    }

    .language-button::after {
        display: none;
    }

    .language-menu {
        right: 0;
    }

    .logo-medallion {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cookie-banner {
        right: 14px;
        bottom: 84px;
        left: 14px;
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .program-card,
    .package-card {
        min-height: 0;
    }

    .google-review-link .btn {
        width: 100%;
    }

    iframe {
        min-height: 360px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 58px;
        height: 58px;
    }

    .whatsapp-float svg {
        width: 31px;
        height: 31px;
    }
}
