:root {
    --paper: #f5f1ea;
    --paper-deep: #e7dfd3;
    --ink: #161513;
    --ink-soft: #4f4a44;
    --line: rgba(22, 21, 19, 0.12);
    --line-strong: rgba(22, 21, 19, 0.24);
    --accent: #b68b5e;
    --accent-soft: rgba(182, 139, 94, 0.14);
    --shadow: 0 30px 80px rgba(17, 15, 13, 0.16);
    --radius: 0;
    --max-width: 1440px;

    --serif: "Bodoni Moda", serif;
    --sans: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(182, 139, 94, 0.09), transparent 30%),
        linear-gradient(180deg, #f7f3ec 0%, #f2ede4 52%, #f7f3ec 100%);
    color: var(--ink);
    font-family: var(--sans);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

button,
iframe {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.page-shell {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
}

.site-nav {
    --nav-progress: 0;
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(var(--max-width) - 48px), calc(100% - 48px));
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 22px;
    background: rgb(16 15 14 / calc(var(--nav-progress) * 0.82));
    border: 1px solid rgb(255 255 255 / calc(var(--nav-progress) * 0.16));
    backdrop-filter: blur(18px);
    color: #f7f2ea;
    box-shadow: 0 18px 44px rgb(0 0 0 / calc(var(--nav-progress) * 0.18));
    transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.nav-brand,
.nav-links a {
    font-size: 0.76rem;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

.nav-brand {
    font-family: var(--serif);
    font-size: 1.45rem;
    letter-spacing: 0.04rem;
    text-transform: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-cta {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.nav-cta:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: end;
    gap: 24px;
    padding: 112px 32px 36px;
    isolation: isolate;
}

.hero-backdrop,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-backdrop {
    z-index: -3;
    overflow: hidden;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 22% 88% at -6% 50%, rgba(245, 241, 234, 0.92) 0%, rgba(245, 241, 234, 0.46) 28%, rgba(245, 241, 234, 0.12) 46%, rgba(245, 241, 234, 0) 62%),
        radial-gradient(ellipse 22% 88% at 106% 50%, rgba(245, 241, 234, 0.92) 0%, rgba(245, 241, 234, 0.46) 28%, rgba(245, 241, 234, 0.12) 46%, rgba(245, 241, 234, 0) 62%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.64) 0%, rgba(10, 10, 10, 0.28) 45%, rgba(10, 10, 10, 0.42) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.24) 0%, rgba(10, 10, 10, 0.55) 100%);
}

.hero-backdrop img {
    transform: scale(1.04);
    transform-origin: center;
    transition: transform 0.5s ease-out;
}

.hero-overlay {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(245, 241, 234, 0) 62%, rgba(245, 241, 234, 0.22) 82%, rgba(245, 241, 234, 0.84) 100%);
}

.hero-content {
    max-width: 760px;
    color: #f7f2ea;
    padding-top: 96px;
}

.eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.28rem;
    text-transform: uppercase;
    color: var(--accent);
}

.hero .eyebrow,
.hero-panel-label {
    color: rgba(247, 242, 234, 0.7);
}

.hero-title,
.section-title,
.detail-list h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.hero-title {
    max-width: 10ch;
    margin-top: 26px;
    font-size: clamp(4.6rem, 10vw, 8.9rem);
}

.hero-text,
.section-body,
.booking-stage-note,
.footer-line {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-soft);
}

.hero-text {
    max-width: 34ch;
    margin-top: 24px;
    color: rgba(247, 242, 234, 0.78);
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid var(--line-strong);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.btn-primary {
    background: #f7f2ea;
    border-color: #f7f2ea;
    color: var(--ink);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: inherit;
}

.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.34);
    color: #f7f2ea;
}

