/* ─── tokens ─────────────────────────────────────────── */
:root {
    --bg: #f7f5f0;
    --bg2: #ffffff;
    --bg3: #f0ede6;
    --ink: #1a1917;
    --ink2: #6b6760;
    --sage: #7a9e87;
    --sage2: #5e8470;
    --gold: #c9a96e;
    --line: #e5e0d6;
    --radius: 10px;
    --max: 1160px;

    --fs-h1: clamp(2.8rem, 5.5vw, 4.8rem);
    --fs-h2: clamp(2rem, 4vw, 3.2rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 {
    font-family: 'DM Serif Display', Georgia, serif;
}

/* ─── demo bar ───────────────────────────────────────── */
.demo-bar {
    background: var(--sage);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 1.5rem;
    font-size: 0.8rem;
    gap: 1rem;
}
.demo-bar strong { font-weight: 700; margin-right: 0.5rem; }
.demo-links { display: flex; gap: 0.75rem; align-items: center; }
.demo-links a { font-weight: 600; opacity: 0.85; }
.demo-links a:hover { opacity: 1; }
.demo-cta {
    background: #fff;
    color: var(--sage);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
}

/* ─── header ─────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 245, 240, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    flex: none;
    color: var(--ink);
}
.brand em { color: var(--sage); font-style: italic; }

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a { font-weight: 500; color: var(--ink2); font-size: 0.9rem; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
    background: var(--sage) !important;
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600 !important;
}
.nav-cta:hover { background: var(--sage2) !important; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ─── reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── hero ───────────────────────────────────────────── */
.hero {
    padding: 5.5rem 1.5rem 4rem;
}
.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-copy { display: flex; flex-direction: column; gap: 1.5rem; }

.eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
}

.hero-copy h1 {
    font-size: var(--fs-h1);
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.hero-copy h1 em { color: var(--sage); font-style: italic; }

.hero-copy > p { font-size: 1.05rem; color: var(--ink2); line-height: 1.75; max-width: 480px; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.hero-trust > div { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-trust strong {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--ink);
}
.hero-trust small { font-size: 1.3rem; }
.hero-trust span { font-size: 0.75rem; color: var(--ink2); }

/* ─── hero visual ────────────────────────────────────── */
.hero-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}
.hero-img img { width: 100%; aspect-ratio: 5/6; object-fit: cover; }

.hero-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(247,245,240,0.95);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.badge-icon { font-size: 1.4rem; color: var(--gold); }
.hero-badge strong { font-size: 0.9rem; font-weight: 700; display: block; color: var(--ink); }
.hero-badge span { font-size: 0.75rem; color: var(--ink2); }

/* ─── buttons ────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.8rem 1.7rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.18s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}
.btn.primary { background: var(--sage); color: #fff; }
.btn.primary:hover { background: var(--sage2); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn.ghost:hover { border-color: var(--ink2); }
.btn.full { width: 100%; text-align: center; font-size: 1rem; padding: 1rem; }
.btn.ghost-sm {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sage);
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn.ghost-sm:hover { color: var(--sage2); }

/* ─── trust strip ────────────────────────────────────── */
.trust-strip {
    background: var(--bg2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: center;
}
.trust-strip span {
    padding: 1.1rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink2);
    border-right: 1px solid var(--line);
}
.trust-strip span:last-child { border-right: none; }

/* ─── section shared ─────────────────────────────────── */
.section {
    padding: 6rem 1.5rem;
    max-width: var(--max);
    margin: 0 auto;
}

.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.section-head h2 {
    font-size: var(--fs-h2);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.section-head p { color: var(--ink2); font-size: 1rem; }

.label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

/* ─── treatments grid ────────────────────────────────── */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.treatment-card.featured {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--line);
}
.treatment-card.featured .treatment-img { height: 100%; }
.treatment-card.featured .treatment-img img { width: 100%; height: 100%; object-fit: cover; }

.treatment-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.treatment-body h3 {
    font-size: 1.6rem;
    line-height: 1.2;
}
.treatment-body p { color: var(--ink2); font-size: 0.9rem; line-height: 1.7; flex: 1; }

.treatment-card:not(.featured) {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.treatment-card:not(.featured) h3 { font-size: 1.3rem; line-height: 1.25; }
.treatment-card:not(.featured) > p { color: var(--ink2); font-size: 0.88rem; line-height: 1.6; flex: 1; }

.treatment-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ─── approccio ──────────────────────────────────────── */
.approccio-section {
    background: var(--bg3);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 6rem 1.5rem;
}
.approccio-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.approccio-img { border-radius: 14px; overflow: hidden; }
.approccio-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.approccio-copy { display: flex; flex-direction: column; gap: 1.25rem; }
.approccio-copy h2 { font-size: var(--fs-h2); line-height: 1.12; }
.approccio-copy > p { color: var(--ink2); font-size: 1rem; line-height: 1.75; }

.approccio-steps { display: flex; flex-direction: column; gap: 0; margin-top: 0.5rem; }

.a-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
}
.a-step:last-child { border-bottom: none; }
.a-step > span {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--line);
    flex: none;
    width: 2rem;
    line-height: 1;
}
.a-step h3 { font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; margin-bottom: 0.3rem; }
.a-step p { color: var(--ink2); font-size: 0.875rem; line-height: 1.65; }

/* ─── team ───────────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.team-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.team-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.team-body h3 { font-size: 1.25rem; }
.team-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sage);
    letter-spacing: 0.04em;
}
.team-body p { color: var(--ink2); font-size: 0.85rem; line-height: 1.65; margin-top: 0.5rem; }

/* ─── reviews ────────────────────────────────────────── */
.reviews-section { background: var(--bg3); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1rem; }

.testimonial p {
    color: var(--ink2);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.75;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { font-size: 0.85rem; font-weight: 600; display: block; }
.testimonial-author span { font-size: 0.75rem; color: var(--ink2); }

/* ─── booking ────────────────────────────────────────── */
.booking-section {
    padding: 6rem 1.5rem;
    background: var(--ink);
}
.booking-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.booking-copy .label { color: var(--sage); }

.booking-copy h2 {
    font-size: var(--fs-h2);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.booking-copy > p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 2.5rem; }

.booking-info { display: flex; flex-direction: column; gap: 1.5rem; }
.booking-info > div { display: flex; flex-direction: column; gap: 0.3rem; }
.booking-info strong { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }
.booking-info span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ─── form ───────────────────────────────────────────── */
.booking-form {
    background: #fff;
    border-radius: 14px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.booking-form label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.booking-form input,
.booking-form select {
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.booking-form input:focus,
.booking-form select:focus { border-color: var(--sage); }

.form-note { font-size: 0.78rem; color: var(--ink2); text-align: center; }

/* ─── footer ─────────────────────────────────────────── */
.footer {
    background: #111;
    padding: 3.5rem 1.5rem 1.5rem;
}
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-size: 1.3rem; color: #fff; }
.footer-brand em { color: var(--sage); font-style: italic; }

.footer-inner > div:first-child p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-top: 0.5rem; }

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: #fff; }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: right;
}
.footer-contact strong { font-size: 0.85rem; color: #fff; }
.footer-contact span { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

.footer-bottom {
    max-width: var(--max);
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ─── toast ──────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--sage);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    transition: transform 0.35s ease;
    z-index: 9999;
    white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
    .hero-inner,
    .approccio-inner,
    .booking-inner { grid-template-columns: 1fr; gap: 3rem; }

    .treatments-grid { grid-template-columns: 1fr 1fr; }
    .treatment-card.featured { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }

    .team-grid,
    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-contact { text-align: center; }

    .section { padding: 4rem 1.25rem; }
    .approccio-section { padding: 4rem 1.25rem; }
    .booking-section { padding: 4rem 1.25rem; }

    .trust-strip { flex-wrap: wrap; }
    .trust-strip span { border-right: none; border-bottom: 1px solid var(--line); }
    .trust-strip span:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        padding: 1.5rem;
        gap: 1.2rem;
        z-index: 99;
    }
    .menu-toggle { display: flex; }
    .treatments-grid { grid-template-columns: 1fr; }
    .treatment-card.featured { grid-template-columns: 1fr; }
    .demo-bar { flex-direction: column; text-align: center; }
}
