:root {
    --black: #0f0f0f;
    --anthracite: #181818;
    --gold: #c89b3c;
    --cream: #f5efe4;
    --muted: #b8b8b8;
    --line: rgba(245, 239, 228, 0.12);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    --radius: 8px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(200, 155, 60, 0.13), transparent 34rem),
        linear-gradient(135deg, #0a0a0a 0%, var(--black) 48%, #14110b 100%);
    color: var(--cream);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1120px, calc(100% - 32px));
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 15, 15, 0.86);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translate(-50%, -125%);
    pointer-events: none;
    transition: opacity 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.top-logo {
    display: grid;
    place-items: center;
    width: min(205px, calc(100% - 32px));
    margin: 10px auto 0;
    padding: 0;
    animation: logo-reveal 820ms var(--ease) both;
}

.top-logo img {
    width: min(168px, 52vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
    animation: logo-float 5.8s ease-in-out 900ms infinite;
    transform-origin: center;
}

.site-header.is-scrolled {
    border-color: rgba(200, 155, 60, 0.28);
    background: rgba(15, 15, 15, 0.94);
    box-shadow: 0 16px 54px rgba(0, 0, 0, 0.42);
}

.site-header.is-visible,
body.menu-open .site-header {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    background: rgba(245, 239, 228, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 240ms var(--ease), box-shadow 240ms ease;
}

.brand-mark img {
    width: 34px;
    height: 38px;
    object-fit: contain;
}

.brand:hover .brand-mark {
    transform: rotate(-6deg) scale(1.04);
    box-shadow: 0 12px 28px rgba(200, 155, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 0.98rem;
    line-height: 1.15;
}

.brand small {
    color: var(--muted);
    font-size: 0.72rem;
}

.site-nav {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(24, 24, 24, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.site-nav a {
    position: relative;
    padding: 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 700;
    transition: background 160ms ease, color 160ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    background: rgba(200, 155, 60, 0.12);
    color: var(--cream);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(245, 239, 228, 0.06);
    cursor: pointer;
}

.top-menu-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 24;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
    transition: opacity 180ms ease, transform 180ms var(--ease), border-color 180ms ease;
}

.top-menu-toggle.is-hidden {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--cream);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(3) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.section {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(48px, 6vw, 66px) 0;
}

.hero {
    display: grid;
    gap: 24px;
    min-height: auto;
    align-items: center;
    padding-top: clamp(34px, 5vw, 48px);
    padding-bottom: clamp(42px, 5vw, 58px);
}

.hero-copy {
    display: grid;
    justify-items: start;
    text-align: left;
    animation: hero-copy-in 720ms var(--ease) both;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 2px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 999px;
    background: var(--gold);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.02;
}

h1 {
    max-width: 820px;
    font-size: clamp(2.35rem, 7.2vw, 5.2rem);
}

h2 {
    font-size: clamp(2.15rem, 7vw, 4rem);
}

h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.hero-subtitle,
.section-lead,
.about-copy p,
.final-cta p {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-subtitle {
    max-width: 560px;
    margin-top: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    justify-self: center;
    margin-top: 24px;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.1;
    transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
    transform: translateX(-130%);
    transition: transform 520ms ease;
    pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before {
    transform: translateX(130%);
}

.btn-primary {
    background: linear-gradient(145deg, var(--gold), #9d7327);
    color: #130f08;
    box-shadow: 0 12px 36px rgba(200, 155, 60, 0.22);
}

.btn-ghost {
    border-color: rgba(245, 239, 228, 0.2);
    background: rgba(245, 239, 228, 0.06);
}

.btn-outline {
    border-color: rgba(200, 155, 60, 0.5);
    color: var(--gold);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    max-width: 620px;
    margin-top: 18px;
}

.hero-proof > span {
    display: grid;
    place-items: center;
    text-align: center;
    align-items: center;
    gap: 7px;
    min-width: 0;
    padding: 10px 7px;
    border: 1px solid rgba(200, 155, 60, 0.18);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, 0.1), rgba(245, 239, 228, 0.035)),
        rgba(245, 239, 228, 0.035);
}

.hero-proof svg {
    width: 21px;
    height: 21px;
    fill: var(--gold);
    flex: 0 0 auto;
}

.hero-proof strong,
.hero-proof small {
    display: block;
}

.hero-proof strong {
    color: var(--cream);
    font-size: 0.76rem;
    line-height: 1.15;
}

.hero-proof small {
    color: var(--muted);
    font-size: 0.66rem;
    margin-top: 2px;
}

.hero-media,
.image-panel {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(200, 155, 60, 0.22);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, 0.35), transparent),
        linear-gradient(135deg, #24211b, #0f0f0f 62%);
    box-shadow: var(--shadow);
}

.hero-media {
    min-height: 390px;
    animation: hero-image-in 860ms var(--ease) 120ms both;
}

.hero-media img,
.image-panel img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 700ms var(--ease), filter 700ms ease;
}

.hero-media:hover img,
.image-panel:hover img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.hero-media img.is-missing,
.image-panel img.is-missing {
    display: none;
}

.hero-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: 360px;
    padding: 18px;
    border: 1px solid rgba(245, 239, 228, 0.18);
    border-radius: var(--radius);
    background: rgba(15, 15, 15, 0.78);
    backdrop-filter: blur(12px);
    animation: badge-float 4.8s ease-in-out infinite;
}

.hero-badge strong,
.hero-badge span {
    display: block;
}

.hero-badge span {
    color: var(--muted);
    font-size: 0.88rem;
}

.hero-badge a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 900;
}

.intro-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: min(760px, calc(100% - 32px));
    padding: 0 0 36px;
}

