:root {
    --bg: #0f0b0a;
    --bg-soft: #171110;
    --bg-panel: #1d1614;
    --bg-elev: #241b19;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);

    --text: #f2ebe4;
    --text-muted: #b7a99e;
    --text-dim: #8a7a70;

    --brand: #cc428f;
    --brand-soft: #e37cb1;
    --brand-dark: #a83376;
    --gold: #c9a35b;
    --gold-soft: #e3c58a;
    --beige: #d8c4ae;
    --sage: #7fa88e;
    --sage-soft: #a3c4b0;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container: 1200px;
    --nav-h: 68px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
} 
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1200px 600px at 15% -10%, rgba(204, 66, 143, 0.10), transparent 60%),
        radial-gradient(900px 500px at 110% 20%, rgba(201, 163, 91, 0.08), transparent 60%);
    z-index: 0;
}
main, section, header, nav, footer { position: relative; z-index: 1; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; margin: 0 0 0.4em; letter-spacing: 0.2px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--text-muted); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brand-soft);
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(204, 66, 143, 0.12);
    margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-soft); background: rgba(201, 163, 91, 0.15); }

.section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }

.section__title { color: var(--text); }
.section__title--light { color: #fff; }
.section__subtitle {
    display: block;
    color: var(--text-dim);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section__lead { color: var(--text-muted); max-width: 640px; }
.section__head { margin-bottom: 44px; }
.section__head--center { text-align: center; margin-inline: auto; max-width: 720px; }
.section__head--center .section__lead { margin-inline: auto; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    cursor: pointer;
    will-change: transform;
}
.btn--primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(204, 66, 143, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(204, 66, 143, 0.42); }
.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--brand-soft); color: var(--brand-soft); }
.btn--block { width: 100%; }

.img-fallback {
    background: linear-gradient(135deg, #2a1f1c 0%, #3a2825 40%, #1e1614 100%) !important;
    min-height: 220px;
    width: 100%;
    position: relative;
}
.img-fallback::after {
    content: "THE 25 SPA";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.25);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 0.3em;
}

.top-bar {
    background: linear-gradient(90deg, #a83376, #cc428f);
    color: #fff;
    font-size: 0.78rem;
    padding: 8px 0;
}

.top-bar__inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.top-bar__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.top-bar__city {
    font-weight: 700;
    white-space: nowrap;
    margin-right: 8px;
}

.top-bar__item {
    white-space: nowrap;
}

.top-bar__item a {
    color: #fff;
    text-decoration: none;
}

.top-bar__dot {
    opacity: .5;
}

.site-header {
    background: linear-gradient(180deg, rgba(15,11,10,0.95) 0%, rgba(15,11,10,0.6) 100%);
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 4;
}
.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.brand__logo { height: 60px; width: auto; }
.tagline {
    text-align: center;
    margin: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    color: var(--gold-soft);
    letter-spacing: 0.06em;
}
.social { display: flex; gap: 10px; }
.social a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    color: var(--text);
    transition: all 0.25s ease;
}
.social a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); border-color: var(--brand); }
.social--dark { display: flex; gap: 10px; }

.nav {
    position: sticky;
    top: 0;
    background: rgba(15, 11, 10, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    z-index: 50;
    transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.nav.is-scrolled {
    background: rgba(15, 11, 10, 0.96);
    border-bottom-color: var(--line);
}
.nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-h);
}
.nav__mark {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--gold-soft);
    font-size: 0.95rem;
}
.nav__list {
    display: flex; align-items: center; gap: 6px;
}
.nav__link {
    display: inline-block;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-radius: 8px;
    position: relative;
    transition: color 0.25s ease;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__toggle {
    display: none;
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    padding: 0;
}
.nav__toggle span {
    display: block;
    height: 2px; background: var(--text);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    height: clamp(460px, 72vh, 720px);
    overflow: hidden;
}

.hero__track {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    opacity: 0;
    z-index: 1;

    transition: opacity .8s ease;
}

.hero__slide.is-active {
    opacity: 1;
    z-index: 2;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.65)
    );
}

.hero__caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    text-align: center;

}
.hero__caption h1 { color: #fff; margin-bottom: 16px; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.hero__caption p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 26px; }

.hero__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 3;
}
.hero__arrow:hover { background: var(--brand); transform: translateY(-50%) scale(1.06); }
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

.hero__dots {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 3;
}
.hero__dots button {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.25s ease;
}
.hero__dots button.is-active { background: var(--brand); width: 28px; border-radius: 999px; }

