:root {
    --black: #050505;
    --charcoal: #101010;
    --panel: #171717;
    --panel-soft: #1d1d1d;
    --white: #ffffff;
    --silver: #c9c9c9;
    --muted: #a9a9a9;
    --gold: #b6a079;
    --gold-light: #ded5c4;
    --gold-dark: #76694f;
    --line: rgba(222, 213, 196, 0.18);
    --line-soft: rgba(255, 255, 255, 0.1);
    --glass: rgba(13, 13, 13, 0.82);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    --radius: 26px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.055), transparent 25rem),
        radial-gradient(circle at 90% 55%, rgba(255, 255, 255, 0.06), transparent 30rem),
        var(--black);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
main { flex: 1; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.15;
}

::selection { color: #090909; background: var(--gold-light); }

.skip-link {
    position: fixed;
    left: 1rem;
    top: -6rem;
    z-index: 10000;
    padding: 0.8rem 1rem;
    border-radius: 0.6rem;
    color: #080808;
    background: #d8d1c3;
    font-weight: 700;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

.container {
    width: min(var(--container), calc(100% - 2.5rem));
    margin-inline: auto;
}

.eyebrow {
    margin-bottom: 0.85rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--tight { padding-top: 0; }
.section--surface {
    border-block: 1px solid var(--line-soft);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.section-heading {
    max-width: 780px;
    margin: 0 auto clamp(2.2rem, 5vw, 3.8rem);
    text-align: center;
}
.section-heading--left { margin-inline: 0; text-align: left; }
.section-heading h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3.65rem);
}
.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(5, 5, 5, 0.86);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
}

.navbar {
    position: relative;
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: max-content;
    color: var(--white);
    text-decoration: none;
}
.logo-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: none;
}
.logo-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.045em;
}
.logo-text { color: var(--white); text-transform: uppercase; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    position: relative;
    padding: 0.72rem 0.9rem;
    color: var(--silver);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}
.nav-book {
    margin-left: 0.35rem;
    border: 1px solid var(--line);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: #d8d1c3;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    min-height: min(820px, calc(100vh - 86px));
    display: grid;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 4%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.3) 100%),
        url("images/spa-hero.webp");
    background-position: center;
    background-size: cover;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 14% 50%, rgba(255, 255, 255, 0.07), transparent 35rem);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 9rem;
    background: linear-gradient(transparent, var(--black));
}
.hero-content {
    max-width: 720px;
    padding: clamp(5rem, 10vw, 8rem) 0;
}
.hero h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(3rem, 8vw, 6.6rem);
    letter-spacing: 0.015em;
    text-wrap: balance;
    text-shadow: 0 14px 50px rgba(0, 0, 0, 0.62);
}
.hero-copy {
    max-width: 650px;
    margin-bottom: 2rem;
    color: #dddddd;
    font-size: clamp(1rem, 2vw, 1.18rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--silver);
    font-size: 0.88rem;
}
.hero-points li::before {
    content: "✦";
    margin-right: 0.5rem;
    color: var(--silver);
}

.page-hero {
    min-height: 440px;
    text-align: center;
    background-position: center 48%;
}
.page-hero .hero-content {
    max-width: 860px;
    margin-inline: auto;
}
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
.page-hero .hero-copy { margin-inline: auto; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.82rem 1.55rem;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #090909;
    background: #d8d1c3;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.btn-primary:hover { background: #e4ded3; box-shadow: 0 15px 38px rgba(0, 0, 0, 0.34); }
.btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}
.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.42); background: rgba(255, 255, 255, 0.09); }