.intro-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 9px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(245, 239, 228, 0.035);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.intro-strip svg {
    width: 17px;
    height: 17px;
    fill: var(--gold);
    flex: 0 0 auto;
}

.intro-strip a:hover,
.intro-strip a:focus-visible {
    border-color: rgba(200, 155, 60, 0.45);
    background: rgba(200, 155, 60, 0.11);
    color: var(--cream);
    transform: translateY(-3px);
}

.split {
    display: grid;
    gap: 32px;
}

.booking-section {
    display: grid;
    gap: 24px;
    padding-top: 36px;
}

.booking-panel {
    display: grid;
    gap: 14px;
}

.booking-services {
    display: grid;
    gap: 10px;
}

.booking-services a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(245, 239, 228, 0.045);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.booking-services a:hover,
.booking-services a:focus-visible {
    border-color: rgba(200, 155, 60, 0.45);
    background: rgba(200, 155, 60, 0.1);
    transform: translateY(-3px);
}

.booking-services span {
    color: var(--cream);
    font-weight: 850;
}

.booking-services strong {
    color: var(--gold);
    font-size: 1.05rem;
}

.booking-next {
    padding: 22px;
    border: 1px solid rgba(200, 155, 60, 0.24);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, 0.13), transparent 52%),
        rgba(24, 24, 24, 0.76);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
}

.booking-next > span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-next strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.2;
}

.booking-next p {
    margin: 10px 0 18px;
    color: var(--muted);
}

.booking-form {
    display: grid;
    gap: 14px;
}

.booking-form label {
    display: grid;
    gap: 6px;
}

.booking-form label > span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 15, 15, 0.58);
    color: var(--cream);
    font: inherit;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-form textarea {
    resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: rgba(200, 155, 60, 0.58);
    background: rgba(15, 15, 15, 0.72);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.1);
}

.booking-form .btn-primary {
    margin-top: 8px;
}

.booking-whatsapp-link {
    display: inline-flex;
    justify-content: center;
    margin-top: 2px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
}

