:root {
    color-scheme: dark;
    --ink: #090806;
    --black: #0d0b09;
    --charcoal: #15120f;
    --charcoal-2: #1d1813;
    --brown: #2b1e16;
    --leather: #70452f;
    --ivory: #f1e8d8;
    --paper: #e6dac5;
    --brass: #b79559;
    --brass-light: #d2b779;
    --text: #f5ede0;
    --muted: #c5b8a5;
    --dark-text: #1b1510;
    --dark-muted: #665b4d;
    --line: rgba(210, 183, 121, 0.26);
    --line-dark: rgba(35, 25, 18, 0.2);
    --error: #a33b32;
    --display: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
    --body: "Manrope", Inter, "Segoe UI", Arial, sans-serif;
    --container: 78rem;
    --gutter: clamp(1rem, 4vw, 4rem);
    --section-space: clamp(4.75rem, 10vw, 8.5rem);
    --topbar-height: 2rem;
    --header-height: 4.25rem;
    --chrome-height: calc(var(--topbar-height) + var(--header-height));
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --fast: 180ms ease;
    --base: 360ms var(--ease);
    --focus: 0 0 0 3px rgba(183, 149, 89, 0.45);
    --deep-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.32);
}

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

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

body {
    min-width: 20rem;
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--black);
    color: var(--text);
    font-family: var(--body);
    font-size: clamp(0.9rem, 0.4vw + 0.82rem, 1rem);
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

main,
section,
footer {
    display: block;
    position: relative;
}

section[id] {
    scroll-margin-top: calc(var(--chrome-height) + 0.75rem);
}

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

img {
    height: auto;
}

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

button,
input,
select,
textarea {
    margin: 0;
    font: inherit;
}

button,
select {
    cursor: pointer;
}

button {
    color: inherit;
}

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

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

[hidden] {
    display: none !important;
}

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

:focus-visible {
    outline: 2px solid var(--brass-light);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: max(0.75rem, env(safe-area-inset-top));
    left: max(0.75rem, env(safe-area-inset-left));
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    transform: translateY(-160%);
    background: var(--ivory);
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform var(--fast);
}

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

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

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: var(--leather);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 2rem;
    height: 1px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
    transform-origin: left;
}

.eyebrow--light {
    color: var(--brass-light);
}

.section-heading {
    margin-bottom: clamp(2.6rem, 6vw, 4.75rem);
}

.section-heading h2,
.experience__content h2,
.booking__intro h2,
.faq__grid > header h2 {
    max-width: 13ch;
    font-family: var(--display);
    font-size: clamp(2.7rem, 7vw, 5.35rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.91;
    text-wrap: balance;
}

.section-heading > p,
.section-heading--split > p {
    max-width: 38rem;
    color: var(--dark-muted);
}

.section-heading--light {
    color: var(--text);
}

.section-heading--light > p {
    color: var(--muted);
}

.section-heading--split {
    display: grid;
    gap: 1.35rem;
}

.button {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 0.75rem 1.15rem;
    background: transparent;
    color: inherit;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition:
        color var(--fast),
        background-color var(--fast),
        border-color var(--fast),
        transform var(--fast);
}

.button:active {
    transform: translateY(1px);
}

.button--primary {
    border-color: var(--brass);
    background: var(--brass);
    color: var(--ink);
}

.button--compact {
    min-height: 2.75rem;
    padding-inline: 0.9rem;
    border-color: rgba(183, 149, 89, 0.7);
    color: var(--ivory);
    white-space: nowrap;
}

.button--dark {
    border-color: var(--dark-text);
    background: var(--dark-text);
    color: var(--ivory);
}

.button--outline-dark {
    border-color: rgba(27, 21, 16, 0.38);
    color: var(--dark-text);
}

.text-link {
    position: relative;
    min-height: 2.75rem;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--dark-text);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.text-link::after {
    position: absolute;
    right: 0;
    bottom: 0.25rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.5;
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform var(--base);
}

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

/* Sticky information and navigation chrome */
.site-chrome {
    position: sticky;
    z-index: 80;
    top: 0;
    height: var(--chrome-height);
    margin-bottom: calc(-1 * var(--chrome-height));
    border-bottom: 1px solid transparent;
    background: linear-gradient(to bottom, rgba(7, 6, 4, 0.97), rgba(7, 6, 4, 0.64) 72%, transparent);
    transition:
        background-color var(--base),
        border-color var(--base),
        box-shadow var(--base);
}

.site-chrome.is-scrolled {
    border-bottom-color: rgba(183, 149, 89, 0.25);
    background: rgba(9, 8, 6, 0.98);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.2);
}

.topbar {
    height: var(--topbar-height);
    border-bottom: 1px solid rgba(183, 149, 89, 0.18);
    color: var(--muted);
}