/* Content cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}
.card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 2rem;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 45%);
}
.card:hover { transform: translateY(-5px); border-color: var(--line); }
.card > * { position: relative; }
.card-number {
    width: 2.7rem;
    height: 2.7rem;
    margin-bottom: 1.4rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--silver);
    background: rgba(255, 255, 255, 0.045);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
}
.card h3 { margin-bottom: 0.7rem; color: var(--white); font-size: 1.35rem; }
.card p { margin-bottom: 0; color: var(--muted); }
.card ul {
    margin: 1.1rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--silver);
}
.card li { margin-top: 0.5rem; }
.card li::before { content: "•"; margin-right: 0.55rem; color: var(--silver); }

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.98fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.split-copy h2 { margin-bottom: 1rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.split-copy p { color: var(--muted); }
.split-copy .btn { margin-top: 0.75rem; }

.image-frame {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
}
.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.6));
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-caption {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--white);
    font-family: "Cormorant Garamond", Georgia, serif;
}
.image-caption span:last-child { color: var(--silver); }

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -2.3rem;
    position: relative;
    z-index: 3;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.92);
    box-shadow: var(--shadow);
}
.feature-item { padding: 1.45rem; text-align: center; }
.feature-item + .feature-item { border-left: 1px solid var(--line-soft); }
.feature-item strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--white);
    font-family: "Cormorant Garamond", Georgia, serif;
}
.feature-item span { color: var(--muted); font-size: 0.88rem; }

/* Services */
.service-card { display: flex; flex-direction: column; }
.price-list {
    display: grid;
    gap: 0;
    margin-top: 1.35rem;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}
.price-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 0.9rem;
    border-bottom: 1px solid var(--line-soft);
}
.price-list > div:last-child { border-bottom: 0; }
.price-list span { color: var(--muted); font-size: 0.88rem; }
.price-list strong { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.treatment-price {
    margin-top: 1rem;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.service-card .service-meta {
    margin-top: auto;
    padding-top: 1.25rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 210px;
    gap: 1rem;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: var(--shadow);
}
.gallery-card:nth-child(1),
.gallery-card:nth-child(4) { grid-column: span 7; grid-row: span 2; }
.gallery-card:nth-child(2),
.gallery-card:nth-child(3),
.gallery-card:nth-child(5),
.gallery-card:nth-child(6) { grid-column: span 5; }
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
}
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.82));
}
.gallery-card figcaption {
    position: absolute;
    left: 1.3rem;
    right: 1.3rem;
    bottom: 1.1rem;
    z-index: 1;
    color: var(--white);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.gallery-card:hover img { transform: scale(1.045); filter: brightness(1.08); }

.gallery-card {
    cursor: zoom-in;
}
.gallery-card:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}
body.lightbox-open {
    overflow: hidden;
}
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.gallery-lightbox.is-open {
    visibility: visible;
    opacity: 1;
}
.gallery-lightbox__content {
    position: relative;
    display: grid;
    justify-items: center;
    width: min(1100px, 100%);
    max-height: 92vh;
    transform: scale(0.96);
    transition: transform 0.25s ease;
}
.gallery-lightbox.is-open .gallery-lightbox__content {
    transform: scale(1);
}
.gallery-lightbox__image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: min(78vh, 820px);
    object-fit: contain;
    border: 1px solid rgba(215, 177, 83, 0.45);
    border-radius: 18px;
    background: #090909;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
}
.gallery-lightbox__caption {
    margin: 0.85rem 3.5rem 0;
    color: var(--white);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    letter-spacing: 0.04em;
    text-align: center;
}
.gallery-lightbox__close {
    position: absolute;
    top: -0.9rem;
    right: -0.9rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(215, 177, 83, 0.65);
    border-radius: 50%;
    color: var(--white);
    background: rgba(8, 8, 8, 0.95);
    font: 300 2rem/1 Arial, sans-serif;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: scale(1.06);
    outline: none;
}

@media (max-width: 620px) {
    .gallery-lightbox {
        padding: 1rem;
    }
    .gallery-lightbox__close {
        top: -0.6rem;
        right: -0.3rem;
        width: 44px;
        height: 44px;
    }
    .gallery-lightbox__caption {
        margin-right: 0;
    }
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.4rem;
}
.contact-panel,
.hours-panel {
    padding: clamp(1.7rem, 4vw, 2.7rem);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}
