@charset "UTF-8";

@font-face {
    font-family: "Orchid Script";
    src: url("../fonts/eyesome-script.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-normal-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-normal-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-italic-500.woff2") format("woff2");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-italic-600.woff2") format("woff2");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

:root {
    --mint: #9fd8cc;
    --mint-soft: #f2fbf8;
    --mint-pale: #d7f0ea;
    --mint-mid: #63b7a5;
    --gold: #c4a056;
    --gold-light: #f3e2a8;
    --gold-deep: #8a6420;
    --forest: #12372c;
    --forest-mid: #1d4a3d;
    --ink: #12372c;
    --text: #3d5c56;
    --muted: #4b6b65;
    --white: #ffffff;
    --canvas: #f2fbf8;
    --surface: #ffffff;
    --line: rgba(18, 55, 44, 0.12);
    --line-strong: rgba(18, 55, 44, 0.22);
    --shadow: 0 18px 48px rgba(18, 55, 44, 0.1);
    --shadow-soft: 0 10px 28px rgba(63, 114, 104, 0.12);
    --font-display: "Cormorant Garamond", "Iowan Old Style", Palatino, Georgia, serif;
    --font-script: "Orchid Script", "Snell Roundhand", "Segoe Script", cursive;
    --font-body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
    --container: 1240px;
    --gutter: clamp(1.15rem, 4vw, 3.5rem);
    --section-space: clamp(5rem, 10vw, 8.5rem);
    --radius: 1.15rem;
    --radius-sm: 0.55rem;
    --ease: cubic-bezier(0.32, 0.72, 0, 1);
    --header-height: 4.6rem;
    --z-header: 40;
    --z-menu: 50;
    --z-floating: 35;
    --z-grain: 60;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 0.75rem);
    overflow-x: clip;
    background: var(--canvas);
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(242, 251, 248, 0.9), rgba(242, 251, 248, 0.94)),
        url("../photos/orchid/common/background.jpg") center top / cover no-repeat;
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

