/* ============================================================
   COMPONENTS — buttons, header, cards, forms, etc.
   ============================================================ */

/* ───── Floating header (no nav bar) ───── */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    padding: var(--sp-5) var(--sp-5);
    z-index: var(--z-header);
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--sp-3);
}
.site-header > * { pointer-events: auto; }

/* Floating circular buttons */
.btn-circle {
    width: var(--btn-circle);
    height: var(--btn-circle);
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--c-text);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-soft);
    transition:
        transform var(--d-base) var(--ease-out),
        background var(--d-base) var(--ease-out),
        color var(--d-base) var(--ease-out);
}
.btn-circle:hover {
    transform: translateY(-2px);
    background: var(--c-cream-bg);
    opacity: 1;
}
.btn-circle svg { width: 1.1rem; height: 1.1rem; }

.btn-circle--book {
    width: var(--btn-circle-lg);
    height: var(--btn-circle-lg);
    background: var(--c-olive);
    color: var(--c-cream-bg);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.btn-circle--book:hover {
    background: var(--c-olive-dark);
    color: var(--c-cream-bg);
    opacity: 1;
}

.header-cluster {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
}

/* ───── Buttons ───── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.95em 1.6em;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition:
        background var(--d-base) var(--ease-out),
        color var(--d-base) var(--ease-out),
        transform var(--d-base) var(--ease-out);
}
.btn--primary {
    background: var(--c-olive);
    color: var(--c-cream-bg);
}
.btn--primary:hover {
    background: var(--c-olive-dark);
    opacity: 1;
}
.btn--ghost {
    background: transparent;
    color: var(--c-text);
    border: 1px solid currentColor;
}
.btn--ghost:hover {
    background: var(--c-text);
    color: var(--c-cream-bg);
    opacity: 1;
}

/* ───── Hero ───── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--c-cream-bg);
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__media img,
.hero__media .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--sp-9) var(--section-x);
    width: 100%;
    max-width: var(--w-wide);
}
/* Lockup is absolutely positioned high in the viewport; title remains centered below */
.hero__lockup {
    position: absolute;
    top: clamp(10vh, 13vh, 17vh);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    display: block;
    text-align: center;
}
.hero__logo {
    width: clamp(180px, 22vw, 320px);
    margin-inline: auto;
    opacity: 0.95;
}

/* Hero video: show desktop by default, mobile when narrow */
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__video--mobile { display: none; }

@media (max-width: 760px) {
    .hero__video--desktop { display: none; }
    .hero__video--mobile  { display: block; }
}

/* Video placeholder helper */
.placeholder--video {
    background: linear-gradient(135deg, #41301C 0%, #1B1007 100%);
    color: var(--c-cream-soft);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-align: center;
    padding: 2rem;
}
.hero__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: var(--fs-display);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--c-cream-bg);
    text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero__title em {
    font-style: italic;
    font-weight: 300;
}

/* ───── Philosophy section (3-column) ───── */
.philosophy {
    background: var(--c-cream-bg);
    padding-block: var(--section-y);
}
.philosophy__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: clamp(1.5rem, 1rem + 2vw, 4rem);
    align-items: start;
    max-width: var(--w-wide);
    margin-inline: auto;
    padding-inline: var(--section-x);
}
.philosophy__photo {
    aspect-ratio: 3 / 4;
    background: var(--c-cream-soft);
    overflow: hidden;
}
.philosophy__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.philosophy__photo--top    { margin-top: var(--sp-5); }
.philosophy__photo--bottom { margin-top: var(--sp-9); }

.philosophy__text {
    text-align: center;
    padding-block: var(--sp-5);
}
.philosophy__icon {
    width: clamp(64px, 6vw, 88px);
    margin: 0 auto var(--sp-6);
    opacity: 0.9;
}
.philosophy__lead {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
    line-height: 1.4;
    margin-block: var(--sp-5) var(--sp-6);
    color: var(--c-text);
    letter-spacing: -0.005em;
}
.philosophy__body {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-relaxed);
    color: var(--c-text-muted);
    max-width: 26em;
    margin: 0 auto var(--sp-6);
}

@media (max-width: 900px) {
    .philosophy__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
    }
    .philosophy__photo--top,
    .philosophy__photo--bottom { margin-top: 0; }
    .philosophy__photo { aspect-ratio: 4 / 3; }
}

