/* ============================================================
   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: #FFFFFF;
    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;
    transition: transform var(--d-slow) var(--ease-out);
}
.philosophy__photo:hover img {
    transform: scale(1.04);
}
.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; }
}

/* ───── Inner-page hero (about / location / contact / accommodations / single-room) ─────
   Unified height + small white logo above the eyebrow. The home hero (.hero) is
   intentionally NOT included — it has its own full-viewport treatment.
*/
.acc-hero {
    position: relative;
    min-height: 65vh;
    min-height: 65svh;
    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);
}
/* Brand mark — absolute, sits high in the hero, separate from the title block.
   Image source is driven by --logo-inner-hero (Site Settings → Logos). */
.acc-hero::before {
    content: '';
    position: absolute;
    top: clamp(7vh, 10vh, 13vh);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(56px, 6vw, 88px);
    aspect-ratio: 1;
    background-image: var(--logo-inner-hero, url('../images/logo-white-plane.png'));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.95;
    z-index: 2;
    pointer-events: none;
}
.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 hero — matches inner-page hero height + logo treatment ───── */
.room-single__hero {
    position: relative;
    min-height: 65vh;
    min-height: 65svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--c-cream-bg);
    text-align: center;
}
.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: var(--sp-7) var(--section-x);
}
/* Brand mark — absolute, matches inner-page heroes; driven by Site Settings → Logos. */
.room-single__hero::before {
    content: '';
    position: absolute;
    top: clamp(7vh, 10vh, 13vh);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(56px, 6vw, 88px);
    aspect-ratio: 1;
    background-image: var(--logo-inner-hero, url('../images/logo-white-plane.png'));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.95;
    z-index: 2;
    pointer-events: none;
}
.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: -22% 0 -22% 0;     /* extra bleed so stronger 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: -22% 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; }

/* ============================================================
   SINGLE ROOM — items strip, content+image, video, gallery, others
   ============================================================ */

/* Items strip — sits flush below hero */
.room-strip {
    background: var(--c-cream-bg);
    padding-block: clamp(2rem, 1rem + 3vw, 3.5rem);
    border-bottom: 1px solid var(--color-rule);
}
.room-strip__list {
    list-style: none;
    margin: 0;
    padding: 0 var(--section-x);
    max-width: var(--w-wide);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--sp-4) var(--sp-6);
    text-align: center;
}
.room-strip__item {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    align-items: center;
}
.room-strip__value {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 0.8rem + 0.7vw, 1.3rem);
    line-height: 1.2;
    color: var(--c-text);
}
@media (max-width: 760px) {
    .room-strip__list {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-5) var(--sp-4);
    }
    .room-strip__item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

/* Content + side image */
.room-body__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 1rem + 4vw, 6rem);
    align-items: center;
}
.room-body__text {
    max-width: 32em;
}
.room-body__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
    line-height: 1.1;
    color: var(--c-text);
    margin-bottom: var(--sp-5);
}
.room-body__content {
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    color: var(--c-text);
}
.room-body__content p + p { margin-top: 1.2em; }
.room-body__cta { margin-top: var(--sp-7); }
.room-body__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--c-cream-soft);
}
.room-body__media img,
.room-body__media .placeholder {
    width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 900px) {
    .room-body__grid { grid-template-columns: 1fr; gap: var(--sp-7); }
    .room-body__media { aspect-ratio: 4 / 3; order: -1; }
}

/* Highlights & Amenities sections */
.room-highlights .eyebrow,
.room-amenities .eyebrow,
.room-gallery .eyebrow,
.room-others .eyebrow {
    display: block;
    margin-bottom: var(--sp-4);
}
.room-amenities__title,
.room-gallery__title,
.room-others__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
    line-height: 1.1;
    color: var(--c-text);
    margin-bottom: var(--sp-7);
}

