:root {
    --ink: #070908;
    --ink-soft: #0d100e;
    --panel: #121613;
    --panel-light: #181d19;
    --white: #f4f1e8;
    --muted: #9da39c;
    --line: rgba(255, 255, 255, 0.12);
    --lime: #d8ff57;
    --lime-soft: rgba(216, 255, 87, 0.16);
    --gold: #d9b77b;
    --red: #ff5b49;
    --radius: 24px;
    --shell: min(1240px, calc(100% - 48px));
    --header-height: 92px;
    --mouse-x: 50vw;
    --mouse-y: 20vh;
    --page-progress: 0;
    --hero-scroll: 0px;
    --stack-scroll: 0px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    overflow-x: clip;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 75% 12%, rgba(216, 255, 87, 0.07), transparent 25rem),
        radial-gradient(circle at 15% 70%, rgba(217, 183, 123, 0.05), transparent 24rem),
        var(--ink);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 18px;
    color: var(--ink);
    background: var(--lime);
    clip-path: inset(0);
    transition: clip-path 0.9s cubic-bezier(.76, 0, .24, 1), visibility 0.9s;
}

.page-loader::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(7, 9, 8, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 9, 8, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at center, black, transparent 68%);
}

.loader-mark,
.loader-line,
.page-loader small {
    position: relative;
    z-index: 2;
}

.loader-mark {
    display: flex;
    overflow: hidden;
    font: 800 clamp(4.5rem, 12vw, 9rem)/0.78 "Syne", sans-serif;
    letter-spacing: -0.13em;
}

.loader-mark span {
    display: block;
    animation: loaderLetter 0.72s cubic-bezier(.2, .8, .2, 1) both;
}

.loader-mark span:last-child {
    animation-delay: 0.08s;
}

.loader-line {
    width: min(220px, 54vw);
    height: 2px;
    overflow: hidden;
    background: rgba(7, 9, 8, 0.18);
}

.loader-line i {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--ink);
    transform-origin: left;
    animation: loaderLine 0.9s 0.12s cubic-bezier(.2, .8, .2, 1) both;
}

.page-loader small {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.24em;
}

body.is-loaded .page-loader {
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
}

@keyframes loaderLetter {
    from { transform: translateY(115%) rotate(8deg); }
    to { transform: translateY(0) rotate(0); }
}

@keyframes loaderLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1100;
    height: 2px;
    pointer-events: none;
}

.scroll-progress i {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--lime), var(--gold));
    box-shadow: 0 0 16px rgba(216, 255, 87, 0.55);
    transform: scaleX(var(--page-progress));
    transform-origin: left;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    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: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    animation: backgroundGrid 24s linear infinite;
}

@keyframes backgroundGrid {
    to { background-position: 72px 72px; }
}

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

a {
    color: inherit;
}

button,
summary {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    background: var(--lime);
    color: var(--ink);
}

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

.cursor-light {
    position: fixed;
    width: 520px;
    aspect-ratio: 1;
    left: var(--mouse-x);
    top: var(--mouse-y);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(216, 255, 87, 0.07), transparent 66%);
    pointer-events: none;
    z-index: -1;
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-space {
    padding-block: clamp(96px, 11vw, 168px);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 16px 0;
    opacity: 0;
    transform: translateY(-120%);
    transition: padding 0.3s ease;
}

body.is-loaded .site-header {
    opacity: 1;
    transform: translateY(0);
    transition:
        padding 0.3s ease,
        transform 0.75s 0.18s cubic-bezier(.2, .8, .2, 1),
        opacity 0.6s 0.18s ease;
}

.site-header.is-scrolled {
    padding: 8px 0;
}

.nav-shell {
    width: var(--shell);
    min-height: 64px;
    margin: auto;
    padding: 8px 10px 8px 12px;
    display: flex;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(8, 10, 9, 0.72);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(22px) saturate(130%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 0 0 auto;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(216, 255, 87, 0.38);
    background: var(--lime);
    color: var(--ink);
    font: 800 0.82rem/1 "Syne", sans-serif;
    letter-spacing: -0.06em;
    border-radius: 12px;
    box-shadow: inset -5px -6px 12px rgba(0, 0, 0, 0.15), 0 9px 24px rgba(216, 255, 87, 0.12);
    transform: rotate(-5deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font: 700 0.82rem/1 "Syne", sans-serif;
    letter-spacing: 0.08em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.56rem;
    letter-spacing: 0.15em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 10px 12px;
    color: #b8bdb7;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 1px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-menu {
    position: relative;
}

.language-menu summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--muted);
    list-style: none;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.language-menu summary::-webkit-details-marker {
    display: none;
}

.language-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 72px;
    padding: 7px;
    background: rgba(13, 16, 14, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.language-panel a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.language-panel a:hover,
.language-panel a[aria-current="true"] {
    color: var(--ink);
    background: var(--lime);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
    transition: transform 0.25s ease;
}

.button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 54px;
    padding: 8px 10px 8px 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border: 1px solid transparent;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.83rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 18px;
    aspect-ratio: 1;
    left: var(--button-x, 50%);
    top: var(--button-y, 50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.55s ease;
}

.button:hover::before {
    transform: translate(-50%, -50%) scale(13);
}

.button.is-pulsed,
.mobile-booking-bar a.is-pulsed {
    animation: buttonPulse 0.48s ease;
}

@keyframes buttonPulse {
    50% { transform: translateY(-2px) scale(0.96); }
}

.button-solid {
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 14px 34px rgba(216, 255, 87, 0.12), inset -10px -10px 24px rgba(56, 73, 0, 0.13);
}

.button-small {
    min-height: 42px;
    padding: 5px 7px 5px 15px;
    gap: 10px;
    border-radius: 12px;
    font-size: 0.72rem;
}

.button-small span,
.button-orbit,
.button-light span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(7, 9, 8, 0.92);
    color: var(--white);
    font-size: 1rem;
}

.button-small span {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.button-ghost {
    padding-inline: 18px;
    color: var(--white);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.035);
}

.play-dot {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    padding-left: 2px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--white);
    font-size: 0.58rem;
}