/* ───── Accommodation hero (full-bleed image with overlay text) ───── */
.acc-hero {
    position: relative;
    min-height: 70vh;
    min-height: 70svh;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--c-cream-bg);
    overflow: hidden;
}
.acc-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.acc-hero__media img,
.acc-hero__media .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.acc-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
}
.acc-hero__inner {
    position: relative;
    z-index: 1;
    padding: var(--sp-7) var(--section-x);
}
.acc-hero__eyebrow {
    color: var(--c-cream-bg);
    opacity: 0.85;
    margin-bottom: var(--sp-5);
    display: block;
}
.acc-hero__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
    line-height: 1.05;
    color: var(--c-cream-bg);
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

/* ───── Rooms grid: 2x2 on desktop, single column on mobile ───── */
.rooms-grid-wrap {
    background: var(--c-cream-bg);
    padding-block: var(--section-y);
    position: relative;
}
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(2rem, 1rem + 4vw, 6rem);
    row-gap: clamp(4rem, 3rem + 4vw, 8rem);
}

.room-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: var(--sp-4);
    position: relative;
    padding-top: clamp(2rem, 1rem + 3vw, 4rem);
}
.room-card__number {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(6rem, 4rem + 8vw, 12rem);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px var(--c-text-muted);
    text-stroke: 1px var(--c-text-muted);
    letter-spacing: -0.04em;
    margin-bottom: calc(var(--sp-6) * -1);
    transform: translateX(-0.05em);
    user-select: none;
    pointer-events: none;
}
.room-card__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--c-cream-soft);
    position: relative;
    z-index: 1;
    margin-inline: 0;
}
.room-card__media img,
.room-card__media .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--d-slow) var(--ease-out);
}
.room-card:hover .room-card__media img,
.room-card:hover .room-card__media .placeholder {
    transform: scale(1.04);
}
.room-card__body {
    padding-inline: 0;
    padding-top: var(--sp-3);
}
.room-card__title {
    font-family: var(--font-serif);
    font-size: var(--fs-h5);
    font-weight: 400;
    margin-bottom: var(--sp-3);
}
.room-card__desc {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-relaxed);
    color: var(--c-text-muted);
    margin-bottom: var(--sp-5);
    max-width: 30em;
}
.room-card__meta {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: var(--sp-3);
    display: inline-flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        row-gap: clamp(3rem, 2rem + 6vw, 5rem);
    }
    .room-card__number {
        font-size: clamp(6rem, 4rem + 12vw, 10rem);
        margin-bottom: calc(var(--sp-6) * -1);
    }
    .room-card__media { aspect-ratio: 4 / 3; }
}

/* ───── Newsletter (cream) ───── */
.newsletter {
    background: var(--c-cream-bg);
    padding-block: var(--section-y);
    text-align: center;
}
.newsletter__inner {
    max-width: 60rem;
    margin-inline: auto;
    padding-inline: var(--section-x);
}
.newsletter__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
    line-height: 1.1;
    color: var(--c-text-muted);
    margin-bottom: var(--sp-5);
}
.newsletter__sub {
    font-size: var(--fs-body-sm);
    color: var(--c-text-muted);
    max-width: 32em;
    margin: 0 auto var(--sp-7);
    line-height: var(--lh-relaxed);
}
.newsletter__form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: var(--sp-5);
    align-items: end;
    max-width: 56rem;
    margin: 0 auto;
}
.newsletter__field {
    position: relative;
    text-align: left;
}
.newsletter__field input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--color-rule);
    background: transparent;
    padding: var(--sp-3) 0;
    font-size: var(--fs-body);
    color: var(--c-text);
    transition: border-color var(--d-base) var(--ease-out);
}
.newsletter__field input::placeholder { color: var(--c-text-muted); }
.newsletter__field input:focus {
    outline: none;
    border-color: var(--c-olive);
}

@media (max-width: 760px) {
    .newsletter__form { grid-template-columns: 1fr; }
}