.topbar__inner {
    min-height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.topbar__inner > * {
    overflow: hidden;
    font-size: 0.59rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.topbar__hours {
    display: none;
}

.topbar__location {
    color: var(--brass-light);
}

.site-header {
    height: var(--header-height);
}

.site-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.wordmark {
    min-height: 2.75rem;
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    justify-content: center;
    color: var(--ivory);
    line-height: 1;
}

.wordmark > span {
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.wordmark > small {
    margin-top: 0.25rem;
    color: var(--brass-light);
    font-family: var(--body);
    font-size: 0.49rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    white-space: nowrap;
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    position: relative;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color var(--fast);
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.3rem;
    left: 0;
    height: 1px;
    background: var(--brass);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--base);
}

.desktop-nav a[aria-current="page"] {
    color: var(--ivory);
}

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

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
}

.header-booking {
    display: none;
}

.menu-toggle,
.menu-close,
.lightbox__bar button {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    border: 1px solid rgba(241, 232, 216, 0.34);
    border-radius: 0;
    padding: 0;
    background: rgba(8, 7, 5, 0.35);
}

.menu-toggle {
    display: grid;
    place-content: center;
    gap: 0.38rem;
}

.menu-toggle span {
    width: 1.25rem;
    height: 1px;
    display: block;
    background: var(--ivory);
    transition: transform var(--fast);
}

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

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

/* Full viewport mobile menu */
.menu-overlay {
    position: fixed;
    z-index: 890;
    inset: 0;
    background: rgba(2, 2, 1, 0.76);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--base),
        visibility var(--base);
}

.menu-overlay.is-open,
.menu-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    z-index: 900;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding:
        max(1rem, env(safe-area-inset-top))
        max(var(--gutter), env(safe-area-inset-right))
        max(1.5rem, env(safe-area-inset-bottom))
        max(var(--gutter), env(safe-area-inset-left));
    overflow-y: auto;
    background:
        linear-gradient(125deg, rgba(112, 69, 47, 0.18), transparent 45%),
        var(--charcoal);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
        opacity var(--base),
        visibility var(--base),
        transform var(--base);
}

.mobile-menu.is-open,
.mobile-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu__head {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.wordmark--menu {
    margin: 0;
}

.menu-close {
    position: relative;
}

.menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--ivory);
}

.menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__links {
    display: grid;
    margin-block: auto;
    padding-block: clamp(2rem, 7vh, 4.5rem);
}

.mobile-menu__links a {
    min-height: 3.6rem;
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    align-items: center;
    gap: 0.65rem;
    border-bottom: 1px solid rgba(241, 232, 216, 0.13);
    color: var(--ivory);
    font-family: var(--display);
    font-size: clamp(1.85rem, 9vw, 3.15rem);
    font-weight: 600;
    line-height: 1;
    transition:
        color var(--fast),
        padding-left var(--base);
}

.mobile-menu__links a > span {
    color: var(--brass-light);
    font-family: var(--body);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.mobile-menu__links a[aria-current="page"] {
    padding-left: 0.45rem;
    color: var(--brass-light);
}

.mobile-menu__cta {
    width: 100%;
}

.mobile-menu__meta {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.59rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
}

/* Cinematic hero */
.hero {
    min-height: max(35.5rem, 100svh);
    display: grid;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
}

.hero::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 0.5px, transparent 0.7px);
    background-size: 4px 4px;
    content: "";
    opacity: 0.13;
    pointer-events: none;
}

.hero__media,
.hero__shade,
.hero__frame {
    position: absolute;
    inset: 0;
}

.hero__media {
    z-index: -2;
    overflow: hidden;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 51%;
    filter: saturate(0.82) contrast(1.08) brightness(0.8);
    transform: scale(1.025);
    animation: hero-settle 18s ease-out both;
}

.hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 5, 4, 0.97) 0%, rgba(7, 5, 4, 0.79) 44%, rgba(7, 5, 4, 0.28) 82%, rgba(7, 5, 4, 0.42) 100%),
        linear-gradient(0deg, rgba(7, 5, 4, 0.98), rgba(7, 5, 4, 0.08) 52%, rgba(7, 5, 4, 0.55));
}

.hero__frame {
    z-index: 1;
    inset: calc(var(--chrome-height) + 1rem) var(--gutter) 1rem;
    border: 1px solid rgba(210, 183, 121, 0.2);
    pointer-events: none;
}

.hero__inner {
    z-index: 2;
    min-height: inherit;
    display: grid;
    align-content: end;
    gap: clamp(1rem, 3vh, 2rem);
    padding-top: calc(var(--chrome-height) + clamp(2.5rem, 9vh, 6rem));
    padding-bottom: clamp(1rem, 3vh, 2rem);
}

.hero__location {
    position: absolute;
    top: calc(var(--chrome-height) + 1.8rem);
    right: calc(var(--gutter) + 0.75rem);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--brass-light);
}

.hero__location > span {
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
}

.hero__location p {
    color: var(--muted);
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.5;
}

.hero__copy {
    max-width: 42rem;
    padding-left: clamp(1rem, 3vw, 2rem);
    border-left: 1px solid var(--brass);
}

