:root {
    --ink: #3a3c37;
    --moss: #3f413d;
    --moss-2: #696963;
    --cream: #ffffff;
    --warm: #e7e6e2;
    --sand: #bda09c;
    --clay: #b1908c;
    --white: #fff;
    --muted: #70716b;
    --line: rgba(58, 60, 55, .14);
    --shadow: 0 24px 70px rgba(58, 60, 55, .14);
    --radius: 6px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 100;
    transform: translateY(-140%);
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
}
.skip-link:focus { transform: translateY(0); }

.topbar {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 18px;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 74px;
    padding: 10px 16px;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: var(--radius);
    background: rgba(25, 25, 23, .22);
    backdrop-filter: blur(18px);
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.topbar.scrolled {
    color: var(--ink);
    background: rgba(255,255,255,.94);
    border-color: rgba(58,60,55,.1);
    box-shadow: 0 16px 48px rgba(58,60,55,.12);
}

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

.brand-symbol {
    width: 45px;
    height: 45px;
    border: 1px solid currentColor;
    border-radius: 50%;
    position: relative;
    flex: 0 0 45px;
}
.brand-symbol::before,
.brand-symbol::after {
    content: "";
    position: absolute;
    background: currentColor;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.brand-symbol::before { width: 17px; height: 1px; }
.brand-symbol::after { width: 1px; height: 17px; }

.brand strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    line-height: 1.05;
}
.brand em {
    display: block;
    margin-top: 3px;
    font-size: .72rem;
    font-style: normal;
    text-transform: uppercase;
    color: currentColor;
    opacity: .78;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.main-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    font-size: .92rem;
}
.main-nav a:hover,
.main-nav a.active { background: rgba(255,255,255,.18); }
.topbar.scrolled .main-nav a:hover,
.topbar.scrolled .main-nav a.active { background: rgba(38,63,50,.1); }

.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.text-link { white-space: nowrap; font-size: .9rem; }
.outline-action,
.solid-action,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 3px;
    font-weight: 800;
    border: 1px solid currentColor;
    cursor: pointer;
}
.solid-action,
.btn-dark {
    background: var(--moss);
    color: var(--white);
    border-color: var(--moss);
}
.outline-action,
.btn-outline {
    background: transparent;
    color: inherit;
}
.btn-light {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}
.btn-glass {
    color: var(--white);
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.62);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 3px;
    background: transparent;
    color: inherit;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    color: var(--white);
    overflow: hidden;
}

.hero-slider,
.hero-slider img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-slider {
    overflow: hidden;
    transform: translate3d(0, var(--hero-shift, 0px), 0);
    will-change: transform;
}
.hero-slider img {
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    filter: saturate(.95) brightness(.9);
    will-change: opacity, transform, filter;
    animation: heroFilm 28s cubic-bezier(.22, .8, .18, 1) infinite;
    animation-delay: calc(var(--i) * 7s);
}
@keyframes heroFilm {
    0% { opacity: 0; transform: scale(1); filter: saturate(.9) brightness(.84); }
    5% { opacity: 1; }
    24% { opacity: 1; transform: scale(1.075); filter: saturate(.98) brightness(.94); }
    31% { opacity: 0; transform: scale(1.105); filter: saturate(.92) brightness(.82); }
    100% { opacity: 0; transform: scale(1.105); }
}
.hero-shade {
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,.08), rgba(0,0,0,0) 28%),
        linear-gradient(90deg, rgba(28,28,26,.34), rgba(28,28,26,.12) 52%, rgba(28,28,26,.38)),
        linear-gradient(0deg, rgba(28,28,26,.42), rgba(28,28,26,.03) 42%);
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 520px;
    text-align: center;
    text-shadow: 0 14px 44px rgba(0,0,0,.36);
}
.mini-label,
.section-label {
    margin: 0 0 14px;
    color: var(--sand);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
    line-height: 1.04;
}
h1 {
    margin: 0;
    font-size: clamp(2.35rem, 4.1vw, 4.05rem);
    max-width: 560px;
    font-weight: 400;
}
.hero-copy p:not(.mini-label) {
    max-width: 430px;
    margin: 16px auto 0;
    font-size: clamp(.9rem, 1vw, 1rem);
    color: rgba(255,255,255,.82);
}
.hero-mark {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    color: rgba(255,255,255,.86);
}
.hero-dots {
    position: absolute;
    right: 34px;
    top: 50%;
    z-index: 2;
    display: grid;
    gap: 16px;
    transform: translateY(-50%);
}
.hero-dots span {
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    background: rgba(255,255,255,.54);
    animation: dotPulse 28s linear infinite;
    animation-delay: calc(var(--dot, 0) * 7s);
}
.hero-dots span:nth-child(1) { --dot: 0; }
.hero-dots span:nth-child(2) { --dot: 1; }
.hero-dots span:nth-child(3) { --dot: 2; }
.hero-dots span:nth-child(4) { --dot: 3; }
@keyframes dotPulse {
    0%, 31%, 100% { opacity: .36; transform: rotate(45deg) scale(.78); }
    5%, 24% { opacity: .92; transform: rotate(45deg) scale(1); }
}