/* ───── Site footer (olive) ───── */
.site-footer {
    background: var(--c-olive);
    color: var(--c-cream-soft);
    padding-block: clamp(3rem, 2rem + 4vw, 6rem);
    text-align: center;
}
.site-footer__logo {
    width: clamp(140px, 12vw, 200px);
    margin: 0 auto var(--sp-6);
    opacity: 0.95;
}
.site-footer__address,
.site-footer__contact {
    font-size: var(--fs-body-sm);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 2;
    color: var(--c-cream-soft);
    opacity: 0.9;
}
.site-footer__contact a:hover { color: var(--c-cream-bg); opacity: 1; }
.site-footer__bottom {
    margin-top: var(--sp-7);
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(232, 223, 201, 0.18);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-cream-soft);
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-4);
}
.site-footer__credit a {
    color: inherit;
    border-bottom: 1px solid transparent;
    transition: border-color var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out);
}
.site-footer__credit a:hover {
    color: var(--c-cream-bg);
    border-color: rgba(232, 223, 201, 0.5);
    opacity: 1;
}
.site-footer__credit .heart {
    display: inline-block;
    color: #C95B5B;
    margin-inline: 0.18em;
    font-size: 1.05em;
    line-height: 1;
    transform-origin: center;
    animation: heart-pulse 1.6s var(--ease-in-out) infinite;
    will-change: transform;
}
@keyframes heart-pulse {
    0%, 100% { transform: scale(1);    opacity: 0.85; }
    25%      { transform: scale(1.18); opacity: 1;    }
    50%      { transform: scale(1);    opacity: 0.85; }
    65%      { transform: scale(1.10); opacity: 1;    }
}
@media (prefers-reduced-motion: reduce) {
    .site-footer__credit .heart { animation: none; }
}

/* ───── Off-canvas menu ───── */
.menu-panel {
    position: fixed;
    inset: 0;
    background: var(--c-cream-bg);
    z-index: var(--z-menu);
    transform: translateX(-100%);
    transition: transform var(--d-slow) var(--ease-in-out);
    overflow-y: auto;
    padding: var(--sp-6) var(--section-x);
}
.menu-panel.is-open { transform: translateX(0); }
.menu-panel__close {
    position: absolute;
    top: var(--sp-5);
    right: var(--sp-5);
    z-index: 2;
}
.menu-panel__inner {
    min-height: calc(100vh - var(--sp-6) * 2);
    min-height: calc(100svh - var(--sp-6) * 2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 1rem + 3vw, 4rem);
    text-align: center;
    padding-block: var(--sp-7);
}
.menu-panel__logo {
    display: block;
}
.menu-panel__logo img {
    width: clamp(160px, 18vw, 260px);
    height: auto;
    margin-inline: auto;
    opacity: 0.95;
}

.menu-panel__nav { width: 100%; }
.menu-panel__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.6rem, 0.4rem + 1vw, 1.4rem);
    align-items: center;
}
.menu-panel__list a {
    display: inline-block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 1rem + 3.5vw, 3.5rem);
    line-height: 1.1;
    color: var(--c-text);
    transition: opacity var(--d-base) var(--ease-out), letter-spacing var(--d-base) var(--ease-out);
}
.menu-panel__list a:hover {
    opacity: 1;
    letter-spacing: 0.02em;
}
.menu-panel__list .menu-panel__cta a,
.menu-panel__list .menu-item-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--font-ui);
    font-style: normal;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    background: var(--c-olive);
    color: var(--c-cream-bg);
    padding: 1em 2.4em;
    margin-top: var(--sp-4);
}
.menu-panel__list .menu-panel__cta a:hover,
.menu-panel__list .menu-item-cta a:hover {
    background: var(--c-olive-dark);
    color: var(--c-cream-bg);
    letter-spacing: 0.36em;
}
.menu-panel__lang {
    text-align: center;
    margin-top: var(--sp-3);
}

/* ───── Placeholder swatches (for missing images) ───── */
.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c-cream-soft) 0%, var(--c-accent-beige) 100%);
    color: var(--c-text-muted);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    aspect-ratio: 4 / 5;
}
.placeholder--landscape { aspect-ratio: 16 / 9; }
.placeholder--hero {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, #826F50 0%, #4A3A24 100%);
    color: var(--c-cream-soft);
    opacity: 0.85;
}

/* ───── Single Room ───── */
.room-single__hero {
    position: relative;
    min-height: 70vh;
    min-height: 70svh;
    display: grid;
    place-items: end center;
    overflow: hidden;
    color: var(--c-cream-bg);
    text-align: center;
    padding-bottom: var(--sp-8);
}
.room-single__hero-media { position: absolute; inset: 0; z-index: 0; }
.room-single__hero-media img,
.room-single__hero-media .placeholder {
    width: 100%; height: 100%; object-fit: cover;
}
.room-single__hero-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
}
.room-single__hero-inner { position: relative; z-index: 1; padding-bottom: var(--sp-7); }
.room-single__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2.5rem, 1.8rem + 3vw, 4.5rem);
    line-height: 1.05;
    color: var(--c-cream-bg);
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
    margin-top: var(--sp-4);
}