.hero {
    position: relative;
    min-height: max(760px, 100svh);
    padding-top: clamp(150px, 18vh, 190px);
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    align-items: center;
    gap: clamp(40px, 6vw, 92px);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b7bdb6;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 1px;
    background: var(--lime);
}

.hero h1,
.section-heading h2,
.tour h2,
.cta-panel h2 {
    margin: 0;
    font-family: "Syne", sans-serif;
    letter-spacing: -0.065em;
}

.hero-copy {
    position: relative;
    z-index: 6;
}

body.is-loaded .hero-copy > * {
    animation: heroItemIn 0.8s cubic-bezier(.2, .8, .2, 1) both;
}

body.is-loaded .hero-copy > *:nth-child(1) { animation-delay: 0.25s; }
body.is-loaded .hero-copy > *:nth-child(2) { animation-delay: 0.34s; }
body.is-loaded .hero-copy > *:nth-child(3) { animation-delay: 0.43s; }
body.is-loaded .hero-copy > *:nth-child(4) { animation-delay: 0.52s; }
body.is-loaded .hero-copy > *:nth-child(5) { animation-delay: 0.61s; }

@keyframes heroItemIn {
    from {
        opacity: 0;
        transform: translateY(34px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero h1 {
    max-width: 720px;
    margin-top: 20px;
    font-size: clamp(3.8rem, 7.5vw, 7.8rem);
    font-weight: 700;
    line-height: 0.83;
    text-wrap: balance;
}

.hero h1 span {
    position: relative;
    display: inline-block;
    color: var(--lime);
}

.hero h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.05em;
    height: 0.06em;
    border-radius: 10px;
    background: var(--lime);
    box-shadow: 0 0 20px rgba(216, 255, 87, 0.35);
    transform: scaleX(0);
    transform-origin: left;
}

body.is-loaded .hero h1 span::after {
    animation: titleLine 0.9s 0.95s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes titleLine {
    to { transform: scaleX(1); }
}

.hero-description {
    max-width: 560px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-meta {
    margin-top: 46px;
    display: flex;
    gap: 34px;
}

.hero-meta div {
    padding-right: 34px;
    border-right: 1px solid var(--line);
}

.hero-meta div:last-child {
    padding-right: 0;
    border: 0;
}

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

.hero-meta strong {
    font: 700 0.84rem/1 "Syne", sans-serif;
    letter-spacing: 0.08em;
}

.hero-meta span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.68rem;
}

.hero-scene {
    --scene-x: 0deg;
    --scene-y: 0deg;
    position: relative;
    height: min(660px, 66vw);
    max-height: 660px;
    min-height: 560px;
    perspective: 1400px;
    transform-style: preserve-3d;
    translate: 0 var(--hero-scroll);
    transition: translate 0.16s linear;
}

.scene-grid {
    position: absolute;
    width: 92%;
    height: 55%;
    left: 4%;
    bottom: -6%;
    transform: rotateX(66deg) translateZ(-100px);
    transform-origin: center bottom;
    background-image:
        linear-gradient(rgba(216, 255, 87, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 255, 87, 0.22) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse, black 12%, transparent 72%);
    opacity: 0.38;
    animation: gridPulse 4.5s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    to { opacity: 0.62; filter: brightness(1.35); }
}

.scene-halo {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    left: 18%;
    top: 8%;
    border-radius: 50%;
    border: 1px solid rgba(216, 255, 87, 0.2);
    box-shadow: 0 0 100px rgba(216, 255, 87, 0.08), inset 0 0 80px rgba(216, 255, 87, 0.05);
    transform: translateZ(-120px);
    animation: haloPulse 4s ease-in-out infinite;
}

@keyframes haloPulse {
    50% {
        scale: 1.07;
        opacity: 0.58;
        box-shadow: 0 0 140px rgba(216, 255, 87, 0.13), inset 0 0 100px rgba(216, 255, 87, 0.08);
    }
}

.scene-card {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: #161a17;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(.2, .8, .2, 1);
}

.scene-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.13), transparent 35%, transparent 70%, rgba(216, 255, 87, 0.1));
    pointer-events: none;
}

.scene-card picture,
.stack-photo picture,
.gallery-card picture {
    display: block;
    width: 100%;
    height: 100%;
}

.scene-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: sceneImageBreath 9s ease-in-out infinite alternate;
}