/* Amenities grid — icon + label */
.amenities-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--sp-5) var(--sp-7);
}
.amenities-grid li {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    border: 0;
    padding: var(--sp-3) 0;
    border-top: 1px solid var(--color-rule);
    color: var(--c-text);
    font-family: var(--font-sans);
    font-size: var(--fs-body-sm);
    letter-spacing: 0.01em;
}
.amenities-grid .fab-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--c-olive);
    opacity: 0.85;
}

/* Video player */
.room-video__player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    object-fit: cover;
    display: block;
}

/* Gallery — masonry */
.room-gallery__header {
    text-align: center;
    margin-bottom: var(--sp-7);
}
.room-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: clamp(120px, 16vw, 220px);
    gap: clamp(0.5rem, 0.4rem + 0.4vw, 0.75rem);
}
.room-gallery__cell {
    overflow: hidden;
    background: var(--c-cream-soft);
    display: block;
}
.room-gallery__cell img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--d-slow) var(--ease-out);
}
.room-gallery__cell:hover img { transform: scale(1.04); }

/* Custom layout pattern repeating every 6 images */
.room-gallery__cell:nth-child(6n+1) { grid-column: span 7; grid-row: span 2; }
.room-gallery__cell:nth-child(6n+2) { grid-column: span 5; grid-row: span 1; }
.room-gallery__cell:nth-child(6n+3) { grid-column: span 5; grid-row: span 1; }
.room-gallery__cell:nth-child(6n+4) { grid-column: span 6; grid-row: span 1; }
.room-gallery__cell:nth-child(6n+5) { grid-column: span 4; grid-row: span 1; }
.room-gallery__cell:nth-child(6n)   { grid-column: span 2; grid-row: span 1; }

@media (max-width: 760px) {
    .room-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 50vw;
    }
    .room-gallery__cell,
    .room-gallery__cell:nth-child(6n+1),
    .room-gallery__cell:nth-child(6n+2),
    .room-gallery__cell:nth-child(6n+3),
    .room-gallery__cell:nth-child(6n+4),
    .room-gallery__cell:nth-child(6n+5),
    .room-gallery__cell:nth-child(6n) {
        grid-column: span 1; grid-row: span 1;
    }
}

/* Other rooms */
.room-others__header { text-align: center; margin-bottom: var(--sp-7); }
.room-others__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 1rem + 2vw, 3rem);
}
.room-others__card {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    color: var(--c-text);
}
.room-others__card:hover { opacity: 1; }
.room-others__card:hover .room-others__media img { transform: scale(1.04); }
.room-others__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--c-cream-soft);
}
.room-others__media img,
.room-others__media .placeholder {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--d-slow) var(--ease-out);
}
.room-others__name {
    font-family: var(--font-serif);
    font-size: var(--fs-h5);
    font-weight: 400;
    margin-bottom: var(--sp-2);
}
@media (max-width: 760px) {
    .room-others__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 14, 0.94);
    z-index: var(--z-toast, 70);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--d-base) var(--ease-out), visibility var(--d-base) var(--ease-out);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage {
    position: relative;
    width: min(94vw, 1400px);
    height: min(88vh, 88svh);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    color: var(--c-text);
    border-radius: var(--r-pill);
    width: 3rem; height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--d-fast) var(--ease-out), transform var(--d-fast) var(--ease-out);
    border: 0;
}
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--c-cream-bg); }
.lightbox__prev  { left:  -1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: -1rem; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.05); }

/* Close button — fixed to the page top-right (not the stage) */
.lightbox__close {
    position: fixed;
    top: clamp(1rem, 2vw, 2rem);
    right: clamp(1rem, 2vw, 2rem);
    background: rgba(255, 255, 255, 0.9);
    color: var(--c-text);
    border-radius: var(--r-pill);
    width: 3rem; height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--d-fast) var(--ease-out), transform var(--d-fast) var(--ease-out);
    border: 0;
    z-index: 1;
}
.lightbox__close:hover { background: var(--c-cream-bg); transform: scale(1.05); }
.lightbox__counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--c-cream-soft);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
}
@media (max-width: 760px) {
    .lightbox__prev { left: 0.5rem; }
    .lightbox__next { right: 0.5rem; }
}