.room-single__meta {
    list-style: none;
    margin: 0 0 var(--sp-7);
    padding: var(--sp-6) 0;
    border-top: 1px solid var(--color-rule);
    border-bottom: 1px solid var(--color-rule);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--sp-4);
    text-align: center;
}
.room-single__meta li {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.room-single__meta strong {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: var(--fs-h6);
}

.room-single__content {
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    color: var(--c-text);
}
.room-single__content p + p { margin-top: 1.2em; }

.room-single__cta {
    text-align: center;
    margin-top: var(--sp-7);
}

/* Highlights / amenities grids */
.highlights-grid,
.amenities-grid {
    list-style: none;
    margin: var(--sp-6) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-4) var(--sp-7);
}
.highlights-grid li,
.amenities-grid li {
    font-family: var(--font-serif);
    font-size: var(--fs-body-lg);
    font-weight: 400;
    border-top: 1px solid var(--color-rule);
    padding-top: var(--sp-3);
    color: var(--c-text);
}
.amenities-grid li {
    font-family: var(--font-sans);
    font-size: var(--fs-body-sm);
    letter-spacing: 0.06em;
    color: var(--c-text-muted);
}

/* Gallery grid (room single) — masonry-ish via auto-flow */
.gallery-grid {
    margin-top: var(--sp-6);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--sp-3);
}
.gallery-grid__item {
    overflow: hidden;
    grid-column: span 6;
    aspect-ratio: 4 / 3;
    background: var(--c-cream-soft);
}
.gallery-grid__item:nth-child(5n+1) { grid-column: span 8; aspect-ratio: 16 / 9; }
.gallery-grid__item:nth-child(5n+2) { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery-grid__item:nth-child(5n+3) { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery-grid__item:nth-child(5n+4) { grid-column: span 8; aspect-ratio: 16 / 10; }
.gallery-grid__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--d-slow) var(--ease-out);
}
.gallery-grid__item:hover img { transform: scale(1.04); }

@media (max-width: 760px) {
    .gallery-grid__item,
    .gallery-grid__item:nth-child(5n+1),
    .gallery-grid__item:nth-child(5n+2),
    .gallery-grid__item:nth-child(5n+3),
    .gallery-grid__item:nth-child(5n+4) {
        grid-column: span 12;
        aspect-ratio: 4 / 3;
    }
}

/* ───── Reveal-on-scroll (replays on re-entry) ───── */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity     var(--d-reveal) var(--ease-out),
        transform   var(--d-reveal) var(--ease-out);
    will-change: opacity, transform;
}
[data-reveal].is-revealed,
.no-js [data-reveal] {
    opacity: 1;
    transform: none;
}

/* Stagger when reveal is on a parent — children get progressive delays */
[data-reveal-stagger] > *:nth-child(1) { transition-delay:   0ms; }
[data-reveal-stagger] > *:nth-child(2) { transition-delay: 120ms; }
[data-reveal-stagger] > *:nth-child(3) { transition-delay: 240ms; }
[data-reveal-stagger] > *:nth-child(4) { transition-delay: 360ms; }

/* ───── Parallax backgrounds ───── */
[data-parallax] {
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
[data-parallax-bg] {
    position: absolute;
    inset: -10% 0 -10% 0;     /* extra bleed so the translate doesn't expose edges */
    z-index: -1;
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
}
[data-parallax-bg] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    [data-parallax-bg] { transform: none !important; }
}

/* ───── Location / Map ───── */
.address-block {
    margin-top: var(--sp-7);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--color-rule);
    color: var(--c-text-muted);
    line-height: 2;
    letter-spacing: 0.06em;
}
.address-block .eyebrow { display: block; margin-bottom: var(--sp-3); }

.map-wrap {
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-radius: 0;
    background: var(--c-cream-soft);
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.attractions {
    list-style: none;
    margin: var(--sp-6) 0 0;
    padding: 0;
}
.attractions li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-block: var(--sp-4);
    border-bottom: 1px solid var(--color-rule);
    gap: var(--sp-4);
}
.attractions__name {
    font-family: var(--font-serif);
    font-size: var(--fs-h6);
    color: var(--c-text);
}
.attractions__distance {
    font-family: var(--font-sans);
    font-size: var(--fs-body-sm);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    white-space: nowrap;
}

/* ───── Contact ───── */
.contact-block .eyebrow { display: block; margin-bottom: var(--sp-3); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 1rem + 4vw, 6rem);
    align-items: start;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info p { margin-bottom: var(--sp-5); line-height: 1.7; color: var(--c-text-muted); }