.hero-panel {
    align-self: end;
    padding: 26px;
    background: rgba(16, 15, 14, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f7f2ea;
    backdrop-filter: blur(18px);
}

.hero-panel-label,
.booking-stage-label {
    font-size: 0.7rem;
    letter-spacing: 0.24rem;
    text-transform: uppercase;
}

.hero-panel-copy {
    margin: 18px 0 22px;
    display: grid;
    gap: 8px;
    font-family: var(--serif);
    font-size: 2rem;
}

.hero-panel-meta {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(247, 242, 234, 0.72);
}

.intro-band,
.statement-strip {
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 56px 0 64px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.intro-band-label,
.statement-strip-label {
    padding-top: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.24rem;
    text-transform: uppercase;
    color: var(--accent);
}

.intro-band-copy,
.statement-strip-copy {
    max-width: 760px;
}

.intro-band-copy h2,
.statement-strip-copy h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.intro-band-copy p,
.statement-strip-copy p {
    max-width: 44ch;
    margin-top: 18px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.feature,
.immersive-grid,
.gallery-section,
.booking-section,
.site-footer {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.feature,
.booking-section {
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
    gap: clamp(26px, 4vw, 60px);
    align-items: center;
    padding: 88px 0;
}

.feature-media,
.booking-stage,
.gallery-tile,
.immersive-card {
    overflow: hidden;
    background: #ddd4c7;
}

.feature-media {
    min-height: 760px;
}

.feature-copy {
    max-width: 560px;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5.9rem);
    margin: 16px 0 22px;
    max-width: 10ch;
}

.detail-list {
    display: grid;
    gap: 20px;
    margin-top: 34px;
}

.detail-list article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.detail-list span {
    font-family: var(--serif);
    font-size: 1.45rem;
    color: var(--accent);
}

.detail-list h3 {
    font-size: 1.85rem;
    margin-bottom: 8px;
}

.detail-list p {
    color: var(--ink-soft);
    line-height: 1.8;
}

.immersive-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: start;
    padding: 32px 0 104px;
}

.immersive-copy {
    position: sticky;
    top: 104px;
}

.immersive-copy .section-title,
.gallery-copy .section-title,
.booking-copy .section-title {
    max-width: 9ch;
}

.immersive-rail {
    display: grid;
    gap: 18px;
}

.immersive-card {
    height: min(76vh, 760px);
}

.immersive-card-offset {
    width: 78%;
    justify-self: end;
}

.gallery-section {
    padding: 18px 0 96px;
}

.legal-section {
    width: min(1320px, 100%);
    margin: 0 auto;
    padding: 0 0 88px;
    border-top: 1px solid var(--line);
}

.legal-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: end;
    padding: 72px 0 28px;
}

.legal-copy .section-title {
    max-width: 9ch;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.legal-card {
    min-height: 260px;
    padding: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(231, 223, 211, 0.32));
}

.legal-card-label {
    margin-bottom: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.24rem;
    text-transform: uppercase;
    color: var(--accent);
}

.legal-card h3 {
    margin-bottom: 12px;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.9rem;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.legal-card p:last-child {
    color: var(--ink-soft);
    line-height: 1.8;
}

.gallery-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr 0.95fr;
    grid-auto-rows: 270px;
    gap: 14px;
}

.gallery-tile {
    position: relative;
    cursor: pointer;
}

.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(9, 9, 9, 0.42) 100%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.gallery-tile img,
.immersive-card img,
.feature-media img {
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
    opacity: 1;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img,
.immersive-card:hover img,
.feature-media:hover img {
    transform: scale(1.04);
}

.gallery-tile-tall {
    grid-row: span 2;
}

.gallery-tile-wide {
    grid-column: span 2;
}

.statement-strip {
    padding-top: 26px;
    border-top: 1px solid var(--line);
    border-bottom: none;
}

.booking-section {
    align-items: start;
    padding-top: 92px;
    padding-bottom: 110px;
    border-top: 1px solid var(--line);
}

.booking-link {
    margin-top: 28px;
}

.booking-stage {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.36);
    box-shadow: var(--shadow);
}

.booking-stage-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 241, 234, 0.84);
}

.booking-stage-note {
    font-size: 0.95rem;
}

.booking-frame,
.booking-embed {
    min-height: 960px;
}

.booking-frame {
    background: #f8f4ed;
}

.booking-embed {
    width: 100%;
    border: 0;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 0 0 42px;
    border-top: 1px solid var(--line);
}

.cookie-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    width: min(560px, calc(100% - 24px));
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(16, 15, 14, 0.88);
    color: #f7f2ea;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.cookie-banner.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
}

.cookie-banner-label {
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.68);
}

.cookie-banner-copy p:last-child {
    line-height: 1.7;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    min-height: 48px;
    padding: 0 18px;
}