/* ───── Social icon rows (footer + contact) ───── */
.site-footer__socials,
.contact-info__socials ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--sp-5);
    margin-block: var(--sp-6);
}
.site-footer__socials a,
.contact-info__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem; height: 2.4rem;
    border-radius: var(--r-pill);
    color: var(--c-cream-soft);
    border: 1px solid currentColor;
    opacity: 0.7;
    transition: opacity var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out), background var(--d-base) var(--ease-out);
}
.site-footer__socials a:hover,
.contact-info__socials a:hover {
    opacity: 1;
    color: var(--c-cream-bg);
    background: rgba(232, 223, 201, 0.1);
}
.site-footer__socials svg,
.contact-info__socials svg {
    width: 18px; height: 18px;
}

/* Contact page: inherit dark text */
.contact-info__socials a {
    color: var(--c-text);
    border-color: var(--color-rule);
    opacity: 0.85;
}
.contact-info__socials a:hover {
    color: var(--c-olive);
    background: rgba(104, 103, 95, 0.06);
    opacity: 1;
}
.contact-info__socials .eyebrow { display: block; margin-bottom: var(--sp-4); }
.contact-info__socials ul { justify-content: flex-start; margin-top: var(--sp-3); }

/* ───── Footer newsletter (integrated) ───── */
.site-footer {
    padding-block: 0;  /* Reset top/bottom; sections handle their own */
}
.site-footer__newsletter {
    padding-block: clamp(4rem, 3rem + 4vw, 7rem);
    text-align: center;
    color: var(--c-cream-soft);
}
.site-footer__newsletter-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
    line-height: 1.1;
    color: var(--c-cream-bg);
    margin: 0 auto var(--sp-5);
    max-width: 18em;
}
.site-footer__newsletter-sub {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-relaxed);
    color: var(--c-cream-soft);
    opacity: 0.8;
    max-width: 36em;
    margin: 0 auto var(--sp-7);
}
.site-footer__newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: var(--sp-5);
    align-items: end;
    max-width: 56rem;
    margin: 0 auto;
}
.site-footer__newsletter-form .newsletter-field {
    text-align: left;
}
.site-footer__newsletter-form input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(232, 223, 201, 0.3);
    background: transparent;
    padding: var(--sp-3) 0;
    font-size: var(--fs-body);
    color: var(--c-cream-bg);
    font-family: inherit;
    transition: border-color var(--d-base) var(--ease-out);
}
.site-footer__newsletter-form input::placeholder {
    color: var(--c-cream-soft);
    opacity: 0.55;
}
.site-footer__newsletter-form input:focus {
    outline: none;
    border-color: var(--c-cream-bg);
}

/* Ghost button on dark — for the footer newsletter Subscribe */
.btn--ghost-on-dark {
    background: transparent;
    color: var(--c-cream-soft);
    border: 1px solid var(--c-cream-soft);
}
.btn--ghost-on-dark:hover {
    background: var(--c-cream-bg);
    color: var(--c-olive);
    opacity: 1;
}

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

/* Hairline between newsletter and brand block */
.site-footer__rule {
    border: 0;
    border-top: 1px solid rgba(232, 223, 201, 0.15);
    margin: 0;
}

/* Brand block sits inside the same olive footer */
.site-footer__brand {
    padding-block: clamp(3rem, 2rem + 4vw, 6rem);
    text-align: center;
}