.form-alert {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-alert-success {
    border: 1px solid rgba(74, 222, 128, 0.36);
    background: rgba(74, 222, 128, 0.12);
    color: #bbf7d0;
}

.form-alert-error {
    border: 1px solid rgba(248, 113, 113, 0.4);
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
}

.service-grid,
.price-grid,
.review-grid,
.why-grid {
    display: grid;
    gap: 14px;
}

.service-card,
.price-card,
.review-card,
.why-grid article,
.hours-card,
.location-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(245, 239, 228, 0.07), rgba(245, 239, 228, 0.03));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.service-card {
    padding: 22px;
    transition: border-color 220ms ease, transform 220ms var(--ease), background 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.price-card:hover,
.review-card:hover,
.why-grid article:hover,
.process-card:hover,
.hours-card:hover,
.location-card:hover {
    border-color: rgba(200, 155, 60, 0.38);
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.service-card span {
    display: block;
    width: 34px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--gold);
}

.service-card p,
.review-card p,
.why-grid p {
    margin: 10px 0 0;
    color: var(--muted);
}

.visual-band {
    display: grid;
    gap: 14px;
    padding-top: 0;
}

.visual-band .image-panel {
    min-height: 260px;
}

.image-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.74));
    pointer-events: none;
}

.image-panel span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    padding: 8px 10px;
    border: 1px solid rgba(245, 239, 228, 0.18);
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.72);
    color: var(--cream);
    font-size: 0.84rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
}

.price-grid {
    grid-template-columns: 1fr;
}

.price-category-grid {
    display: grid;
    gap: 18px;
}

.price-category {
    padding: 18px;
    border: 1px solid rgba(200, 155, 60, 0.2);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, 0.1), transparent 48%),
        rgba(245, 239, 228, 0.035);
}

.price-category > h3 {
    margin-bottom: 14px;
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
}

.price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    transition: border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.price-card span {
    color: var(--cream);
    font-weight: 850;
}

.price-card strong {
    color: var(--gold);
    font-size: 1.4rem;
    text-align: right;
}

.note {
    margin: 20px 0 0;
    color: var(--muted);
}

.about-section {
    display: grid;
    gap: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-facts {
    display: grid;
    gap: 12px;
}

.about-facts div {
    padding: 20px;
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    background: rgba(200, 155, 60, 0.08);
    transition: transform 220ms var(--ease), background 220ms ease;
}

.about-facts div:hover {
    background: rgba(200, 155, 60, 0.13);
    transform: translateX(4px);
}

.about-facts strong,
.about-facts span {
    display: block;
}

.about-facts strong {
    font-size: 1.35rem;
}

.about-facts span {
    color: var(--muted);
}

.why-grid article {
    padding: 22px;
    transition: border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.process-section {
    border-top: 1px solid var(--line);
}

.process-grid {
    display: grid;
    gap: 14px;
}

.process-card {
    position: relative;
    min-height: 210px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(200, 155, 60, 0.2);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, 0.15), transparent 48%),
        rgba(245, 239, 228, 0.04);
    transition: border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.process-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(200, 155, 60, 0.1);
    filter: blur(6px);
    transition: transform 360ms var(--ease);
}

.process-card:hover::after {
    transform: translate(-14px, -14px) scale(1.15);
}

.process-card > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: var(--gold);
    color: #130f08;
    font-weight: 900;
}

.process-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.review-card {
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(245, 239, 228, 0.03)),
        #171717;
    transition: border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #2f6fdb;
    color: white;
    font-weight: 900;
}

.stars {
    color: #fbbc04;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-shadow: 0 0 18px rgba(251, 188, 4, 0.28);
}

.reviews-section .btn {
    margin-top: 22px;
}

.info-grid {
    display: grid;
    gap: 18px;
}