@keyframes sceneImageBreath {
    to { scale: 1.045; }
}

.scene-card-main {
    width: 64%;
    height: 76%;
    left: 18%;
    top: 8%;
    z-index: 3;
    transform: rotateY(var(--scene-y)) rotateX(var(--scene-x)) rotateZ(2deg) translateZ(80px);
    animation: sceneFloatMain 5.8s ease-in-out infinite alternate;
}

.scene-card-main img {
    filter: saturate(0.75) contrast(1.08) brightness(0.82);
}

.scene-card-main figcaption {
    position: absolute;
    inset: auto 20px 20px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(8, 10, 9, 0.62);
    backdrop-filter: blur(16px);
}

.scene-card-main figcaption span,
.scene-card-main figcaption strong {
    position: relative;
    z-index: 2;
}

.scene-card-main figcaption span {
    color: var(--lime);
    font-size: 0.58rem;
    letter-spacing: 0.13em;
}

.scene-card-main figcaption strong {
    font: 600 1.05rem/1.08 "Syne", sans-serif;
    text-align: right;
}

.scene-card-back {
    width: 35%;
    height: 48%;
    left: -2%;
    top: 24%;
    z-index: 1;
    transform: rotateY(calc(var(--scene-y) - 11deg)) rotateX(var(--scene-x)) rotateZ(-8deg) translateZ(-15px);
    filter: brightness(0.58) saturate(0.7);
    animation: sceneFloatBack 6.6s 0.3s ease-in-out infinite alternate;
}

.scene-card-front {
    width: 32%;
    height: 44%;
    right: -2%;
    bottom: 3%;
    z-index: 5;
    transform: rotateY(calc(var(--scene-y) + 9deg)) rotateX(var(--scene-x)) rotateZ(8deg) translateZ(150px);
    animation: sceneFloatFront 4.9s 0.15s ease-in-out infinite alternate;
}

@keyframes sceneFloatMain {
    to { translate: 0 -12px; }
}

@keyframes sceneFloatBack {
    to { translate: -5px 10px; }
}

@keyframes sceneFloatFront {
    to { translate: 5px -16px; }
}

.scene-card-front img {
    filter: brightness(0.75) saturate(0.75);
}

.scene-card-front figcaption {
    position: absolute;
    left: 14px;
    bottom: 12px;
    padding: 7px 9px;
    border-radius: 8px;
    background: var(--lime);
    color: var(--ink);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.scene-badge {
    position: absolute;
    width: 118px;
    height: 118px;
    right: 5%;
    top: 4%;
    z-index: 8;
    display: grid;
    place-content: center;
    border: 1px solid var(--lime);
    border-radius: 50%;
    color: var(--lime);
    background: rgba(7, 9, 8, 0.84);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 0 30px rgba(216, 255, 87, 0.07);
    transform: translateZ(190px) rotate(9deg);
    animation: badgeOrbit 8s ease-in-out infinite;
}

@keyframes badgeOrbit {
    50% {
        translate: 8px -12px;
        rotate: 8deg;
    }
}

.scene-badge span {
    font: 700 1.45rem/1 "Syne", sans-serif;
}

.scene-badge small {
    margin-top: 5px;
    font-size: 0.48rem;
    line-height: 1.25;
    letter-spacing: 0.16em;
}

.scene-line {
    position: absolute;
    z-index: 7;
    height: 1px;
    background: var(--lime);
    box-shadow: 0 0 14px var(--lime);
    transform-origin: left;
    animation: sceneLineScan 2.8s ease-in-out infinite;
}

@keyframes sceneLineScan {
    0%, 100% { opacity: 0.25; scale: 0.35 1; }
    50% { opacity: 1; scale: 1 1; }
}

.scene-line-one {
    width: 35%;
    right: 0;
    top: 42%;
    transform: rotate(-18deg) translateZ(170px);
}

.scene-line-two {
    width: 26%;
    left: 0;
    bottom: 20%;
    background: var(--gold);
    transform: rotate(24deg) translateZ(40px);
}

.scroll-cue {
    position: absolute;
    left: 0;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    width: 72px;
    height: 1px;
    overflow: hidden;
    background: var(--line);
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--lime);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    from { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.signal-strip {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: var(--lime);
    color: var(--ink);
    transform: rotate(-1.1deg) scale(1.02);
}

.signal-track {
    width: max-content;
    min-width: 100%;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    font: 700 0.72rem/1 "Syne", sans-serif;
    letter-spacing: 0.12em;
    animation: ticker 26s linear infinite;
}

.signal-track i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

@keyframes ticker {
    to { transform: translateX(-25%); }
}

.section-heading {
    margin-bottom: clamp(42px, 6vw, 78px);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: end;
    gap: 40px;
}

.section-heading > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-index {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--lime);
    font-size: 0.65rem;
    font-weight: 700;
}

.section-heading h2 {
    max-width: 760px;
    font-size: clamp(2.6rem, 5.2vw, 5.7rem);
    font-weight: 600;
    line-height: 0.9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: clamp(50px, 8vw, 116px);
    align-items: center;
}

.photo-stack {
    position: relative;
    min-height: 680px;
    perspective: 1200px;
    translate: 0 var(--stack-scroll);
    transition: translate 0.18s linear;
}

.stack-photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.stack-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.65) contrast(1.08);
}