/* ───── Accommodations archive intro ───── */
.acc-intro {
    background: var(--c-cream-bg);
    text-align: center;
}
.acc-intro__eyebrow {
    display: block;
    margin-bottom: var(--sp-5);
}
.acc-intro__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
    line-height: 1.15;
    color: var(--c-text);
    margin-bottom: var(--sp-6);
    max-width: 18em;
    margin-inline: auto;
    letter-spacing: -0.005em;
}
.acc-intro__title em { font-style: italic; }
.acc-intro__body {
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    color: var(--c-text-muted);
    max-width: none;       /* let the container width control layout */
    margin-inline: auto;
    text-align: left;      /* drop cap requires left alignment */
}
.acc-intro__body p + p { margin-top: 1.2em; }
.acc-intro__body p:first-child::first-letter {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3.4em;
    float: left;
    line-height: 0.9;
    margin: 0.05em 0.12em 0 0;
    color: var(--c-olive);
}

/* ───── Accommodations archive amenities (below rooms grid) ───── */
.acc-amenities__header {
    text-align: center;
    margin-bottom: var(--sp-7);
}
.acc-amenities__header .eyebrow {
    display: block;
    margin-bottom: var(--sp-4);
}
.acc-amenities__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
    line-height: 1.1;
    color: var(--c-text);
}

/* ───── About page body ───── */
.about-body__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
    line-height: 1.1;
    color: var(--c-text);
    margin-bottom: var(--sp-7);
    text-align: center;
    letter-spacing: -0.005em;
}
.about-body__content {
    font-family: var(--font-sans);
    font-size: var(--fs-body);     /* matches Accommodations intro body */
    line-height: var(--lh-relaxed);
    color: var(--c-text);
}
.about-body__content h2,
.about-body__content h3 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    line-height: 1.15;
    color: var(--c-text);
    margin: 2em 0 0.6em;
}
.about-body__content h2 { font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem); }
.about-body__content h3 { font-size: clamp(1.25rem, 1rem + 0.8vw, 1.75rem); }
.about-body__content p:first-child::first-letter {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3.4em;
    float: left;
    line-height: 0.9;
    margin: 0.05em 0.12em 0 0;
    color: var(--c-olive);
}

/* ───── Location page body ───── */
.loc-body__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
    line-height: 1.1;
    color: var(--c-text);
    margin-bottom: var(--sp-7);
    text-align: center;
    letter-spacing: -0.005em;
}
.loc-body__content {
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    color: var(--c-text);
}
.loc-body__content p + p { margin-top: 1.2em; }
.loc-body__content p:first-child::first-letter {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3.4em;
    float: left;
    line-height: 0.9;
    margin: 0.05em 0.12em 0 0;
    color: var(--c-olive);
}

/* ───── Location attractions list ───── */
.loc-attractions__header {
    text-align: center;
    margin-bottom: var(--sp-7);
}
.loc-attractions__header .eyebrow {
    display: block;
    margin-bottom: var(--sp-4);
}
.loc-attractions__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
    line-height: 1.1;
    color: var(--c-text);
}
.loc-attractions__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.loc-attractions__list 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);
}
.loc-attractions__list li:first-child { border-top: 1px solid var(--color-rule); }
.loc-attractions__name-col {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    flex: 1;
}
.loc-attractions__name {
    font-family: var(--font-serif);
    font-size: var(--fs-h6);
    color: var(--c-text);
}
.loc-attractions__note {
    font-family: var(--font-sans);
    font-size: var(--fs-body-sm);
    color: var(--c-text-muted);
    line-height: 1.5;
}
.loc-attractions__distance {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Top strip ── */
.contact-strip {
    padding-block: var(--sp-7);
    border-bottom: 1px solid var(--color-rule);
}
.contact-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 1rem + 2vw, 4rem);
}
.contact-strip__col .eyebrow {
    display: block;
    margin-bottom: var(--sp-3);
}
.contact-strip__col p {
    font-family: var(--font-sans);
    font-size: var(--fs-body-sm);
    line-height: 1.6;
    color: var(--c-text);
    margin: 0 0 var(--sp-2);
}
.contact-strip__col a { border-bottom: 1px solid transparent; transition: border-color var(--d-fast) var(--ease-out); }
.contact-strip__col a:hover { border-color: var(--c-text); opacity: 1; }
.contact-strip__sub {
    color: var(--c-text-muted) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
@media (max-width: 760px) { .contact-strip__grid { grid-template-columns: 1fr; gap: var(--sp-5); } }

/* ── Form section ── */
.contact-form-section__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 1rem + 4vw, 6rem);
    align-items: start;
}
.contact-form-section__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--c-cream-soft);
}
.contact-form-section__media img,
.contact-form-section__media .placeholder {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--d-slow) var(--ease-out);
}
.contact-form-section__media:hover img,
.contact-form-section__media:hover .placeholder {
    transform: scale(1.04);
}
@media (max-width: 900px) { .contact-form-section__grid { grid-template-columns: 1fr; } }