svg {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

button,
input,
textarea,
select {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3 {
    color: var(--forest);
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.03em;
    text-wrap: balance;
    line-height: 1.08;
}

h1 em,
h2 em,
h3 em {
    display: block;
    color: var(--forest-mid);
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.18;
    padding-bottom: 0.12em;
}

[hidden] {
    display: none !important;
}

.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;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 70;
    padding: 0.7rem 1.1rem;
    background: var(--forest);
    color: var(--mint-soft);
    border-radius: 999px;
}

.skip-link:focus {
    top: 1rem;
}

.page-grain {
    position: fixed;
    inset: 0;
    z-index: var(--z-grain);
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
    width: min(var(--container), calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

.section {
    padding: var(--section-space) 0;
}

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

.section-heading {
    max-width: 38rem;
    margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
}

.section-heading h2 {
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
}

.section-heading p {
    max-width: 42ch;
    margin-top: 1rem;
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 3.05rem;
    padding: 0.55rem 0.55rem 0.55rem 1.25rem;
    border-radius: 999px;
    background: var(--forest);
    color: var(--mint-soft);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: transform 0.45s var(--ease), background-color 0.45s var(--ease), color 0.45s var(--ease);
}

.button:hover {
    background: var(--forest-mid);
    color: #fff;
}

.button:active {
    transform: scale(0.98);
}

.button:focus-visible,
.text-link:focus-visible,
.icon-link:focus-visible,
.nav-toggle:focus-visible,
.site-menu a:focus-visible,
.menu-category:focus-visible,
.menu-service__book:focus-visible {
    outline: 2px solid var(--mint-mid);
    outline-offset: 3px;
}

.button__icon {
    display: grid;
    place-items: center;
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 50%;
    background: rgba(242, 251, 248, 0.14);
    transition: transform 0.45s var(--ease);
}

.button:hover .button__icon {
    transform: translate(2px, -1px) scale(1.05);
}

.button--small {
    min-height: 2.65rem;
    padding: 0.35rem 0.4rem 0.35rem 1rem;
    font-size: 0.84rem;
}

.button--small .button__icon {
    width: 1.8rem;
    height: 1.8rem;
}

.button--outline {
    background: transparent;
    color: var(--forest);
    box-shadow: inset 0 0 0 1.5px var(--forest);
    padding-right: 1.25rem;
}

.button--outline:hover {
    background: var(--mint);
    color: var(--forest);
    box-shadow: inset 0 0 0 1.5px var(--mint);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--forest);
    font-weight: 600;
    border-bottom: 1px solid var(--mint-mid);
    transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.text-link:hover {
    color: var(--forest-mid);
    border-color: var(--forest);
}

.icon-link {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    color: var(--forest);
    background: rgba(159, 216, 204, 0.28);
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}

.icon-link:hover {
    background: var(--forest);
    color: var(--mint-soft);
    transform: translateY(-1px);
}

.reveal {
    opacity: 0;
    transform: translateY(1.4rem);
    filter: blur(8px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .button,
    .icon-link,
    .nav-toggle span,
    .hero h1 > em,
    .promo-decor__splash {
        transition: none !important;
        animation: none !important;
    }

    .hero {
        min-height: calc(100dvh - var(--header-height));
    }

    .hero__stage {
        position: relative;
        top: auto;
        height: auto;
        min-height: calc(100dvh - var(--header-height));
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
}

.header-sentinel {
    position: absolute;
    top: 0;
    height: 1px;
    width: 100%;
    pointer-events: none;
}

.site-nav {
    padding: 0.7rem 0;
    background: rgba(242, 251, 248, 0.78);
    border-bottom: 1px solid transparent;
    transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.site-header.is-scrolled .site-nav {
    background: rgba(242, 251, 248, 0.96);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px rgba(18, 55, 44, 0.06);
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.2rem;
    gap: 1rem;
}

.site-brand,
.footer-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0.72rem;
}

.site-brand__mark {
    width: 3.35rem;
    height: 3.35rem;
    object-fit: cover;
    border-radius: 0.48rem;
    flex: 0 0 auto;
}

.site-brand__word {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.16rem;
    line-height: 1;
}

.site-brand__word strong {
    color: var(--forest);
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.site-brand__word small {
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 1.55rem;
}

.site-menu > a:not(.button) {
    position: relative;
    color: var(--forest);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.site-menu > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 1px;
    background: var(--mint-mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.site-menu > a:not(.button):hover,
.site-menu > a:not(.button):focus-visible {
    color: var(--forest-mid);
}

.site-menu > a:not(.button):hover::after,
.site-menu > a:not(.button):focus-visible::after {
    transform: scaleX(1);
}

.mobile-call-action,
.site-menu__foot,
.site-menu__head {
    display: none;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    background: var(--forest);
    color: var(--mint-soft);
}

.nav-toggle span {
    position: absolute;
    left: 0.72rem;
    right: 0.72rem;
    height: 1.5px;
    background: var(--mint-soft);
    border-radius: 99px;
    transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span:first-of-type {
    top: 1.05rem;
}

.nav-toggle span:last-of-type {
    top: 1.5rem;
}

.nav-toggle[aria-expanded="true"] span:first-of-type {
    top: 1.28rem;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-of-type {
    top: 1.28rem;
    transform: rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(160dvh - var(--header-height));
    overflow: clip;
    isolation: isolate;
}

.hero__ambient {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 22%, rgba(242, 251, 248, 0.96), transparent 44%),
        radial-gradient(ellipse at 78% 64%, rgba(159, 216, 204, 0.35), transparent 28%),
        linear-gradient(145deg, #b7e6db, #9fd8cc 52%, #7fc4b4);
}

.hero__stage {
    position: sticky;
    top: var(--header-height);
    width: 100%;
    max-width: none;
    height: calc(100dvh - var(--header-height));
    min-height: 39rem;
    display: grid;
    place-items: center;
    margin-inline: 0;
    padding-inline: var(--gutter);
    padding-block: clamp(2rem, 4.2vh, 3.75rem);
    container-type: inline-size;
    background:
        radial-gradient(ellipse at 50% 24%, rgba(242, 251, 248, 0.94), transparent 40%),
        radial-gradient(ellipse at 78% 66%, rgba(159, 216, 204, 0.28), transparent 26%),
        linear-gradient(145deg, #c7eee5, #9fd8cc 52%, #7dc8b6);
}

.hero__copy {
    position: relative;
    z-index: 10;
    isolation: isolate;
    top: -10vh;
    width: min(100%, 72rem);
    margin-inline: auto;
    text-align: center;
}

.hero__eyebrow {
    position: relative;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
    color: rgba(18, 55, 44, 0.72);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.hero__eyebrow i {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: linear-gradient(115deg, #8a6420, #f3e2a8 45%, #c4a056);
    box-shadow: 0 0 0 0.28rem rgba(196, 160, 86, 0.16);
}

.hero h1 {
    position: relative;
    z-index: 10;
    max-width: none;
    margin-inline: auto;
    font-size: clamp(4.2rem, 7.2vw, 8rem);
    line-height: 0.86;
}

.hero h1 > span,
.hero h1 > em {
    position: relative;
    z-index: 6;
    display: block;
}

.hero h1 > span {
    color: var(--forest);
    text-shadow: 0 0.2rem 1.6rem rgba(255, 255, 255, 0.28);
}

.hero h1 > em {
    z-index: 12;
    width: fit-content;
    min-height: 0.9em;
    margin: 0.18em auto 0;
    padding: 0 0.22em 0.16em;
    color: var(--gold-light);
    background: linear-gradient(110deg, #8a6420 0%, #d9a83d 23%, #fff0a4 43%, #b97817 63%, #f1cf68 82%, #8a6420 100%);
    background-size: 220% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-script);
    font-size: 0.72em;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.015em;
    line-height: 1.12;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 0.5px rgba(92, 58, 10, 0.55);
    filter: none;
    transform: translateZ(0);
    animation: hero-gold-shine 6s var(--ease) infinite;
    transition: opacity 190ms var(--ease), transform 260ms var(--ease);
}

.hero h1 > em::after {
    z-index: -1;
    position: absolute;
    right: 8%;
    bottom: 0.08em;
    left: 8%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #8a6420 18%, #fff0a4 48%, #b97817 78%, transparent);
    opacity: 0.9;
    content: "";
}

@keyframes hero-gold-shine {
    0%, 100% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
}

.hero h1 > em.is-changing {
    opacity: 0;
    transform: translate3d(0, 0.2em, 0);
}

.hero__actions {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero__actions .text-link {
    color: var(--gold-deep);
}

.hero__actions .text-link:hover {
    color: var(--forest);
}

.hero-cinema {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-cinema::after {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: radial-gradient(ellipse at 50% 42%, rgba(199, 238, 229, 0.88) 0%, rgba(199, 238, 229, 0.42) 28%, transparent 58%);
    content: "";
    pointer-events: none;
}

.hero-cinema__camera {
    position: absolute;
    inset: -4% -6%;
    animation: hero-camera-pan 16s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
}

.hero-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.37, 0, 0.63, 1);
}

.hero-scene.is-active {
    z-index: 2;
    opacity: 1;
}

.hero-scene.is-leaving {
    z-index: 1;
    opacity: 0;
}

.hero-scene:not(.is-active):not(.is-leaving) {
    visibility: hidden;
}

.hero-shot {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(232, 198, 109, 0.62);
    background: #1a4639;
    box-shadow: 0 10px 24px rgba(18, 55, 44, 0.16);
    backface-visibility: hidden;
}

.hero-shot img {
    width: 108%;
    height: 108%;
    max-width: none;
    object-fit: cover;
    transform: scale(1.03);
    transform-origin: center;
}

.hero-scene.is-active .hero-shot img,
.hero-scene.is-leaving .hero-shot img {
    animation: hero-kenburns 8.4s cubic-bezier(0.37, 0, 0.63, 1) both;
}

.hero-shot--full {
    display: none;
}

.hero-shot--left-wide {
    top: 12%;
    left: 2%;
    width: min(30vw, 22rem);
    height: 72%;
    transform: rotate(-1.4deg);
}

.hero-shot--left-detail {
    left: 22%;
    bottom: 11%;
    width: min(16vw, 12rem);
    height: 34%;
    transform: rotate(2deg);
}

.hero-shot--right-detail {
    top: 16%;
    right: 21%;
    width: min(15.5vw, 11.5rem);
    height: 32%;
    transform: rotate(-1.6deg);
}

.hero-shot--right-wide {
    top: 10%;
    right: 1.5%;
    width: min(30vw, 22rem);
    height: 74%;
    transform: rotate(1.5deg);
}

.hero-cinema.is-paused .hero-cinema__camera,
.hero-cinema.is-paused .hero-shot img,
.hero-cinema.is-static .hero-cinema__camera,
.hero-cinema.is-static .hero-shot img {
    animation-play-state: paused;
}

.hero-cinema.is-static .hero-cinema__camera,
.hero-cinema.is-static .hero-shot img {
    animation: none;
}

@keyframes hero-camera-pan {
    from {
        transform: translate3d(2.4%, 0, 0) rotate(-0.35deg);
    }
    to {
        transform: translate3d(-2.4%, 0, 0) rotate(0.35deg);
    }
}

@keyframes hero-kenburns {
    from {
        transform: scale(1.03) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.09) translate3d(-1.6%, 0, 0);
    }
}

.hero__footer {
    position: absolute;
    z-index: 4;
    right: var(--gutter);
    bottom: clamp(0.9rem, 1.6vh, 1.4rem);
    left: var(--gutter);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    min-height: 2.8rem;
    padding-bottom: 0.45rem;
    color: rgba(18, 55, 44, 0.72);
    font-size: clamp(0.66rem, 0.72vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__footer p span {
    color: var(--gold);
}

.hero__footer > div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero__footer > div i {
    width: 4.5rem;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__location {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 0.55rem;
}

.hero__location .address {
    color: inherit;
    white-space: nowrap;
}

.hero__location .icon-link {
    width: 1.8rem;
    height: 1.8rem;
    background: rgba(18, 55, 44, 0.08);
    color: var(--forest);
}

.hero__location .icon-link:hover {
    background: var(--forest);
    color: var(--mint-soft);
}

/* Promotions */
.promo-strip {
    background: var(--forest);
    color: var(--mint-soft);
}

.promo-strip__button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.9rem;
    padding: 0.72rem var(--gutter);
    color: var(--mint-soft);
}

.promo-strip__button:hover {
    background: var(--forest-mid);
}

.promo-strip__pulse {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--mint);
}

.promo-strip__percent {
    padding: 0.28rem 0.7rem 0.22rem;
    border: 1px solid rgba(243, 226, 168, 0.55);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.promotions {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 18% 20%, rgba(159, 216, 204, 0.12), transparent 36%),
        radial-gradient(ellipse at 88% 78%, rgba(196, 160, 86, 0.1), transparent 32%),
        linear-gradient(180deg, rgba(242, 251, 248, 0.04), transparent 28%),
        var(--forest);
    color: var(--mint-soft);
    padding-block: clamp(4.75rem, 9vw, 8rem);
}

.promo-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.promo-decor__splash {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.promo-decor__splash--a {
    width: min(42vw, 28rem);
    height: min(42vw, 28rem);
    left: -8%;
    top: -18%;
    background:
        radial-gradient(circle at 38% 42%, rgba(159, 216, 204, 0.42), rgba(99, 183, 165, 0.08) 46%, transparent 70%);
    animation: promo-splash 16s var(--ease) infinite alternate;
}

.promo-decor__splash--b {
    width: min(36vw, 22rem);
    height: min(36vw, 22rem);
    right: -6%;
    bottom: -16%;
    background:
        radial-gradient(circle at 60% 48%, rgba(243, 226, 168, 0.28), rgba(196, 160, 86, 0.08) 42%, transparent 68%);
    animation: promo-splash 18s var(--ease) infinite alternate-reverse;
}

.promo-decor__splash--c {
    width: min(24vw, 14rem);
    height: min(24vw, 14rem);
    left: 42%;
    top: 8%;
    background:
        radial-gradient(circle at 50% 50%, rgba(159, 216, 204, 0.18), transparent 64%);
    animation: promo-splash 12s var(--ease) infinite alternate;
}

.promo-decor__bloom {
    position: absolute;
    opacity: 0.16;
    object-fit: contain;
}

.promo-decor__bloom--left {
    left: -4%;
    bottom: -8%;
    width: min(42vw, 26rem);
    transform: rotate(-12deg);
}

.promo-decor__bloom--right {
    right: -3%;
    top: -6%;
    width: min(22vw, 13rem);
    opacity: 0.2;
    transform: rotate(8deg);
}

.promo-decor__line {
    position: absolute;
    width: min(28vw, 14rem);
    color: rgba(243, 226, 168, 0.38);
}

.promo-decor__line--tl {
    top: 1.4rem;
    left: 1.2rem;
}

.promo-decor__line--br {
    right: 1.2rem;
    bottom: 1.2rem;
}

@keyframes promo-splash {
    from {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.7;
    }
    to {
        transform: scale(1.12) translate3d(2%, -3%, 0);
        opacity: 1;
    }
}

.promotions .container {
    position: relative;
    z-index: 1;
}

.promo-offer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
    justify-content: center;
}

.promo-mark {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    color: var(--mint-soft);
}

.promo-mark__frame {
    padding: 0.85rem;
    border: 1px solid rgba(243, 226, 168, 0.45);
    background:
        linear-gradient(180deg, rgba(243, 226, 168, 0.07), transparent 42%);
}

.promo-mark__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.12em;
    min-width: 10.8rem;
    min-height: 8.4rem;
    padding: 1.55rem 1.7rem 1.15rem 1.85rem;
    border: 1px solid rgba(243, 226, 168, 0.28);
    color: var(--mint-soft);
    white-space: nowrap;
}

.promo-mark__inner b {
    font-family: Georgia, "Iowan Old Style", Palatino, "Palatino Linotype", serif;
    font-size: clamp(5rem, 9vw, 7.2rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 0.86;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum", "tnum";
}

.promo-mark__inner sup {
    margin-top: 0.28em;
    margin-left: 0.02em;
    color: var(--gold-light);
    font-family: Georgia, "Iowan Old Style", Palatino, serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
}

.promo-mark i {
    color: var(--gold-light);
    font-family: var(--font-script);
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.15;
    padding-bottom: 0.1em;
}

.promo-offer__copy {
    max-width: 28rem;
}

.promo-offer__copy h2 {
    max-width: 14ch;
    color: var(--mint-soft);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
}

.promo-offer__copy p {
    max-width: 34ch;
    margin-top: 1rem;
    color: #c8e2d9;
}

.promo-offer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    margin: 1.15rem 0 0;
    color: var(--mint-pale);
    font-size: 0.88rem;
}

.promo-offer__meta strong {
    color: var(--gold-light);
}

.promo-offer .button {
    margin-top: 1.7rem;
    background: transparent;
    color: var(--mint-soft);
    box-shadow: inset 0 0 0 1px rgba(243, 226, 168, 0.7);
}

.promo-offer .button:hover {
    background: var(--gold-light);
    color: var(--forest);
    box-shadow: inset 0 0 0 1px var(--gold-light);
}

.promo-offer .button__icon {
    background: rgba(243, 226, 168, 0.12);
}

.promo-offer .button:hover .button__icon {
    background: rgba(18, 55, 44, 0.1);
}

.promo-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2.4rem;
}

.promo-offer-grid .promo-offer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.1rem;
    padding: 1.5rem 1.4rem 1.6rem;
    border: 1px solid rgba(159, 216, 204, 0.16);
}

.promo-offer-grid .promo-mark__inner {
    min-width: 0;
    padding: 0.85rem 1rem 0.65rem 1.1rem;
}

.promo-offer-grid .promo-mark__inner b {
    font-size: 4.4rem;
}

.promo-offer-grid .promo-offer__copy h2 {
    font-size: 1.7rem;
}

/* About */
.story-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.story-layout__portrait {
    overflow: hidden;
    border-radius: 1.7rem 0.35rem 1.7rem 0.35rem;
    aspect-ratio: 16 / 10;
}

.story-layout__portrait img,
.story-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-copy h2 {
    font-size: clamp(2.3rem, 4.4vw, 3.8rem);
}

.story-copy > p {
    max-width: 38ch;
    margin-top: 1.1rem;
}

.story-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.story-points li {
    padding-left: 0;
}

.story-points span {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--forest);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.story-gallery {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 1rem;
    margin-top: clamp(2rem, 5vw, 3.5rem);
    align-items: end;
}

.story-gallery figure {
    overflow: hidden;
    border-radius: 1.2rem 0.3rem 1.2rem 0.3rem;
}

.story-gallery figure:nth-child(1),
.story-gallery figure:nth-child(3) {
    aspect-ratio: 3 / 4;
}

.story-gallery figure:nth-child(2) {
    aspect-ratio: 4 / 3;
}

.story-gallery figcaption {
    padding: 0.75rem 0.1rem 0;
    color: var(--forest);
    font-family: var(--font-display);
    font-size: 1.15rem;
}

/* Services */
.services {
    background: rgba(255, 255, 255, 0.55);
}

.menu-explorer {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.4fr);
    gap: 1.4rem;
    min-height: 28rem;
}

.menu-explorer__categories,
.menu-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
}

.menu-explorer__categories-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 1.2rem 1.2rem 0.8rem;
    color: var(--forest);
}

.menu-explorer__categories-head strong {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
}

.menu-explorer__categories-head > span,
.menu-kicker {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-category-list {
    display: grid;
    gap: 0.35rem;
    padding: 0.5rem 0.7rem 1rem;
}

.menu-category {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 0.85rem 0.8rem;
    border-radius: 0.9rem;
    color: var(--forest);
    text-align: left;
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

.menu-category:hover,
.menu-category[aria-selected="true"] {
    background: var(--mint-pale);
    color: var(--forest);
}

.menu-category__number {
    color: var(--mint-mid);
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.menu-category__copy {
    display: grid;
    gap: 0.1rem;
}

.menu-category__copy strong {
    font-size: 1rem;
}

.menu-category__copy small {
    color: var(--muted);
    font-size: 0.8rem;
}

.menu-category-skeleton {
    display: block;
    height: 3.2rem;
    border-radius: 0.9rem;
    background: linear-gradient(90deg, var(--mint-pale), #fff, var(--mint-pale));
    background-size: 180% 100%;
    animation: sheen 1.4s ease infinite;
}

@keyframes sheen {
    to {
        background-position: -180% 0;
    }
}

.menu-panel {
    min-height: 100%;
    padding: 1.2rem;
}

.menu-panel[hidden] {
    display: none;
}

.menu-panel__loading {
    display: grid;
    gap: 0.7rem;
}

.menu-panel__loading span {
    height: 4.2rem;
    border-radius: 0.9rem;
    background: var(--mint-pale);
}

.menu-panel__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    color: var(--forest);
    font-weight: 600;
}

.menu-panel__back:hover {
    color: var(--forest-mid);
}

.menu-panel__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.menu-panel__header h3 {
    font-size: 2.1rem;
}

.menu-panel__header p {
    max-width: 42ch;
    margin-top: 0.4rem;
    color: var(--muted);
}

.menu-panel__category-book {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: var(--forest);
    color: var(--mint-soft);
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
}

.menu-panel__category-book:hover {
    background: var(--forest-mid);
    color: #fff;
}

.menu-service-list {
    display: grid;
    gap: 0.65rem;
}

.menu-service {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem 0.9rem;
    border-radius: 1rem;
    background: var(--mint-soft);
}

.menu-service__number {
    color: var(--mint-mid);
    font-family: var(--font-display);
}

.menu-service__body h4 {
    color: var(--forest);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 650;
    letter-spacing: 0;
}

.menu-service__body p {
    color: var(--muted);
    font-size: 0.88rem;
}

.menu-service__meta {
    color: var(--muted);
    font-size: 0.86rem;
    white-space: nowrap;
}

.menu-service__price {
    display: grid;
    justify-items: end;
    color: var(--forest);
    font-weight: 700;
    white-space: nowrap;
}

.menu-service__price del {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.8rem;
}

.menu-service__price small {
    color: var(--forest-mid);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-service__book {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: var(--forest);
    color: var(--mint-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.menu-service__book:hover {
    background: var(--forest-mid);
    color: #fff;
}

.menu-pagination {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: 1.1rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.menu-pagination nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.menu-pagination button {
    min-width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    color: var(--forest);
}

.menu-pagination button:hover:not(:disabled),
.menu-pagination button.is-current {
    background: var(--mint);
    color: var(--forest);
}

.menu-pagination button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.menu-explorer__note {
    margin-top: 1.2rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.menu-panel__error {
    padding: 1.5rem 0.5rem;
}

.menu-panel__error h3 {
    font-size: 2rem;
    margin: 0.4rem 0;
}

.menu-panel__error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1.1rem;
}

.menu-category-list__error {
    padding: 1rem;
    color: var(--muted);
}

.menu-explorer[data-menu-view="overview"] {
    grid-template-columns: 1fr;
}

.menu-explorer[data-menu-view="overview"] .menu-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-explorer[data-menu-view="overview"] .menu-category {
    min-height: 5.4rem;
    background: var(--mint-soft);
}

.menu-explorer[data-menu-view="overview"] .menu-category:hover {
    background: var(--mint);
}

.menu-explorer[data-menu-state="loading"] .menu-panel,
.menu-explorer[data-menu-view="overview"] .menu-panel {
    display: none;
}

.menu-explorer[data-menu-state="error"] .menu-panel,
.menu-explorer[data-menu-view="detail"] .menu-panel {
    display: block;
}

/* Gallery */
.nail-lookbook__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.nail-lookbook__item button {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 1.1rem 0.25rem 1.1rem 0.25rem;
    background: var(--mint-pale);
    aspect-ratio: 3 / 4;
}

.nail-lookbook__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.nail-lookbook__item button:hover img {
    transform: scale(1.04);
}

.nail-lookbook__item span {
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(18, 55, 44, 0.78);
    color: var(--mint-soft);
    font-size: 0.86rem;
}

.nail-lookbook__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.6rem;
}

.gallery-lightbox {
    width: min(920px, 94vw);
    max-height: 92vh;
    padding: 0;
    border: 0;
    background: transparent;
}

.gallery-lightbox::backdrop {
    background: rgba(18, 55, 44, 0.72);
}

.gallery-lightbox__shell {
    position: relative;
    padding: 1.2rem;
}

.gallery-lightbox figure {
    overflow: hidden;
    border-radius: 1.2rem;
    background: var(--forest);
}

.gallery-lightbox img {
    width: 100%;
    max-height: 74vh;
    object-fit: contain;
    background: #0e2a22;
}

.gallery-lightbox figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem 1rem;
    color: var(--mint-soft);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--mint-soft);
    color: var(--forest);
    z-index: 2;
}

.gallery-lightbox__close {
    top: 1.5rem;
    right: 1.5rem;
}

.gallery-lightbox__nav--previous {
    left: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox__nav--next {
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
    background: var(--mint);
}

/* Contact */
.contact-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.4rem, 4vw, 3rem);
    align-items: stretch;
}

.contact-copy h2 {
    font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.contact-copy__intro {
    max-width: 34ch;
    margin: 1rem 0 1.6rem;
}

.contact-details {
    display: grid;
    gap: 1.05rem;
    font-style: normal;
}

.contact-details > div {
    display: grid;
    gap: 0.2rem;
}

.contact-details > div > span:first-child {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-value,
.contact-details .phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--forest);
    font-weight: 650;
}

.contact-icon-group {
    display: flex;
    gap: 0.45rem;
}

.contact-actions {
    margin: 1.5rem 0 1.8rem;
}

.hours h3 {
    margin-bottom: 0.7rem;
    font-size: 1.5rem;
}

.hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--forest);
}

.hours li strong {
    font-weight: 650;
}

.contact-visual {
    display: grid;
    gap: 1rem;
}

.contact-photo {
    overflow: hidden;
    border-radius: 1.5rem 0.35rem 1.2rem 0.35rem;
    aspect-ratio: 16 / 10;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-map {
    position: relative;
    min-height: 22rem;
    overflow: hidden;
    border-radius: 1.2rem 0.35rem 1.5rem 0.35rem;
    background: var(--mint-pale);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    border: 0;
    filter: saturate(0.85);
}

.contact-map__label {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.7rem 0.95rem;
    border-radius: 0.9rem;
    background: rgba(242, 251, 248, 0.94);
    color: var(--forest);
}

.contact-map__label span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Footer */
.site-footer {
    background: var(--forest);
    color: #dceee8;
    padding: 3rem 0 1.4rem;
}

.site-footer__main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(159, 216, 204, 0.18);
}

.footer-brand .site-brand__mark {
    width: 3.5rem;
    height: 3.5rem;
    box-shadow: 0 0 0 1px rgba(159, 216, 204, 0.28);
}

.footer-brand .site-brand__word strong {
    color: var(--mint-soft);
}

.footer-brand .site-brand__word small {
    color: #b7d8ce;
}

.site-footer p {
    color: #c7e4db;
}

.site-footer nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.site-footer nav a {
    color: var(--mint-pale);
}

.site-footer nav a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 0.4rem;
    margin-left: 0.4rem;
}

.site-footer .icon-link {
    background: rgba(159, 216, 204, 0.18);
    color: var(--mint-pale);
}

.site-footer .icon-link:hover {
    background: var(--mint);
    color: var(--forest);
}

.site-footer__legal {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.1rem;
    color: #b7d8ce;
    font-size: 0.88rem;
}

.site-footer__legal a:hover {
    color: #fff;
}

/* Floating */
.floating-actions {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: var(--z-floating);
    display: none;
    gap: 0.5rem;
}

.floating-actions.is-visible {
    display: grid;
}

.floating-actions a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 2.8rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--forest);
    color: var(--mint-soft);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.floating-actions a:hover {
    background: var(--forest-mid);
    color: #fff;
}

.floating-actions .booking-link {
    background: var(--mint);
    color: var(--forest);
}

.floating-actions .booking-link:hover {
    background: #b6e4d9;
    color: var(--forest);
}

/* Legal */
.legal-page {
    background: var(--canvas);
}

.legal-header {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    background: rgba(242, 251, 248, 0.92);
}

.legal-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.legal-header__back {
    color: var(--forest);
    font-weight: 650;
}

.legal-header__back:hover {
    color: var(--forest-mid);
}

.legal-main {
    padding: 4rem 0 6rem;
}

.legal-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-hero p {
    margin-top: 0.6rem;
    color: var(--muted);
}

.legal-content {
    max-width: 66ch;
    margin-top: 2.4rem;
}

.legal-content h2 {
    margin: 1.8rem 0 0.6rem;
    font-size: 1.7rem;
}

.legal-content p,
.legal-content li {
    color: var(--text);
}

.legal-content ul {
    padding-left: 1.1rem;
    list-style: disc;
    margin: 0.6rem 0 1rem;
}

.legal-page .site-footer {
    padding-top: 1.4rem;
}

.legal-contact-address {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Responsive */
@media (max-width: 1080px) {
    .story-layout,
    .contact-shell,
    .menu-explorer,
    .site-footer__main,
    .promo-offer {
        grid-template-columns: 1fr;
    }

    .story-gallery,
    .nail-lookbook__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-explorer[data-menu-view="overview"] .menu-category-list {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 8vw, 6.2rem);
    }

    .hero-shot--left-detail,
    .hero-shot--right-detail {
        width: min(14vw, 10rem);
        height: 28%;
    }

    .hero-shot--left-wide,
    .hero-shot--right-wide {
        width: min(28vw, 18rem);
    }
}

@media (max-width: 959px) {
    body.menu-open .site-header {
        z-index: var(--z-menu);
    }

    body.menu-open .site-nav {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    body.menu-open .site-nav__inner > .site-brand,
    body.menu-open .nav-toggle {
        visibility: hidden;
        pointer-events: none;
    }

    .nav-toggle {
        display: inline-flex;
        z-index: calc(var(--z-menu) + 2);
        flex: 0 0 auto;
        margin-right: 0.15rem;
        box-shadow: 0 0 0 3px rgba(242, 251, 248, 0.92);
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: var(--mint-soft);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.45s var(--ease);
        z-index: var(--z-menu);
    }

    .nav-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .site-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: max(1.1rem, env(safe-area-inset-top)) 1.35rem max(1.6rem, env(safe-area-inset-bottom));
        background: var(--mint-soft);
        color: var(--forest);
        transform: translate3d(0, -8px, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            transform 0.5s var(--ease),
            opacity 0.45s var(--ease),
            visibility 0s linear 0.45s;
        z-index: calc(var(--z-menu) + 1);
        overflow: auto;
    }

    .site-menu.is-open {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition:
            transform 0.5s var(--ease),
            opacity 0.45s var(--ease),
            visibility 0s linear 0s;
    }

    .site-menu > a:not(.button) {
        width: 100%;
        padding: 1.05rem 0;
        border-bottom: 1px solid var(--line);
        color: var(--forest);
        font-family: var(--font-display);
        font-size: clamp(1.85rem, 7vw, 2.25rem);
        font-weight: 500;
        letter-spacing: -0.03em;
        line-height: 1.15;
        opacity: 0;
        transform: translate3d(0, 14px, 0);
    }

    .site-menu.is-open > a:not(.button) {
        opacity: 1;
        transform: none;
        transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
    }

    .site-menu__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        margin-bottom: 1.6rem;
        padding: 0.15rem 0 1.15rem;
        border-bottom: 1px solid var(--line);
    }

    .site-menu__head .site-brand {
        visibility: visible;
        pointer-events: auto;
    }

    .site-menu__close {
        position: relative;
        flex: 0 0 auto;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        background: var(--forest);
        color: var(--mint-soft);
        box-shadow: 0 0 0 3px rgba(18, 55, 44, 0.08);
    }

    .site-menu__close span {
        position: absolute;
        left: 0.78rem;
        right: 0.78rem;
        top: 1.32rem;
        height: 1.5px;
        background: var(--mint-soft);
        border-radius: 99px;
    }

    .site-menu__close span:first-child {
        transform: rotate(45deg);
    }

    .site-menu__close span:last-child {
        transform: rotate(-45deg);
    }

    .site-menu.is-open > a:nth-child(2) { transition-delay: 80ms; }
    .site-menu.is-open > a:nth-child(3) { transition-delay: 120ms; }
    .site-menu.is-open > a:nth-child(4) { transition-delay: 160ms; }
    .site-menu.is-open > a:nth-child(5) { transition-delay: 200ms; }

    .site-menu > a:not(.button)::after {
        display: none;
    }

    .site-menu .button {
        width: min(100%, 18.5rem);
        margin-top: 1.7rem;
        border-bottom: 0;
        background: var(--forest);
        color: var(--mint-soft);
        font-family: var(--font-body);
        font-size: 0.94rem;
        font-weight: 650;
        letter-spacing: 0.04em;
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }

    .site-menu.is-open .button {
        opacity: 1;
        transform: none;
        transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
        transition-delay: 240ms;
    }

    .site-menu .button:hover {
        background: var(--forest-mid);
        color: #fff;
    }

    .site-menu .mobile-call-action {
        display: inline-flex;
        justify-content: center;
        margin-top: 0.75rem;
        background: transparent;
        color: var(--forest);
        box-shadow: inset 0 0 0 1.5px var(--forest);
        transition-delay: 280ms;
    }

    .site-menu.is-open .mobile-call-action {
        transition-delay: 290ms;
    }

    .site-menu .mobile-call-action:hover {
        background: var(--mint);
        color: var(--forest);
        box-shadow: inset 0 0 0 1.5px var(--mint);
    }

    .site-menu__foot {
        display: grid;
        gap: 0.25rem;
        margin-top: auto;
        padding-top: 2rem;
        color: var(--muted);
        font-size: 0.88rem;
        line-height: 1.5;
        opacity: 0;
    }

    .site-menu.is-open .site-menu__foot {
        opacity: 1;
        transition: opacity 0.5s var(--ease) 0.32s;
    }

    .site-menu__foot .phone {
        color: var(--forest);
        font-weight: 650;
    }

    .hero {
        min-height: calc(100dvh - var(--header-height));
    }

    .hero__stage {
        position: relative;
        top: auto;
        height: auto;
        min-height: calc(100dvh - var(--header-height));
    }

    .hero__copy {
        top: 0;
        width: min(100%, 40rem);
    }

    .hero h1 {
        font-size: clamp(3.2rem, 8vw, 5.2rem);
        line-height: 0.94;
    }

    .hero__footer {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0.35rem;
    }

    .hero__location {
        justify-self: center;
    }

    .hero__location .address {
        white-space: normal;
    }
}

@media (max-width: 760px) {
    .menu-explorer,
    .menu-explorer[data-menu-view="detail"] {
        grid-template-columns: 1fr;
    }

    .menu-explorer[data-menu-view="detail"] .menu-category-list {
        display: flex;
        overflow-x: auto;
        gap: 0.45rem;
        padding-bottom: 0.6rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .menu-explorer[data-menu-view="detail"] .menu-category {
        flex: 0 0 auto;
        min-width: 12.5rem;
        scroll-snap-align: start;
    }

    .menu-service {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "num body"
            "num meta"
            "price book";
    }

    .menu-service__number { grid-area: num; }
    .menu-service__body { grid-area: body; }
    .menu-service__meta { grid-area: meta; }
    .menu-service__price { grid-area: price; justify-items: start; }
    .menu-service__book { grid-area: book; justify-self: end; }

    .menu-panel__header {
        flex-direction: column;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 18rem;
    }

    .site-footer nav,
    .site-footer__legal {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-actions.is-visible {
        display: flex;
        left: 1rem;
        right: 1rem;
        bottom: 0.85rem;
    }

    .floating-actions a {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 639px) {
    .hero {
        min-height: calc(100dvh - var(--header-height));
        background: #12372c;
    }

    .hero__stage {
        display: grid;
        place-items: center;
        min-height: calc(100dvh - var(--header-height));
        padding: 0;
        background: transparent;
    }

    .hero__ambient,
    .hero__footer {
        display: none;
    }

    .promo-decor__bloom--right,
    .promo-decor__line--br {
        display: none;
    }

    .promo-decor__bloom--left {
        width: 70vw;
        opacity: 0.12;
        bottom: -12%;
        left: -18%;
    }

    .promo-decor__splash--c {
        display: none;
    }

    .hero__copy {
        position: relative;
        top: 0;
        right: auto;
        left: auto;
        z-index: 12;
        width: min(100%, 19.5rem);
        padding: 0 1.15rem;
        transform: none;
    }

    .hero__eyebrow {
        gap: 0.55rem;
        margin-bottom: 0.95rem;
        color: rgba(242, 251, 248, 0.78);
        font-size: 0.6rem;
        letter-spacing: 0.28em;
    }

    .hero__eyebrow i {
        box-shadow: 0 0 0 0.28rem rgba(243, 226, 168, 0.16);
    }

    .hero h1 {
        font-size: clamp(2.7rem, 11.2vw, 3.4rem);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .hero h1 > span {
        color: #f4fbf8;
        white-space: nowrap;
        text-shadow: 0 10px 28px rgba(18, 55, 44, 0.4);
    }

    .hero h1 > em {
        max-width: 100%;
        margin-top: 0.18em;
        font-size: 0.72em;
        white-space: nowrap;
        -webkit-text-stroke: 0.4px rgba(92, 58, 10, 0.45);
    }

    .hero__actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.15rem;
        margin-top: 1.55rem;
    }

    .hero__actions .button {
        min-height: 2.9rem;
        padding: 0.35rem 0.4rem 0.35rem 1.3rem;
        background: var(--mint-soft);
        color: var(--forest);
    }

    .hero__actions .button:hover {
        background: #fff;
        color: var(--forest);
    }

    .hero__actions .button__icon {
        background: rgba(18, 55, 44, 0.08);
    }

    .hero__actions .text-link {
        color: var(--gold-light);
        border-bottom-color: rgba(243, 226, 168, 0.72);
        font-size: 0.95rem;
        font-weight: 600;
    }

    .hero-cinema {
        z-index: 2;
    }

    .hero-cinema__camera {
        inset: 0;
        animation: none;
    }

    .hero-cinema::after {
        background:
            linear-gradient(180deg, rgba(18, 55, 44, 0.34) 0%, transparent 26%),
            linear-gradient(0deg, rgba(18, 55, 44, 0.42) 0%, transparent 22%),
            radial-gradient(ellipse at 50% 48%, rgba(18, 55, 44, 0.46) 0%, rgba(18, 55, 44, 0.16) 52%, rgba(18, 55, 44, 0.28) 100%);
    }

    .hero-shot--left-wide,
    .hero-shot--left-detail,
    .hero-shot--right-detail,
    .hero-shot--right-wide {
        display: none;
    }

    .hero-shot--full {
        display: block;
        inset: -10% -14%;
        width: auto;
        height: auto;
        padding: 0;
        border: 0;
        background: #12372c;
        box-shadow: none;
        transform: none;
    }

    .hero-shot--full img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.12);
    }

    .hero-scene.is-active .hero-shot--full img,
    .hero-scene.is-leaving .hero-shot--full img {
        animation: hero-mobile-pan 11s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
    }

    .promo-decor__bloom--right,
    .promo-decor__line--br,
    .promo-decor__splash--c {
        display: none;
    }

    .promo-decor__bloom--left {
        width: 78vw;
        left: -22%;
        bottom: -16%;
        opacity: 0.14;
    }
}

@keyframes hero-mobile-pan {
    from {
        transform: scale(1.12) translate3d(-4.5%, 0, 0);
    }
    to {
        transform: scale(1.2) translate3d(4.5%, -2%, 0);
    }
}

@media (max-width: 520px) {
    .site-brand__mark {
        width: 2.95rem;
        height: 2.95rem;
    }

    .site-brand__word strong {
        font-size: 1.42rem;
    }

    .site-brand__word small {
        font-size: 0.56rem;
        letter-spacing: 0.14em;
    }

    .story-gallery,
    .nail-lookbook__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .promo-mark__inner {
        min-width: 0;
        padding: 1rem 1.1rem 0.8rem 1.2rem;
    }

    .promo-mark__inner b {
        font-size: clamp(4.2rem, 28vw, 6rem);
    }

    body {
        padding-bottom: 4.6rem;
    }
}