.hours-card,
.location-card {
    padding: 24px;
    transition: border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

dl {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
}

dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

dt {
    color: var(--muted);
}

dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.map-embed {
    position: relative;
    display: block;
    width: 100%;
    min-height: 260px;
    margin: 22px 0;
    border: 1px solid rgba(200, 155, 60, 0.34);
    border-radius: var(--radius);
    background: #121212;
}

.faq-section {
    padding-top: 0;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(245, 239, 228, 0.04);
    transition: border-color 180ms ease, background 180ms ease;
}

.faq-list details[open] {
    border-color: rgba(200, 155, 60, 0.42);
    background: rgba(200, 155, 60, 0.07);
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--cream);
    font-weight: 900;
}

.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.final-cta {
    margin-bottom: 34px;
    padding: 42px 24px;
    border: 1px solid rgba(200, 155, 60, 0.26);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(200, 155, 60, 0.18), transparent 48%),
        var(--anthracite);
    box-shadow: var(--shadow);
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.contact-list a,
.contact-list span {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 15;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: #06180d;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    animation: whatsapp-pulse 2.8s ease-in-out infinite;
    transition: transform 180ms var(--ease);
}

.floating-whatsapp svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-4px) scale(1.04);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #f5d28a);
    transform: scaleX(0);
    transform-origin: left;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 88px;
    z-index: 15;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(200, 155, 60, 0.35);
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.82);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 900;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
    transition: opacity 180ms ease, transform 180ms var(--ease), border-color 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    border-color: rgba(200, 155, 60, 0.7);
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 640ms ease, transform 640ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.is-visible.service-card:hover,
.reveal.is-visible.price-card:hover,
.reveal.is-visible.review-card:hover,
.why-grid article.reveal.is-visible:hover,
.reveal.is-visible.process-card:hover,
.reveal.is-visible.hours-card:hover,
.reveal.is-visible.location-card:hover {
    transform: translateY(-5px);
}

.intro-strip a.reveal.is-visible:hover,
.intro-strip a.reveal.is-visible:focus-visible {
    transform: translateY(-3px);
}

.about-facts div.reveal.is-visible:hover {
    transform: translateX(4px);
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto 28px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

.site-footer img {
    width: 22px;
    height: 26px;
    object-fit: contain;
}

.site-footer a {
    color: var(--gold);
}

.admin-body,
.status-body {
    min-height: 100vh;
    min-height: 100svh;
}

.admin-shell,
.status-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.admin-shell {
    min-height: 100vh;
    min-height: 100svh;
    padding: 12px 0 24px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 76px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 15, 15, 0.84);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.admin-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.admin-logo img {
    width: 38px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.34));
}

.admin-logo strong,
.admin-logo small {
    display: block;
}

.admin-logo small {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-width: 132px;
}

.admin-actions form {
    margin: 0;
}

.admin-actions .btn {
    min-height: 42px;
    padding: 11px 13px;
    width: 100%;
    font-size: 0.82rem;
}

.admin-hero {
    padding: 34px 0 22px;
}

.admin-hero h1 {
    max-width: 760px;
}

.admin-notice {
    display: inline-flex;
    margin-top: 22px;
    padding: 10px 12px;
    border: 1px solid rgba(200, 155, 60, 0.36);
    border-radius: 999px;
    background: rgba(200, 155, 60, 0.1);
    color: var(--muted);
}

.admin-notice strong {
    color: var(--cream);
}

.admin-notice-success {
    border-color: rgba(74, 222, 128, 0.36);
    background: rgba(74, 222, 128, 0.12);
    color: #bbf7d0;
}

.admin-notice-error {
    border-color: rgba(248, 113, 113, 0.4);
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
}

.mode-grid {
    display: grid;
    gap: 14px;
    min-height: 52vh;
}