.stack-photo-one {
    width: 64%;
    height: 83%;
    left: 7%;
    top: 3%;
    transform: rotateY(10deg) rotateZ(-4deg);
    animation: stackFloatOne 7s ease-in-out infinite alternate;
}

.stack-photo-two {
    width: 52%;
    height: 63%;
    right: 1%;
    bottom: 0;
    transform: rotateY(-12deg) rotateZ(5deg) translateZ(90px);
    animation: stackFloatTwo 6s 0.4s ease-in-out infinite alternate;
}

@keyframes stackFloatOne {
    to { translate: -5px -13px; }
}

@keyframes stackFloatTwo {
    to { translate: 7px 12px; }
}

.stack-label {
    position: absolute;
    left: 0;
    bottom: 11%;
    z-index: 4;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8, 10, 9, 0.8);
    backdrop-filter: blur(15px);
    color: var(--muted);
    font-size: 0.63rem;
    letter-spacing: 0.12em;
    transform: rotate(-8deg) translateZ(140px);
}

.stack-label span {
    color: var(--lime);
    font: 800 1.1rem/1 "Syne", sans-serif;
}

.about-copy .lead {
    margin: 0 0 26px;
    color: var(--white);
    font: 600 clamp(1.8rem, 3vw, 3.15rem)/1.06 "Syne", sans-serif;
    letter-spacing: -0.04em;
}

.about-copy > p:not(.lead) {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

.feature-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    perspective: 900px;
}

.feature-card {
    position: relative;
    min-height: 155px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
    transform-style: preserve-3d;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: -100% 45%;
    width: 22%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: rotate(22deg) translateX(-300%);
}

.about-copy.is-visible .feature-card::after {
    animation: cardSweep 1.2s 0.4s ease forwards;
}

@keyframes cardSweep {
    to { transform: rotate(22deg) translateX(650%); }
}

.feature-card > * {
    transform: translateZ(22px);
}

.feature-card span {
    color: var(--lime);
    font-size: 0.6rem;
    font-weight: 700;
}

.feature-card strong {
    max-width: 160px;
    font: 600 1rem/1.2 "Syne", sans-serif;
}

.feature-card small {
    color: #727872;
    font-size: 0.55rem;
    letter-spacing: 0.14em;
}

.services {
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        var(--ink-soft);
    background-size: 64px 64px;
    border-block: 1px solid var(--line);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    perspective: 1100px;
}

.service-card {
    position: relative;
    min-height: 410px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at var(--tilt-glow-x, 50%) var(--tilt-glow-y, 20%), rgba(216, 255, 87, 0.12), transparent 28%),
        linear-gradient(145deg, #171b18, #0d100e);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.07);
    transform-style: preserve-3d;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -70px;
    top: -80px;
    border: 1px solid rgba(216, 255, 87, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 22px rgba(216, 255, 87, 0.025), 0 0 0 45px rgba(216, 255, 87, 0.02);
    animation: serviceOrbit 11s linear infinite;
}

@keyframes serviceOrbit {
    to { rotate: 360deg; }
}

.service-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(from var(--card-angle, 0deg), transparent 72%, rgba(216, 255, 87, 0.7), transparent 88%);
    opacity: 0;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    transition: opacity 0.3s ease;
    animation: cardBorderSpin 4s linear infinite;
}

.service-card:hover::after {
    opacity: 1;
}

@property --card-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes cardBorderSpin {
    to { --card-angle: 360deg; }
}

.service-card:hover {
    border-color: rgba(216, 255, 87, 0.45);
    box-shadow: 0 38px 80px rgba(0, 0, 0, 0.35);
}

.service-card > * {
    position: relative;
    z-index: 2;
    transform: translateZ(26px);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.service-number {
    color: #6f756f;
    font-size: 0.66rem;
    font-weight: 700;
}

.service-icon {
    position: relative;
    width: 66px;
    height: 66px;
    display: block;
    border: 1px solid rgba(216, 255, 87, 0.3);
    border-radius: 18px;
    background: var(--lime-soft);
    box-shadow: inset -8px -10px 22px rgba(0, 0, 0, 0.18);
}

.service-icon::before,
.service-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--lime);
    transform-origin: center;
}

.service-icon-scissors::before {
    transform: translate(-50%, -50%) rotate(35deg);
}

.service-icon-scissors::after {
    transform: translate(-50%, -50%) rotate(-35deg);
}

.service-icon-beard::before {
    width: 24px;
    height: 30px;
    border: 2px solid var(--lime);
    border-top: 0;
    border-radius: 0 0 50% 50%;
    background: transparent;
    transform: translate(-50%, -45%);
}

.service-icon-beard::after {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--lime);
    border-bottom: 2px solid var(--lime);
    background: transparent;
    transform: translate(-50%, 35%) rotate(45deg);
}

.service-icon-spark::before {
    height: 28px;
    width: 2px;
    transform: translate(-50%, -50%);
}

.service-icon-spark::after {
    transform: translate(-50%, -50%);
}

.service-card h3 {
    max-width: 260px;
    margin: auto 0 28px;
    font: 600 clamp(1.65rem, 2.6vw, 2.45rem)/1.02 "Syne", sans-serif;
    letter-spacing: -0.045em;
}