.contact-form-block { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-form-block .eyebrow { display: block; }
.contact-form-block__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
    line-height: 1.1;
    color: var(--c-text);
    margin: var(--sp-3) 0 var(--sp-5);
}
.contact-form-block__field { position: relative; }
.contact-form-block__field input,
.contact-form-block__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);
    font-family: inherit;
    transition: border-color var(--d-base) var(--ease-out);
    resize: vertical;
}
.contact-form-block__field input::placeholder,
.contact-form-block__field textarea::placeholder { color: var(--c-text-muted); opacity: 0.7; }
.contact-form-block__field input:focus,
.contact-form-block__field textarea:focus { outline: none; border-color: var(--c-olive); }

/* Subject pills */
.contact-form-block__subjects {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    border: 0;
    padding: var(--sp-2) 0;
    margin: 0;
}
.subject-pill {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.subject-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.subject-pill span {
    display: inline-block;
    padding: 0.55em 1em;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    border: 1px solid var(--color-rule);
    border-radius: var(--r-pill);
    transition: background var(--d-fast) var(--ease-out), color var(--d-fast) var(--ease-out), border-color var(--d-fast) var(--ease-out);
}
.subject-pill input:checked + span {
    background: var(--c-olive);
    color: var(--c-cream-bg);
    border-color: var(--c-olive);
}
.contact-form-block button { align-self: flex-start; margin-top: var(--sp-4); }

/* ── Map section ── */
.contact-map {
    position: relative;
    background: var(--c-cream-soft);
}
.contact-map__canvas {
    width: 100%;
    aspect-ratio: 16 / 8;
    background: var(--c-cream-soft);
}
.contact-map__canvas iframe {
    width: 100%; height: 100%; border: 0; display: block;
}
.contact-map__card {
    position: absolute;
    top: 50%;
    left: clamp(1rem, 4vw, 5rem);
    transform: translateY(-50%);
    background: var(--c-cream-bg);
    padding: clamp(1.5rem, 1rem + 1vw, 2.25rem);
    max-width: 320px;
    box-shadow: var(--shadow-soft);
    z-index: 2;
}
.contact-map__card .eyebrow {
    display: block;
    margin-bottom: var(--sp-3);
}
.contact-map__address {
    font-family: var(--font-serif);
    font-size: var(--fs-h6);
    line-height: 1.3;
    color: var(--c-text);
    margin: 0 0 var(--sp-5);
}
@media (max-width: 760px) {
    .contact-map { background: var(--c-cream-bg); }
    .contact-map__card {
        position: static;
        transform: none;
        max-width: none;
        margin: 0 var(--section-x);
        padding: var(--sp-6) var(--sp-5);
        box-shadow: none;
        border-bottom: 1px solid var(--color-rule);
    }
    .contact-map__canvas { aspect-ratio: 4 / 3; }
}

/* ── Three ways here ── */
.contact-ways__header { text-align: center; margin-bottom: var(--sp-8); }
.contact-ways__header .eyebrow { display: block; margin-bottom: var(--sp-4); }
.contact-ways__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
    line-height: 1.1;
}
.contact-ways__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 1rem + 4vw, 5rem);
}
.contact-way__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--fs-h4);
    color: var(--c-text-muted);
    display: block;
    margin-bottom: var(--sp-4);
}
.contact-way__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: var(--fs-h5);
    color: var(--c-text);
    margin-bottom: var(--sp-3);
}
.contact-way__body {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-relaxed);
    color: var(--c-text-muted);
}
@media (max-width: 760px) { .contact-ways__grid { grid-template-columns: 1fr; gap: var(--sp-7); } }