.mode-card {
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: clamp(245px, 33svh, 310px);
    padding: clamp(20px, 6vw, 26px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(245, 239, 228, 0.07), rgba(245, 239, 228, 0.025)),
        rgba(24, 24, 24, 0.72);
    color: var(--cream);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    transition: border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.mode-card:hover,
.mode-card:focus-within {
    border-color: rgba(200, 155, 60, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.mode-card.is-active {
    border-color: rgba(200, 155, 60, 0.7);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, 0.18), transparent 58%),
        rgba(24, 24, 24, 0.84);
}

.mode-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mode-card-top span,
.mode-card-top strong {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 9px;
    border: 1px solid rgba(245, 239, 228, 0.13);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mode-card-top strong {
    border-color: rgba(200, 155, 60, 0.35);
    color: var(--gold);
}

.mode-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.65rem);
}

.mode-card p {
    margin: 0;
    color: var(--muted);
}

.mode-card .btn {
    width: 100%;
    min-height: 52px;
    align-self: end;
    margin-top: auto;
    cursor: pointer;
}

.admin-preview {
    display: grid;
    gap: 22px;
    margin-top: 18px;
    padding: 24px;
    border: 1px solid rgba(200, 155, 60, 0.22);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(200, 155, 60, 0.12), transparent 52%),
        rgba(15, 15, 15, 0.68);
}

.admin-preview h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
}

.admin-preview p {
    margin: 12px 0 0;
    color: var(--muted);
}

.admin-path code {
    display: inline-block;
    max-width: 100%;
    margin-top: 4px;
    padding: 4px 6px;
    overflow-wrap: anywhere;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--gold);
    font-size: 0.82rem;
}

.admin-preview-links {
    display: grid;
    gap: 8px;
}

.admin-preview-links a {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--gold);
    font-weight: 900;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.admin-preview-links a:hover,
.admin-preview-links a:focus-visible {
    border-color: rgba(200, 155, 60, 0.44);
    background: rgba(200, 155, 60, 0.09);
    transform: translateX(4px);
}

.admin-mail-test {
    display: grid;
    gap: 18px;
    margin-top: 18px;
    padding: 24px;
    border: 1px solid rgba(200, 155, 60, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, 0.16), transparent 55%),
        rgba(24, 24, 24, 0.78);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.admin-mail-test h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
}

.admin-mail-test p {
    margin: 12px 0 0;
    color: var(--muted);
}

.admin-mail-test form {
    display: grid;
    align-items: end;
    margin: 0;
}

.admin-mail-test .btn {
    width: 100%;
}

.admin-login-card {
    display: grid;
    align-content: center;
    width: min(520px, 100%);
    min-height: calc(100svh - 56px);
    padding: clamp(24px, 7vw, 42px);
    border: 1px solid rgba(200, 155, 60, 0.28);
    border-radius: 0;
    background:
        linear-gradient(145deg, rgba(200, 155, 60, 0.14), transparent 56%),
        rgba(15, 15, 15, 0.78);
    box-shadow: var(--shadow);
}

.admin-login-card img {
    width: min(172px, 52vw);
    margin: 0 auto clamp(22px, 7svh, 54px);
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.4));
}

.admin-login-card h1 {
    font-size: clamp(2.2rem, 10vw, 4rem);
}

.admin-login-form {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.admin-login-form label {
    color: var(--muted);
    font-weight: 900;
}

.admin-login-form input {
    width: 100%;
    min-height: 56px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(245, 239, 228, 0.06);
    color: var(--cream);
    font: inherit;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.admin-login-form input:focus {
    border-color: rgba(200, 155, 60, 0.58);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.1);
}

.status-shell {
    width: 100%;
    margin: 0;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
    place-items: center;
}

.status-card {
    position: relative;
    display: grid;
    gap: 28px;
    width: 100%;
    min-height: 100svh;
    overflow: hidden;
    padding: clamp(24px, 7vw, 54px);
    border: 1px solid rgba(200, 155, 60, 0.28);
    border-radius: 0;
    background:
        linear-gradient(140deg, rgba(200, 155, 60, 0.15), transparent 44%),
        linear-gradient(180deg, rgba(245, 239, 228, 0.06), rgba(245, 239, 228, 0.025)),
        rgba(15, 15, 15, 0.78);
    box-shadow: var(--shadow);
    animation: hero-copy-in 720ms var(--ease) both;
}

.status-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(200, 155, 60, 0.2);
    border-radius: 999px;
    background: rgba(200, 155, 60, 0.08);
    filter: blur(2px);
    pointer-events: none;
}

