:root {
    --bg: #fffaf7;
    --bg-soft: #fff4ef;
    --card: rgba(255, 255, 255, .82);
    --text: #3f302c;
    --muted: #7e6a62;
    --primary: #b87762;
    --primary-dark: #8d5748;
    --gold: #c99a76;
    --rose: #ead0c5;
    --line: rgba(184, 119, 98, .22);
    --shadow: 0 24px 70px rgba(139, 83, 66, .14);
    --radius: 28px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    /*font-family: "Roboto", sans-serif;*/
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(236, 205, 194, .55), transparent 35%),
        linear-gradient(180deg, #fffaf7 0%, #fff 38%, #fff8f4 100%);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; color: var(--text); }
h1 { font-size: clamp(2.55rem, 6vw, 5.8rem); letter-spacing: -0.06em; font-size: 43px;}
h2 { font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -0.05em; font-size: 43px;}
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-glow { position: relative; isolation: isolate; }
.section-glow::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(232, 194, 178, .38);
    filter: blur(80px);
    top: 10%;
    left: -140px;
    z-index: -1;
}
.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    background: var(--primary-dark);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 1000;
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    min-height: 40px;
    padding: 8px 16px;
    background: linear-gradient(90deg, #9c6657, #d3a07b, #9c6657);
    color: #fff;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
}
.topbar .dot { width: 5px; height: 5px; background: rgba(255,255,255,.7); border-radius: 50%; flex: 0 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 247, .84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(184, 119, 98, .12);
    transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(99, 60, 50, .08); background: rgba(255,255,255,.92); }
.navbar { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand img { width: 220px; height: auto; object-fit: contain; }
.menu { display: flex; gap: 25px; align-items: center; list-style: none; padding: 0; margin: 0 0 0 auto; }
.menu a { font-weight: 700; font-size: 1.10rem; color: #60483f; transition: color .2s ease; }
.menu a:hover { color: var(--primary); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--primary-dark); margin: 5px 0; border-radius: 99px; transition: transform .2s ease, opacity .2s ease; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .01em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #d5a17c); color: #fff; box-shadow: 0 16px 35px rgba(184, 119, 98, .28); }
.btn-primary:hover { box-shadow: 0 20px 44px rgba(184, 119, 98, .36); }
.btn-secondary { background: rgba(255,255,255,.72); border-color: var(--line); color: var(--primary-dark); }
.btn-small { min-height: 42px; padding: 10px 17px; font-size: .86rem; }
.btn-whats::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #29c36a; box-shadow: 0 0 0 6px rgba(41,195,106,.12); }
.full { width: 100%; }
.text-link { display: inline-flex; font-weight: 900; color: var(--primary-dark); border-bottom: 2px solid rgba(184, 119, 98, .28); padding-bottom: 3px; }

.hero { min-height: calc(100vh - 122px); display: grid; align-items: center; padding: 84px 0 74px; }
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,250,247,.96) 0%, rgba(255,250,247,.86) 44%, rgba(255,250,247,.2) 100%),
        url('../img/hero-gs-fine-skin.webp') center/cover no-repeat;
    opacity: .25;
    z-index: -2;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--primary);
    margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--primary); display: inline-block; }
.hero-lead { font-size: clamp(1.02rem, 1.5vw, 1.25rem); max-width: 650px; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.hero-card { border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.75); position: relative; }
.hero-card::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); border-radius: inherit; pointer-events: none; }
.hero-card img { width: 100%; min-height: 500px; object-fit: cover; }
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 760px; }
.trust-cards article {
    background: rgba(255,255,255,.76);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(139, 83, 66, .06);
}
.trust-cards strong { display: block; color: var(--primary-dark); font-size: 1.03rem; margin-bottom: 4px; }
.trust-cards span { display: block; color: var(--muted); font-size: .88rem; line-height: 1.45; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.align-center { align-items: center; }
.section-copy p { font-size: 1.04rem; }
.method-panel,
.contact-form,
.procedure-card,
.faq-list {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}
.method-panel { padding: clamp(28px, 4vw, 52px); position: relative; overflow: hidden; }
.method-panel::before { content: ""; position: absolute; width: 180px; height: 180px; background: rgba(201,154,118,.2); border-radius: 50%; right: -50px; top: -50px; filter: blur(18px); }
.panel-title { color: var(--primary); font-weight: 900; letter-spacing: .25em; text-transform: uppercase; font-size: .75rem; margin-bottom: 12px; }
.check-list, .feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li, .feature-list li { position: relative; padding-left: 32px; color: var(--muted); }
.check-list li::before, .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .05em;
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
    font-size: .76rem;
    font-weight: 900;
}
.feature-list strong { color: var(--text); }
.note, .disclaimer { font-size: .92rem; color: #8b7168; background: rgba(255,244,239,.72); border: 1px solid var(--line); padding: 14px 16px; border-radius: 16px; }

.section-head { text-align: center; max-width: 820px; margin: 0 auto 46px; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after { content: ""; width: 42px; height: 1px; background: var(--primary); display: inline-block; }
.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    background: rgba(255,255,255,.74);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    min-height: 230px;
    box-shadow: 0 18px 50px rgba(139, 83, 66, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card span { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; background: var(--bg-soft); color: var(--primary-dark); font-weight: 900; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 12px; }
.wide-image { margin: 42px 0 0; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.85); }
.wide-image img { width: 100%; }

.benefits { background: linear-gradient(180deg, rgba(255,244,239,.65), rgba(255,255,255,.65)); }
.benefit-image { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.82); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 42px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: 0 18px 46px rgba(139,83,66,.07); }
.step span { display: grid; place-items: center; width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--gold)); color: #fff; border-radius: 50%; font-weight: 900; margin-bottom: 18px; }
.step h3 { margin-bottom: 10px; }
.procedure-card { display: grid; grid-template-columns: 420px 1fr; gap: 44px; padding: 20px; align-items: center; overflow: hidden; }
.procedure-card img { width: 100%; height: 520px; object-fit: cover; border-radius: 22px; }
.procedure-card > div { padding: 22px 26px 22px 0; }