.contact-panel h2,
.hours-panel h2 { margin-bottom: 0.9rem; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.contact-panel > p,
.hours-panel > p { color: var(--muted); }
.contact-list { display: grid; gap: 0.8rem; margin-top: 1.6rem; }
.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.035);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-link:hover { border-color: var(--line); background: rgba(255, 255, 255, 0.06); }
.contact-icon {
    flex: 0 0 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #090909;
    background: #d8d1c3;
    font-weight: 800;
}
.contact-link small { display: block; color: var(--muted); }
.contact-link strong { color: var(--white); }
.hours-list { margin: 1.3rem 0 0; padding: 0; list-style: none; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--silver);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list span:last-child { color: var(--white); text-align: right; }
.steps { counter-reset: booking; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.steps li {
    counter-increment: booking;
    position: relative;
    padding: 0.8rem 0 0.8rem 3.3rem;
    color: var(--muted);
}
.steps li::before {
    content: counter(booking);
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 2.2rem;
    height: 2.2rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--white);
    font-family: "Cormorant Garamond", Georgia, serif;
}

.cta {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 4rem);
    border: 1px solid var(--line);
    border-radius: 32px;
    text-align: center;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.95), rgba(18, 18, 18, 0.83)),
        url("images/spa-hero-small.webp") center / cover;
    box-shadow: var(--shadow);
}
.cta h2 { margin-bottom: 0.8rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.cta p { max-width: 650px; margin: 0 auto 1.5rem; color: var(--silver); }

/* Footer */
.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--line-soft);
    background: #020202;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 2rem;
    padding: 3.5rem 0 2.5rem;
}
.footer-brand { max-width: 430px; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-img {
    width: 118px;
    height: 118px;
}

.footer-brand p { color: var(--muted); }
.footer-title { margin-bottom: 1rem; color: var(--white); font-size: 1rem; }
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--line-soft);
    color: #808080;
    font-size: 0.84rem;
}

/* Motion */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .feature-strip { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-soft); }
    .feature-item:nth-child(4) { border-top: 1px solid var(--line-soft); }
    .split { grid-template-columns: 1fr; }
    .image-frame { min-height: 430px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
    .navbar { min-height: 88px; }
    .logo-img { width: 76px; height: 76px; }
    .menu-toggle { display: block; }
    .js .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0.2rem;
        max-height: 0;
        padding: 0 0.8rem;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        border: 1px solid transparent;
        border-radius: 0 0 20px 20px;
        background: rgba(5, 5, 5, 0.98);
        transform: translateY(-8px);
        transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease, transform 0.3s ease, visibility 0.3s;
    }
    .js .nav-links.is-open {
        max-height: 430px;
        padding: 0.8rem;
        visibility: visible;
        opacity: 1;
        border-color: var(--line-soft);
        transform: none;
    }
    .nav-links a { width: 100%; padding: 0.85rem 1rem; }
    .nav-book { margin-left: 0; }
    .hero {
        min-height: calc(100svh - 88px);
        background-image:
            linear-gradient(90deg, rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.6)),
            url("images/spa-hero-small.webp");
        background-position: 62% center;
    }
    .page-hero { min-height: 400px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
    .gallery-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 1.5rem, var(--container)); }
    .logo-text { font-size: 0.98rem; }
    .hero-content { padding: 4.5rem 0 6rem; }
    .hero h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
    .hero-actions { display: grid; }
    .btn { width: 100%; }
    .hero-points { display: grid; gap: 0.55rem; }
    .card-grid { grid-template-columns: 1fr; }
    .feature-strip { grid-template-columns: 1fr; margin-top: -1.6rem; }
    .feature-item + .feature-item,
    .feature-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-soft); }
    .image-frame { min-height: 360px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
    .hours-list li { display: grid; gap: 0.15rem; }
    .hours-list span:last-child { text-align: left; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
.booking-title { margin-top: 2rem; }
.hours-cta { margin-top: 1.6rem; }