/* ── FAQ ── */
.contact-faq__header { text-align: center; margin-bottom: var(--sp-8); }
.contact-faq__header .eyebrow { display: block; margin-bottom: var(--sp-4); }
.contact-faq__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
    line-height: 1.1;
}
.contact-faq__list { list-style: none; margin: 0; padding: 0; }
.contact-faq__row {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: var(--sp-4);
    padding-block: var(--sp-5);
    border-bottom: 1px solid var(--color-rule);
}
.contact-faq__row:first-child { border-top: 1px solid var(--color-rule); }
.contact-faq__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--fs-h6);
    color: var(--c-text-muted);
}
.contact-faq__q {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: var(--fs-h6);
    color: var(--c-text);
    margin-bottom: var(--sp-2);
}
.contact-faq__a {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-relaxed);
    color: var(--c-text-muted);
    max-width: 60ch;
}
@media (max-width: 600px) {
    .contact-faq__row { grid-template-columns: 2.5rem 1fr; gap: var(--sp-3); }
}

/* Contact form — success / error messages */
.contact-form-block__msg {
    margin-top: var(--sp-5);
    padding: var(--sp-4) var(--sp-5);
    font-family: var(--font-sans);
    font-size: var(--fs-body-sm);
    line-height: 1.5;
    border-radius: var(--r-md);
}
.contact-form-block__msg--ok {
    background: rgba(104, 103, 95, 0.08);
    color: var(--c-text);
    border: 1px solid var(--c-olive);
}
.contact-form-block__msg--err {
    background: rgba(201, 91, 91, 0.08);
    color: #8B3F3F;
    border: 1px solid #C95B5B;
}
.contact-form-block button[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ───── Policy / Legal pages ───── */
.page-legal__updated {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: var(--sp-7);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--color-rule);
}
.page-legal__content {
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    color: var(--c-text);
}
.page-legal__content > *:first-child { margin-top: 0; }
.page-legal__content p + p { margin-top: 1em; }
.page-legal__content h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
    line-height: 1.2;
    color: var(--c-text);
    margin: 2.5em 0 0.6em;
}
.page-legal__content h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.4rem);
    line-height: 1.3;
    color: var(--c-text);
    margin: 1.8em 0 0.5em;
}
.page-legal__content ul,
.page-legal__content ol {
    padding-left: 1.4em;
    margin: 0.6em 0 1.2em;
}
.page-legal__content li { margin-bottom: 0.5em; line-height: var(--lh-relaxed); }
.page-legal__content a {
    color: var(--c-olive);
    border-bottom: 1px solid currentColor;
}
.page-legal__content strong { color: var(--c-text); font-weight: 600; }
.page-legal__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: var(--fs-body-sm);
}
.page-legal__content th,
.page-legal__content td {
    text-align: left;
    padding: var(--sp-3) var(--sp-4);
    border-bottom: 1px solid var(--color-rule);
}
.page-legal__content th {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    font-weight: 500;
}

/* Off-canvas menu — social icons row (cream BG, dark accents) */
.menu-panel__socials {
    list-style: none;
    margin: var(--sp-3) 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
}
.menu-panel__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--r-pill);
    color: var(--c-text);
    border: 1px solid var(--color-rule);
    opacity: 0.85;
    transition: opacity var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out), background var(--d-base) var(--ease-out), border-color var(--d-base) var(--ease-out);
}
.menu-panel__socials a:hover {
    opacity: 1;
    color: var(--c-olive);
    border-color: var(--c-olive);
    background: rgba(104, 103, 95, 0.06);
}
.menu-panel__socials svg {
    width: 18px;
    height: 18px;
}

