:root {
    --ink: #1c2622;
    --forest: #1f342f;
    --forest-deep: #15251f;
    --sage: #9eae85;
    --sage-soft: #dbe0cf;
    --sand: #d8c8ac;
    --paper: #f4f0e8;
    --white: #fff;
    --muted: #6f7771;
    --line: rgba(28, 38, 34, .16);
    --header-height: 92px;
    --container: min(1320px, calc(100vw - 96px));
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    color: var(--white);
    background: var(--forest);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 12px 18px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.section {
    padding: 140px 0;
}

.section--dark {
    color: var(--white);
    background: var(--forest-deep);
}

.section--sage {
    background: var(--sage-soft);
}

.eyebrow {
    margin: 0 0 22px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.2;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: .98;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 7.5rem);
}

h2 {
    margin-bottom: 32px;
    font-size: clamp(2.7rem, 5vw, 5.7rem);
}

h3 {
    font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.lead {
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    line-height: 1.55;
}

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    padding: 17px 28px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
    transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

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

.button--compact {
    min-height: 46px;
    padding: 14px 20px;
    font-size: .68rem;
}

.button--primary {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.button--primary:hover {
    color: var(--forest);
    background: var(--white);
    border-color: var(--white);
}

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

.button--light:hover {
    color: var(--white);
    background: transparent;
}

.button--dark {
    color: var(--white);
    background: var(--forest-deep);
    border-color: var(--forest-deep);
}

.button--dark:hover {
    color: var(--forest-deep);
    background: transparent;
}

.button--ghost {
    color: var(--white);
    background: transparent;
    border-color: rgba(255,255,255,.55);
}

.button--ghost:hover {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: gap .3s var(--ease), opacity .3s ease;
}

.text-link:hover {
    gap: 18px;
    opacity: .72;
}

.text-link--light {
    color: var(--white);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    color: var(--ink);
    background: rgba(244, 240, 232, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    transition: color .4s ease, background .4s ease, border-color .4s ease, height .4s var(--ease), transform .4s var(--ease);
}

.site-header--transparent:not(.is-scrolled) {
    color: var(--white);
    background: linear-gradient(to bottom, rgba(13, 24, 21, .56), rgba(13, 24, 21, 0));
    border-color: transparent;
    backdrop-filter: none;
}

.site-header.is-scrolled {
    height: 78px;
}

.site-header__inner {
    width: min(1440px, calc(100vw - 64px));
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 36px;
}

.brand {
    display: inline-flex;
    width: 205px;
    align-items: center;
}

.brand img {
    width: 100%;
    height: auto;
    transition: filter .35s ease, width .35s var(--ease);
}

.site-header--transparent:not(.is-scrolled) .brand img {
    filter: brightness(0) invert(1);
}

.site-header.is-scrolled .brand {
    width: 180px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.1vw, 36px);
}

.desktop-nav a {
    position: relative;
    padding: 12px 0;
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header--transparent:not(.is-scrolled) .header-book {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.site-header:not(.site-header--transparent) .header-book,
.site-header.is-scrolled .header-book {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform .35s var(--ease);
}

.menu-toggle span:first-child {
    transform: translateY(-5px);
}

.menu-toggle span:last-child {
    transform: translateY(5px);
}

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

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

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--forest-deep);
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.mobile-menu__inner > a:not(.button) {
    font-size: clamp(1.55rem, 6vw, 3rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.mobile-menu__inner .button {
    margin-top: 22px;
}

.mobile-menu__socials {
    display: flex;
    gap: 26px;
    margin-top: 24px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    align-items: end;
    color: var(--white);
    background: var(--forest-deep);
}

.hero__slides,
.hero__slide,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.045);
    transition: opacity 1.4s ease, transform 8s linear;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__shade {
    background:
        linear-gradient(90deg, rgba(7, 19, 15, .68) 0%, rgba(7, 19, 15, .18) 55%, rgba(7, 19, 15, .05) 100%),
        linear-gradient(to top, rgba(7, 19, 15, .68) 0%, rgba(7, 19, 15, .06) 48%, rgba(7, 19, 15, .2) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(820px, calc(100vw - 96px));
    margin: 0 0 clamp(88px, 12vh, 145px) max(48px, calc((100vw - 1320px) / 2));
}

.hero__eyebrow {
    margin-bottom: 26px;
}

.hero__logo {
    width: clamp(340px, 45vw, 680px);
    height: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.hero__intro {
    max-width: 620px;
    margin-bottom: 38px;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__scroll {
    position: absolute;
    right: max(32px, calc((100vw - 1320px) / 2));
    bottom: 36px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero__scroll i {
    display: block;
    width: 58px;
    height: 1px;
    background: currentColor;
    transform-origin: left;
    animation: linePulse 2.2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { transform: scaleX(.35); opacity: .45; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* Intro */
.intro__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, .75fr);
    gap: clamp(70px, 10vw, 170px);
    align-items: center;
}

.intro__copy {
    max-width: 690px;
}

.intro__copy h1 {
    margin-bottom: 38px;
    font-size: clamp(3rem, 5.7vw, 6.2rem);
}

.intro__copy p:not(.eyebrow) {
    max-width: 620px;
    color: #515b56;
}

.intro__copy .text-link {
    margin-top: 24px;
}

.editorial-image {
    margin: 0;
}

.editorial-image img {
    width: 100%;
    aspect-ratio: .72;
    object-fit: cover;
}

.editorial-image figcaption {
    margin-top: 14px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Experience */
.statement {
    overflow: hidden;
}

.statement__header {
    margin-bottom: 90px;
}

.statement__header h2 {
    max-width: 980px;
    margin-bottom: 0;
}

.experience-strip {
    width: min(1440px, calc(100vw - 64px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.experience-strip__item {
    min-height: 320px;
    padding: 42px 50px 52px;
    border-right: 1px solid rgba(255,255,255,.2);
}

.experience-strip__item:last-child {
    border-right: 0;
}

.experience-strip__item > span,
.category-card__body > span,
.booking-options article > span {
    display: block;
    margin-bottom: 70px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .18em;
}

.experience-strip__item h3 {
    margin-bottom: 20px;
}

.experience-strip__item p {
    max-width: 320px;
    margin-bottom: 0;
    color: rgba(255,255,255,.68);
}

.full-bleed-story {
    position: relative;
    min-height: 105svh;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--white);
}

.full-bleed-story > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 54%;
}

.full-bleed-story__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 23, 19, .72), rgba(11, 23, 19, .08) 65%);
}

.full-bleed-story__content {
    position: relative;
    z-index: 2;
    align-self: end;
    width: var(--container);
    padding-bottom: 100px;
}

.full-bleed-story__content h2 {
    max-width: 780px;
}

/* Generic section heading */
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 70px;
    align-items: end;
    margin-bottom: 72px;
}

.section-heading h2 {
    max-width: 900px;
    margin-bottom: 0;
}

.section-heading > p {
    margin-bottom: 4px;
    color: var(--muted);
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: rgba(255,255,255,.44);
    border: 1px solid var(--line);
}

.category-card__image {
    overflow: hidden;
    aspect-ratio: .78;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.category-card:hover .category-card__image img {
    transform: scale(1.035);
}

.category-card__body {
    padding: 36px 34px 42px;
}

.category-card__body > span {
    margin-bottom: 42px;
    color: var(--muted);
}

.category-card__body h3 {
    min-height: 2em;
    margin-bottom: 20px;
}

.category-card__body p {
    min-height: 78px;
    color: var(--muted);
}

.category-card__body .text-link {
    margin-top: 16px;
}

/* Panorama */
.panorama {
    position: relative;
    overflow: hidden;
    min-height: 78svh;
}

.panorama img {
    width: 100%;
    height: 78svh;
    object-fit: cover;
}

.panorama::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 26, 21, .58), transparent 55%);
    content: "";
}

.panorama__caption {
    position: absolute;
    right: max(48px, calc((100vw - 1320px) / 2));
    bottom: 54px;
    left: max(48px, calc((100vw - 1320px) / 2));
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    color: var(--white);
}

.panorama__caption span {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.panorama__caption strong {
    max-width: 610px;
    font-size: clamp(2rem, 4vw, 4.7rem);
    letter-spacing: -.04em;
    line-height: 1;
    text-align: right;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.gallery-item {
    grid-column: span 6;
    overflow: hidden;
    min-height: 460px;
    border: 0;
    padding: 0;
    background: #ddd;
    cursor: zoom-in;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
    grid-column: span 6;
}

.gallery-item--tall {
    min-height: 720px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter .5s ease;
}

.gallery-item:hover img {
    filter: saturate(1.08);
    transform: scale(1.025);
}

/* Menu */
.menu-teaser__grid {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(400px, 1.2fr);
    align-items: center;
    gap: 80px;
}

.menu-teaser__copy {
    max-width: 650px;
}

.menu-teaser__copy p:not(.eyebrow) {
    max-width: 560px;
    color: #4f5c55;
}

.menu-teaser__copy .button {
    margin-top: 20px;
}

.menu-teaser__art {
    position: relative;
    min-height: 420px;
    color: var(--forest);
}

.menu-teaser__art span {
    position: absolute;
    font-size: clamp(12rem, 28vw, 28rem);
    font-weight: 700;
    letter-spacing: -.13em;
    line-height: .8;
}

.menu-teaser__art span:first-child {
    top: 0;
    left: 4%;
}

.menu-teaser__art span:last-child {
    right: 5%;
    bottom: 0;
    color: transparent;
    -webkit-text-stroke: 2px var(--forest);
}

/* Location */
.location__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
    gap: clamp(60px, 9vw, 140px);
    align-items: center;
}

.location__visual {
    overflow: hidden;
}

.location__visual img {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
}

.location__copy p:not(.eyebrow) {
    max-width: 520px;
    color: var(--muted);
}

.location__copy .button {
    margin-top: 22px;
}

/* Booking banner */
.booking-banner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    gap: 100px;
    align-items: end;
}

.booking-banner__copy {
    max-width: 850px;
}

.booking-banner__copy p:not(.eyebrow) {
    max-width: 570px;
    color: rgba(255,255,255,.68);
}

.booking-banner__copy .button {
    margin-top: 20px;
}

.owner-note {
    border: 1px solid rgba(255,255,255,.28);
    padding: 38px;
}

.owner-note > span {
    display: block;
    margin-bottom: 18px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.owner-note p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.owner-note a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.owner-note--light {
    align-self: start;
    color: var(--ink);
    background: var(--sage-soft);
    border-color: transparent;
}

.owner-note--light .text-link {
    margin-top: 28px;
    text-decoration: none;
}

/* Contact */
.contact__grid {
    display: grid;
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
    gap: clamp(70px, 10vw, 160px);
}

.contact__intro {
    position: sticky;
    top: 130px;
    align-self: start;
}

.contact__intro > p:not(.eyebrow) {
    max-width: 480px;
    color: var(--muted);
}

.contact-lines {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    margin-top: 40px;
    font-size: .9rem;
    font-weight: 700;
}

.contact-lines a {
    border-bottom: 1px solid var(--line);
}

.contact-form {
    display: grid;
    gap: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-form label {
    display: grid;
    gap: 10px;
}

.contact-form label > span {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-form small {
    color: var(--muted);
    font-size: .62rem;
    font-weight: 400;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    outline: 0;
    padding: 14px 0;
    color: var(--ink);
    background: transparent;
    transition: border-color .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--sage);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form__footer {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-form__footer p {
    margin: 0;
    font-size: .8rem;
}

.form-honeypot {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.form-notice {
    border-left: 3px solid currentColor;
    padding: 14px 18px;
    font-size: .85rem;
}

.form-notice--success {
    color: #2f694f;
    background: #e5f0e9;
}

.form-notice--error {
    color: #8a382e;
    background: #f4e5e2;
}

/* Booking page */
.booking-hero,
.menu-hero {
    position: relative;
    min-height: 88svh;
    overflow: hidden;
    display: flex;
    align-items: end;
    color: var(--white);
    background: var(--forest-deep);
}

.booking-hero > img,
.menu-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-hero__shade,
.menu-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 21, 17, .77), rgba(9, 21, 17, .18)), linear-gradient(to top, rgba(9, 21, 17, .5), transparent 55%);
}

.booking-hero__content,
.menu-hero__content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100vw - 96px));
    margin: 0 0 92px max(48px, calc((100vw - 1320px) / 2));
}

.booking-hero__content h1,
.menu-hero__content h1 {
    margin-bottom: 30px;
}

.booking-hero__content > p:not(.eyebrow),
.menu-hero__content > p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 34px;
    font-size: 1.15rem;
}

.booking-details__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    gap: 100px;
}

.booking-options {
    border-top: 1px solid var(--line);
}

.booking-options article {
    display: grid;
    grid-template-columns: 60px minmax(240px, .75fr) minmax(280px, 1fr);
    gap: 28px;
    align-items: baseline;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
}

.booking-options article > span {
    margin: 0;
    color: var(--muted);
}

.booking-options h3,
.booking-options p {
    margin: 0;
}

.booking-options p {
    color: var(--muted);
}

.booking-cta__inner {
    display: grid;
    grid-template-columns: minmax(250px, .75fr) 1fr auto;
    gap: 70px;
    align-items: center;
}

.booking-cta__inner > img {
    width: min(340px, 100%);
}

.booking-cta__inner p {
    margin-bottom: 4px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.booking-cta__inner h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
}

/* Menu page */
.menu-hero > img {
    object-position: center 60%;
}

.coming-soon {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 100px;
    align-items: center;
}

.coming-soon > span {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    color: transparent;
    border: 1px solid var(--forest);
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 700;
    letter-spacing: -.12em;
    line-height: 1;
    -webkit-text-stroke: 2px var(--forest);
}

.coming-soon > div {
    max-width: 660px;
}

.coming-soon > div > p:not(.eyebrow) {
    color: var(--muted);
}

/* Footer */
.site-footer {
    color: var(--white);
    background: #101b17;
}

.site-footer__top {
    width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(320px, .85fr) minmax(300px, .8fr);
    gap: 80px;
    padding: 92px 0 70px;
}

.footer-brand img {
    width: 230px;
    margin-bottom: 26px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 400px;
    color: rgba(255,255,255,.58);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-label {
    display: block;
    margin-bottom: 14px;
    color: rgba(255,255,255,.48);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-links a {
    font-size: .82rem;
}

.official-booking img {
    width: min(300px, 100%);
    margin: 12px 0 26px;
    filter: brightness(0) invert(1);
}

.footer-partner {
    width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 30px 0;
    color: rgba(255,255,255,.55);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-partner img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    object-position: left center;
}

.site-footer__bottom {
    width: var(--container);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 28px 0 38px;
    color: rgba(255,255,255,.42);
    font-size: .68rem;
    letter-spacing: .05em;
}

.site-footer__bottom p {
    margin: 0;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 700;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--white);
    background: var(--forest);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    transition: transform .3s var(--ease), background .3s ease;
}

.whatsapp-float:hover {
    background: #276347;
    transform: translateY(-4px);
}

.whatsapp-float svg {
    width: 24px;
    fill: currentColor;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 46px;
    background: rgba(7, 15, 12, .94);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 18px;
    right: 24px;
    border: 0;
    color: var(--white);
    background: transparent;
    font-size: 2.3rem;
    font-weight: 400;
    cursor: pointer;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal--delay {
    transition-delay: .12s;
}

.reveal--delay-2 {
    transition-delay: .24s;
}

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
    :root {
        --container: min(calc(100vw - 64px), 1120px);
    }

    .site-header__inner {
        width: calc(100vw - 48px);
        grid-template-columns: 200px 1fr auto;
        gap: 20px;
    }

    .brand {
        width: 180px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        position: relative;
        display: inline-flex;
    }

    .header-book {
        display: none;
    }

    .site-header--transparent.menu-active,
    .site-header.menu-active {
        color: var(--white);
        background: transparent;
        border-color: transparent;
        backdrop-filter: none;
    }

    .site-header.menu-active .brand img {
        filter: brightness(0) invert(1);
    }

    .intro__grid,
    .location__grid,
    .contact__grid,
    .booking-details__grid {
        gap: 70px;
    }

    .category-grid {
        gap: 18px;
    }

    .category-card__body {
        padding-inline: 26px;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .official-booking {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    :root {
        --container: calc(100vw - 40px);
        --header-height: 76px;
    }

    .section {
        padding: 94px 0;
    }

    .site-header__inner {
        width: calc(100vw - 32px);
        grid-template-columns: 1fr auto;
    }

    .site-header,
    .site-header.is-scrolled {
        height: 76px;
    }

    .brand,
    .site-header.is-scrolled .brand {
        width: 158px;
    }

    .hero__content,
    .booking-hero__content,
    .menu-hero__content {
        width: calc(100vw - 40px);
        margin-left: 20px;
        margin-bottom: 84px;
    }

    .hero__logo {
        width: min(500px, 88vw);
    }

    .intro__grid,
    .location__grid,
    .booking-banner__grid,
    .booking-details__grid,
    .contact__grid,
    .coming-soon,
    .menu-teaser__grid {
        grid-template-columns: 1fr;
    }

    .intro__grid {
        gap: 56px;
    }

    .editorial-image {
        width: min(620px, 100%);
        margin-left: auto;
    }

    .experience-strip {
        width: calc(100vw - 40px);
        grid-template-columns: 1fr;
    }

    .experience-strip__item {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
        padding: 36px 8px 42px;
    }

    .experience-strip__item:last-child {
        border-bottom: 0;
    }

    .experience-strip__item > span {
        margin-bottom: 34px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 52px;
    }

    .section-heading > p {
        max-width: 580px;
    }

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

    .category-card {
        display: grid;
        grid-template-columns: minmax(260px, .8fr) 1fr;
    }

    .category-card__image {
        aspect-ratio: .82;
    }

    .category-card__body h3,
    .category-card__body p {
        min-height: 0;
    }

    .panorama,
    .panorama img {
        min-height: 66svh;
        height: 66svh;
    }

    .gallery-item,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(5) {
        grid-column: span 12;
        min-height: 520px;
    }

    .gallery-item--tall {
        min-height: 700px;
    }

    .menu-teaser__art {
        min-height: 300px;
    }

    .menu-teaser__art span {
        font-size: clamp(11rem, 42vw, 22rem);
    }

    .location__copy {
        order: -1;
    }

    .booking-banner__grid {
        gap: 52px;
    }

    .contact__intro {
        position: static;
    }

    .booking-options article {
        grid-template-columns: 45px 1fr;
    }

    .booking-options article p {
        grid-column: 2;
    }

    .booking-cta__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-cta__inner > img {
        width: min(360px, 80%);
    }

    .coming-soon {
        gap: 54px;
    }

    .coming-soon > span {
        width: min(520px, 100%);
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .official-booking {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    :root {
        --container: calc(100vw - 32px);
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.9rem);
    }

    h2 {
        font-size: clamp(2.55rem, 12vw, 4.1rem);
    }

    .section {
        padding: 78px 0;
    }

    .button {
        width: 100%;
    }

    .hero {
        min-height: 92svh;
    }

    .hero__slide {
        background-position: 58% center;
    }

    .hero__slide:nth-child(2) {
        background-position: 55% center;
    }

    .hero__content {
        margin-bottom: 78px;
    }

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

    .hero__scroll {
        display: none;
    }

    .hero__intro {
        font-size: 1rem;
    }

    .intro__copy h1 {
        font-size: clamp(3rem, 14vw, 4.7rem);
    }

    .statement__header {
        margin-bottom: 58px;
    }

    .full-bleed-story {
        min-height: 82svh;
    }

    .full-bleed-story > img {
        object-position: 54% center;
    }

    .full-bleed-story__content {
        padding-bottom: 54px;
    }

    .category-card {
        display: block;
    }

    .category-card__image {
        aspect-ratio: .92;
    }

    .category-card__body {
        padding: 30px 24px 36px;
    }

    .category-card__body > span {
        margin-bottom: 30px;
    }

    .panorama__caption {
        right: 20px;
        bottom: 26px;
        left: 20px;
        display: block;
    }

    .panorama__caption span {
        display: block;
        margin-bottom: 14px;
    }

    .panorama__caption strong {
        display: block;
        font-size: 2.25rem;
        text-align: left;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-item,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(5),
    .gallery-item--tall {
        min-height: 480px;
    }

    .menu-teaser__grid {
        min-height: 0;
        gap: 50px;
    }

    .menu-teaser__art {
        min-height: 240px;
    }

    .location__grid,
    .contact__grid,
    .booking-details__grid {
        gap: 48px;
    }

    .booking-banner__grid {
        gap: 42px;
    }

    .owner-note {
        padding: 28px 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form__footer {
        display: grid;
    }

    .booking-hero,
    .menu-hero {
        min-height: 86svh;
    }

    .booking-hero > img {
        object-position: 58% center;
    }

    .menu-hero > img {
        object-position: 46% center;
    }

    .booking-hero__content,
    .menu-hero__content {
        margin-bottom: 62px;
    }

    .booking-options article {
        grid-template-columns: 34px 1fr;
        gap: 18px;
    }

    .site-footer__top {
        padding-top: 72px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-partner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 8px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }

    .lightbox {
        padding: 24px;
    }
}

/* =========================================================
   Route 5 refinement — v1.1
   Single premium category, softer controls and logo fidelity
   ========================================================= */
:root {
    --radius-pill: 999px;
    --radius-card: 26px;
    --radius-soft: 18px;
    --shadow-soft: 0 24px 70px rgba(22, 35, 30, .09);
}

html,
body {
    overflow-x: clip;
}

.button {
    min-height: 54px;
    border-radius: var(--radius-pill);
    padding: 16px 27px;
    letter-spacing: .1em;
    box-shadow: 0 10px 28px rgba(17, 31, 25, .08);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(17, 31, 25, .13);
}

.button:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible,
.gallery-item:focus-visible,
.whatsapp-float:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 4px;
}

.button--primary:hover {
    color: var(--white);
    background: #29443b;
    border-color: #29443b;
}

.button--light:hover {
    color: var(--ink);
    background: #f5f2eb;
    border-color: #f5f2eb;
}

.button--dark:hover {
    color: var(--white);
    background: #29443b;
    border-color: #29443b;
}

.button--ghost:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    border-color: rgba(255, 255, 255, .94);
}

.button--compact {
    min-height: 48px;
    padding: 14px 23px;
}

.menu-toggle {
    border: 1px solid currentColor;
    border-radius: 50%;
}

.brand img,
.hero__logo,
.footer-brand img,
.official-booking img,
.footer-partner img,
.booking-cta__inner > img {
    height: auto !important;
    max-height: none;
    object-fit: contain;
    aspect-ratio: auto;
}

.owner-note,
.owner-note--light {
    border-radius: var(--radius-soft);
}

.whatsapp-float {
    border-radius: 50%;
}

/* Single premium umbrella category */
.category-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    overflow: hidden;
    border: 1px solid rgba(28, 38, 34, .12);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, .52);
    box-shadow: var(--shadow-soft);
}

.category-feature__visual {
    position: relative;
    min-height: 740px;
    overflow: hidden;
    background: var(--sage-soft);
}

.category-feature__main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    transition: transform 1.2s var(--ease);
}

.category-feature:hover .category-feature__main {
    transform: scale(1.018);
}

.category-feature__detail {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: min(34%, 260px);
    aspect-ratio: .78;
    border: 7px solid rgba(255, 255, 255, .92);
    border-radius: 16px;
    box-shadow: 0 22px 50px rgba(18, 31, 26, .2);
    object-fit: cover;
}

.category-feature__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(54px, 6vw, 92px);
}

.category-feature__number {
    display: block;
    margin-bottom: 42px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.category-feature__body h3 {
    max-width: 610px;
    margin-bottom: 28px;
    font-size: clamp(2.45rem, 4vw, 4.9rem);
    line-height: 1;
}

.category-feature__body > p {
    max-width: 610px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.category-feature__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

.category-feature__points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border: 1px solid rgba(28, 38, 34, .14);
    border-radius: var(--radius-pill);
    padding: 9px 14px;
    color: #4f5a54;
    background: rgba(255, 255, 255, .5);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.booking-options--single article {
    grid-template-columns: 60px minmax(220px, .65fr) minmax(320px, 1fr);
    padding: 42px 0;
}

.booking-cta__inner > img {
    width: min(360px, 100%);
    object-position: left center;
}

/* Keep partner marks in their original proportions */
.footer-brand img {
    width: min(250px, 100%);
}

.official-booking__logo {
    display: block;
    width: min(350px, 100%);
    margin: 18px 0 30px;
    padding: 8px 0;
}

.official-booking__logo img,
.official-booking img {
    width: 100%;
    margin: 0;
    object-position: left center;
}

.footer-partner {
    gap: 34px;
    padding-top: 38px;
    padding-bottom: 38px;
}

.footer-partner img {
    width: 118px;
    object-position: left center;
}

.gallery-item,
.location__visual,
.editorial-image img {
    border-radius: 14px;
}

@media (max-width: 1180px) {
    .category-feature {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
    }

    .category-feature__visual {
        min-height: 650px;
    }

    .category-feature__body {
        padding: 56px 44px;
    }
}

@media (max-width: 900px) {
    .mobile-menu {
        overflow-y: auto;
        place-items: stretch;
        padding: calc(var(--header-height) + 30px) 20px 36px;
    }

    .mobile-menu__inner {
        width: min(100%, 620px);
        min-height: calc(100svh - var(--header-height) - 66px);
        margin-inline: auto;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        text-align: left;
    }

    .mobile-menu__inner > a:not(.button) {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
        padding: 13px 0;
        font-size: clamp(1.65rem, 6vw, 2.7rem);
    }

    .mobile-menu__inner .button {
        width: 100%;
        margin-top: 24px;
    }

    .mobile-menu__socials {
        width: 100%;
        justify-content: space-between;
        margin-top: 28px;
    }

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

    .category-feature__visual {
        min-height: 0;
        aspect-ratio: 1.18;
    }

    .category-feature__body {
        padding: 54px 44px 60px;
    }

    .category-feature__body h3 {
        font-size: clamp(2.6rem, 8vw, 4.4rem);
    }

    .booking-options--single article {
        grid-template-columns: 45px 1fr;
    }

    .booking-options--single article p {
        grid-column: 2;
    }

    .official-booking__logo {
        width: min(360px, 90%);
    }
}

@media (max-width: 620px) {
    :root {
        --radius-card: 20px;
        --radius-soft: 16px;
    }

    h1 {
        font-size: clamp(2.75rem, 13.5vw, 4.35rem);
    }

    h2 {
        font-size: clamp(2.35rem, 10.8vw, 3.8rem);
    }

    .site-header__inner {
        width: calc(100vw - 24px);
    }

    .brand,
    .site-header.is-scrolled .brand {
        width: 146px;
    }

    .menu-toggle {
        width: 46px;
        height: 46px;
    }

    .button {
        width: auto;
        min-height: 52px;
        padding: 15px 22px;
        font-size: .69rem;
    }

    .hero__actions .button,
    .booking-hero__content .button,
    .menu-hero__content .button,
    .category-feature__body .button,
    .menu-teaser__copy .button,
    .location__copy .button,
    .booking-banner__copy .button,
    .contact-form__footer .button,
    .booking-cta__inner .button {
        width: 100%;
    }

    .hero__content,
    .booking-hero__content,
    .menu-hero__content {
        width: calc(100vw - 32px);
        margin-left: 16px;
    }

    .hero__logo {
        width: min(470px, 91vw);
    }

    .category-feature__visual {
        aspect-ratio: .91;
    }

    .category-feature__main {
        object-position: center center;
    }

    .category-feature__detail {
        right: 14px;
        bottom: 14px;
        width: 39%;
        border-width: 5px;
        border-radius: 12px;
    }

    .category-feature__body {
        padding: 38px 24px 42px;
    }

    .category-feature__number {
        margin-bottom: 26px;
    }

    .category-feature__body h3 {
        margin-bottom: 22px;
        font-size: clamp(2.35rem, 11vw, 3.35rem);
    }

    .category-feature__body > p {
        margin-bottom: 24px;
        font-size: .94rem;
        line-height: 1.7;
    }

    .category-feature__points {
        gap: 8px;
        margin-bottom: 28px;
    }

    .category-feature__points span {
        min-height: 34px;
        padding: 8px 12px;
        font-size: .61rem;
    }

    .booking-options--single article {
        grid-template-columns: 32px 1fr;
        gap: 16px;
        padding: 30px 0;
    }

    .booking-options--single article p {
        grid-column: 2;
    }

    .footer-brand img {
        width: min(224px, 78vw);
    }

    .official-booking__logo {
        width: min(315px, 88vw);
        margin-top: 12px;
    }

    .footer-partner {
        gap: 22px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-partner img {
        width: 104px;
    }

    .booking-cta__inner > img {
        width: min(320px, 88vw);
    }

    .gallery-item,
    .location__visual,
    .editorial-image img {
        border-radius: 10px;
    }
}

@media (max-width: 390px) {
    .brand,
    .site-header.is-scrolled .brand {
        width: 136px;
    }

    .mobile-menu__inner > a:not(.button) {
        font-size: 1.55rem;
    }

    .category-feature__body {
        padding-inline: 20px;
    }
}