@keyframes fadeUp {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

.about { background: var(--bg); }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
}
.about__text p { font-size: 1rem; }
.about__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.about__figure {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0;
}
.about__figure img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.about__figure::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px var(--line);
    pointer-events: none; z-index: 2;
}
.about__badge {
    position: absolute;
    left: 24px; bottom: 24px;
    background: rgba(15,11,10,0.85);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line-strong);
    z-index: 3;
    display: flex; flex-direction: column; line-height: 1.2;
}
.about__badge strong { color: var(--gold-soft); font-size: 1.2rem; font-family: var(--font-serif); }
.about__badge em { color: var(--text-muted); font-style: normal; font-size: 0.8rem; }

.services { position: relative; padding: clamp(80px, 10vw, 140px) 0; overflow: hidden; }
.services__bg {
    position: absolute; inset: 0;
    background-image: url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=70");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}
.services__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,11,10,0.85) 0%, rgba(15,11,10,0.92) 100%);
    z-index: 1;
}
.services__inner { position: relative; z-index: 2; }
.services .section__head { text-align: center; margin-inline: auto; max-width: 720px; }
.services .section__lead { margin-inline: auto; color: rgba(255,255,255,0.75); }

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.service-card {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    outline: none;
}
.service-card:hover, .service-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(204, 66, 143, 0.35);
}
.service-card__media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; background: #241b19; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__body { padding: 22px 22px 24px; }
.service-card__body h3 { color: #fff; margin-bottom: 8px; }
.service-card__link {
    color: var(--brand-soft);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}
.service-card:hover .service-card__link { gap: 12px; color: var(--brand); }

.offer { background: var(--bg); }
.offer__card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: linear-gradient(135deg, #1d1614 0%, #2a1f1d 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md); 
    padding: 0;
}
.offer__media { background: white; display: flex; align-items: center; justify-content: center; padding: 40px; min-height: 320px; }
.offer__media img { max-height: 240px; width: auto; }
.offer__body { padding: clamp(30px, 5vw, 56px); }
.offer__body h2 { color: #fff; margin-bottom: 8px; }
.offer__meta { color: var(--gold-soft); font-weight: 500; letter-spacing: 0.05em; margin-bottom: 20px; }
.offer__price {
    display: flex; align-items: baseline; gap: 4px;
    font-family: var(--font-serif);
    color: #fff;
    margin-bottom: 16px;
}
.offer__price .currency { font-size: 1.4rem; color: var(--brand-soft); }
.offer__price .amount { font-size: 3.5rem; font-weight: 700; line-height: 1; }
.offer__price .unit { font-size: 0.95rem; color: var(--text-muted); font-family: var(--font-sans); margin-left: 6px; }
.offer__desc { margin-bottom: 24px; }

.packages { background: var(--bg-soft); }
.packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 42px;
}
.pkg {
    position: relative;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,163,91,0.3); }
