:root {
    --bg: #FAF7F3;
    --white: #FFFFFF;
    --green: #A7B77D;
    --purple: #6D4A99;
    --text: #303030;
    --title: "Cormorant Garamond", serif;
    --body: "Poppins", sans-serif;
    --container: 1180px;
    --radius: 24px;
    --soft-shadow: 0 24px 70px rgba(48, 48, 48, .10);
    --card-shadow: 0 18px 42px rgba(48, 48, 48, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
    font-family: var(--title);
    line-height: 1.05;
    font-weight: 600;
}
h1 { font-size: clamp(3.1rem, 8vw, 6.4rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4rem); }
h3 { font-size: clamp(1.55rem, 3vw, 2.15rem); }

.skip-link, .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--purple);
    color: var(--white);
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    transition: background .3s ease, box-shadow .3s ease;
}
.header.is-scrolled, .header.is-open {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 12px 35px rgba(48, 48, 48, .08);
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.header nav {
    display: flex;
    gap: 22px;
    align-items: center;
}
.header nav a {
    color: var(--text);
    text-decoration: none;
    font-size: .93rem;
    font-weight: 500;
}
.header nav a:hover, .header nav a.is-active { color: var(--purple); }
.cta, .btn.primary {
    background: var(--green);
    color: var(--text) !important;
    border: 0;
}
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--card-shadow);
    padding: 14px;
}
.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--text);
}