.contact-info__line { color: var(--c-text); font-size: var(--fs-body); }
.contact-info__link {
    color: var(--c-text);
    font-size: var(--fs-body);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
}
@media (max-width: 600px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--color-rule);
    background: transparent;
    padding: var(--sp-3) 0;
    font-size: var(--fs-body);
    color: var(--c-text);
    transition: border-color var(--d-base) var(--ease-out);
    font-family: inherit;
    resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--c-olive);
}
.contact-form button { align-self: flex-start; margin-top: var(--sp-3); }

/* ───── Generic page ───── */
.page-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: var(--fs-h2);
    line-height: 1.05;
    margin-block: var(--sp-5);
}
.entry-content { line-height: var(--lh-relaxed); color: var(--c-text); }
.entry-content p + p { margin-top: 1em; }
.entry-content h2,
.entry-content h3 { margin-top: 1.5em; margin-bottom: 0.6em; }
.entry-content a {
    color: var(--c-olive);
    border-bottom: 1px solid currentColor;
}

/* ───── Booking strip (between hero and philosophy) ───── */
.book-strip {
    display: block;
    width: 100%;
    background: var(--c-olive);
    color: var(--c-cream-soft);
    text-decoration: none;
    padding: clamp(1.25rem, 1rem + 1.5vw, 2.25rem) var(--section-x);
    transition: background var(--d-base) var(--ease-out);
}
.book-strip:hover {
    background: var(--c-olive-dark);
    color: var(--c-cream-bg);
    opacity: 1;
}
.book-strip__inner {
    max-width: var(--w-wide);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 0.5rem + 1vw, 1.5rem);
    text-align: center;
}
.book-strip__primary {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.25rem, 1rem + 1.2vw, 2rem);
    line-height: 1.1;
    color: var(--c-cream-bg);
}
.book-strip__sub {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-cream-soft);
    opacity: 0.78;
}
.book-strip__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4em;
    height: 2.4em;
    border: 1px solid currentColor;
    border-radius: var(--r-pill);
    color: var(--c-cream-bg);
    font-size: 1rem;
    transition: transform var(--d-base) var(--ease-out);
}
.book-strip:hover .book-strip__arrow { transform: translateX(4px); }

/* ───── Philosophy mark (top center, before grid) ───── */
.philosophy__mark {
    text-align: center;
    margin-bottom: clamp(2rem, 1rem + 3vw, 4.5rem);
    padding-inline: var(--section-x);
}
.philosophy__mark img {
    width: clamp(72px, 8vw, 120px);
    height: auto;
    margin-inline: auto;
    /* The asset is white-on-transparent — tint it with brand olive so it reads on cream */
    filter: brightness(0) saturate(100%) invert(38%) sepia(11%) saturate(347%) hue-rotate(11deg) brightness(96%) contrast(85%);
    opacity: 0.9;
}
.philosophy__eyebrow {
    display: block;
    margin-bottom: var(--sp-5);
}

/* ───── Location teaser (parallax photo + overlay copy) ───── */
.location-teaser {
    position: relative;
    min-height: 80vh;
    min-height: 80svh;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--c-cream-bg);
    overflow: hidden;
    isolation: isolate;
}
.location-teaser__bg {
    position: absolute;
    inset: -10% 0;
    z-index: -1;
}
.location-teaser__bg img,
.location-teaser__bg .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-teaser::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 0;
}
.location-teaser__inner {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin-inline: auto;
    padding: var(--sp-9) var(--section-x);
}
.location-teaser__eyebrow {
    display: block;
    color: var(--c-cream-bg);
    opacity: 0.85;
    margin-bottom: var(--sp-5);
}
.location-teaser__title {
    font-family: var(--font-serif);
    font-style: normal;
    font-weight: 300;
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    line-height: 1.1;
    color: var(--c-cream-bg);
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
    margin-bottom: var(--sp-5);
}
.location-teaser__title em {
    font-style: italic;
    font-weight: 300;
}
.location-teaser__body {
    color: var(--c-cream-soft);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-7);
    max-width: 36em;
    margin-inline: auto;
}
.location-teaser .bracket-link {
    color: var(--c-cream-bg);
}

/* ───── Footer small menu ───── */
.site-footer__nav {
    margin-top: var(--sp-6);
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(232, 223, 201, 0.18);
}
.site-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-5) var(--sp-7);
}
.site-footer__menu a {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-cream-soft);
    opacity: 0.75;
    transition: opacity var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out);
}
.site-footer__menu a:hover {
    color: var(--c-cream-bg);
    opacity: 1;
}

/* Hide the "Home" menu item when we're already on the home page */
body.home .menu-panel__list .menu-item-home-link { display: none; }
