:root {
    --primary-color: #03274e;
    --primary-dark: #021b37;
    --primary-light: #0b3d70;
    --gold-color: #d4af37;
    --gold-light: #e6c967;
    --gold-dark: #a98418;
    --background-color: #f7f8fa;
    --surface-color: #ffffff;
    --text-color: #17202a;
    --muted-text: #667085;
    --border-color: #e4e7ec;
    --ivory: #f4f0e7;
    --success: #1f7651;
    --shadow: 0 20px 60px rgba(3, 39, 78, .1);
    --radius: 10px;
    --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--surface-color);
    color: var(--text-color);
    font: 400 16px/1.7 "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}
html.menu-open,
body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
    margin: 0 0 .45em;
    color: var(--primary-color);
    font-family: "Manrope", sans-serif;
    line-height: 1.12;
    letter-spacing: -.035em;
}
h1 { font-size: clamp(2.75rem, 5.1vw, 4.3rem); }
h2 { font-size: clamp(2.05rem, 3.7vw, 3rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
p { margin: 0 0 1.25rem; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8rem) 0; }
.section-soft { background: var(--background-color); }
.section-navy { background: var(--primary-color); color: #fff; }
.section-header { max-width: 730px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header p { color: var(--muted-text); font-size: 1.1rem; }
.section-navy .section-header p { color: rgba(255,255,255,.72); }
.light-heading { color: #fff; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.section-navy .eyebrow, .cta-panel .eyebrow { color: var(--gold-light); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.2rem); color: var(--muted-text); }
.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: .82rem 1.35rem;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.2;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--primary-color); color: #fff; }
.button-primary:hover { background: var(--primary-dark); }
.button-gold { background: var(--gold-color); color: var(--primary-dark); }
.button-gold:hover { background: var(--gold-light); }
.button-outline { border-color: rgba(255,255,255,.35); color: #fff; }
.button-outline:hover { border-color: #fff; background: #fff; color: var(--primary-color); }
.button-ghost { border-color: var(--border-color); background: #fff; color: var(--primary-color); }
.text-link { display: inline-flex; align-items: center; gap: .55rem; color: var(--primary-color); font-weight: 600; }
.text-link i { color: var(--gold-dark); transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-160%); background: #fff; padding: .7rem 1rem; color: var(--primary-color); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--gold-color); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.site-preloader { position: fixed; inset: 0; z-index: 9999; display: grid; align-content: center; justify-items: center; gap: 1.7rem; background:
    radial-gradient(circle at 50% 45%, rgba(212,175,55,.11), transparent 28%),
    var(--primary-dark);
    opacity: 1; transition: opacity .5s ease, visibility .5s ease;
}
.site-preloader.is-leaving { visibility: hidden; opacity: 0; pointer-events: none; }
.site-preloader[hidden] { display: none; }
.preloader-logo { position: relative; display: grid; width: 156px; height: 156px; place-items: center; }
.preloader-logo img { position: relative; z-index: 2; width: 132px; height: 132px; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 16px 28px rgba(0,0,0,.22)); animation: preloader-logo-in .8s cubic-bezier(.2,.8,.2,1) both; }
.preloader-ring { position: absolute; inset: 0; border: 1px solid rgba(212,175,55,.2); border-top-color: var(--gold-color); border-right-color: rgba(212,175,55,.65); border-radius: 50%; animation: preloader-ring 1.8s linear infinite; }
.preloader-ring::after { position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; content: ""; }
.preloader-progress { width: 116px; height: 2px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.12); }
.preloader-progress span { display: block; width: 42%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, transparent, var(--gold-color), #fff0ad); animation: preloader-progress 1.15s ease-in-out infinite; }
@keyframes preloader-ring { to { transform: rotate(360deg); } }
@keyframes preloader-logo-in { from { opacity: 0; transform: scale(.86); } to { opacity: 1; transform: scale(1); } }
@keyframes preloader-progress { from { transform: translateX(-110%); } to { transform: translateX(280%); } }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 84px;
    border-bottom: 1px solid rgba(3,39,78,.08);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled { height: 72px; box-shadow: 0 8px 30px rgba(3,39,78,.08); }
.header-inner { display: flex; height: 100%; min-width: 0; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; min-width: 0; align-items: center; gap: .72rem; color: var(--primary-color); }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.brand span { display: grid; min-width: 0; }
.brand strong { font: 700 1.05rem/1.15 "Manrope", sans-serif; letter-spacing: -.02em; }
.brand small { margin-top: .2rem; color: var(--muted-text); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 1.35rem; }
.primary-nav > ul { display: flex; align-items: center; gap: 1.15rem; }
.primary-nav li { position: relative; }
.primary-nav li > a { display: flex; min-height: 44px; align-items: center; gap: .3rem; color: #304154; font-size: .85rem; font-weight: 500; }
.primary-nav li > a::after { position: absolute; right: 50%; bottom: 2px; left: 50%; height: 2px; background: var(--gold-color); content: ""; transition: left .2s ease, right .2s ease; }
.primary-nav li > a:hover::after, .primary-nav li > a.is-active::after { right: 0; left: 0; }
.primary-nav li > a.is-active { color: var(--primary-color); }
.primary-nav li > a i { font-size: .65rem; }
.dropdown-toggle, .menu-toggle { display: none; }
.treatment-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: -190px;
    width: 680px;
    padding: 1.35rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}
.has-dropdown:hover .treatment-menu, .has-dropdown:focus-within .treatment-menu, .has-dropdown.is-open .treatment-menu { opacity: 1; pointer-events: auto; transform: none; }
.menu-eyebrow { margin: 0 0 .8rem; color: var(--gold-dark); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.treatment-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; }
.treatment-menu-grid a { display: flex; align-items: flex-start; gap: .75rem; border-radius: 6px; padding: .75rem; }
.treatment-menu-grid a:hover { background: var(--background-color); }
.treatment-menu-grid i { color: var(--gold-dark); font-size: 1.1rem; }
.treatment-menu-grid span { display: grid; }
.treatment-menu-grid strong { color: var(--primary-color); font: 600 .88rem/1.3 "Manrope", sans-serif; }
.treatment-menu-grid small { margin-top: .2rem; color: var(--muted-text); font-size: .72rem; line-height: 1.45; }

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - 84px);
    overflow: hidden;
    background: var(--primary-dark);
    color: #fff;
}
.hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,27,55,.98) 0%, rgba(2,27,55,.91) 42%, rgba(2,27,55,.15) 72%); content: ""; z-index: 1; }
.hero::after { position: absolute; bottom: 0; left: 0; width: 42%; height: 3px; background: linear-gradient(90deg, var(--gold-color), transparent); content: ""; z-index: 2; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-inner { position: relative; z-index: 2; display: flex; min-height: calc(100vh - 84px); align-items: center; padding: 6rem 0; }
.hero-copy { width: min(680px, 58%); }
.hero h1 { color: #fff; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-copy > p { max-width: 600px; color: rgba(255,255,255,.76); font-size: clamp(1.04rem, 1.6vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.consultation-card { position: absolute; right: max(2.5rem, calc((100vw - var(--container)) / 2)); bottom: 2.5rem; z-index: 3; width: 260px; padding: 1rem 1.1rem; border-left: 3px solid var(--gold-color); background: rgba(255,255,255,.94); color: var(--text-color); box-shadow: var(--shadow); }
.consultation-card strong { display: block; color: var(--primary-color); font: 600 .92rem "Manrope"; }
.consultation-card span { display: block; margin-top: .25rem; color: var(--muted-text); font-size: .72rem; }

/* Content components */
.trust-strip { border-block: 1px solid var(--border-color); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; min-height: 112px; align-items: center; gap: 1rem; padding: 1.5rem clamp(1rem, 2vw, 1.5rem); border-right: 1px solid var(--border-color); }
.trust-item:last-child { border: 0; }
.trust-item i { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border: 1px solid rgba(212,175,55,.45); border-radius: 50%; color: var(--gold-dark); }
.trust-item img { width: 54px; height: 54px; flex: 0 0 54px; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 5px 16px rgba(3,39,78,.12); object-fit: cover; }
.trust-item span { max-width: 190px; color: var(--primary-color); font-size: .88rem; font-weight: 600; line-height: 1.4; }
.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.treatment-card {
    position: relative;
    display: flex;
    min-height: 280px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    background: #fff;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.treatment-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.65); box-shadow: 0 18px 44px rgba(3,39,78,.08); }
.treatment-icon { display: grid; width: 52px; height: 52px; margin-bottom: 2rem; place-items: center; border: 1px solid rgba(212,175,55,.48); border-radius: 50%; background: #fffdf7; color: var(--gold-dark); font-size: 1.3rem; }
.treatment-card p { color: var(--muted-text); font-size: .9rem; }
.treatment-card .text-link { margin-top: auto; }
.card-title { font-size: clamp(1.18rem, 2vw, 1.45rem); }
.split-layout { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.image-panel { position: relative; min-height: 580px; overflow: hidden; border-radius: var(--radius); background: var(--ivory); }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.image-panel::after { position: absolute; top: 24px; right: 24px; width: 68px; height: 68px; border-top: 1px solid var(--gold-color); border-right: 1px solid var(--gold-color); content: ""; }
.image-panel-caption { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 1.1rem; border-left: 3px solid var(--gold-color); background: rgba(255,255,255,.92); backdrop-filter: blur(10px); }
.image-panel-caption strong { display: block; color: var(--primary-color); }
.image-panel-caption span { color: var(--muted-text); font-size: .78rem; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.5rem; margin: 2rem 0; }
.check-list li { display: flex; gap: .7rem; color: #344054; font-size: .92rem; }
.check-list i { color: var(--gold-dark); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { position: relative; border-top: 1px solid rgba(255,255,255,.25); padding: 2.2rem 1.8rem 0 0; }
.process-step::before { position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border: 2px solid var(--primary-color); border-radius: 50%; background: var(--gold-color); content: ""; }
.process-step .number { color: var(--gold-light); font: 500 2rem/1 "Manrope"; }
.process-step h3 { margin-top: 1.4rem; color: #fff; font-size: 1.15rem; }
.process-step p { color: rgba(255,255,255,.65); font-size: .85rem; }
.comparison { overflow: hidden; border: 1px solid var(--border-color); border-radius: var(--radius); background: #fff; }
.comparison-head, .comparison-row { display: grid; grid-template-columns: 1.05fr 1fr 1fr; }
.comparison-head { background: var(--primary-color); color: #fff; }
.comparison-head > *, .comparison-row > * { padding: 1.25rem 1.5rem; }
.comparison-head strong { color: var(--gold-light); font-family: "Manrope"; }
.comparison-row { border-top: 1px solid var(--border-color); }
.comparison-row:nth-child(odd) { background: #fafafa; }
.comparison-row > strong { color: var(--primary-color); }
.comparison-row span { color: var(--muted-text); font-size: .9rem; }
.comparison-note { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1.5rem; padding: 1.4rem; border-left: 3px solid var(--gold-color); background: var(--background-color); }
.comparison-note p { margin: 0; color: var(--primary-color); font-weight: 500; }
.filter-bar { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; }
.filter-button { min-height: 42px; border: 1px solid var(--border-color); border-radius: 50px; padding: .55rem 1.1rem; background: #fff; color: var(--muted-text); font-size: .82rem; }
.filter-button.is-active, .filter-button:hover { border-color: var(--primary-color); background: var(--primary-color); color: #fff; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.result-card { overflow: hidden; border: 1px solid var(--border-color); border-radius: var(--radius); background: #fff; }
.result-visual { position: relative; display: grid; height: 260px; grid-template-columns: 1fr 1fr; overflow: hidden; background: #e9eaec; }
.result-visual > div { position: relative; background: linear-gradient(145deg, #ddd9d1, #f5f2eb); }
.result-visual > div:last-child { border-left: 1px solid rgba(255,255,255,.8); background: linear-gradient(145deg, #d8d4cc, #edeae4); }
.result-visual img, .result-slider img { width: 100%; height: 100%; object-fit: cover; }
.result-visual > div:has(img)::before, .result-slider > div:has(img)::before { display: none; }
.result-visual > div::before { position: absolute; top: 50%; left: 50%; width: 72px; height: 100px; border-radius: 42% 42% 48% 48%; background: linear-gradient(#aeb0b2 28%, #d6d3cd 29%); content: ""; filter: grayscale(1); opacity: .65; transform: translate(-50%,-50%); }
.result-visual span { position: absolute; bottom: .7rem; z-index: 1; padding: .3rem .5rem; background: rgba(3,39,78,.85); color: #fff; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.result-visual > div:first-child span { left: .7rem; }
.result-visual > div:last-child span { right: .7rem; }
.result-info { padding: 1.15rem; }
.result-info small { color: var(--gold-dark); font-weight: 600; }
.result-info h3 { margin: .3rem 0 0; font-size: 1rem; }
.result-title { margin: .3rem 0 0; font-size: 1rem; }
.result-disclaimer { margin-top: 1.2rem; color: var(--muted-text); font-size: .78rem; }
.cta-panel { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5rem); border-radius: var(--radius); background: var(--primary-color); color: #fff; }
.cta-panel::before { position: absolute; top: -120px; right: -80px; width: 320px; height: 320px; border: 1px solid rgba(212,175,55,.25); border-radius: 50%; content: ""; }
.cta-panel h2 { max-width: 750px; color: #fff; }
.cta-panel p { max-width: 680px; color: rgba(255,255,255,.7); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.faq-list { max-width: 940px; margin-inline: auto; border-top: 1px solid var(--border-color); }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1.5rem; border: 0; padding: 1.4rem 0; background: transparent; color: var(--primary-color); text-align: left; font: 600 1rem/1.4 "Manrope"; }
.faq-question i { color: var(--gold-dark); transition: transform .2s ease; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; color: var(--muted-text); transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 800px; padding: 0 0 1.5rem; }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

/* Form */
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 7vw, 6rem); }
.contact-intro { padding-top: 0; }
.contact-points { display: grid; gap: 1.2rem; margin-top: 2rem; }
.contact-point { display: flex; gap: 1rem; }
.contact-point i { color: var(--gold-dark); font-size: 1.2rem; }
.contact-point strong { display: block; color: var(--primary-color); }
.contact-point span, .contact-point a { color: var(--muted-text); font-size: .9rem; }
.contact-point div > span { display: block; }
.consultation-form { border: 1px solid var(--border-color); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); background: #fff; box-shadow: 0 18px 50px rgba(3,39,78,.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.4rem; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.input-shell {
    position: relative;
    min-height: 64px;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(3,39,78,.02);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}
.input-shell::after {
    position: absolute;
    right: 12px;
    bottom: -1px;
    left: 48px;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: var(--gold-color);
    content: "";
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}
.input-shell:focus-within {
    border-color: rgba(212,175,55,.82);
    background: #fffefa;
    box-shadow: 0 0 0 4px rgba(212,175,55,.11), 0 8px 22px rgba(3,39,78,.05);
    transform: translateY(-1px);
}
.input-shell:focus-within::after { transform: scaleX(1); }
.input-shell > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 1;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: #98a2b3;
    font-size: 1rem;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color .2s ease, transform .2s ease;
}
.input-shell:focus-within > i { color: var(--gold-dark); transform: translateY(-50%) scale(1.06); }
.input-shell label {
    position: absolute;
    top: 8px;
    left: 48px;
    z-index: 1;
    margin: 0;
    color: var(--primary-color);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .025em;
    line-height: 1.2;
    pointer-events: none;
}
.input-shell label span { color: var(--muted-text); font-weight: 400; }
.input-shell input:not([type="checkbox"]),
.input-shell select,
.input-shell textarea {
    width: 100%;
    border: 0;
    border-radius: inherit;
    background: transparent;
    color: var(--text-color);
    outline: 0;
}
.input-shell input:not([type="checkbox"]),
.input-shell select { height: 62px; padding: 22px 14px 4px 48px; }
.input-shell textarea { min-height: 150px; resize: vertical; padding: 31px 14px 14px 48px; line-height: 1.6; }
.input-shell input::placeholder,
.input-shell textarea::placeholder { color: #98a2b3; opacity: 1; }
.input-shell select { cursor: pointer; }
.native-select-proxy {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    white-space: nowrap !important;
}
.input-shell-select.is-select-open { z-index: 80; }
.custom-select-trigger {
    display: flex;
    width: 100%;
    height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    border-radius: inherit;
    padding: 22px 15px 4px 48px;
    background: transparent;
    color: var(--text-color);
    outline: 0;
    text-align: left;
}
.custom-select-trigger > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.custom-select-trigger > i { flex: 0 0 auto; color: var(--primary-color); font-size: .8rem; transition: transform .2s ease; }
.input-shell-select.is-select-open .custom-select-trigger > i { transform: rotate(180deg); }
.custom-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 100;
    max-height: min(320px, 44vh);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: .45rem;
    background: #fff;
    box-shadow: 0 20px 48px rgba(3,39,78,.16);
}
.custom-select-menu button {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    border-radius: 8px;
    padding: .7rem .85rem;
    background: transparent;
    color: #344054;
    text-align: left;
    transition: background-color .16s ease, color .16s ease;
}
.custom-select-menu button i { color: var(--gold-color); opacity: 0; }
.custom-select-menu button:hover,
.custom-select-menu button:focus-visible { outline: 0; background: var(--background-color); color: var(--primary-color); }
.custom-select-menu button[aria-selected="true"] { background: var(--primary-color); color: #fff; }
.custom-select-menu button[aria-selected="true"] i { opacity: 1; }
.input-shell-textarea > i { top: 20px; transform: none; }
.input-shell-textarea:focus-within > i { transform: scale(1.06); }
.input-shell-textarea label { top: 10px; }
.checkbox-field { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: .7rem; }
.checkbox-field input {
    display: grid;
    width: 21px;
    height: 21px;
    margin: .1rem 0 0;
    appearance: none;
    place-items: center;
    border: 1px solid #98a2b3;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.checkbox-field input::before { color: #fff; content: "✓"; font-size: .78rem; font-weight: 700; line-height: 1; opacity: 0; transform: scale(.7); transition: opacity .16s ease, transform .16s ease; }
.checkbox-field input:checked { border-color: var(--primary-color); background: var(--primary-color); }
.checkbox-field input:checked::before { opacity: 1; transform: scale(1); }
.checkbox-field input:focus-visible { outline: 0; box-shadow: 0 0 0 4px rgba(212,175,55,.18); }
.checkbox-field label { color: var(--muted-text); font-size: .76rem; font-weight: 400; line-height: 1.5; }
.checkbox-field label a { color: var(--primary-color); text-decoration: underline; }
.field-error { display: none; margin-top: .3rem; color: #b42318; font-size: .72rem; }
.field.is-invalid .field-error { display: block; }
.field.is-invalid .input-shell { border-color: #b42318; background: #fffafa; box-shadow: 0 0 0 3px rgba(180,35,24,.08); }
.form-note { display: inline-flex; gap: .45rem; margin: 0 0 0 1rem; color: var(--muted-text); font-size: .75rem; }
.form-success { display: none; align-items: flex-start; gap: .8rem; margin-top: 1.3rem; padding: 1rem; border-left: 3px solid var(--success); background: #eff8f4; color: var(--success); }
.form-success.is-visible { display: flex; }
.form-success.is-error { border-color: rgba(166, 49, 49, .25); background: #fff7f6; color: #8f2d2d; }
.form-success.is-error span { color: #8f2d2d; }
.form-success span { display: block; margin-top: .15rem; font-size: .8rem; color: #45695a; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }

/* Image-rich editorial layer */
.hero { min-height: calc(100vh - 84px); background: var(--primary-dark); }
.hero::before {
    z-index: 0;
    display: block;
    background:
        radial-gradient(circle at 73% 30%, rgba(212,175,55,.13), transparent 24%),
        linear-gradient(110deg, var(--primary-dark), var(--primary-color));
}
.hero-inner {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(2rem, 5vw, 5rem);
}
.hero-copy { width: auto; }
.hero-visual { position: relative; height: min(680px, 68vh); min-height: 520px; }
.hero-main-image, .hero-detail-image, .hero-analysis-card {
    position: absolute;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 28px 70px rgba(0,0,0,.25);
    object-fit: cover;
}
.hero-main-image { top: 0; right: 0; width: 82%; height: 88%; border-radius: 26px; object-position: 64% center; }
.hero-main-image::after { content: ""; }
.hero-detail-image { right: -6%; bottom: 0; width: 34%; height: 48%; border-radius: 22px; object-position: 65% center; }
.hero-analysis-card { bottom: 4%; left: 0; width: 45%; overflow: hidden; border-radius: 20px; background: #fff; }
.hero-analysis-card img { width: 100%; height: 126px; object-fit: cover; }
.hero-analysis-card span { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 .65rem; padding: .75rem .85rem; color: var(--primary-color); }
.hero-analysis-card i { grid-row: 1 / 3; color: var(--gold-dark); font-size: 1.2rem; }
.hero-analysis-card strong { font: 600 .78rem "Manrope"; }
.hero-analysis-card small { color: var(--muted-text); font-size: .64rem; }
.hero-visual::before { position: absolute; top: -14px; right: -14px; width: 94px; height: 94px; border-top: 1px solid var(--gold-color); border-right: 1px solid var(--gold-color); content: ""; }
.consultation-card { display: none; }

.treatment-card { min-height: 430px; overflow: hidden; padding: 0; }
.treatment-card-image { position: relative; display: block; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; background: var(--primary-color); }
.treatment-card-image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(2,27,55,.72)); content: ""; }
.treatment-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.treatment-card:hover .treatment-card-image img { transform: scale(1.045); }
.treatment-card-image > span { position: absolute; bottom: 1rem; left: 1.2rem; z-index: 1; display: flex; align-items: center; gap: .45rem; color: var(--gold-light); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.treatment-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 1.4rem 1.5rem 1.6rem; }
.treatment-card-body p { margin-bottom: 1.25rem; }

.editorial-collage { position: relative; min-height: 620px; }
.editorial-collage img { position: absolute; border: 4px solid #fff; border-radius: 24px; box-shadow: var(--shadow); object-fit: cover; }
.collage-main { top: 0; left: 0; width: 76%; height: 82%; }
.collage-top { top: 4%; right: 0; width: 38%; height: 34%; }
.collage-bottom { right: 2%; bottom: 0; width: 44%; height: 40%; }
.collage-card { position: absolute; bottom: 8%; left: 5%; padding: 1rem 1.2rem; border-left: 3px solid var(--gold-color); background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.collage-card strong { display: block; color: var(--primary-color); font: 700 1.15rem "Manrope"; }
.collage-card span { color: var(--muted-text); font-size: .72rem; }

.process-step { padding-right: 1rem; }
.process-step > img { width: calc(100% - 1rem); aspect-ratio: 1.45 / 1; margin: 0 0 1.5rem; border-radius: 18px; object-fit: cover; }
.process-step .number { display: block; }
.process-step h3 { margin-top: .75rem; }

.visual-banner { position: relative; display: grid; min-height: 470px; grid-template-columns: .8fr 1.2fr; align-items: center; overflow: hidden; border-radius: 26px; background: var(--primary-color); color: #fff; }
.visual-banner::after { position: absolute; top: 28px; right: 28px; width: 76px; height: 76px; border-top: 1px solid var(--gold-color); border-right: 1px solid var(--gold-color); content: ""; }
.visual-banner > img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.visual-banner > div { padding: clamp(2.2rem, 6vw, 5rem); }
.visual-banner h2 { color: #fff; }
.visual-banner p { color: rgba(255,255,255,.72); }

.method-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.5rem; }
.method-visual-card { position: relative; min-height: 300px; overflow: hidden; border-radius: 22px; background: var(--primary-color); }
.method-visual-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(2,27,55,.9)); content: ""; }
.method-visual-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.method-visual-card:hover img { transform: scale(1.035); }
.method-visual-card span { position: absolute; right: 1.5rem; bottom: 1.4rem; left: 1.5rem; z-index: 1; display: grid; color: #fff; }
.method-visual-card small { color: var(--gold-light); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.method-visual-card strong { margin-top: .25rem; font: 600 1.35rem "Manrope"; }

.clinic-gallery { display: grid; min-height: 690px; grid-template-columns: 1.3fr .7fr .7fr; grid-template-rows: 1fr 1fr; gap: 1rem; }
.clinic-gallery figure { position: relative; overflow: hidden; margin: 0; border-radius: 22px; background: var(--primary-color); }
.clinic-gallery-main { grid-row: 1 / 3; }
.clinic-gallery figure:nth-child(2) { grid-column: 2 / 4; }
.clinic-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.clinic-gallery figure:hover img { transform: scale(1.035); }
.clinic-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 2.5rem 1.2rem 1rem; background: linear-gradient(transparent, rgba(2,27,55,.78)); color: #fff; font-size: .78rem; font-weight: 600; }

.journey-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.journey-gallery figure { margin: 0; overflow: hidden; border: 1px solid var(--border-color); border-radius: 20px; background: #fff; }
.journey-gallery figure:nth-child(even) { transform: translateY(2rem); }
.journey-gallery img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; }
.journey-gallery figcaption { display: flex; align-items: center; gap: .7rem; padding: 1rem; color: var(--primary-color); font: 600 .9rem "Manrope"; }
.journey-gallery small { color: var(--gold-dark); }

.testimonial-slider { position: relative; }
.testimonial-track {
    display: grid;
    grid-auto-columns: calc((100% - 1.2rem) / 2);
    grid-auto-flow: column;
    gap: 1.2rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: .2rem .2rem 1rem;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    position: relative;
    display: flex;
    min-height: 300px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--gold-color);
    border-radius: 18px;
    padding: 2rem;
    background: #fff;
    scroll-snap-align: start;
}
.testimonial-quote-mark { position: absolute; top: .5rem; right: 1.25rem; color: rgba(3,39,78,.06); font: 700 6.5rem/1 "Manrope"; }
.testimonial-stars { display: flex; gap: .2rem; color: var(--gold-color); font-size: .72rem; }
.testimonial-card blockquote { position: relative; z-index: 1; margin: 1.4rem 0 2rem; color: var(--muted-text); font-size: 1rem; line-height: 1.75; }
.testimonial-card footer { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--border-color); }
.testimonial-card strong { display: block; color: var(--primary-color); }
.testimonial-card small { color: var(--muted-text); font-size: .7rem; }
.testimonial-controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .5rem; }
.testimonial-pagination { display: flex; align-items: center; gap: .65rem; }
.testimonial-pagination button { width: 9px; height: 9px; border: 0; border-radius: 50%; padding: 0; background: #cbd1d8; transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.testimonial-pagination button:hover { background: var(--primary-light); }
.testimonial-pagination button.is-active { background: var(--gold-color); box-shadow: 0 0 0 4px rgba(212,175,55,.16); transform: scale(1.12); }
.testimonial-arrows { display: flex; gap: .55rem; }
.testimonial-arrows button { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--border-color); border-radius: 50%; background: #fff; color: var(--primary-color); transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.testimonial-arrows button:hover:not(:disabled) { border-color: var(--primary-color); background: var(--primary-color); color: #fff; }
.testimonial-arrows button:disabled { cursor: default; opacity: .35; }

.cta-panel-image { isolation: isolate; min-height: 430px; display: flex; justify-content: center; flex-direction: column; }
.cta-panel-image > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-panel-image::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(2,27,55,.97), rgba(3,39,78,.72)); content: ""; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(2rem, 5vw, 5rem); }
.faq-support-image { position: sticky; top: 100px; overflow: hidden; border-radius: 22px; background: var(--primary-color); }
.faq-support-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.faq-support-image span { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; padding: 1rem; border-left: 3px solid var(--gold-color); background: rgba(255,255,255,.93); }
.faq-support-image strong, .faq-support-image small { display: block; }
.faq-support-image strong { color: var(--primary-color); }
.faq-support-image small { color: var(--muted-text); font-size: .72rem; }

.contact-intro-visual > img { width: 100%; aspect-ratio: 3 / 2; margin-bottom: 2rem; border-radius: 22px; box-shadow: var(--shadow); object-fit: cover; }

.result-placeholder { background:
    radial-gradient(circle at 50% 34%, #a9abad 0 12%, transparent 12.5%),
    radial-gradient(ellipse at 50% 78%, #c4c1bb 0 27%, transparent 27.5%),
    linear-gradient(145deg, #dedbd4, #f5f2eb) !important;
}
.result-placeholder-2 { filter: contrast(.95) brightness(.98); }
.result-placeholder-3 { background-position: 8% 0, 8% 0, 0 0 !important; }
.result-placeholder-4 { filter: grayscale(1) contrast(.88); }
.result-slider { --position: 50%; position: relative; height: 260px; overflow: hidden; background: #ece9e2; }
.result-slider > div { position: absolute; inset: 0; background-color: #ece9e2; }
.result-slider > div::before { position: absolute; top: 50%; left: 50%; width: 72px; height: 100px; border-radius: 42% 42% 48% 48%; background: linear-gradient(#aeb0b2 28%, #d6d3cd 29%); content: ""; opacity: .65; transform: translate(-50%,-50%); }
.result-slide-after { clip-path: inset(0 0 0 var(--position)); border-left: 1px solid #fff; }
.result-slider span { position: absolute; bottom: .7rem; z-index: 1; padding: .3rem .5rem; background: rgba(3,39,78,.85); color: #fff; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.result-slide-before span { left: .7rem; }
.result-slide-after span { right: .7rem; }
.result-slider input { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; margin: 0; cursor: ew-resize; opacity: 0; }
.result-slider::after { position: absolute; top: 0; bottom: 0; left: var(--position); z-index: 2; width: 2px; background: #fff; box-shadow: 0 0 0 1px rgba(3,39,78,.16); content: ""; transform: translateX(-1px); pointer-events: none; }
.lightbox-dialog .result-slider { height: min(62vh, 540px); }

.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 2rem; background: rgba(2,27,55,.92); }
.lightbox.is-open { display: grid; }
.lightbox-dialog { width: min(860px, 100%); border-radius: 22px; padding: 1rem; background: #fff; box-shadow: var(--shadow); }
.lightbox-stage { position: relative; }
.lightbox-content { overflow: hidden; border-radius: 14px; }
.lightbox-dialog .result-visual { height: min(62vh, 540px); }
.lightbox-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .35rem .25rem 1rem; }
.lightbox-head strong { color: var(--primary-color); }
.lightbox-close { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--border-color); border-radius: 50%; background: #fff; color: var(--primary-color); }
.lightbox-nav { position: absolute; top: 50%; z-index: 5; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(3,39,78,.9); color: #fff; box-shadow: 0 8px 24px rgba(2,27,55,.24); transform: translateY(-50%); transition: background .2s ease, transform .2s ease; }
.lightbox-nav:hover { background: var(--gold-dark); }
.lightbox-nav:active { transform: translateY(-50%) scale(.94); }
.lightbox-nav-prev { left: 1rem; }
.lightbox-nav-next { right: 1rem; }
.lightbox-dots { display: flex; min-height: 28px; align-items: center; justify-content: center; gap: .45rem; padding-top: .75rem; }
.lightbox-dot { width: 8px; height: 8px; border: 0; border-radius: 50%; padding: 0; background: #c9cfd6; transition: width .2s ease, background .2s ease; }
.lightbox-dot[aria-current="true"] { width: 24px; border-radius: 999px; background: var(--gold-dark); }
.lightbox-nav:focus-visible, .lightbox-dot:focus-visible { outline: 2px solid var(--gold-color); outline-offset: 3px; }

.treatment-inner-hero { padding-block: 3.5rem; }
.treatment-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.treatment-hero-image { position: relative; }
.treatment-hero-image::before { position: absolute; top: -12px; right: -12px; width: 80px; height: 80px; border-top: 1px solid var(--gold-color); border-right: 1px solid var(--gold-color); content: ""; }
.treatment-hero-image img { width: 100%; aspect-ratio: 3 / 2; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.24); object-fit: cover; }
.treatment-intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.treatment-editorial-image { position: relative; }
.treatment-editorial-image > img { width: 100%; min-height: 500px; border-radius: 24px; box-shadow: var(--shadow); object-fit: cover; }
.treatment-editorial-image > span { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; padding: 1rem; border-left: 3px solid var(--gold-color); background: rgba(255,255,255,.94); }
.treatment-editorial-image strong, .treatment-editorial-image small { display: block; }
.treatment-editorial-image strong { color: var(--primary-color); }
.treatment-editorial-image small { margin-top: .2rem; color: var(--muted-text); font-size: .72rem; }
.feature-card-image { width: calc(100% + 3rem); max-width: none; height: 190px; margin: -1.5rem -1.5rem 1.3rem; border-radius: var(--radius) var(--radius) 0 0; object-fit: cover; }
.aftercare-prose > img { width: 100%; aspect-ratio: 3 / 2; margin-bottom: 1.2rem; border-radius: 20px; object-fit: cover; }
.related-card-image { min-height: 300px; overflow: hidden; padding: 0; }
.related-card-image > img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .35s ease; }
.related-card-image:hover > img { transform: scale(1.035); }
.related-card-image > span { display: flex; flex: 1; flex-direction: column; padding: 1.2rem; }
.related-card-image .text-link { margin-top: auto; }
.contact-location-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(2rem, 5vw, 5rem); }
.location-card { overflow: hidden; border: 1px solid var(--border-color); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.location-card > img { display: block; width: 100%; height: clamp(280px, 30vw, 360px); object-fit: cover; }
.location-card > div { padding: 1.6rem; }
.location-card > div p { color: var(--muted-text); font-size: .88rem; }
.location-card > div > strong, .location-card > div > small { display: block; }
.location-card > div > strong { color: var(--primary-color); }
.location-card > div > small { color: var(--muted-text); font-size: .7rem; }

/* Inner pages */
.inner-hero { position: relative; overflow: hidden; padding: 5.5rem 0 4.5rem; background: var(--primary-color); color: #fff; }
.inner-hero::after { position: absolute; right: -120px; bottom: -230px; width: 500px; height: 500px; border: 1px solid rgba(212,175,55,.2); border-radius: 50%; content: ""; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; color: rgba(255,255,255,.6); font-size: .76rem; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs i { font-size: .6rem; }
.inner-hero h1 { max-width: 880px; color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); }
.inner-hero p { max-width: 720px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.page-intro-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 5rem; }
.page-intro-aside { border-top: 2px solid var(--gold-color); padding-top: 1rem; }
.page-intro-aside strong { display: block; color: var(--primary-color); }
.page-intro-aside span { color: var(--muted-text); font-size: .84rem; }
.content-prose { max-width: 850px; }
.content-prose h2 { margin-top: 2.2rem; font-size: 1.8rem; }
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 { margin-top: 1.5rem; }
.content-prose p, .content-prose li { color: var(--muted-text); }
.content-prose ul { display: grid; gap: .6rem; margin: 1.2rem 0; }
.content-prose li { position: relative; padding-left: 1.4rem; }
.content-prose li::before { position: absolute; top: .72em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-color); content: ""; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card { border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1.5rem; background: #fff; }
.feature-card i { color: var(--gold-dark); font-size: 1.35rem; }
.feature-card h3 { margin-top: 1rem; font-size: 1.05rem; }
.feature-card p { color: var(--muted-text); font-size: .85rem; }
.numbered-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: steps; }
.numbered-list > div { counter-increment: steps; border-top: 1px solid var(--border-color); padding: 1.3rem 1rem 0 0; }
.numbered-list > div::before { content: "0" counter(steps); color: var(--gold-dark); font: 600 .85rem "Manrope"; }
.numbered-list h3 { margin-top: 1rem; font-size: 1rem; }
.numbered-list p { color: var(--muted-text); font-size: .82rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { display: flex; min-height: 160px; flex-direction: column; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1.3rem; background: #fff; }
.related-card small { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .09em; }
.related-card h3 { margin-top: .6rem; font-size: 1.05rem; }
.related-card .text-link { margin-top: auto; font-size: .82rem; }
.treatment-notes { margin-top: 4rem; }
.whatsapp-contact { margin-top: 2rem; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; align-items: start; gap: 4rem; }
.legal-nav { position: sticky; top: 100px; border-left: 2px solid var(--gold-color); padding-left: 1.2rem; }
.legal-nav a { display: block; padding: .35rem 0; color: var(--muted-text); font-size: .82rem; }
.map-placeholder { display: grid; min-height: 340px; place-items: center; border: 1px solid var(--border-color); background: repeating-linear-gradient(45deg, #f4f4f2, #f4f4f2 12px, #ecece9 12px, #ecece9 24px); color: var(--primary-color); text-align: center; }
.map-placeholder i { display: block; margin-bottom: .6rem; color: var(--gold-dark); font-size: 2rem; }

/* Blog */
.blog-hero p { max-width: 720px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.blog-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--border-color); border-radius: 22px; background: #fff; box-shadow: 0 14px 38px rgba(3,39,78,.07); transition: transform .24s ease, box-shadow .24s ease; }
.blog-card:hover { box-shadow: 0 22px 50px rgba(3,39,78,.12); transform: translateY(-4px); }
.blog-card-featured { display: grid; grid-column: 1 / -1; grid-template-columns: 1.15fr .85fr; }
.blog-card-image { display: block; min-height: 270px; overflow: hidden; background: var(--ivory); }
.blog-card-featured .blog-card-image { min-height: 390px; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.025); }
.blog-card-image > span { display: grid; height: 100%; min-height: inherit; place-items: center; color: var(--gold-dark); font-size: 2.5rem; }
.blog-card-body { display: flex; min-width: 0; flex: 1; flex-direction: column; align-items: flex-start; padding: clamp(1.4rem, 3vw, 2.2rem); }
.blog-card-body h2 { margin: .75rem 0 .8rem; font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 1.22; }
.blog-card-body h2 a { color: inherit; }
.blog-card-body p { margin-top: 0; color: var(--muted-text); font-size: .92rem; }
.blog-card-body .text-link { margin-top: auto; }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.2rem; color: var(--gold-dark); font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.blog-meta span + span { position: relative; }
.blog-meta span + span::before { position: absolute; top: 50%; left: -.65rem; width: 3px; height: 3px; border-radius: 50%; background: currentColor; content: ""; transform: translateY(-50%); }
.blog-empty { padding: 5rem 2rem; border: 1px solid var(--border-color); border-radius: 22px; background: var(--ivory); text-align: center; }
.blog-empty i { color: var(--gold-dark); font-size: 2.5rem; }
.blog-empty h2 { margin: 1rem 0 .5rem; }
.blog-empty p { margin: 0; color: var(--muted-text); }
.blog-article-head { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--primary-dark); color: #fff; }
.blog-article-head-inner { max-width: 930px; }
.blog-article-head .breadcrumbs a, .blog-article-head .breadcrumbs span, .blog-article-head .breadcrumbs i { color: rgba(255,255,255,.65); }
.blog-article-head h1 { max-width: 900px; margin: 1.1rem 0; color: #fff; font-size: clamp(2.5rem, 5.5vw, 4.7rem); }
.blog-article-head > .container > p { max-width: 760px; color: rgba(255,255,255,.74); font-size: 1.08rem; }
.blog-article-meta { margin-top: 1.8rem; color: var(--gold-light); }
.blog-article-meta span { display: inline-flex; align-items: center; gap: .45rem; }
.blog-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: clamp(2.5rem, 6vw, 6rem); padding-block: clamp(3.5rem, 7vw, 6rem); }
.blog-cover { width: 100%; max-height: 520px; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow); }
.blog-prose { max-width: 780px; margin-top: 2.5rem; color: var(--text-color); font-size: 1.03rem; line-height: 1.85; }
.blog-prose p { margin: 0 0 1.5rem; }
.blog-prose p:first-child { color: var(--primary-color); font-size: 1.15rem; font-weight: 500; }
.blog-aside { position: sticky; top: 110px; padding: 2rem; border-top: 3px solid var(--gold-color); border-radius: 0 0 20px 20px; background: var(--ivory); }
.blog-aside h2 { margin: 1rem 0; font-size: 1.55rem; }
.blog-aside p { color: var(--muted-text); font-size: .88rem; }
.blog-aside .button { width: 100%; margin-top: .8rem; }

/* 404 */
.error-page {
    position: relative;
    display: grid;
    min-height: clamp(620px, 72vh, 780px);
    overflow: hidden;
    align-items: center;
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: var(--primary-color);
    background: #fff;
}
.error-page::before {
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(213,177,63,.65), transparent);
}
.error-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr);
    gap: clamp(2rem,6vw,6rem);
    align-items: center;
}
.error-copy h1 {
    max-width: 760px;
    margin: 0 0 1.25rem;
    color: var(--primary-color);
    font-size: clamp(2.8rem,5.8vw,5.2rem);
    line-height: 1.03;
    letter-spacing: -.045em;
}
.error-copy > p {
    max-width: 680px;
    margin: 0;
    color: var(--muted-text);
    font-size: clamp(1rem,1.5vw,1.18rem);
    line-height: 1.75;
}
.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}
.error-actions .button-outline { color: var(--primary-color); border-color: var(--border-color); }
.error-actions .button-outline:hover { color: #fff; border-color: var(--primary-color); background: var(--primary-color); }
.error-links {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: .75rem;
    max-width: 820px;
    margin-top: 2.75rem;
}
.error-links a {
    display: flex;
    min-width: 0;
    gap: .8rem;
    align-items: center;
    padding: 1rem;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(8,35,69,.045);
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.error-links a:hover {
    transform: translateY(-3px);
    border-color: rgba(213,177,63,.65);
    background: var(--ivory);
}
.error-links i { flex: 0 0 auto; color: var(--gold-light); font-size: 1.15rem; }
.error-links span { display: grid; min-width: 0; gap: .18rem; }
.error-links strong { font-size: .88rem; line-height: 1.2; }
.error-links small {
    overflow: hidden;
    color: var(--muted-text);
    font-size: .72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.error-visual {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
    isolation: isolate;
}
.error-code {
    position: relative;
    z-index: 2;
    color: rgba(8,35,69,.018);
    font-size: clamp(8rem,17vw,14rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.09em;
    -webkit-text-stroke: 1px rgba(8,35,69,.2);
}
.error-visual > i {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 70px;
    height: 70px;
    color: var(--primary-dark);
    border: 6px solid rgba(8,35,69,.08);
    border-radius: 50%;
    background: var(--gold-color);
    box-shadow: 0 18px 50px rgba(0,0,0,.28);
    font-size: 1.55rem;
    place-items: center;
}
.error-orbit {
    position: absolute;
    border: 1px solid rgba(213,177,63,.22);
    border-radius: 50%;
}
.error-orbit::after {
    position: absolute;
    top: 12%;
    left: 13%;
    width: 8px;
    height: 8px;
    content: "";
    border-radius: 50%;
    background: var(--gold-color);
    box-shadow: 0 0 0 7px rgba(213,177,63,.1);
}
.error-orbit-one { width: 360px; height: 360px; transform: rotate(18deg); }
.error-orbit-two {
    width: 270px;
    height: 270px;
    transform: rotate(158deg);
    border-color: rgba(8,35,69,.1);
}

/* Footer and overlays */
.site-footer { padding: 4.8rem 0 1.5rem; background: var(--primary-dark); color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1.1fr; gap: 3rem; }
.brand-light { color: #fff; }
.brand-light small { color: rgba(255,255,255,.55); }
.footer-brand p { max-width: 370px; margin-top: 1.2rem; font-size: .84rem; }
.site-footer h2 { margin-bottom: 1.2rem; color: #fff; font-size: .9rem; letter-spacing: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer li a, .site-footer address a, .site-footer address span { color: rgba(255,255,255,.62); font-size: .8rem; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer address { display: grid; gap: .75rem; font-style: normal; }
.site-footer address a, .site-footer address span { display: flex; align-items: flex-start; gap: .6rem; }
.site-footer address .footer-address-lines { display: block; }
.site-footer address i { color: var(--gold-light); }
.social-links { display: flex; gap: .6rem; }
.social-links a { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3.5rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.3rem; font-size: .72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.2rem; }
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 800;
    display: flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: visible;
    border: 3px solid #fff;
    border-radius: 34px;
    padding: 0;
    background: linear-gradient(145deg, #27ad6e, #168650);
    color: #fff;
    box-shadow: 0 14px 34px rgba(3,39,78,.18), 0 6px 18px rgba(31,157,97,.3);
    transition: box-shadow .22s ease;
}
.whatsapp-float-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    background: rgba(255,255,255,.12);
}
.whatsapp-float-icon::before,
.whatsapp-float-icon::after {
    position: absolute;
    inset: -4px;
    z-index: -1;
    border: 2px solid rgba(39,173,110,.7);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    animation: whatsapp-ripple 2.2s ease-out infinite;
}
.whatsapp-float-icon::after { animation-delay: 1.1s; }
.whatsapp-float-icon i {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.14));
}
.whatsapp-float-icon .bi::before { display: block; line-height: 1; vertical-align: 0; }
.whatsapp-float-label {
    position: absolute;
    top: 50%;
    right: calc(100% + 14px);
    display: block;
    padding: .72rem .9rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(3,39,78,.14);
    opacity: 0;
    visibility: hidden;
    color: var(--primary-color);
    font: 600 .78rem/1 "Inter", sans-serif;
    pointer-events: none;
    white-space: nowrap;
    transform: translate(8px, -50%);
    transition: opacity .2s ease, visibility .2s ease, transform .25s ease;
}
.whatsapp-float-label::after {
    position: absolute;
    top: 50%;
    right: -6px;
    width: 11px;
    height: 11px;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    background: #fff;
    content: "";
    transform: translateY(-50%) rotate(45deg);
}
.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}
.mobile-contact-bar { display: none; }
.cookie-notice {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 1200;
    width: min(440px, calc(100% - 48px));
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.4rem;
    background: #fff;
    box-shadow: var(--shadow);
}
.cookie-notice.is-hidden { display: none; }
.cookie-notice h2 { font-size: 1.35rem; }
.cookie-notice p { color: var(--muted-text); font-size: .78rem; }
.cookie-close { position: absolute; top: .8rem; right: .8rem; border: 0; background: transparent; color: var(--muted-text); }
.cookie-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.cookie-actions .button { min-height: 42px; padding: .65rem .8rem; font-size: .75rem; }
.text-button { border: 0; padding: .5rem; background: transparent; color: var(--primary-color); font-size: .75rem; text-decoration: underline; }

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

@keyframes whatsapp-pulse {
    0% { opacity: .72; transform: scale(.88); }
    70%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes whatsapp-ripple {
    0% { opacity: .8; transform: scale(.78); }
    70%, 100% { opacity: 0; transform: scale(1.65); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .whatsapp-float-icon::before,
    .whatsapp-float-icon::after,
    .mobile-contact-bar a:nth-child(2) i::after { animation: none !important; }
}