.section, .recognition, .story, .method, .services, .page-section {
    padding: clamp(76px, 10vw, 128px) 7%;
}
.container, .wrap, .section-inner {
    width: min(var(--container), 100%);
    margin: auto;
}
.hero {
    min-height: 100vh;
    padding: 130px 7% 70px;
    background:
        radial-gradient(circle at 82% 22%, rgba(109, 74, 153, .16), transparent 26%),
        radial-gradient(circle at 12% 82%, rgba(167, 183, 125, .28), transparent 28%),
        linear-gradient(120deg, #efe4d6, #f9f6f2);
    display: flex;
    align-items: center;
}
.hero .container {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(40px, 7vw, 82px);
    align-items: center;
}
.tag, .subtitle, .eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--purple);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}
.lead {
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.85;
    max-width: 680px;
}
.actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px 26px;
    border-radius: 40px;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(48, 48, 48, .12);
}
.btn.ghost {
    border: 2px solid var(--purple);
    color: var(--purple);
    background: transparent;
}
.photo { display: flex; justify-content: center; align-items: center; }
.hero-photo {
    width: min(100%, 430px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 38px;
    border: 10px solid rgba(255, 255, 255, .85);
    box-shadow: 0 34px 85px rgba(48, 48, 48, .18);
}

.section-title {
    max-width: 820px;
    margin: 0 auto clamp(34px, 6vw, 64px);
    text-align: center;
}
.section-title p { margin-top: 18px; font-size: 1.08rem; }
.grid, .cards, .pillars, .premium-grid {
    display: grid;
    gap: 25px;
}
.grid { grid-template-columns: repeat(4, 1fr); }
.cards, .two-col { grid-template-columns: repeat(2, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }
.card, .pillar, .service-card, .white-box, .premium-card, .contact-card, .contact-panel {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}
.card, .pillar, .premium-card {
    padding: clamp(28px, 4vw, 42px);
    transition: transform .3s ease;
}
.card:hover, .premium-card:hover, .service-card:hover { transform: translateY(-6px); }
.card span, .pillar span {
    display: block;
    color: var(--purple);
    font-size: 2rem;
    margin-bottom: 14px;
}
.story { background: var(--white); }
.wrap {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: clamp(42px, 7vw, 78px);
    align-items: center;
}
.story-photo {
    border-radius: 30px;
    box-shadow: var(--soft-shadow);
}
.method { text-align: center; }
.pillars { grid-template-columns: repeat(4, 1fr); margin-top: 40px; }
.services .cards { margin-top: 42px; }
.service-card {
    min-height: 340px;
    padding: clamp(34px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.service-card p { margin-top: 18px; }

.page-hero {
    padding: 150px 7% 86px;
    background: linear-gradient(120deg, #efe4d6, #f9f6f2);
}
.page-hero .section-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}
.content-stack {
    display: grid;
    gap: 28px;
}
.white-box {
    padding: clamp(28px, 5vw, 54px);
}
.white-box h2, .white-box h3 { color: var(--purple); margin-bottom: 18px; }
.lead-list {
    list-style: none;
    display: grid;
    gap: 11px;
    margin: 18px 0 0;
}
.lead-list li {
    position: relative;
    padding-left: 28px;
}
.lead-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .75em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
}
.price {
    font-family: var(--title);
    font-size: 2.5rem;
    color: var(--purple);
}
.pack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.pack {
    padding: 30px;
    background: var(--bg);
    border-radius: var(--radius);
}
.legal-note {
    margin-top: 20px;
    font-size: .82rem;
    color: rgba(48, 48, 48, .68);
}
.calendly-inline-widget {
    min-width: 300px;
    max-width: 460px;
    height: 610px;
    margin: 24px auto 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.soin-box {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 38px;
    align-items: center;
}
.soin-image img { border-radius: 22px; box-shadow: var(--card-shadow); }
details {
    padding: 20px 0;
    border-bottom: 1px solid rgba(48, 48, 48, .12);
}
summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--purple);
}

.testimonial { display: none; }
.testimonial.is-active { display: block; }
.testimonial blockquote {
    font-family: var(--title);
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 1.18;
}
.slider-controls {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    justify-content: center;
}
.slider-controls button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    cursor: pointer;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 30px;
    align-items: start;
}
.contact-panel { padding: clamp(28px, 5vw, 48px); }
.form-grid { display: grid; gap: 17px; }
.form-group { display: grid; gap: 8px; }
label { font-weight: 500; }
input, textarea {
    width: 100%;
    border: 1px solid rgba(48, 48, 48, .16);
    border-radius: 16px;
    background: var(--bg);
    padding: 15px 17px;
    font: inherit;
    color: var(--text);
}
textarea { min-height: 155px; resize: vertical; }
.accept-group label { display: flex; gap: 10px; align-items: flex-start; }
.success, .error {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 22px;
    background: var(--bg);
}
.success { color: #536b35; }
.error { color: var(--purple); }
.contact-side { display: grid; gap: 22px; }
.contact-card { padding: 30px; }
.avatar {
    width: 138px;
    height: 138px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
}

.footer {
    padding: 64px 7% 26px;
    background: var(--text);
    color: var(--white);
}
.footer-grid {
    width: min(var(--container), 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr .8fr;
    gap: 34px;
}
.footer h3 { font-size: 1.4rem; margin-bottom: 12px; }
.footer p { color: rgba(255, 255, 255, .72); max-width: 380px; }
.footer a {
    display: block;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    margin: 8px 0;
}
.footer a:hover { color: var(--white); }
.footer-bottom {
    width: min(var(--container), 100%);
    margin: 38px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .66);
    font-size: .84rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .menu-toggle { display: block; }
    .header nav {
        position: absolute;
        left: 7%;
        right: 7%;
        top: 86px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px;
        background: var(--white);
        border-radius: 22px;
        box-shadow: var(--soft-shadow);
    }
    .header nav.is-open { display: flex; }
    .header nav a { padding: 12px 10px; }
    .hero .container, .page-hero .section-inner, .wrap, .contact-layout, .soin-box {
        grid-template-columns: 1fr;
    }
    .grid, .pillars, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .header { padding: 16px 5%; }
    .hero, .page-hero { padding-inline: 5%; }
    .section, .recognition, .story, .method, .services, .page-section { padding-inline: 5%; }
    .grid, .cards, .pillars, .pack-grid, .three-col, .two-col, .footer-grid { grid-template-columns: 1fr; }
    .actions { align-items: stretch; }
    .btn { width: 100%; text-align: center; }
    .footer-bottom { display: grid; }
}

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