.hero__copy .eyebrow::before {
    display: none;
}

.hero h1 {
    max-width: none;
    display: grid;
    row-gap: 0.14em;
    color: var(--ivory);
    font-family: var(--display);
    font-size: clamp(3.3rem, 16vw, 7.8rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.92;
}

.hero h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
}

.hero h1 span:nth-child(2),
.hero h1 span:nth-child(3) {
    margin-left: clamp(0.55rem, 3vw, 2.4rem);
    color: var(--brass-light);
}

.hero__lead {
    max-width: 35rem;
    margin-top: 1.15rem;
    color: var(--muted);
    font-size: clamp(0.84rem, 1.4vw, 1.04rem);
    line-height: 1.62;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem 1rem;
    margin-top: 1.25rem;
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(241, 232, 216, 0.2);
    background: rgba(8, 7, 5, 0.84);
}

.hero__facts > div {
    min-width: 0;
    padding: 0.7rem 0.75rem;
}

.hero__facts > div:nth-child(even) {
    border-left: 1px solid rgba(241, 232, 216, 0.17);
}

.hero__facts > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(241, 232, 216, 0.17);
}

.hero__facts dt {
    color: var(--brass-light);
    font-size: 0.53rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero__facts dd {
    margin-top: 0.2rem;
    overflow-wrap: anywhere;
    color: var(--ivory);
    font-size: clamp(0.67rem, 2.6vw, 0.78rem);
    font-weight: 600;
    line-height: 1.35;
}

.hero__scroll {
    display: none;
}

@keyframes hero-settle {
    to {
        transform: scale(1.085);
    }
}

/* Editorial services */
.services {
    background:
        linear-gradient(135deg, rgba(112, 69, 47, 0.055), transparent 35%),
        var(--ivory);
    color: var(--dark-text);
}

.service-list {
    border-top: 1px solid var(--line-dark);
}

.service-row {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.7rem 0.8rem;
    padding-block: 1.35rem;
    border-bottom: 1px solid var(--line-dark);
    transition: background-color var(--base);
}

.service-row__number {
    grid-column: 1;
    grid-row: 1 / span 3;
    padding-top: 0.25rem;
    color: var(--leather);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.service-row__body {
    grid-column: 2 / -1;
}

.service-row__body h3 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 6vw, 2.65rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
}

.service-row__body p {
    max-width: 42rem;
    margin-top: 0.5rem;
    color: var(--dark-muted);
    font-size: 0.82rem;
    line-height: 1.58;
}

.service-row__duration {
    grid-column: 2;
    align-self: center;
    color: var(--dark-muted);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-row__price {
    grid-column: 3;
    align-self: center;
    color: var(--leather);
    font-family: var(--display);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.service-row__price span {
    font-family: var(--body);
    font-size: 0.56rem;
    letter-spacing: 0.1em;
}

.service-row__book {
    grid-column: 2 / -1;
    min-height: 2.75rem;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    border-bottom: 1px solid rgba(27, 21, 16, 0.38);
    padding: 0;
    background: transparent;
    color: var(--dark-text);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.service-row--featured {
    position: relative;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    border-color: transparent;
    background: var(--brown);
    color: var(--ivory);
}

.service-row--featured .service-row__number,
.service-row--featured .service-row__price {
    color: var(--brass-light);
}

.service-row--featured .service-row__body p,
.service-row--featured .service-row__duration {
    color: var(--muted);
}

.service-row--featured .service-row__book {
    border-color: rgba(210, 183, 121, 0.55);
    color: var(--brass-light);
}

/* Experience */
.experience {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(112, 69, 47, 0.3), transparent 30rem),
        var(--charcoal);
}

.experience__grid {
    display: grid;
    gap: clamp(2.75rem, 8vw, 6.5rem);
}

.experience__media {
    position: relative;
    width: min(100%, 40rem);
}

.experience__media::before {
    position: absolute;
    right: -0.7rem;
    bottom: -0.7rem;
    width: 66%;
    height: 62%;
    border-right: 1px solid var(--brass);
    border-bottom: 1px solid var(--brass);
    content: "";
}

.experience__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: 50% 55%;
    filter: saturate(0.78) contrast(1.07);
}

.experience__media figcaption {
    position: relative;
    z-index: 2;
    width: calc(100% - 1rem);
    margin: -1.15rem 0 0 1rem;
    padding: 0.8rem 1rem;
    border-left: 2px solid var(--brass);
    background: var(--brown);
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.experience__index {
    position: absolute;
    z-index: 2;
    top: 0.8rem;
    right: 0.8rem;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(241, 232, 216, 0.45);
    background: rgba(9, 8, 6, 0.72);
    color: var(--brass-light);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.experience__content {
    align-self: center;
}

.experience__intro {
    max-width: 42rem;
    margin-top: 1.4rem;
    color: var(--muted);
}

.principles {
    margin-top: clamp(2rem, 5vw, 3.25rem);
    border-top: 1px solid var(--line);
}

.principles li {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.75rem;
    padding-block: 1.15rem;
    border-bottom: 1px solid var(--line);
}

.principles li > span {
    padding-top: 0.2rem;
    color: var(--brass-light);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.principles h3 {
    color: var(--ivory);
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.1;
}

.principles li p {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.81rem;
    line-height: 1.58;
}

/* Price table */
.pricing {
    background:
        linear-gradient(120deg, rgba(112, 69, 47, 0.2), transparent 38%),
        #211811;
    color: var(--text);
}

.pricing .section-heading > p {
    color: var(--muted);
}

.price-table {
    border-top: 1px solid var(--line);
}

.price-line {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.6rem 0.75rem;
    padding-block: 1.3rem;
    border-bottom: 1px solid var(--line);
    transition: background-color var(--base);
}

.price-line__number {
    grid-column: 1;
    grid-row: 1 / span 3;
    padding-top: 0.23rem;
    color: var(--brass-light);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.price-line > div {
    grid-column: 2 / -1;
}

.price-line h3 {
    font-family: var(--display);
    font-size: clamp(1.55rem, 5.5vw, 2.25rem);
    font-weight: 600;
    line-height: 1;
}

.price-line > div p {
    max-width: 38rem;
    margin-top: 0.4rem;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.price-line__time {
    grid-column: 2;
    align-self: center;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-line > strong {
    grid-column: 3;
    align-self: center;
    color: var(--brass-light);
    font-family: var(--display);
    font-size: 1.45rem;
    line-height: 1;
    white-space: nowrap;
}

.price-line > button {
    grid-column: 2 / -1;
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(210, 183, 121, 0.4);
    border-radius: 0;
    background: transparent;
    color: var(--brass-light);
    font-size: 1.1rem;
    transition:
        color var(--fast),
        border-color var(--fast),
        background-color var(--fast);
}

.demo-note {
    max-width: 50rem;
    margin-top: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--brass);
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.55;
}

/* Interior gallery */
.gallery {
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(112, 69, 47, 0.18), transparent 42%),
        var(--charcoal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.55rem, 1.5vw, 1rem);
}

.gallery-item {
    position: relative;
    min-width: 0;
    display: block;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: var(--ink);
    color: var(--ivory);
    text-align: left;
    isolation: isolate;
}

.gallery-item--main {
    grid-column: 1 / -1;
    aspect-ratio: 5 / 4;
}

.gallery-item--detail,
.gallery-item--atmosphere {
    aspect-ratio: 1;
}

.gallery-item::after {
    position: absolute;
    z-index: 1;
    inset: 28% 0 0;
    background: linear-gradient(to top, rgba(6, 5, 4, 0.94), transparent);
    content: "";
    pointer-events: none;
}

.gallery-item__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gallery-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease);
}

.gallery-item--main .gallery-item__image img {
    object-position: 50% 52%;
}

.gallery-item--detail .gallery-item__image img {
    object-position: 50% 54%;
}

.gallery-item--atmosphere .gallery-item__image img {
    object-position: 58% 52%;
}

.gallery-item__caption {
    position: absolute;
    z-index: 2;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: end;
    gap: 0.55rem;
    color: var(--ivory);
    font-family: var(--display);
    font-size: clamp(1.3rem, 5vw, 2.2rem);
    font-weight: 600;
    line-height: 1;
}

.gallery-item__caption b {
    color: var(--brass-light);
    font-family: var(--body);
    font-size: 0.55rem;
    letter-spacing: 0.12em;
}

.gallery-item__caption i {
    color: var(--brass-light);
    font-family: var(--body);
    font-size: 0.9rem;
    font-style: normal;
}

.gallery-item:focus-visible {
    outline: 3px solid var(--brass-light);
    outline-offset: 4px;
}

/* Booking */
.booking {
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 16%, rgba(112, 69, 47, 0.3), transparent 31rem),
        var(--black);
}

.booking__grid {
    display: grid;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.booking__intro > p:not(.eyebrow):not(.booking__disclaimer) {
    max-width: 38rem;
    margin-top: 1.25rem;
    color: var(--muted);
}

.booking-summary {
    margin-top: 2rem;
    padding: 1.2rem 1.25rem;
    border-left: 2px solid var(--brass);
    background: var(--charcoal-2);
    transition:
        background-color var(--base),
        transform var(--base);
}

.booking-summary.has-selection {
    background: var(--brown);
    transform: translateX(0.25rem);
}

.booking-summary.is-updating {
    background: var(--brown);
    transform: translateX(0.25rem);
}

.booking-summary > span,
.booking-summary > strong {
    display: block;
}

.booking-summary > span {
    color: var(--brass-light);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.booking-summary > strong {
    margin-top: 0.42rem;
    color: var(--ivory);
    font-family: var(--display);
    font-size: clamp(1.5rem, 5vw, 2.1rem);
    font-weight: 600;
    line-height: 1.05;
}

.booking-summary > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.4rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.booking__details {
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.booking__details > div {
    display: grid;
    grid-template-columns: minmax(7rem, 0.55fr) minmax(0, 1fr);
    gap: 0.75rem;
    padding-block: 0.8rem;
    border-bottom: 1px solid var(--line);
}

.booking__details dt {
    color: var(--brass-light);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking__details dd {
    color: var(--ivory);
    font-size: 0.73rem;
}

.booking__details a {
    text-decoration: underline;
    text-decoration-color: rgba(210, 183, 121, 0.45);
    text-underline-offset: 0.25em;
}

.booking__disclaimer {
    margin-top: 1rem;
    color: #968978;
    font-size: 0.66rem;
    line-height: 1.5;
}

.booking-panel {
    min-width: 0;
    padding: clamp(1.15rem, 5vw, 3rem);
    background: var(--ivory);
    color: var(--dark-text);
    box-shadow: var(--deep-shadow);
    color-scheme: light;
}

.booking-form {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.05rem;
}

.form-field {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 0.4rem;
    color: var(--dark-text);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.form-field label span {
    color: var(--dark-muted);
    font-size: 0.58rem;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(35, 25, 18, 0.3);
    border-radius: 0;
    background-color: #fcf8f0;
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.45;
    transition:
        border-color var(--fast),
        background-color var(--fast),
        box-shadow var(--fast);
}

.form-field input,
.form-field select {
    min-height: 3.25rem;
    padding: 0.72rem 0.8rem;
}

.form-field select {
    appearance: none;
    padding-right: 2.75rem;
    background-image:
        linear-gradient(45deg, transparent 50%, #594635 50%),
        linear-gradient(135deg, #594635 50%, transparent 50%);
    background-position:
        calc(100% - 1.05rem) 50%,
        calc(100% - 0.72rem) 50%;
    background-repeat: no-repeat;
    background-size: 0.36rem 0.36rem;
}

.form-field textarea {
    min-height: 7rem;
    padding: 0.8rem;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8a7e70;
    opacity: 1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--leather);
    background: #fffdf8;
    box-shadow: var(--focus);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
    border-color: var(--error);
    background: #fff8f5;
}

.form-field.has-error label {
    color: var(--error);
}

.form-field small {
    margin-top: 0.32rem;
    color: var(--dark-muted);
    font-size: 0.65rem;
    line-height: 1.4;
}

.form-error {
    margin-top: 0.28rem;
    color: var(--error);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.4;
}

.form-error:empty {
    display: none;
}

.booking-form__submit {
    width: 100%;
    margin-top: 0.15rem;
}

.booking-form__privacy {
    color: var(--dark-muted);
    font-size: 0.64rem;
    line-height: 1.45;
    text-align: center;
}

.booking-confirmation {
    min-height: 31rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-confirmation.is-visible {
    animation: confirmation-in 420ms var(--ease) both;
}

.confirmation-mark {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    border: 1px solid var(--leather);
    color: var(--leather);
    font-family: var(--display);
    font-size: 2rem;
}

.booking-confirmation .eyebrow {
    color: var(--leather);
}

.booking-confirmation h3 {
    max-width: 13ch;
    font-family: var(--display);
    font-size: clamp(2.3rem, 7vw, 3.75rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.94;
}

.booking-confirmation > p:not(.eyebrow) {
    margin-top: 1rem;
    color: var(--dark-muted);
    font-size: 0.77rem;
}

.booking-confirmation dl {
    margin-block: 1.4rem;
    border-top: 1px solid var(--line-dark);
}

.booking-confirmation dl > div {
    display: grid;
    grid-template-columns: minmax(5rem, 0.35fr) minmax(0, 1fr);
    gap: 0.75rem;
    padding-block: 0.72rem;
    border-bottom: 1px solid var(--line-dark);
}

.booking-confirmation dt {
    color: var(--dark-muted);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.booking-confirmation dd {
    font-weight: 700;
}

.booking-confirmation > .button,
.booking-confirmation > .text-link {
    width: 100%;
}

.booking-confirmation > .text-link {
    justify-content: center;
    margin-top: 0.65rem;
}

@keyframes confirmation-in {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }

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

/* Contact and map */
.contact {
    background: var(--ivory);
    color: var(--dark-text);
}

.contact__grid {
    display: grid;
    gap: clamp(2.25rem, 6vw, 5rem);
}

.contact-card {
    min-width: 0;
}

.contact-list {
    border-top: 1px solid var(--line-dark);
}

.contact-list > div {
    display: grid;
    grid-template-columns: minmax(6.5rem, 0.75fr) minmax(0, 1.25fr);
    gap: 1rem;
    padding-block: 1rem;
    border-bottom: 1px solid var(--line-dark);
}

.contact-list dt {
    color: var(--leather);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-list dd {
    font-family: var(--display);
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    font-weight: 600;
    line-height: 1.25;
}

.contact-list a {
    text-decoration: underline;
    text-decoration-color: rgba(112, 69, 47, 0.35);
    text-underline-offset: 0.25em;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.map-card {
    min-width: 0;
}

.map-card iframe {
    width: 100%;
    height: clamp(16.25rem, 58vw, 20rem);
    display: block;
    border: 0;
    filter: grayscale(0.75) sepia(0.2) contrast(1.06);
}

.map-card > p {
    padding: 0.75rem 0.9rem;
    border-left: 2px solid var(--leather);
    background: var(--paper);
    color: var(--dark-muted);
    font-size: 0.66rem;
    line-height: 1.5;
}

/* FAQ */
.faq {
    background:
        linear-gradient(140deg, rgba(112, 69, 47, 0.16), transparent 38%),
        var(--charcoal);
}

.faq__grid {
    display: grid;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.faq__grid > header > p:last-child {
    max-width: 28rem;
    margin-top: 1.25rem;
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    margin: 0;
}

.faq-item h3 > button {
    width: 100%;
    min-height: 4.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.75rem;
    align-items: center;
    gap: 1rem;
    border: 0;
    padding: 1rem 0;
    background: transparent;
    color: var(--ivory);
    font-family: var(--display);
    font-size: clamp(1.25rem, 4.5vw, 1.8rem);
    font-weight: 600;
    line-height: 1.15;
    text-align: left;
    transition: color var(--fast);
}

.faq-item h3 > button i {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(210, 183, 121, 0.38);
}

.faq-item h3 > button i::before,
.faq-item h3 > button i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.9rem;
    height: 1px;
    background: var(--brass-light);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform var(--base);
}

.faq-item h3 > button i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item h3 > button[aria-expanded="true"] {
    color: var(--brass-light);
}

.faq-item h3 > button[aria-expanded="true"] i::after {
    transform: translate(-50%, -50%);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    transition:
        grid-template-rows var(--base),
        visibility var(--base);
}

.faq-panel > div {
    min-height: 0;
    overflow: hidden;
}

.faq-panel p {
    max-width: 47rem;
    padding: 0 3.75rem 1.35rem 0;
    color: var(--muted);
    font-size: 0.81rem;
    line-height: 1.65;
}

.faq-panel:not([hidden]) > div {
    animation: faq-answer-in 260ms ease both;
}

.faq-item.is-open .faq-panel,
.faq-panel[aria-hidden="false"],
html:not(.js) .faq-panel {
    grid-template-rows: 1fr;
    visibility: visible;
}

@keyframes faq-answer-in {
    from {
        opacity: 0;
        transform: translateY(-0.3rem);
    }

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

/* Footer */
.site-footer {
    padding-top: clamp(4rem, 8vw, 6.5rem);
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(183, 149, 89, 0.26);
    background:
        linear-gradient(120deg, rgba(112, 69, 47, 0.18), transparent 35%),
        #070604;
}

.site-footer__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1.25rem;
}

.site-footer__brand {
    grid-column: 1 / -1;
}

.wordmark--footer > span {
    font-size: 1.35rem;
}

.site-footer__brand > p {
    max-width: 30rem;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.site-footer__brand > .button {
    margin-top: 1.25rem;
}

.site-footer__top h2 {
    margin: 0 0 0.9rem;
    color: var(--brass-light);
    font-family: var(--body);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.site-footer__top nav,
.site-footer__top > div:not(.site-footer__brand) {
    min-width: 0;
}

.site-footer__top nav > a,
.site-footer__top > div:not(.site-footer__brand) > a,
.site-footer__top > div:not(.site-footer__brand) > p {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 0.71rem;
    line-height: 1.45;
    transition: color var(--fast);
}

.social-placeholder {
    min-height: auto !important;
    color: #8d8171 !important;
    font-size: 0.63rem !important;
}

.site-footer__bottom {
    display: grid;
    gap: 0.65rem;
    margin-top: clamp(3rem, 7vw, 5rem);
    padding-top: 1.25rem;
    border-top: 1px solid rgba(241, 232, 216, 0.12);
    color: #928675;
    font-size: 0.61rem;
    line-height: 1.5;
}

/* Native dialog lightbox */
.lightbox {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    border: 0;
    padding:
        max(1rem, env(safe-area-inset-top))
        max(1rem, env(safe-area-inset-right))
        max(1rem, env(safe-area-inset-bottom))
        max(1rem, env(safe-area-inset-left));
    overflow: auto;
    background: rgba(5, 4, 3, 0.97);
    color: var(--text);
}

.lightbox:not([open]) {
    display: none;
}

.lightbox[open],
.lightbox.is-open {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 1rem;
    animation: lightbox-in 240ms ease both;
}

.lightbox::backdrop {
    background: transparent;
}

.lightbox__bar {
    width: min(100%, 78rem);
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-inline: auto;
}

.lightbox__bar p {
    color: var(--ivory);
    font-family: var(--display);
    font-size: 1.35rem;
}

.lightbox__bar button {
    position: relative;
    border-color: rgba(241, 232, 216, 0.45);
    background: var(--ivory);
}

.lightbox__bar button span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--ink);
}

.lightbox__bar button span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox__bar button span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox figure {
    width: min(100%, 78rem);
    min-height: 0;
    display: grid;
    place-items: center;
    margin-inline: auto;
}

.lightbox figure img {
    width: auto;
    max-width: 100%;
    max-height: calc(100dvh - 6.75rem);
    object-fit: contain;
    box-shadow: var(--deep-shadow);
}

@keyframes lightbox-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* IntersectionObserver enhancement; without html.js, all content remains visible */
html.js [data-reveal],
html.js [data-hero-reveal] {
    opacity: 0;
    transform: translateY(1.2rem);
    transition:
        opacity 700ms var(--ease),
        transform 700ms var(--ease);
}

html.js [data-reveal].is-visible,
html.js [data-hero-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

html.js [data-reveal] .eyebrow::before {
    transform: scaleX(0);
    transition: transform 700ms var(--ease) 120ms;
}

html.js [data-reveal].is-visible .eyebrow::before {
    transform: scaleX(1);
}

/* Narrow phones */
@media (max-width: 22.49rem) {
    :root {
        --gutter: 1rem;
    }

    .wordmark > span {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: clamp(3.15rem, 15.8vw, 3.55rem);
    }

    .hero__lead {
        font-size: 0.81rem;
    }

    .hero__actions .button {
        padding-inline: 0.85rem;
    }

    .contact-list > div {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

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

    .site-footer__brand {
        grid-column: auto;
    }
}

@media (min-width: 30rem) {
    .topbar__hours {
        display: inline;
    }

    .hero__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero__facts > div:nth-child(n + 2) {
        border-left: 1px solid rgba(241, 232, 216, 0.17);
    }

    .hero__facts > div:last-child {
        grid-column: auto;
        border-top: 0;
    }
}

@media (min-width: 40rem) {
    :root {
        --header-height: 4.75rem;
    }

    .header-booking {
        display: inline-flex;
    }

    .wordmark > span {
        font-size: 1.26rem;
    }

    .hero__actions .button {
        min-width: 10.5rem;
    }

    .service-row {
        grid-template-columns: 2.5rem minmax(0, 1fr) 8rem;
        align-items: center;
        gap: 0.75rem 1.25rem;
        padding-block: 1.55rem;
    }

    .service-row__number {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
    }

    .service-row__body {
        grid-column: 2;
        grid-row: 1;
    }

    .service-row__duration {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .service-row__price {
        grid-column: 3;
        grid-row: 2;
        justify-self: end;
    }

    .service-row__book {
        grid-column: 2;
        grid-row: 2;
    }

    .price-line {
        grid-template-columns: 2.5rem minmax(0, 1fr) 5rem 5rem 2.75rem;
        align-items: center;
        gap: 1rem;
        padding-block: 1.45rem;
    }

    .price-line__number {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
    }

    .price-line > div {
        grid-column: 2;
        grid-row: 1;
    }

    .price-line__time {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .price-line > strong {
        grid-column: 4;
        grid-row: 1;
        justify-self: end;
    }

    .price-line > button {
        grid-column: 5;
        grid-row: 1;
    }

    .booking-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-field--full,
    .booking-form__submit,
    .booking-form__privacy {
        grid-column: 1 / -1;
    }

    .site-footer__top {
        grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__bottom {
        grid-template-columns: auto minmax(0, 1fr);
        justify-content: space-between;
    }

    .site-footer__bottom p:last-child {
        justify-self: end;
        text-align: right;
    }
}

@media (min-width: 48rem) {
    .section-heading--split {
        grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.65fr);
        align-items: end;
        gap: clamp(2rem, 6vw, 5.5rem);
    }

    .section-heading--split > p {
        padding-bottom: 0.35rem;
    }

    .experience__grid {
        grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
        align-items: center;
    }

    .experience__media img {
        aspect-ratio: 4 / 5;
        object-position: 50% 52%;
    }

    .gallery-grid {
        min-height: clamp(34rem, 68vw, 48rem);
        grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.65fr);
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .gallery-item--main {
        grid-column: 1;
        grid-row: 1 / 3;
        aspect-ratio: auto;
    }

    .gallery-item--detail,
    .gallery-item--atmosphere {
        grid-column: 2;
        aspect-ratio: auto;
    }

    .gallery-item__caption {
        right: 1.15rem;
        bottom: 1.15rem;
        left: 1.15rem;
    }
}

@media (min-width: 56rem) {
    .contact__grid {
        grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
        align-items: stretch;
    }

    .map-card {
        display: flex;
        flex-direction: column;
    }

    .map-card iframe {
        height: 100%;
        min-height: 20rem;
        flex: 1;
    }

    .faq__grid {
        grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
        align-items: start;
    }
}

@media (min-width: 64rem) {
    :root {
        --header-height: 5rem;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: clamp(0.8rem, 1.45vw, 1.55rem);
        margin-left: auto;
    }

    .menu-toggle,
    .menu-overlay,
    .mobile-menu {
        display: none !important;
    }

    .site-header__actions {
        margin-left: clamp(0.35rem, 1vw, 1rem);
    }

    .hero {
        min-height: max(45rem, 100svh);
    }

    .hero__shade {
        background:
            linear-gradient(90deg, rgba(7, 5, 4, 0.97) 0%, rgba(7, 5, 4, 0.7) 42%, rgba(7, 5, 4, 0.13) 74%, rgba(7, 5, 4, 0.33) 100%),
            linear-gradient(0deg, rgba(7, 5, 4, 0.93), transparent 53%, rgba(7, 5, 4, 0.5));
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
        grid-template-rows: 1fr auto;
        align-items: end;
        gap: 2rem clamp(3rem, 8vw, 8rem);
        padding-top: calc(var(--chrome-height) + 4rem);
        padding-bottom: 2.25rem;
    }

    .hero__copy {
        grid-column: 1;
        grid-row: 1;
        margin-left: clamp(0rem, 3vw, 3rem);
    }

    .hero__facts {
        grid-column: 1 / -1;
        grid-row: 2;
        width: min(100%, 59rem);
    }

    .hero__location {
        top: calc(var(--chrome-height) + 2.5rem);
    }

    .hero__scroll {
        position: absolute;
        z-index: 3;
        right: calc(var(--gutter) + 0.65rem);
        bottom: 2.25rem;
        display: flex;
        align-items: center;
        gap: 0.7rem;
        color: var(--muted);
        font-size: 0.5rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        writing-mode: vertical-rl;
    }

    .hero__scroll i {
        width: 1px;
        height: 3.75rem;
        background: linear-gradient(to bottom, var(--brass), transparent);
    }

    .service-row {
        grid-template-columns: 3.5rem minmax(0, 1fr) 7.5rem 6rem 7.5rem;
        gap: 1.4rem;
        padding: 1.65rem 1rem;
    }

    .service-row__number {
        grid-column: 1;
        grid-row: 1;
    }

    .service-row__body {
        grid-column: 2;
        grid-row: 1;
    }

    .service-row__duration {
        grid-column: 3;
        grid-row: 1;
        justify-self: start;
    }

    .service-row__price {
        grid-column: 4;
        grid-row: 1;
        justify-self: start;
    }

    .service-row__book {
        grid-column: 5;
        grid-row: 1;
        justify-self: end;
    }

    .service-row--featured {
        margin-inline: 0;
        padding-inline: 1rem;
    }

    .booking__grid {
        grid-template-columns: minmax(20rem, 0.82fr) minmax(31rem, 1.18fr);
        align-items: start;
    }

    .booking__intro {
        position: sticky;
        top: calc(var(--chrome-height) + 2.25rem);
    }

    .booking-panel {
        padding: clamp(2.25rem, 4vw, 3.5rem);
    }
}

@media (min-width: 78rem) {
    .hero h1 {
        font-size: clamp(6.7rem, 8.2vw, 8.1rem);
    }

    .gallery-grid {
        min-height: 48rem;
    }
}

@media (hover: hover) and (pointer: fine) {
    .button--primary:hover {
        border-color: var(--brass-light);
        background: var(--brass-light);
    }

    .button--compact:hover {
        border-color: var(--brass);
        background: var(--brass);
        color: var(--ink);
    }

    .button--dark:hover {
        border-color: var(--leather);
        background: var(--leather);
    }

    .button--outline-dark:hover {
        border-color: var(--dark-text);
        background: var(--dark-text);
        color: var(--ivory);
    }

    .text-link:hover::after {
        transform: scaleX(1);
    }

    .desktop-nav a:hover,
    .site-footer__top a:hover {
        color: var(--brass-light);
    }

    .desktop-nav a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .service-row:not(.service-row--featured):hover {
        background: rgba(112, 69, 47, 0.055);
    }

    .price-line:hover {
        background: rgba(241, 232, 216, 0.035);
    }

    .price-line > button:hover {
        border-color: var(--brass-light);
        background: var(--brass);
        color: var(--ink);
    }

    .gallery-item:hover .gallery-item__image img {
        transform: scale(1.035);
    }

    .faq-item h3 > button:hover {
        color: var(--brass-light);
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .hero__media img {
        transform: none;
    }

    html.js [data-reveal],
    html.js [data-hero-reveal] {
        opacity: 1;
        transform: none;
    }

    html.js [data-reveal] .eyebrow::before {
        transform: scaleX(1);
    }
}

@media (forced-colors: active) {
    .button,
    .menu-toggle,
    .menu-close,
    .price-line > button,
    .faq-item h3 > button i,
    .lightbox__bar button {
        border: 1px solid ButtonText;
    }

    .hero__shade {
        background: rgba(0, 0, 0, 0.72);
    }
}