.slider-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 4px;
    background: rgba(255,255,255,.22);
}
.slider-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--sand);
    animation: progress 7s linear infinite;
}
@keyframes progress {
    from { width: 0; }
    to { width: 100%; }
}

.intro,
.booking-band,
.location,
.gallery {
    padding: clamp(76px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
    gap: clamp(30px, 7vw, 110px);
    max-width: 1320px;
    margin: 0 auto;
}
h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.25vw, 2.25rem);
    font-weight: 400;
}
.intro-copy p,
.booking-heading p,
.gallery-intro p,
.story-text p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 30px;
    background: var(--line);
    border: 1px solid var(--line);
}
.benefits span {
    min-height: 92px;
    padding: 18px;
    background: var(--cream);
    font-weight: 800;
}

.panorama-card {
    position: relative;
    min-height: 520px;
    margin: 0 clamp(20px, 5vw, 72px);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--white);
    box-shadow: var(--shadow);
}
.panorama-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.panorama-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,23,20,.76), rgba(13,23,20,.1));
}
.panorama-card div {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: clamp(34px, 7vw, 78px);
}
.panorama-card h2 { color: var(--white); }
.panorama-card a,
.story-text a,
.feature-caption a {
    display: inline-flex;
    margin-top: 24px;
    color: inherit;
    font-weight: 900;
    border-bottom: 2px solid currentColor;
}

.word-gallery {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    min-height: 720px;
    padding: clamp(76px, 9vw, 128px) clamp(20px, 5vw, 72px);
    gap: clamp(22px, 4vw, 56px);
    align-items: stretch;
}
.word-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 4vw, 52px);
    background: var(--warm);
    color: var(--ink);
    border-radius: var(--radius);
}
.word-panel p { margin: 0 0 40px; color: var(--clay); font-weight: 900; }
.word-panel h2 {
    color: var(--ink);
    font-size: clamp(2.5rem, 5.2vw, 5rem);
    line-height: 1;
}
.word-panel span {
    display: block;
    max-width: 360px;
    margin-top: 28px;
    color: var(--muted);
}

.feature-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 720px;
    box-shadow: var(--shadow);
    background: var(--warm);
}
.feature-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.1s ease, transform 6.5s ease;
}
.feature-slider img.is-active {
    opacity: 1;
    transform: scale(1);
}
.feature-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,23,20,.74), rgba(13,23,20,0) 52%);
}
.feature-caption {
    position: absolute;
    left: clamp(22px, 4vw, 52px);
    right: clamp(22px, 4vw, 52px);
    bottom: clamp(22px, 4vw, 52px);
    z-index: 1;
    color: var(--white);
}
.feature-caption strong {
    display: block;
    max-width: 620px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2.55vw, 2.55rem);
    line-height: 1.08;
}

.story-section {
    padding: 0 clamp(20px, 5vw, 72px) clamp(76px, 9vw, 128px);
}
.story-block {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 92px);
    align-items: center;
    max-width: 1320px;
    margin: 0 auto clamp(52px, 8vw, 104px);
}
.story-block.reverse .story-image { order: 2; }
.story-image {
    min-height: 570px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.story-image img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
}
.story-text h2 {
    margin-bottom: 22px;
    font-size: clamp(2.6rem, 4.8vw, 4.8rem);
    line-height: 1;
}

.booking-band {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(340px, 1fr);
    gap: clamp(30px, 7vw, 90px);
    background: var(--moss);
    color: var(--white);
}
.booking-heading h2 { color: var(--white); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1; }
.booking-heading p { color: rgba(255,255,255,.75); margin-top: 20px; max-width: 520px; }
.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: clamp(22px, 4vw, 38px);
    background: var(--cream);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.booking-form label { display: grid; gap: 7px; }