.cookie-banner .btn-secondary {
    border-color: rgba(255, 255, 255, 0.24);
    color: #f7f2ea;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 0.76rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(7, 7, 7, 0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 50;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-dialog {
    width: min(92vw, 1100px);
    max-height: calc(100vh - 72px);
    background: rgba(245, 241, 234, 0.98);
    padding: 14px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.lightbox-dialog img {
    max-height: calc(100vh - 100px);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(7, 7, 7, 0.42);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.fade-in-nav {
    animation: fadeNav 1.2s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.28s; }
.delay-3 { animation-delay: 0.45s; }

.scroll-fade {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeNav {
    from {
        opacity: 0;
        transform: translate(-50%, -12px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 24px;
    }

    .hero-panel {
        max-width: 360px;
    }

    .feature,
    .immersive-grid,
    .booking-section,
    .gallery-copy,
    .legal-copy {
        grid-template-columns: 1fr;
    }

    .immersive-copy {
        position: static;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
    }

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

    .intro-band,
    .statement-strip {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-tile-wide {
        grid-column: span 1;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(var(--max-width), calc(100% - 20px));
    }

    .site-nav {
        top: 8px;
        width: calc(100% - 16px);
        gap: 12px;
        padding: 12px 14px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .nav-brand {
        font-size: 0.96rem;
        line-height: 1;
    }

    .nav-cta {
        padding: 10px 14px;
        font-size: 0.72rem;
        letter-spacing: 0.16rem;
    }

    .hero {
        gap: 14px;
        padding: 78px 14px 14px;
        min-height: auto;
    }

    .hero-content {
        max-width: none;
        padding-top: 48px;
    }

    .hero-title {
        margin-top: 14px;
        font-size: clamp(2.8rem, 13.2vw, 4.15rem);
        max-width: 7ch;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .hero-actions a,
    .booking-link {
        width: 100%;
    }

    .hero-panel {
        display: none;
    }

    .intro-band,
    .statement-strip,
    .feature,
    .immersive-grid,
    .gallery-section,
    .booking-section {
        padding-left: 0;
        padding-right: 0;
    }

    .intro-band,
    .statement-strip {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .intro-band-copy h2,
    .statement-strip-copy h2,
    .section-title {
        max-width: none;
    }

    .eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.2rem;
    }

    .hero-text,
    .section-body,
    .booking-stage-note,
    .footer-line {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .hero-text {
        max-width: 23ch;
        margin-top: 16px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 50px;
        padding: 0 18px;
        font-size: 0.72rem;
        letter-spacing: 0.15rem;
    }

    .section-title {
        font-size: 2.45rem;
        line-height: 0.98;
    }

    .feature,
    .booking-section {
        gap: 22px;
        padding-top: 54px;
        padding-bottom: 62px;
    }

    .feature-media,
    .immersive-card {
        min-height: 0;
        height: 340px;
    }

    .detail-list article {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-copy {
        gap: 12px;
        margin-bottom: 18px;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .legal-section {
        padding-bottom: 64px;
    }

    .legal-copy {
        gap: 12px;
        padding: 56px 0 18px;
    }

    .legal-card {
        min-height: 0;
    }

    .gallery-tile-tall,
    .gallery-tile-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .booking-stage-head {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .booking-frame,
    .booking-embed {
        min-height: 700px;
    }

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

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-banner-actions .cookie-btn {
        flex: 1 1 180px;
    }

    .lightbox {
        padding: 12px;
    }

    .lightbox-dialog {
        width: 100%;
        padding: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .page-shell {
        width: min(var(--max-width), calc(100% - 12px));
    }

    .site-nav {
        top: 6px;
        width: calc(100% - 12px);
        padding: 10px 12px;
    }

    .nav-brand {
        font-size: 0.88rem;
    }

    .nav-cta {
        padding: 9px 12px;
        font-size: 0.68rem;
    }

    .hero {
        padding: 70px 12px 12px;
    }

    .hero-content {
        padding-top: 42px;
    }

    .hero-title {
        font-size: clamp(2.6rem, 13vw, 3.7rem);
        max-width: 6.6ch;
    }

    .hero-text {
        max-width: 20ch;
        font-size: 0.92rem;
    }

    .intro-band,
    .statement-strip {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .intro-band-copy h2,
    .statement-strip-copy h2,
    .section-title {
        font-size: 2.1rem;
    }

    .feature-media,
    .immersive-card {
        height: 300px;
    }

    .gallery-mosaic {
        grid-auto-rows: 250px;
    }
}