/* Newsletter feedback messages */
.site-footer__newsletter-msg {
    grid-column: 1 / -1;
    margin: var(--sp-3) 0 0;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-cream-bg);
    text-align: center;
    padding: var(--sp-3);
    border: 1px solid rgba(232, 223, 201, 0.4);
    border-radius: var(--r-md);
}
.site-footer__newsletter-msg--err {
    border-color: rgba(201, 91, 91, 0.5);
    color: #F0C8C8;
}

/* Mobile header — phone & email circular buttons 30% smaller (Book stays the CTA size) */
@media (max-width: 760px) {
    .header-cluster .btn-circle:not(.btn-circle--book) {
        width: calc(var(--btn-circle) * 0.7);
        height: calc(var(--btn-circle) * 0.7);
    }
    .header-cluster .btn-circle:not(.btn-circle--book) svg {
        width: 0.85rem;
        height: 0.85rem;
    }
}

/* Mobile footer bottom — stack and center copyright + credit */
@media (max-width: 760px) {
    .site-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--sp-3);
    }
}

/* ───── Location — live weather strip (above map) ───── */
.loc-weather {
    background: var(--c-cream-soft);
    padding-block: clamp(2rem, 1rem + 3vw, 3rem);
    border-top: 1px solid var(--color-rule);
    border-bottom: 1px solid var(--color-rule);
}
.loc-weather__inner {
    text-align: center;
}
.loc-weather__eyebrow {
    display: block;
    margin-bottom: var(--sp-4);
    color: var(--c-text-muted);
}
.loc-weather__row {
    display: inline-flex;
    align-items: baseline;
    gap: var(--sp-3);
    color: var(--c-text);
}
.loc-weather__icon {
    width: 22px;
    height: 22px;
    color: var(--c-olive);
    align-self: center;
    margin-right: var(--sp-2);
    flex-shrink: 0;
}
.loc-weather__temp {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.01em;
}
.loc-weather__sep {
    color: var(--c-text-muted);
    font-size: 1.2em;
}
.loc-weather__desc {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

@media (max-width: 600px) {
    .loc-weather__row {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--sp-2);
    }
}

/* Home accommodation parallax — taller than inner-page heroes */
.acc-hero[data-parallax] {
    min-height: 80vh;
    min-height: 80svh;
}

/* ───── Photo hover scale + subtle drop shadow ─────
   Applied to all contained photos and the room video.
   Galleries (single-room gallery + masonry) are explicitly excluded.
*/
.room-body__media {
    box-shadow: var(--shadow-photo);
}
.room-body__media img,
.room-body__media .placeholder {
    transition: transform var(--d-slow) var(--ease-out);
}
.room-body__media:hover img,
.room-body__media:hover .placeholder {
    transform: scale(1.04);
}

/* Drop shadow on every other contained photo + video */
.philosophy__photo,
.room-card__media,
.room-others__media,
.contact-form-section__media,
.room-video__player {
    box-shadow: var(--shadow-photo);
}

/* Video section header (matches gallery header treatment) */
.room-video__header {
    text-align: center;
    margin-bottom: var(--sp-7);
}
.room-video__header .eyebrow {
    display: block;
    margin-bottom: var(--sp-4);
}
.room-video__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem);
    line-height: 1.1;
    color: var(--c-text);
}

/* Anchor wrappers around photos shouldn't fade — keep image full-opacity on hover */
a.room-card__media:hover { opacity: 1; }

/* ───── Gallery page intro (optional) ───── */
.page-gallery-intro { text-align: center; }
.page-gallery-intro__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
    line-height: 1.15;
    color: var(--c-text);
    margin-bottom: var(--sp-5);
    max-width: 22em;
    margin-inline: auto;
}
.page-gallery-intro__body {
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    color: var(--c-text-muted);
    max-width: 36em;
    margin-inline: auto;
}