.service-info {
    padding-block: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-block: 1px solid var(--line);
}

.service-info span {
    color: var(--muted);
    font-size: 0.72rem;
}

.service-info strong {
    color: var(--lime);
    font: 600 1.1rem/1 "Syne", sans-serif;
}

.service-card > a {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 0.73rem;
    font-weight: 700;
}

.service-card > a span {
    font-size: 1.2rem;
}

.tour-frame {
    min-height: 690px;
    padding: clamp(32px, 5vw, 72px);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(42px, 7vw, 100px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 35%, rgba(216, 255, 87, 0.11), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 40px 100px rgba(0, 0, 0, 0.28);
}

.tour-copy .section-index {
    margin-bottom: 40px;
}

.tour h2 {
    margin-top: 18px;
    font-size: clamp(3rem, 5.6vw, 6rem);
    font-weight: 600;
    line-height: 0.88;
}

.tour-copy p {
    max-width: 430px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.tour-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-tags span {
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: #9ba09a;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.video-stage {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    perspective: 1300px;
}

.video-shell {
    position: relative;
    z-index: 3;
    width: min(100%, 720px);
    aspect-ratio: 16 / 9;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: #090b0a;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.12);
    transform: rotateY(-9deg) rotateX(3deg) rotateZ(1deg);
    transition: transform 0.5s ease;
}

.video-stage:hover .video-shell {
    transform: rotateY(-3deg) rotateX(1deg) rotateZ(0);
}

.video-shell::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    z-index: 4;
    width: 3px;
    height: 58px;
    border-radius: 0 10px 10px 0;
    background: var(--lime);
    box-shadow: 0 0 18px rgba(216, 255, 87, 0.45);
    transform: translateY(-50%);
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    filter: saturate(0.75) contrast(1.08);
}

.video-control {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;
    color: var(--white);
    background: rgba(7, 9, 8, 0.68);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.video-control b {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
}

.sound-bars {
    height: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.sound-bars i {
    width: 2px;
    height: 5px;
    background: var(--lime);
}

.video-control.is-audible .sound-bars i:nth-child(1) {
    animation: sound 0.6s ease-in-out infinite alternate;
}

.video-control.is-audible .sound-bars i:nth-child(2) {
    animation: sound 0.45s 0.1s ease-in-out infinite alternate;
}

.video-control.is-audible .sound-bars i:nth-child(3) {
    animation: sound 0.7s 0.2s ease-in-out infinite alternate;
}

@keyframes sound {
    to { height: 12px; }
}

.video-shadow {
    position: absolute;
    z-index: 1;
    width: 64%;
    height: 18%;
    bottom: 4%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    filter: blur(24px);
    transform: rotate(-5deg);
}

.video-stage::before,
.video-stage::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(216, 255, 87, 0.18);
    border-radius: 50%;
    animation: videoOrbit 14s linear infinite;
}

.video-stage::before {
    width: 82%;
    aspect-ratio: 1;
}

.video-stage::after {
    width: 58%;
    aspect-ratio: 1;
    border-color: rgba(217, 183, 123, 0.22);
    animation-direction: reverse;
    animation-duration: 10s;
}

@keyframes videoOrbit {
    to { rotate: 360deg; }
}

.video-code {
    position: absolute;
    right: -4%;
    top: 16%;
    z-index: 5;
    color: var(--lime);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    transform: rotate(90deg);
}

.gallery {
    background: #090b0a;
    border-block: 1px solid var(--line);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 88px;
    gap: 14px;
    perspective: 1200px;
}

.gallery-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    cursor: zoom-in;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(.2, .8, .2, 1), border-color 0.3s ease;
    clip-path: inset(0 100% 0 0 round 18px);
}

.gallery-card.is-visible {
    clip-path: inset(0 0 0 0 round 18px);
    transition:
        clip-path 0.9s cubic-bezier(.2, .8, .2, 1),
        transform 0.4s cubic-bezier(.2, .8, .2, 1),
        border-color 0.3s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.2) 50%, transparent 65%);
    transform: translateX(-140%);
}

.gallery-card.is-visible::after {
    animation: galleryShine 1.15s 0.28s ease forwards;
}

@keyframes galleryShine {
    to { transform: translateX(140%); }
}

.gallery-card:hover {
    z-index: 4;
    border-color: rgba(216, 255, 87, 0.5);
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) translateZ(30px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.62) contrast(1.08) brightness(0.78);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.045);
    filter: saturate(0.85) contrast(1.05) brightness(0.9);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(transparent 45%, rgba(5, 7, 6, 0.86));
    text-align: left;
}