.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139,83,66,.09);
    transition: transform .2s ease;
    padding: 27px;
}
.result-card:hover { transform: translateY(-4px); }
.result-card img { width: 100%; height: 330px; object-fit: cover; background: var(--bg-soft); }
.result-card div { padding: 20px 22px 24px; }
.result-card span { display: inline-block; color: var(--primary); font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 8px; }
.result-card.placeholder img { object-fit: cover; }
.results .disclaimer { max-width: 900px; margin: 28px auto 0; text-align: center; }

.professional { background: linear-gradient(180deg, #fff, #fff7f2); }
.prof-card { border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.85); }
.prof-card img { width: 100%; max-height: 760px; object-fit: cover; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.social-row a { display: inline-flex; padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px; color: var(--primary-dark); font-weight: 900; }

.faq-list { max-width: 880px; margin-inline: auto; padding: 12px; }
details { border-bottom: 1px solid var(--line); padding: 18px 10px; }
details:last-child { border-bottom: 0; }
summary { cursor: pointer; font-weight: 900; color: var(--text); list-style: none; display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--primary); font-size: 1.4rem; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { margin: 12px 0 0; }

.contact { background: radial-gradient(circle at top right, rgba(232,194,178,.35), transparent 28%), #fffaf7; }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 52px; align-items: start; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0; }
.contact-info { margin-top: 24px; }
.contact-info p { margin-bottom: 8px; }
.contact-form { padding: clamp(22px, 4vw, 38px); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 900; margin-bottom: 8px; color: #59443d; }
input, textarea, select {
    width: 100%;
    border: 1px solid rgba(184,119,98,.25);
    border-radius: 16px;
    background: rgba(255,255,255,.9);
    padding: 14px 15px;
    font: inherit;
    color: var(--text);
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(184,119,98,.12); }
textarea { resize: vertical; }
.two-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { min-height: 24px; margin: 14px 0 0; font-weight: 700; }
.form-status.success { color: #16834c; }
.form-status.error { color: #b33535; }

.site-footer { background: #3f302c; color: #fff; padding: 58px 0 28px; }
.site-footer p, .site-footer a, .footer-bottom { color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .9fr; gap: 44px; }
.footer-grid img { width: 350px;
  filter: brightness(1.18);
  margin-bottom: 14px;
  height: auto; }
.footer-grid h3 { color: #fff; margin-bottom: 16px; font-size: 1.05rem; }
.footer-grid a { display: block; margin-bottom: 9px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .9rem; }

.floating-whats {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    padding: 14px 18px 14px 48px;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(37,211,102,.35);
}
.floating-whats::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 5px #25d366;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@media (max-width: 1040px) {
    .btn-whats { display: none; }
    .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
    .hero-card img { min-height: 360px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .procedure-card { grid-template-columns: 1fr; }
    .procedure-card img { height: 420px; }
    .procedure-card > div { padding: 4px 10px 18px; }
    .result-grid, .treatment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .topbar { display: none; }
    .site-header { top: 0; }
    .navbar { min-height: 72px; }
    .brand img { width: 174px; }
    .menu-toggle { display: block; margin-left: auto; }
    .menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 78px;
        display: grid;
        gap: 0;
        background: rgba(255,255,255,.98);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
        padding: 12px;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
    }
    .menu a { display: block; padding: 12px 14px; }
    .site-header.menu-open .menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
    .site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { min-height: unset; padding-top: 52px; }
    .hero-actions, .contact-actions { flex-direction: column; }
    .hero-actions .btn, .contact-actions .btn { width: 100%; }
    .trust-cards { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
    .two-inputs { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .floating-whats span { display: none; }
    .floating-whats { width: 58px; height: 58px; padding: 0; border-radius: 50%; }
    .floating-whats::before { left: 20px; width: 18px; height: 18px; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 24px, var(--container)); }
    h1 { font-size: clamp(2.45rem, 15vw, 3.6rem); }
    .result-grid, .treatment-grid, .process-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .result-card img { height: auto; max-height: 520px; }
    .procedure-card img { height: auto; }
    .eyebrow { letter-spacing: .16em; font-size: .76rem; }
    .eyebrow::before { width: 28px; }
    .section-head .eyebrow::after { width: 28px; }
}