.pkg--featured {
    background: linear-gradient(160deg, #1f1613 0%, #2a1a22 100%);
    border-color: rgba(204, 66, 143, 0.35);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.pkg__badge {
    position: absolute; top: -12px; right: 24px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
}
.pkg__head { margin-bottom: 20px; }
.pkg__label { display: inline-block; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.pkg__label--best { color: var(--gold); }
.pkg__head h3 { color: #fff; font-size: 1.5rem; }
.pkg__price { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-serif); color: #fff; margin-bottom: 4px; }
.pkg__price .currency { color: var(--brand-soft); font-size: 1.2rem; }
.pkg__price .amount { font-size: 2.8rem; font-weight: 700; line-height: 1; }
.pkg__note { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 22px; }
.pkg__features { margin-bottom: 26px; }
.pkg__features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--text-muted); font-size: 0.92rem; border-bottom: 1px dashed var(--line); }
.pkg__features li:last-child { border-bottom: 0; }
.pkg__features i { color: var(--brand-soft); font-size: 0.8rem; }

.locations { background: var(--bg); }
.locations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.loc-card {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(204,66,143,0.28); }
.loc-card iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.15) contrast(0.95); }
.loc-card__body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.loc-card__title { color: #fff; font-family: var(--font-serif); font-size: 1.3rem; margin: 0; }
.loc-card__addr { font-size: 0.9rem; color: var(--text-muted); font-style: normal; margin: 0; line-height: 1.55; }
.loc-card__phones { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.loc-card__phones a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: rgba(204,66,143,0.10);
    color: var(--brand-soft);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.25s ease, color 0.25s ease;
    border: 1px solid rgba(204,66,143,0.2);
}
.loc-card__phones a:hover { background: var(--brand); color: #fff; }

.contact { background: var(--bg-soft); }
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(30px, 6vw, 70px);
    align-items: start;
}
.contact__list { margin: 26px 0; }
.contact__list li { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact__list li:last-child { border-bottom: 0; }
.contact__list i {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(204,66,143,0.12);
    color: var(--brand-soft);
    display: inline-flex; align-items: center; justify-content: center;
}
.contact__list strong { display: block; color: var(--text); font-size: 0.85rem; letter-spacing: 0.06em; }
.contact__list a, .contact__list span { color: var(--text-muted); font-size: 0.95rem; }
.contact__list a:hover { color: var(--brand-soft); }

.contact__form {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    padding: clamp(24px, 4vw, 40px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}
.field input, .field textarea {
    width: 100%;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--brand-soft);
    background: #2a201d;
}
.field.is-invalid input, .field.is-invalid textarea { border-color: #e26a6a; }
.field__error { display: block; min-height: 18px; color: #e26a6a; font-size: 0.78rem; margin-top: 4px; }
.form__status { margin-top: 12px; font-size: 0.9rem; color: var(--gold-soft); min-height: 20px; }

.footer { background: #0a0706; border-top: 1px solid var(--line); padding: 60px 0 20px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer__brand p { color: var(--text-dim); font-size: 0.9rem; max-width: 340px; }
.footer__logo { height: 54px; margin-bottom: 14px; }
.footer__links h4 { color: var(--text); font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links ul { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.25s ease; }
.footer__links a:hover { color: var(--brand-soft); }
.footer__bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; text-align: center; color: var(--text-dim); font-size: 0.82rem; }

.to-top {
    position: fixed; right: 24px; bottom: 24px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px rgba(204,66,143,0.35);
    opacity: 0; pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 40;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }

.modal {
    position: fixed; inset: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    z-index: 100;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}
.modal__panel {
    position: relative;
    background: var(--bg-panel);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.94) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    display: flex;
    flex-direction: row;
}
.modal.is-open .modal__panel { transform: scale(1) translateY(0); }
.modal__close {
    position: absolute; top: 14px; right: 14px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    transition: background 0.25s ease, transform 0.25s ease;
}
.modal__close:hover { background: var(--brand); transform: rotate(90deg); }
.modal__media {
    flex: 0 0 45%;
    aspect-ratio: auto;
    height: auto;
    overflow: hidden;
    background: #241b19;
}
.modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal__body {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}
.modal__body h3 { color: #fff; font-size: 1.75rem; margin-bottom: 12px; }
.modal__body p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.modal__cta { margin-top: 20px; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--reveal-delay, 0s);
}
.reveal--left { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal.is-visible { opacity: 1; transform: translate(0, 0); }

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--brand) 55%, var(--sage) 100%);
    z-index: 60;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(204, 66, 143, 0.5);
}

/* =========================================================
   BUTTON RIPPLE + GLOW
   ========================================================= */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: ripple 0.6s ease-out forwards;
    pointer-events: none;
    z-index: 1;
}
@keyframes ripple {
    to { transform: scale(3); opacity: 0; }
}
.btn--ghost .btn__ripple { background: rgba(204, 66, 143, 0.25); }

/* =========================================================
   SPOTLIGHT HOVER (service cards, package cards, location cards)
   ========================================================= */
.service-card, .pkg, .loc-card {
    --spot-x: 50%;
    --spot-y: 50%;
}
.service-card::before, .pkg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(220px circle at var(--spot-x) var(--spot-y), rgba(204, 66, 143, 0.14), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}
.service-card:hover::before, .pkg:hover::before { opacity: 1; }
.service-card { position: relative; }
.pkg { position: relative; }
.service-card__media, .service-card__body, .pkg__head, .pkg__price, .pkg__note, .pkg__features, .pkg > a, .pkg__badge {
    position: relative;
    z-index: 2;
}

/* =========================================================
   ANIMATED STAT COUNTERS (about badge + trust strip)
   ========================================================= */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.stat {
    text-align: left;
}
.stat__num {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-soft), var(--brand-soft));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    display: block;
}
.stat__label {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* =========================================================
   FLOATING QUICK-CONTACT (WhatsApp / Call)
   ========================================================= */
.quick-contact {
    position: fixed;
    right: 24px;
    bottom: 84px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 40;
}
.quick-contact a {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
    position: relative;
}
.quick-contact a:hover { transform: translateY(-3px) scale(1.06); }
.quick-contact__call { background: linear-gradient(135deg, var(--sage), #5f8b73); }
.quick-contact__whatsapp { background: linear-gradient(135deg, #25d366, #128c4a); }
.quick-contact a::after {
    content: attr(data-label);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-panel);
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, right 0.25s ease;
}
.quick-contact a:hover::after { opacity: 1; right: 64px; }

/* =========================================================
   HERO MOUSE-PARALLAX LAYER
   ========================================================= */
.hero__caption { will-change: transform; }

/* =========================================================
   NAV ACTIVE PILL BACKGROUND
   ========================================================= */
.nav__link.is-active {
    background: rgba(204, 66, 143, 0.12);
}

/* =========================================================
   LOCATION CARD MAP LOADING SKELETON
   ========================================================= */
.loc-card iframe { background: linear-gradient(110deg, #201815 8%, #2a201d 18%, #201815 33%); background-size: 200% 100%; animation: shimmer 1.6s linear infinite; }
@keyframes shimmer { to { background-position-x: -200%; } }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .hero__slide, .service-card, .pkg, .loc-card, .btn, .stat__num {
        transition: none !important;
        animation: none !important;
    }
}

@media (max-width: 992px) {
    .site-header__inner { grid-template-columns: auto 1fr; }
    .tagline { grid-column: 1 / -1; text-align: left; order: 3; }
    .social { order: 2; }

    .about__grid { grid-template-columns: 1fr; }
    .about__figure img { min-height: 320px; }

    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .packages__grid { grid-template-columns: repeat(2, 1fr); }
    .locations__grid { grid-template-columns: repeat(2, 1fr); }

    .offer__card { grid-template-columns: 1fr; }
    .offer__media { min-height: 220px; }

    .contact__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }

    .nav__toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 1002;
    } 

    .nav__list {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Better for mobile browsers */

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;

        background: rgba(15, 11, 10, 0.98);
        backdrop-filter: blur(18px);

        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all .4s ease;

        z-index: 1000;
    }

    .nav__list.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__link {
        font-size: 1.5rem;
        font-weight: 600;
        letter-spacing: .12em;
        padding: 12px 0;
    }

    .nav__mark {
        position: relative;
        z-index: 1002;
    }

    /* While the drawer is open and the page hasn't scrolled yet, the
       site-header brand/logo above is still visible, so this duplicate
       text mark is redundant — only show it once the header has scrolled
       out of view (.nav.is-scrolled). Use visibility (not display:none)
       so it keeps its layout box — otherwise .nav__inner drops to a
       single flex child and space-between collapses the toggle to the
       left instead of keeping it pinned to the right. */
    body.menu-open .nav:not(.is-scrolled) .nav__mark {
        visibility: hidden;
    }

    /* .nav has backdrop-filter, which makes it a containing block for
       position:fixed descendants. Without this, .nav__list's inset:0
       resolves against .nav's own box instead of the viewport, so the
       drawer opens offset downward and gets clipped instead of covering
       the full screen. */
    body.menu-open .nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .services__bg { background-attachment: scroll; }

    .modal__panel {
        flex-direction: column;
        max-width: 620px;
    }
    .modal__media {
        flex: none;
        aspect-ratio: 16 / 9;
        height: auto;
    }
} 

@media (max-width: 640px) {
    .top-bar{
        padding:10px 0;
        font-size:.72rem;
    }

    .top-bar__row{
        display:flex;
        flex-wrap:wrap;
        align-items:center;
        gap:4px 8px;
    }

    .top-bar__city{
        width:100%;
        margin-bottom:2px;
        color:#ffe8f5;
    }

    .top-bar__dot{
        display:none;
    }

    .top-bar__item::after{
        content:" |";
        margin-left:6px;
        opacity:.5;
    }

    .top-bar__item:last-child::after{
        content:"";
    }

    .hero { height: 78vh; min-height: 460px; }
    .hero__arrow { width: 40px; height: 40px; }
    .hero__arrow--prev { left: 12px; }
    .hero__arrow--next { right: 12px; }

    .services__grid { grid-template-columns: 1fr; }
    .packages__grid { grid-template-columns: 1fr; }
    .locations__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }

    .about__cta { flex-direction: column; }
    .about__cta .btn { width: 100%; }

    .stats-strip { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .quick-contact { right: 14px; bottom: 78px; }
    .quick-contact a { width: 44px; height: 44px; }
    .quick-contact a::after { display: none; }
}