.booking-form .wide { grid-column: 1 / -1; }
.booking-form span { font-size: .85rem; font-weight: 900; color: var(--muted); }
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 13px 12px;
    background: #fffaf2;
    color: var(--ink);
}
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .92rem; }

.gallery {
    max-width: 1440px;
    margin: 0 auto;
}
.gallery-intro {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 36px;
    align-items: end;
    margin-bottom: 36px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 14px;
}
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

.location {
    display: grid;
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1fr);
    gap: 18px;
    padding-top: 0;
}
.location-card {
    padding: clamp(26px, 4vw, 44px);
    border-radius: var(--radius);
    background: var(--warm);
}
address {
    margin: 24px 0;
    font-style: normal;
    font-weight: 800;
}
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.map {
    width: 100%;
    min-height: 470px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    padding: 44px clamp(20px, 5vw, 72px) 96px;
    background: var(--ink);
    color: var(--white);
}
.footer strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}
.footer p { max-width: 560px; color: rgba(255,255,255,.68); }
.footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}
.footer nav a {
    padding: 0;
    color: rgba(255,255,255,.78);
    font-size: .95rem;
    line-height: 1.2;
}
.footer nav a:hover {
    color: var(--white);
}

.mobile-cta { display: none; }

.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 1.05s cubic-bezier(.2, .8, .18, 1), transform 1.05s cubic-bezier(.2, .8, .18, 1);
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 1120px) {
    .topbar {
        grid-template-columns: auto 1fr;
    }
    .main-nav {
        position: fixed;
        left: 18px;
        right: 18px;
        top: 98px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: rgba(245,239,228,.98);
        color: var(--ink);
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .menu-toggle { display: block; }
    .text-link { display: none; }
    .hero {
        grid-template-columns: 22px minmax(0, 1fr) 22px;
        gap: 20px;
    }
    .hero-copy { grid-column: 2; }
    .intro,
    .word-gallery,
    .story-block,
    .booking-band,
    .gallery-intro,
    .location {
        grid-template-columns: 1fr;
    }
    .story-block.reverse .story-image { order: 0; }
    .feature-slider { min-height: 560px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .topbar {
        left: 10px;
        right: 10px;
        top: 10px;
        min-height: 62px;
        padding: 8px 10px;
    }
    .brand { min-width: 0; }
    .brand-symbol { width: 38px; height: 38px; flex-basis: 38px; }
    .brand strong { font-size: .98rem; }
    .brand em,
    .outline-action,
    .solid-action { display: none; }
    .hero {
        min-height: 100svh;
        padding: 112px 0 34px;
        grid-template-columns: 18px minmax(0, 1fr) 18px;
    }
    .hero-copy {
        width: 100%;
        padding: 0 18px;
    }
    .hero-dots {
        display: none;
    }
    h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
    h2 { font-size: clamp(2rem, 9vw, 3.1rem); }
    .hero-buttons .btn { width: 100%; }
    .intro,
    .word-gallery,
    .booking-band,
    .location,
    .gallery {
        padding: 66px 18px;
    }
    .panorama-card {
        margin: 0 18px;
        min-height: 460px;
    }
    .benefits,
    .booking-form { grid-template-columns: 1fr; }
    .word-gallery { min-height: 0; }
    .word-panel h2,
    .story-text h2,
    .booking-heading h2 {
        font-size: clamp(4rem, 21vw, 6.8rem);
    }
    .feature-slider,
    .story-image,
    .story-image img {
        min-height: 430px;
    }
    .feature-caption strong { font-size: 2rem; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    .gallery-grid .tall,
    .gallery-grid .wide {
        grid-row: auto;
        grid-column: auto;
    }
    .footer {
        display: block;
        padding: 36px 22px 112px;
    }
    .footer nav {
        justify-content: flex-start;
        gap: 14px 18px;
        margin-top: 24px;
    }
    .footer nav a {
        font-size: .92rem;
    }
    .mobile-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 35;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 6px;
        border-radius: 7px;
        background: rgba(25,33,31,.94);
        box-shadow: 0 14px 38px rgba(0,0,0,.28);
    }
    .mobile-cta a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: var(--white);
        font-weight: 900;
        background: rgba(255,255,255,.08);
    }
    .mobile-cta a:last-child {
        background: var(--sand);
        color: var(--ink);
    }
}