.status-logo {
    display: grid;
    place-items: center;
}

.status-logo img {
    width: min(200px, 56vw);
    filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.42));
    animation: logo-float 5.8s ease-in-out 700ms infinite;
}

.status-content {
    position: relative;
    z-index: 1;
}

.status-pill {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 11px;
    border: 1px solid rgba(200, 155, 60, 0.36);
    border-radius: 999px;
    background: rgba(200, 155, 60, 0.1);
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-detail {
    max-width: 620px;
    margin: 16px 0 0;
    color: var(--muted);
}

.status-info-grid {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.status-mini-card {
    padding: 16px;
    border: 1px solid rgba(245, 239, 228, 0.13);
    border-radius: var(--radius);
    background: rgba(245, 239, 228, 0.045);
}

.status-mini-card > span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-mini-card > strong {
    display: block;
    color: var(--cream);
}

.status-mini-card dl {
    margin: 0;
}

.status-mini-card dl div {
    padding-bottom: 8px;
}

.status-body .hero-actions {
    justify-content: stretch;
    justify-self: stretch;
}

.status-body .hero-actions .btn {
    width: 100%;
}

@media (min-width: 700px) {
    .service-grid,
    .price-grid,
    .review-grid,
    .why-grid,
    .process-grid,
    .about-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .visual-band {
        grid-template-columns: 1.3fr 0.85fr;
    }

    .visual-band .image-panel:first-child {
        grid-row: span 2;
        min-height: 536px;
    }

    .mode-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-category-grid,
    .status-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-category .price-grid {
        grid-template-columns: 1fr;
    }

    .admin-preview {
        grid-template-columns: 1fr 0.72fr;
        align-items: center;
    }

    .booking-form {
        gap: 16px;
    }

    .booking-form .btn-primary {
        margin-top: 10px;
    }

    .admin-mail-test {
        grid-template-columns: 1fr 0.72fr;
        align-items: center;
    }

    .admin-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .admin-actions .btn {
        width: auto;
    }

    .admin-login-card {
        min-height: auto;
        border-radius: var(--radius);
    }

    .status-shell {
        padding: 28px 0;
    }

    .status-card {
        min-height: auto;
        border-radius: var(--radius);
    }

    .status-body .hero-actions {
        justify-content: flex-start;
        justify-self: start;
    }

    .status-body .hero-actions .btn {
        width: auto;
    }
}

@media (min-width: 920px) {
    .site-header .menu-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 2px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .hero {
        grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.82fr);
        gap: 34px 54px;
        padding-top: 42px;
        padding-bottom: 58px;
    }

    .hero-copy {
        justify-items: start;
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
        justify-self: start;
    }

    .hero-badge {
        left: auto;
    }

    .hero-media {
        min-height: 500px;
    }

    .split,
    .booking-section,
    .about-section,
    .info-grid {
        grid-template-columns: 0.75fr 1fr;
        align-items: start;
    }

    .booking-panel {
        grid-template-columns: 1fr 1fr;
    }

    .service-grid,
    .why-grid,
    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .price-grid,
    .review-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .price-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-category .price-grid {
        grid-template-columns: 1fr;
    }

    .mode-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .status-card {
        grid-template-columns: 0.45fr 1fr;
        align-items: center;
    }

    .floating-whatsapp {
        display: none;
    }

    .back-to-top {
        bottom: 24px;
    }
}

@keyframes hero-copy-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-image-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logo-reveal {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logo-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.015);
    }
}

@keyframes badge-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes whatsapp-pulse {
    0%,
    100% {
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.24);
    }

    50% {
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