.gallery-overlay small {
    color: var(--lime);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.gallery-overlay strong {
    margin-top: 5px;
    font: 600 1.1rem/1 "Syne", sans-serif;
}

.gallery-overlay i {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(8, 10, 9, 0.45);
    backdrop-filter: blur(10px);
    font-style: normal;
}

.gallery-card-1 { grid-column: span 5; grid-row: span 6; }
.gallery-card-2 { grid-column: span 3; grid-row: span 4; }
.gallery-card-3 { grid-column: span 4; grid-row: span 5; }
.gallery-card-4 { grid-column: span 3; grid-row: span 4; }
.gallery-card-5 { grid-column: span 4; grid-row: span 5; }
.gallery-card-6 { grid-column: span 5; grid-row: span 5; }
.gallery-card-7 { grid-column: span 3; grid-row: span 4; }
.gallery-card-8 { grid-column: span 4; grid-row: span 4; }

.cta-panel {
    position: relative;
    min-height: 430px;
    padding: clamp(36px, 6vw, 82px);
    display: flex;
    align-items: flex-end;
    gap: 50px;
    overflow: hidden;
    border-radius: 34px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: inset -60px -70px 120px rgba(85, 106, 5, 0.14), 0 45px 100px rgba(0, 0, 0, 0.25);
}

.cta-copy {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.cta-panel .eyebrow {
    color: rgba(7, 9, 8, 0.6);
}

.cta-panel h2 {
    margin-top: 18px;
    font-size: clamp(3rem, 6vw, 6.8rem);
    font-weight: 700;
    line-height: 0.83;
}

.cta-panel p {
    max-width: 540px;
    margin: 24px 0 0;
    color: rgba(7, 9, 8, 0.68);
    line-height: 1.65;
}

.button-light {
    position: relative;
    z-index: 4;
    margin-left: auto;
    flex: 0 0 auto;
    padding-left: 22px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 18px 44px rgba(7, 9, 8, 0.24);
}

.button-light span {
    color: var(--ink);
    background: var(--white);
}

.cta-monogram {
    position: absolute;
    right: -3%;
    top: -24%;
    color: rgba(7, 9, 8, 0.05);
    font: 800 24rem/1 "Syne", sans-serif;
    letter-spacing: -0.12em;
    transform: rotate(-8deg);
}

.cta-orbit {
    position: absolute;
    border: 1px solid rgba(7, 9, 8, 0.14);
    border-radius: 50%;
}

.orbit-one {
    width: 340px;
    height: 340px;
    right: 9%;
    top: -30%;
    animation: ctaOrbit 18s linear infinite;
}

.orbit-two {
    width: 520px;
    height: 520px;
    right: 2%;
    top: -52%;
    animation: ctaOrbit 26s linear infinite reverse;
}

.cta-orbit::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    top: -6px;
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 0 24px rgba(7, 9, 8, 0.28);
}

@keyframes ctaOrbit {
    to { rotate: 360deg; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
}

.contact-panel,
.map-panel {
    min-height: 570px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--panel);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.contact-panel {
    padding: clamp(26px, 4vw, 46px);
    display: flex;
    flex-direction: column;
}

.status-pill {
    align-self: flex-start;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
}

.status-pill i,
.mobile-booking-bar strong i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 12px currentColor;
}

.status-pill.is-open i,
.mobile-booking-bar strong i {
    background: #73e36e;
}

.contact-list {
    margin-top: auto;
}

.contact-list > a,
.contact-row {
    min-height: 98px;
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
}

.contact-list > a:first-child {
    border-top: 1px solid var(--line);
}

.contact-list > a > span,
.contact-row > span {
    color: #626862;
    font-size: 0.62rem;
    font-weight: 700;
}

.contact-list small,
.contact-list strong {
    display: block;
}

.contact-list small {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.64rem;
}

.contact-list strong {
    max-width: 370px;
    font: 600 0.95rem/1.35 "Syne", sans-serif;
}

.contact-list a > i {
    font-style: normal;
    transition: transform 0.25s ease;
}

.contact-list a:hover > i {
    transform: translate(4px, -4px);
}

.social-row {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.social-row a {
    color: var(--lime);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.map-panel {
    position: relative;
    overflow: hidden;
    transform: perspective(1100px) rotateY(-2deg);
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(0.85) brightness(0.72);
    scale: 1.04;
    transition: scale 1s cubic-bezier(.2, .8, .2, 1), filter 0.6s ease;
}

.map-panel:hover iframe {
    scale: 1.1;
    filter: grayscale(0.7) invert(0.92) contrast(0.9) brightness(0.78);
}

.map-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(216, 255, 87, 0.08), transparent 35%);
}

.map-label {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    padding: 13px 15px;
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(7, 9, 8, 0.75);
    backdrop-filter: blur(16px);
    color: var(--muted);
    font-size: 0.58rem;
    letter-spacing: 0.11em;
}

.site-footer {
    padding: 30px 0 40px;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-inner p,
.footer-inner > a:last-child {
    color: var(--muted);
    font-size: 0.62rem;
    text-decoration: none;
}

.mobile-booking-bar {
    display: none;
}

.lightbox-dialog {
    width: min(920px, calc(100% - 32px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    color: var(--white);
    background: rgba(7, 9, 8, 0.94);
    box-shadow: 0 50px 140px rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    animation: lightboxIn 0.4s cubic-bezier(.2, .8, .2, 1);
}

@keyframes lightboxIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
}

.lightbox-dialog::backdrop {
    background: rgba(2, 3, 2, 0.82);
    backdrop-filter: blur(10px);
}

.lightbox-dialog figure {
    margin: 0;
}

.lightbox-dialog img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 17px;
}

.lightbox-dialog figcaption {
    padding: 14px 8px 6px;
    font: 600 0.85rem/1 "Syne", sans-serif;
}

.lightbox-close {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    background: rgba(7, 9, 8, 0.7);
    cursor: pointer;
    font-size: 1.4rem;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(5px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.2, .8, .2, 1),
        filter 0.8s ease;
}

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

.no-js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
}

.section-heading.reveal h2 {
    clip-path: inset(0 0 100% 0);
    transform: translateY(18px);
    transition:
        clip-path 0.95s 0.12s cubic-bezier(.2, .8, .2, 1),
        transform 0.95s 0.12s cubic-bezier(.2, .8, .2, 1);
}

.section-heading.reveal.is-visible h2 {
    clip-path: inset(0);
    transform: translateY(0);
}

[data-tilt] {
    --rx: 0deg;
    --ry: 0deg;
}

.feature-card[data-tilt],
.service-card[data-tilt] {
    transform: rotateX(var(--rx)) rotateY(var(--ry));
    transition: transform 0.16s ease-out;
}

@media (max-width: 1100px) {
    :root {
        --shell: min(100% - 32px, 960px);
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .nav-actions {
        order: 3;
    }

    .main-nav.is-open {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(8, 10, 9, 0.98);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
    }

    .main-nav a {
        padding: 14px 12px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .hero {
        grid-template-columns: 1fr 0.9fr;
        gap: 24px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 7vw, 5.6rem);
    }

    .scene-badge {
        width: 96px;
        height: 96px;
    }

    .section-heading {
        grid-template-columns: 0.7fr 1.3fr;
    }

    .about-grid {
        gap: 40px;
    }

    .photo-stack {
        min-height: 570px;
    }

    .service-card {
        min-height: 370px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 80px;
    }

    .nav-shell {
        min-height: 58px;
        border-radius: 17px;
    }

    .nav-book {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 135px;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-copy {
        position: relative;
        z-index: 5;
    }

    .hero h1 {
        max-width: 680px;
        font-size: clamp(3.8rem, 13vw, 6.6rem);
    }

    .hero-scene {
        width: min(100%, 650px);
        margin-inline: auto;
        height: 620px;
    }

    .scroll-cue {
        display: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .section-heading h2 {
        max-width: 650px;
    }

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

    .about-visual {
        order: 2;
    }

    .photo-stack {
        max-width: 650px;
        margin: auto;
    }

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

    .service-card {
        min-height: 330px;
    }

    .tour-frame {
        grid-template-columns: 1fr;
    }

    .video-stage {
        min-height: 620px;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 78px;
    }

    .gallery-card-1,
    .gallery-card-6 { grid-column: span 6; }
    .gallery-card-2,
    .gallery-card-3,
    .gallery-card-4,
    .gallery-card-5,
    .gallery-card-7,
    .gallery-card-8 { grid-column: span 3; }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .button-light {
        margin-left: 0;
    }

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

    .map-panel {
        min-height: 500px;
        transform: none;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: calc(100% - 24px);
        --radius: 20px;
    }

    body {
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    body::before {
        animation: none;
    }

    .page-loader {
        transition-duration: 0.72s;
    }

    .cursor-light {
        display: none;
    }

    .site-header {
        padding: 8px 0;
    }

    .nav-shell {
        width: calc(100% - 16px);
        padding-left: 9px;
        gap: 8px;
    }

    .brand-copy small {
        display: none;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .menu-toggle {
        width: 40px;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .main-nav.is-open a {
        opacity: 0;
        animation: mobileMenuItem 0.42s cubic-bezier(.2, .8, .2, 1) forwards;
    }

    .main-nav.is-open a:nth-child(2) { animation-delay: 0.05s; }
    .main-nav.is-open a:nth-child(3) { animation-delay: 0.1s; }
    .main-nav.is-open a:nth-child(4) { animation-delay: 0.15s; }
    .main-nav.is-open a:nth-child(5) { animation-delay: 0.2s; }

    @keyframes mobileMenuItem {
        from { transform: translateX(-16px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .language-menu summary {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding-top: 125px;
        padding-bottom: 74px;
    }

    .hero h1 {
        margin-top: 16px;
        font-size: clamp(3.25rem, 16vw, 5rem);
        line-height: 0.87;
    }

    .hero-description {
        margin-top: 22px;
        font-size: 0.94rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
        justify-content: space-between;
    }

    .button-ghost {
        justify-content: flex-start;
    }

    .hero-meta {
        margin-top: 34px;
        gap: 18px;
    }

    .hero-meta div {
        padding-right: 18px;
    }

    .hero-meta strong {
        font-size: 0.72rem;
    }

    .hero-meta span {
        font-size: 0.58rem;
    }

    .hero-scene {
        min-height: 480px;
        height: 125vw;
        max-height: 560px;
        overflow: clip;
    }

    .scene-card-main {
        animation-name: sceneFloatMainMobile;
        animation-duration: 7s;
        will-change: translate;
    }

    .scene-card-back {
        animation-name: sceneFloatBackMobile;
        animation-duration: 8s;
    }

    .scene-card-front {
        animation-name: sceneFloatFrontMobile;
        animation-duration: 6.5s;
        will-change: translate;
    }

    .scene-card img {
        animation: none;
    }

    .scene-grid,
    .scene-halo {
        animation-duration: 7s;
    }

    @keyframes sceneFloatMainMobile {
        to { translate: 0 -7px; }
    }

    @keyframes sceneFloatBackMobile {
        to { translate: -3px 6px; }
    }

    @keyframes sceneFloatFrontMobile {
        to { translate: 3px -8px; }
    }

    .scene-card-main {
        width: 70%;
        height: 72%;
        left: 15%;
    }

    .scene-card-back {
        width: 38%;
        left: -3%;
    }

    .scene-card-front {
        width: 36%;
        right: -2%;
    }

    .scene-badge {
        width: 82px;
        height: 82px;
        right: 2%;
    }

    .scene-badge span {
        font-size: 1.1rem;
    }

    .scene-card-main figcaption {
        inset: auto 10px 10px;
        padding: 12px;
    }

    .scene-card-main figcaption strong {
        font-size: 0.8rem;
    }

    .scene-card-main figcaption span {
        display: none;
    }

    .signal-track {
        padding: 14px 0;
    }

    .section-space {
        padding-block: 88px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading > div {
        gap: 12px;
    }

    .section-index {
        width: 40px;
        height: 40px;
    }

    .section-heading h2 {
        font-size: clamp(2.7rem, 13vw, 4.3rem);
    }

    .photo-stack {
        min-height: 490px;
    }

    .stack-photo-one {
        width: 68%;
    }

    .stack-photo-two {
        width: 56%;
    }

    .about-copy .lead {
        font-size: 2rem;
    }

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

    .feature-card {
        min-height: 135px;
    }

    .service-card {
        min-height: 340px;
        padding: 24px;
    }

    .service-card.reveal {
        translate: 0 26px;
    }

    .service-card.reveal.is-visible {
        translate: 0;
        transition:
            opacity 0.75s ease,
            translate 0.75s cubic-bezier(.2, .8, .2, 1),
            filter 0.75s ease;
    }

    .service-card.is-visible::after {
        opacity: 0.42;
    }

    .service-card::before {
        animation-duration: 18s;
    }

    .service-card::after {
        animation-duration: 7s;
    }

    .tour-frame {
        min-height: auto;
        padding: 26px 18px;
        border-radius: 24px;
    }

    .tour h2 {
        font-size: 3.35rem;
    }

    .video-stage {
        min-height: 300px;
    }

    .video-shell {
        width: 100%;
        animation: mobileVideoFloat 6s ease-in-out infinite alternate;
        will-change: translate;
    }

    .video-stage::before {
        animation-duration: 22s;
    }

    .video-stage::after {
        animation-duration: 17s;
    }

    @keyframes mobileVideoFloat {
        to { translate: 0 -6px; }
    }

    .video-code {
        right: -9%;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 240px;
        gap: 9px;
    }

    .gallery-card {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-card:active {
        scale: 0.98;
    }

    .gallery-card:nth-child(3n + 1) {
        grid-column: span 2;
        min-height: 360px;
    }

    .cta-panel {
        min-height: 500px;
        padding: 32px 24px;
        border-radius: 24px;
    }

    .cta-panel h2 {
        font-size: 3.4rem;
        line-height: 0.88;
    }

    .button-light {
        width: 100%;
    }

    .contact-panel,
    .map-panel {
        min-height: 500px;
        border-radius: 22px;
    }

    .contact-list > a,
    .contact-row {
        grid-template-columns: 26px 1fr auto;
    }

    .contact-list strong {
        font-size: 0.82rem;
    }

    .footer-inner {
        padding-bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-booking-bar {
        position: fixed;
        z-index: 900;
        left: 8px;
        right: 8px;
        bottom: 8px;
        min-height: 66px;
        padding: 9px 9px 9px 14px;
        padding-bottom: calc(9px + env(safe-area-inset-bottom));
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(10, 13, 11, 0.9);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.46);
        backdrop-filter: blur(20px);
        opacity: 0;
        transform: translateY(calc(100% + 20px));
        will-change: transform, opacity;
    }

    body.is-loaded .mobile-booking-bar {
        animation: mobileBarIn 0.7s 0.75s cubic-bezier(.2, .8, .2, 1) forwards;
    }

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

    .mobile-booking-bar div {
        display: flex;
        flex-direction: column;
    }

    .mobile-booking-bar small {
        color: var(--muted);
        font-size: 0.52rem;
    }

    .mobile-booking-bar strong {
        margin-top: 3px;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.66rem;
    }

    .mobile-booking-bar a {
        padding: 13px 15px;
        border-radius: 12px;
        color: var(--ink);
        background: var(--lime);
        text-decoration: none;
        font-size: 0.7rem;
        font-weight: 800;
        transition: transform 0.2s ease, filter 0.2s ease;
    }

    .mobile-booking-bar a:active {
        transform: scale(0.95);
        filter: brightness(0.9);
    }
}

@media (hover: none) {
    .button::before {
        display: none;
    }

    .service-card.is-visible::after {
        opacity: 0.38;
    }

    .map-panel iframe {
        scale: 1.06;
    }
}

@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;
        translate: none;
        filter: none;
    }

    .page-loader {
        display: none;
    }

    .site-header,
    .mobile-booking-bar {
        opacity: 1;
        transform: none;
    }

    .gallery-card,
    .section-heading.reveal h2 {
        clip-path: none;
        transform: none;
    }
}
