/* =========================================================
   Mukima Manor v4 — Forest-black + gold (dark luxury safari)
   Strategy: SWAP --cream and --ink semantics so the rest of the
   stylesheet's "dark text on cream bg" pattern now reads as
   "cream text on dark bg" without rewriting selectors.
   ========================================================= */
:root {
    /* Page surfaces (now dark) */
    --cream:       #0E1E17;   /* PAGE BG — deep forest-black */
    --cream-2:     #142621;   /* slightly elevated panels / strips */
    --cream-warm:  #182A22;   /* warmer alternating section */
    --paper:       #0B1813;   /* deepest inset / cards */

    /* Text (now cream) */
    --ink:         #EFE7D2;   /* primary text — warm cream */
    --ink-soft:    #BFB498;   /* body, secondary */
    --grey:        #8B8773;   /* meta, captions */
    --grey-light:  #6B6758;   /* tertiary */

    /* Rules / borders (cream alpha on dark) */
    --rule:        rgba(239, 231, 210, 0.14);
    --rule-strong: rgba(239, 231, 210, 0.28);

    /* Accents — antique gold replaces terracotta/ochre */
    --terracotta:  #B8924A;   /* primary gold (CTA / eyebrow) */
    --rose:        #D4B26C;   /* lighter gold for hover */
    --sage:        #7A8E78;   /* muted sage — still alive on dark */
    --moss:        #1F3028;   /* deep footer band */
    --ochre:       #B8924A;   /* gold alias */

    /* Section-inversion helpers — used by .site-footer, section.dark, hero overlays.
       Always behave as a "deeper black" surface with cream text, so the existing
       "dark section" pattern still produces a contrasting band on the dark page. */
    --inverse-bg:  #08120D;   /* even deeper than page bg */
    --inverse-fg:  #EFE7D2;   /* warm cream text */

    /* Type */
    --serif: "Cormorant", "Cormorant Garamond", Garamond, serif;
    --sans: "Work Sans", -apple-system, "Helvetica Neue", sans-serif;
    --script: "Homemade Apple", "Caveat", cursive;
    --script-l: "Caveat", cursive;

    /* Fluid scale */
    --fs-display: clamp(2.2rem, 3.6vw + 0.6rem, 4rem);
    --fs-h1: clamp(1.9rem, 2.5vw + 0.6rem, 3rem);
    --fs-h2: clamp(1.6rem, 1.8vw + 0.6rem, 2.4rem);
    --fs-h3: clamp(1.15rem, 0.5vw + 0.95rem, 1.4rem);
    --fs-lead: clamp(1rem, 0.3vw + 0.95rem, 1.15rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-tiny: 0.74rem;
    --fs-eyebrow: 0.76rem;

    /* Spacing — tightened from v3a */
    --s-1: 0.25rem;
    --s-2: 0.5rem;
    --s-3: clamp(0.75rem, 0.35rem + 1vw, 1.15rem);
    --s-4: clamp(1.1rem, 0.4rem + 2vw, 1.9rem);
    --s-5: clamp(1.5rem, 0.5rem + 3vw, 2.7rem);
    --s-6: clamp(2rem, 0.7rem + 4vw, 3.6rem);
    --s-7: clamp(2.6rem, 0.9rem + 5vw, 4.6rem);
    --s-8: clamp(3.4rem, 1.4rem + 6vw, 5.8rem);
    --s-9: clamp(4.5rem, 2rem + 7vw, 7rem);
    --container: 1280px;
    --container-wide: 1380px;
    --container-tight: 760px;
    --container-narrow: 580px;
    --text-col: 460px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    font-size: var(--fs-body);
    line-height: 1.65;
    font-weight: 300;
    color: var(--ink-soft);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button {
    font: inherit;
    cursor: pointer;
    background: transparent;
    border: 0;
    color: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.003em;
    margin: 0 0 var(--s-3);
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 500;
}

p {
    margin: 0 0 var(--s-3);
    max-width: 60ch;
    font-weight: 300;
}

/* When a paragraph sits inside a centered container, keep it centered.
   p has max-width: 60ch which would otherwise leave it left-aligned. */
[style*="text-align:center"] > p,
[style*="text-align: center"] > p,
.container-tight[style*="text-align"] p,
.center > p,
p.center {
    margin-inline: auto;
}

p:last-child {
    margin-bottom: 0;
}

/* The Sterrekopje signature uppercase eyebrow */
.eyebrow {
    font-family: var(--sans);
    font-size: var(--fs-eyebrow);
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    display: block;
    margin-bottom: var(--s-3);
}

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

.eyebrow.center {
    text-align: center;
}

.eyebrow.spaced {
    letter-spacing: 0.45em;
}

.display-italic {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: var(--fs-display);
    line-height: 1.05;
    letter-spacing: -0.005em;
    color: var(--ink);
}

/* Hero title — softer, mixed-case italic Cormorant (not all-caps) */
.hero-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: var(--fs-display);
    letter-spacing: -0.005em;
    color: var(--cream);
    line-height: 1.05;
    max-width: 22ch;
    margin: 0 auto var(--s-4);
}

.hero-title em {
    font-style: normal;
}

.lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: var(--fs-lead);
    line-height: 1.55;
    color: var(--ink-soft);
}

/* Layout */
.container {
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
}

.container-wide {
    width: min(var(--container-wide), 100% - 3rem);
    margin-inline: auto;
}

.container-tight {
    width: min(var(--container-tight), 100% - 2rem);
    margin-inline: auto;
}

.container-narrow {
    width: min(var(--container-narrow), 100% - 2rem);
    margin-inline: auto;
}

section {
    padding: var(--s-7) 0;
    position: relative;
}

section.tight {
    padding: var(--s-5) 0;
}

section.flush {
    padding: 0;
}

/* Homepage breathing room — a touch more space between sections for a luxe rhythm. */
.home section {
    padding: var(--s-8) 0;
}

.home section.tight {
    padding: var(--s-6) 0;
}

.home section.flush {
    padding: 0;
}

.home .statement {
    padding: var(--s-8) 0 var(--s-7);
}

.home .verb-pair .vp-text {
    padding: var(--s-5) var(--s-6);
}

/* Sitewide: guarantee the corners of opposing section images never touch.
   Fluid gutter — minimum 15px on mobile, up to 32px on desktop, consistent across pages. */
section + section {
    margin-top: clamp(15px, 2vw, 32px);
}

.cinematic {
    margin: clamp(15px, 2vw, 32px) 0;
}

/* But hero + first content section should sit flush (hero already has its own image) */
.hero + section {
    margin-top: 0;
}

/* Hero-page pages (interior pages with smaller hero) need extra breathing room
   above the first content section so it doesn’t crowd the hero text. */
.hero-page + section,
.hero-page + article {
    padding-top: var(--s-8);
}

body.post .hero-page + article,
body.room .hero-page + section,
body.memoirs .hero-page + section {
    padding-top: var(--s-9);
}

/* And press strip should sit flush against statement (they share the same intro flow) */
.press-strip + section {
    margin-top: 0;
}

/* Sections inside a wrapper or with .flush ignore the gutter */
section.flush + section,
section + section.flush {
    margin-top: 0;
}

section.alt {
    background: var(--cream-2);
}

section.warm {
    background: var(--cream-warm);
}

section.dark {
    background: var(--ink);
    color: var(--cream);
}

section.dark h1,
section.dark h2,
section.dark h3 {
    color: var(--cream);
}

section.dark .eyebrow {
    color: var(--cream);
}

section.dark .lead {
    color: rgba(250,243,238,0.85);
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.mt-1 {
    margin-top: var(--s-1);
}

.mt-2 {
    margin-top: var(--s-2);
}

.mt-3 {
    margin-top: var(--s-3);
}

.mt-4 {
    margin-top: var(--s-4);
}

.mt-5 {
    margin-top: var(--s-5);
}

.mt-6 {
    margin-top: var(--s-6);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.95em 1.7em;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 0;
    transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    background: var(--ink);
    color: var(--cream);
}

.btn-filled {
    background: var(--ink);
    color: var(--cream);
}

.btn-filled:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.btn-terracotta {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--cream);
}

.btn-terracotta:hover {
    background: transparent;
    color: var(--terracotta);
}

.btn-on-dark {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-on-dark:hover {
    background: var(--cream);
    color: var(--ink);
}

.btn-small {
    padding: 0.7em 1.2em;
    font-size: 0.66rem;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: transparent;
    transition: background .35s var(--ease), box-shadow .35s var(--ease);
    padding: 18px 0;
}

.site-header.solid {
    background: var(--cream);
    box-shadow: 0 1px 0 var(--rule);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--s-3);
}

.nav-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    color: var(--cream);
    transition: color .3s var(--ease);
    justify-self: start;
}

.site-header.solid .nav-toggle {
    color: var(--ink);
}

.nav-toggle .bar {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    margin: 5px 0;
    transition: transform .35s var(--ease), opacity .25s var(--ease);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.logo {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    transition: color .3s var(--ease);
}

.site-header.solid .logo {
    color: var(--ink);
}

.logo-wordmark {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 0.95;
}

.logo-date {
    font-family: var(--serif);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    line-height: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding-top: 4px;
    opacity: 0.85;
}

.logo-suffix {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 0.95;
}

.enquire-cta {
    justify-self: end;
    padding: 0.8em 1.4em;
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    border: 1px solid var(--cream);
    color: var(--cream);
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.enquire-cta:hover {
    background: var(--cream);
    color: var(--ink);
}

.site-header.solid .enquire-cta {
    border-color: var(--ink);
    color: var(--ink);
}

.site-header.solid .enquire-cta:hover {
    background: var(--ink);
    color: var(--cream);
}

@media (max-width: 720px) {
    .logo-wordmark,
    .logo-suffix {
        font-size: 1.05rem;
        letter-spacing: 0.06em;
    }

    .logo-date {
        font-size: 0.54rem;
    }

    .enquire-cta {
        padding: 0.6em 0.9em;
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }
}

/* ---------- Drawer ---------- */
.drawer {
    position: fixed;
    inset: 0;
    background: var(--cream);
    color: var(--ink);
    z-index: 45;
    padding: 110px 2rem 2rem;
    transform: translateX(-100%);
    transition: transform .55s var(--ease);
    overflow-y: auto;
}

.drawer.open {
    transform: translateX(0);
}

.drawer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--s-6);
    max-width: 1200px;
    margin-inline: auto;
}

.drawer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-nav li {
    border-bottom: 1px solid var(--rule);
}

.drawer-nav a {
    display: block;
    padding: 0.8rem 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.4rem, 1.8vw + 0.8rem, 2.1rem);
    font-weight: 400;
    color: var(--ink);
    transition: color .25s var(--ease), padding .25s var(--ease);
}

.drawer-nav a:hover {
    color: var(--terracotta);
    padding-left: 12px;
}

.drawer-side {
    padding-top: 0.5rem;
}

.drawer-side .eyebrow {
    color: var(--grey);
    margin-bottom: var(--s-3);
}

.drawer-side p {
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.drawer-side a {
    display: block;
    padding: 0.35rem 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink);
}

.drawer-side a:hover {
    color: var(--terracotta);
}

/* Drawer sketch — the Mukima+Cabanas drawing under the booking button */
.drawer-sketch {
    margin-top: var(--s-6);
    padding-top: var(--s-5);
    border-top: 1px solid rgba(43,38,34,0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-3);
}

.drawer-sketch img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    opacity: 0.85;
    mix-blend-mode: multiply;
}

.drawer-sketch-caption {
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .drawer-sketch {
        align-items: center;
        text-align: center;
    }

    .drawer-sketch img {
        max-width: 300px;
    }
}

/* Booking button in drawer — override the generic .drawer-side a styles */
.drawer-side a.btn,
.drawer-side a.btn-filled {
    display: inline-block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 1em 1.6em;
    text-align: center;
    background: var(--ink);
    color: var(--cream);
    border: 1px solid var(--ink);
}

.drawer-side a.btn-filled:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--cream);
}

@media (max-width: 900px) {
    .drawer {
        padding: 90px 1.5rem 2rem;
    }

    .drawer-grid {
        grid-template-columns: 1fr;
        gap: var(--s-4);
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--cream);
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(43,38,34,0.5) 0%, rgba(43,38,34,0.1) 30%, rgba(43,38,34,0.55) 100%);
}

.hero picture,
.hero img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inner {
    padding-top: 110px;
    padding-bottom: 80px;
    text-align: center;
    width: 100%;
}

.hero-italic-sub {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.1rem, 1.2vw + 0.7rem, 1.5rem);
    color: var(--cream);
    margin-top: var(--s-3);
    max-width: 38ch;
    margin-inline: auto;
    opacity: 0.94;
    line-height: 1.45;
}

.hero-scroll {
    position: absolute;
    bottom: var(--s-4);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(250,243,238,0.78);
    z-index: 2;
    text-align: center;
}

.hero-scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 36px;
    margin: 10px auto 0;
    background: currentColor;
    opacity: 0.6;
}

.hero-page {
    min-height: 70vh;
}

/* ---------- Statement (centered intro after hero) ---------- */
.statement {
    text-align: center;
    padding: var(--s-7) 0 var(--s-6);
}

.statement .eyebrow.spaced {
    margin-bottom: var(--s-3);
}

.statement h2 {
    max-width: 22ch;
    margin: 0 auto var(--s-4);
}

.statement p {
    max-width: 56ch;
    margin-inline: auto;
}

/* ---------- Verb-pair (alternating image + narrow text column) ---------- */
.verb-pair {
    display: grid;
    /* Asymmetric: image column wider than text column — editorial magazine pattern */
    grid-template-columns: 1.65fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    padding: var(--s-6) clamp(1rem, 3vw, 2rem);
}

.verb-pair + .verb-pair {
    border-top: 1px solid var(--rule);
}

.verb-pair .vp-image {
    position: relative;
    overflow: hidden;
    /* Image fills its grid column width up to a max; portrait-leaning at all sizes */
    width: 100%;
    max-width: 860px;
    height: clamp(500px, 60vw, 880px);
    /* Bias crop toward the top so heads / focal points stay visible */
    margin-inline: 0;
}

.verb-pair .vp-image img {
    object-position: center 30%;
}

/* On image-left pairs (image is on the left of the grid), align image to the left edge of its column */
.verb-pair:not(.image-right) .vp-image {
    margin-right: auto;
}

/* On image-right pairs, align image to the right edge of its column */
.verb-pair.image-right .vp-image {
    margin-left: auto;
}

.verb-pair .vp-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.verb-pair .vp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.verb-pair.image-right { grid-template-columns: 1fr 1.65fr; }

.verb-pair .vp-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--s-7) var(--s-6);
    max-width: 600px;
    margin: 0 auto;
}

.verb-pair.image-right .vp-image {
    order: 2;
}

.verb-pair.image-right .vp-text {
    order: 1;
    margin-left: auto;
}

.verb-pair h2 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.9rem, 2.4vw + 0.6rem, 2.8rem);
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: var(--s-4);
    max-width: 18ch;
}

.verb-pair p {
    color: var(--ink-soft);
    margin-bottom: var(--s-3);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 44ch;
}

.verb-pair .btn {
    margin-top: var(--s-3);
    align-self: flex-start;
}

/* Tablet — keep two-column but with relaxed proportions so neither column starves */
@media (max-width: 1100px) and (min-width: 921px) {
    .verb-pair,
    .verb-pair.image-right {
        grid-template-columns: 1.3fr 1fr;
        gap: clamp(1.5rem, 3vw, 2.5rem);
    }
    .verb-pair.image-right {
        grid-template-columns: 1fr 1.3fr;
    }
    .verb-pair .vp-image {
        height: clamp(440px, 56vw, 620px);
    }
    .verb-pair .vp-text {
        padding: var(--s-5) var(--s-4);
        max-width: none;
    }
}

/* Mobile / small tablet — stack image and text */
@media (max-width: 920px) {
    .verb-pair,
    .verb-pair.image-right {
        grid-template-columns: 1fr;
        padding: var(--s-5) 0;
        gap: var(--s-4);
    }

    .verb-pair .vp-image {
        max-width: 100%;
        margin-inline: 0;
    }

    .verb-pair .vp-text {
        padding: var(--s-4) 1.5rem;
        max-width: none;
        margin: 0;
        align-items: flex-start;
    }

    .verb-pair .vp-image {
        width: 100%;
        /* Taller on mobile so portrait subjects stay legible (heads not cropped) */
        height: clamp(420px, 95vw, 620px);
    }
    .verb-pair .vp-image img {
        height: 100%;
        object-position: center 25%;
    }

    .verb-pair.image-right .vp-image,
    .verb-pair.image-right .vp-text {
        order: 0;
    }
}

/* Very small phones */
@media (max-width: 420px) {
    .verb-pair .vp-image {
        height: clamp(360px, 100vw, 480px);
    }
    .verb-pair .vp-text {
        padding: var(--s-4) 1.25rem;
    }
}

/* ---------- Verb marquee (STAY · REST · ROAM · GATHER) ---------- */
.verb-row {
    text-align: center;
    padding: var(--s-4) 0;
    background: var(--cream-2);
}

.verb-row .verbs {
    font-family: var(--sans);
    font-size: clamp(0.7rem, 0.4vw + 0.7rem, 0.85rem);
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 400;
    padding-left: 0.6em;
}

/* ---------- Cinematic parallax band ---------- */
.cinematic {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-color: var(--ink);
}

/* Use a background-image element for true parallax.
   inset:-40% gives the image enough overflow to translate dramatically without
   exposing edges. JS translates within ±30% range. */
.cinematic .parallax-img {
    position: absolute;
    inset: -40% 0 -40% 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
}

.cinematic .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--cream);
    text-align: center;
    max-width: 38ch;
    padding: 0 1rem;
    text-shadow: 0 1px 24px rgba(0,0,0,0.5);
    z-index: 2;
}

.cinematic .caption::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.cinematic .caption .display-italic {
    color: var(--cream);
}

/* Radial gradient for text legibility when caption is vertically centered */
.cinematic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(43,38,34,0.45) 0%, rgba(43,38,34,0.2) 50%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

/* Mobile: fixed bg-attachment breaks on iOS — fall back to scroll */
@media (max-width: 920px) {
    .cinematic {
        height: 60vh;
    }

    .cinematic .parallax-img {
        inset: 0;
        transform: none !important;
    }
}

/* ============================================================
   PRESS STRIP — 'As featured in' marquee, Cabanas-style
   ============================================================ */
.press-strip {
    background: var(--cream);
    padding: var(--s-7) 0 var(--s-6);
    border-top: 1px solid rgba(43,38,34,0.08);
    border-bottom: 1px solid rgba(43,38,34,0.08);
    overflow: hidden;
    position: relative;
}

.press-strip-label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s-5);
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.press-strip-label::before,
.press-strip-label::after {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: .4;
}

.press-strip-label::before {
    margin-right: var(--s-3);
}

.press-strip-label::after {
    margin-left: var(--s-3);
}

.press-marquee {
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.press-track {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    padding: 0;
    margin: 0;
    width: max-content;
    animation: press-marquee 70s linear infinite;
}

@keyframes press-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.press-strip:hover .press-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .press-track {
        animation: none;
    }
}

.press-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(48px, 5vw, 64px);
    min-width: clamp(140px, 14vw, 200px);
    color: var(--ink);
    opacity: 0.72;
    transition: opacity .3s ease;
    white-space: nowrap;
}

.press-item:hover {
    opacity: 1;
}

.press-item > span {
    line-height: 1;
    display: inline-block;
    text-rendering: geometricPrecision;
}

/* Per-publication wordmark styling — varied serif/sans to give editorial credibility */
/* Bodoni high-contrast serif for Condé/Country/Dossier-style mastheads */
.press-item--conde > span,
.press-item--country > span,
.press-item--dossier > span,
.press-item--natgeo > span,
.press-item--forbes > span {
    font-family: 'Cormorant Garamond', 'Bodoni Moda', Georgia, serif;
    font-weight: 600;
}

.press-item--conde > span {
    font-size: clamp(15px, 1.4vw, 18px);
    letter-spacing: .015em;
}

.press-item--country > span {
    font-size: clamp(18px, 1.65vw, 22px);
    font-variant: small-caps;
    letter-spacing: .04em;
}

.press-item--dossier > span {
    font-size: clamp(22px, 2.1vw, 28px);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 400;
}

.press-item--natgeo > span {
    font-size: clamp(15px, 1.45vw, 19px);
    font-variant: small-caps;
    letter-spacing: .12em;
    font-weight: 700;
}

.press-item--forbes > span {
    font-size: clamp(20px, 1.95vw, 26px);
    letter-spacing: -.005em;
    font-weight: 700;
    font-style: italic;
}

/* Newspaper/italic serifs */
.press-item--mos > span,
.press-item--indy > span,
.press-item--scotsman > span,
.press-item--secret > span,
.press-item--hinton > span {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.press-item--mos > span {
    font-size: clamp(18px, 1.65vw, 22px);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -.005em;
}

.press-item--indy > span {
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -.01em;
}

.press-item--scotsman > span {
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 500;
    font-variant: small-caps;
    letter-spacing: .08em;
}

.press-item--secret > span {
    font-size: clamp(19px, 1.75vw, 24px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: .005em;
}

.press-item--hinton > span {
    font-size: clamp(18px, 1.65vw, 22px);
    font-weight: 500;
    font-variant: small-caps;
    letter-spacing: .1em;
}

/* Modern sans/mono wordmarks for Konfekt/AOL/Dossier-alternates */
.press-item--aol > span,
.press-item--konfekt > span,
.press-item--newsway > span {
    font-family: var(--sans);
    font-weight: 700;
    text-transform: uppercase;
}

.press-item--aol > span {
    font-size: clamp(20px, 1.95vw, 26px);
    letter-spacing: .08em;
    font-weight: 800;
}

.press-item--konfekt > span {
    font-size: clamp(17px, 1.55vw, 21px);
    letter-spacing: .26em;
    font-weight: 400;
}

.press-item--newsway > span {
    font-size: clamp(15px, 1.4vw, 18px);
    letter-spacing: .22em;
    font-weight: 600;
}

/* Subtle vertical separators */
.press-item + .press-item {
    position: relative;
}

.press-item + .press-item::before {
    content: "";
    position: absolute;
    left: calc(clamp(2.5rem, 5vw, 4.5rem) / -2);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 26px;
    background: var(--ink);
    opacity: .15;
}

@media (max-width: 720px) {
    .press-strip {
        padding: var(--s-6) 0 var(--s-5);
    }

    .press-track {
        gap: 2.2rem;
        animation-duration: 50s;
    }

    .press-item {
        min-width: 110px;
        height: 44px;
    }

    .press-item + .press-item::before {
        height: 22px;
        left: -1.1rem;
    }
}

/* ============================================================
   ROOM DETAIL PAGES — features grid, gallery, prev/next nav
   ============================================================ */
.lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.15rem, 0.4vw + 1rem, 1.4rem);
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: var(--s-4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4) var(--s-6);
    max-width: 760px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: var(--s-3);
    padding: var(--s-3) 0;
    border-bottom: 1px solid rgba(43,38,34,0.1);
    align-items: baseline;
}

.feature-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracotta);
}

.feature-value {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--ink);
    font-style: italic;
}

@media (max-width: 720px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .feature-row {
        grid-template-columns: 100px 1fr;
    }
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 1.5vw, 24px);
}

/* When there are exactly 4 (or 3) photos, keep 2-col grid — reads as "pairs" */
.room-gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.room-gallery-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 720px) {
    .room-gallery {
        grid-template-columns: 1fr;
    }
}

.room-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--s-4);
    align-items: center;
    padding: var(--s-5) 0;
    border-top: 1px solid rgba(43,38,34,0.12);
}

.room-nav-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    color: var(--ink);
    padding: var(--s-3) var(--s-4);
    transition: opacity .25s ease;
}

.room-nav-link:hover {
    opacity: 0.7;
}

.room-nav-link.prev {
    text-align: left;
}

.room-nav-link.back {
    text-align: center;
    border-left: 1px solid rgba(43,38,34,0.12);
    border-right: 1px solid rgba(43,38,34,0.12);
}

.room-nav-link.next {
    text-align: right;
}

.room-nav-link .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    color: var(--ink-soft);
}

.room-nav-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
}

@media (max-width: 720px) {
    .room-nav {
        grid-template-columns: 1fr;
    }

    .room-nav-link.back {
        border: none;
        border-top: 1px solid rgba(43,38,34,0.12);
        border-bottom: 1px solid rgba(43,38,34,0.12);
        padding: var(--s-3) 0;
    }
}

/* ============================================================
   MUKIMA MEMOIRS — blog index grid + post body
   ============================================================ */
.memoirs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 36px);
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .memoirs-grid {
        grid-template-columns: 1fr;
        gap: var(--s-6);
    }
}

.memoir-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    transition: transform .4s var(--ease);
}

.memoir-card:hover {
    transform: translateY(-4px);
}

.memoir-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: var(--s-3);
}

.memoir-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}

.memoir-card:hover .memoir-card-img img {
    transform: scale(1.05);
}

.memoir-card-body {
    padding: 0 var(--s-2);
}

.memoir-card-body .eyebrow {
    color: var(--terracotta);
    display: block;
    margin-bottom: var(--s-2);
}

.memoir-card-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.35rem, 1vw + 1rem, 1.85rem);
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 var(--s-3);
}

.memoir-card-excerpt {
    font-size: 0.98rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0 0 var(--s-3);
}

.memoir-card-link {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--terracotta);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    display: inline-block;
}

/* Post body */
.post-body {
    max-width: 680px;
}

.post-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: var(--s-4);
}

.post-body p.lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.2rem, 0.5vw + 1.05rem, 1.4rem);
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: var(--s-5);
}

.post-subhead {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.45rem, 0.8vw + 1.15rem, 1.85rem);
    color: var(--ink);
    margin: var(--s-6) 0 var(--s-3);
    text-align: left;
}

/* ---------- Estate ledger (numbered rows) ---------- */
.estate {
    padding: var(--s-8) 0;
}

.estate-list {
    display: flex;
    flex-direction: column;
    gap: var(--s-6);
}

.estate-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
    align-items: center;
}

.estate-row:nth-child(even) .estate-text {
    order: 1;
}

.estate-row:nth-child(even) .estate-img {
    order: 2;
}

.estate-img {
    width: 100%;
    height: clamp(340px, 38vw, 560px);
    overflow: hidden;
}

.estate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s var(--ease);
}

.estate-row:hover .estate-img img {
    transform: scale(1.03);
}

.estate-text {
    padding: var(--s-3) var(--s-5);
}

.estate-text .counter,
.estate-text .ledger-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--terracotta);
    letter-spacing: 0.02em;
    margin-bottom: var(--s-2);
    display: block;
}

.estate-text h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 1.6vw + 0.7rem, 2.1rem);
    margin-bottom: var(--s-3);
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.estate-text p {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

@media (max-width: 920px) {
    .estate-row {
        grid-template-columns: 1fr;
        gap: var(--s-3);
    }

    .estate-row:nth-child(even) .estate-text {
        order: 0;
    }

    .estate-row:nth-child(even) .estate-img {
        order: 0;
    }

    .estate-img {
        height: clamp(320px, 68vw, 540px);
    }
}

@media (max-width: 420px) {
    .estate-img {
        height: clamp(260px, 78vw, 380px);
    }
}

/* Backwards compat: .ledger / .ledger-row use same styles */
.ledger {
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
}

.ledger-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
    align-items: center;
}

.ledger-row:nth-child(even) .ledger-text {
    order: 1;
}

.ledger-row:nth-child(even) .ledger-img {
    order: 2;
}

.ledger-img {
    width: 100%;
    height: clamp(340px, 38vw, 560px);
    overflow: hidden;
}

.ledger-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s var(--ease);
}

.ledger-row:hover .ledger-img img {
    transform: scale(1.03);
}

.ledger-text {
    padding: var(--s-3) var(--s-5);
}

.ledger-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--terracotta);
    letter-spacing: 0.02em;
    margin-bottom: var(--s-2);
    display: block;
}

.ledger-text h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 1.6vw + 0.7rem, 2.1rem);
    margin-bottom: var(--s-3);
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.ledger-text p {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

@media (max-width: 920px) {
    .ledger-row {
        grid-template-columns: 1fr;
        gap: var(--s-3);
    }

    .ledger-row:nth-child(even) .ledger-text {
        order: 0;
    }

    .ledger-row:nth-child(even) .ledger-img {
        order: 0;
    }

    .ledger-img {
        height: clamp(320px, 68vw, 540px);
    }
}

@media (max-width: 420px) {
    .ledger-img {
        height: clamp(260px, 78vw, 380px);
    }
}

/* ---------- Rooms 3-col grid (Manor House, matching original site) ---------- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-3);
}

@media (max-width: 920px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: var(--s-3);
    }
}

.room-card {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--cream-warm);
    aspect-ratio: 3/4;
}

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

.room-card:hover img {
    transform: scale(1.05);
}

.room-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43,38,34,0.55) 0%, rgba(43,38,34,0.15) 28%, rgba(43,38,34,0) 65%);
    pointer-events: none;
}

.room-card .room-name {
    position: absolute;
    top: var(--s-4);
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    color: #FFFFFF;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 1.4vw + 0.6rem, 1.85rem);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

/* ---------- Day timeline (dlist) ---------- */
.dlist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 56ch;
}

.dlist-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: var(--s-4);
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
}

.dlist-row:last-child {
    border-bottom: 0;
}

.dlist-time {
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
}

.dlist-body {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.45;
    font-style: italic;
}

@media (max-width: 560px) {
    .dlist-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .dlist-body {
        font-size: 1.05rem;
    }
}

/* ---------- Quote / script ---------- */
.signature {
    font-family: var(--script);
    font-size: clamp(1.3rem, 1.5vw + 0.8rem, 1.85rem);
    color: var(--ink);
    line-height: 1.4;
}

.signature-small {
    font-family: var(--script-l);
    font-size: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.2;
}

.svg-motif {
    width: 64px;
    height: auto;
    margin: 0 auto;
    color: var(--terracotta);
    opacity: 0.85;
}

/* ---------- Hosts ---------- */
.host-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--s-5);
    margin-top: var(--s-5);
}

.host {
    text-align: center;
}

.host-img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto var(--s-3);
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--cream-warm);
}

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

.host:hover .host-img img {
    transform: scale(1.05);
}

.host h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.55rem;
    margin-bottom: var(--s-1);
}

.host-role {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: var(--s-2);
    display: block;
    font-weight: 500;
}

.host p {
    font-size: 0.95rem;
    max-width: 36ch;
    margin-inline: auto;
    color: var(--ink-soft);
}

.host .signature {
    display: block;
    margin-top: var(--s-2);
}

/* ============================================================
   TEAM MARQUEE — auto-scrolling row, same behaviour as press banner
   ============================================================ */
.team-marquee {
    position: relative;
    overflow: hidden;
    padding: var(--s-2) 0 var(--s-3);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.team-marquee .team-track {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 1.6vw, 1.75rem);
    padding: 0;
    margin: 0;
    width: max-content;
    animation: team-marquee 80s linear infinite;
}

@keyframes team-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.team-marquee:hover .team-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .team-marquee .team-track {
        animation: none;
    }
}

.team-card {
    flex: 0 0 auto;
    width: clamp(140px, 14vw, 180px);
    text-align: center;
}

.team-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--cream-warm);
    margin-bottom: var(--s-3);
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.team-card:hover .team-card-img img {
    transform: scale(1.05);
}

.team-card-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink);
    letter-spacing: 0.01em;
    line-height: 1.2;
    display: block;
}

@media (max-width: 540px) {
    .team-card {
        width: 120px;
    }

    .team-card-name {
        font-size: 0.95rem;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(250,243,238,0.82);
    padding: var(--s-7) 0 var(--s-3);
    font-size: 0.95rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: var(--s-5);
    border-bottom: 1px solid rgba(250,243,238,0.15);
    margin-bottom: var(--s-5);
}

.footer-top .footer-brand {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1;
}

.footer-top .signature-small {
    color: rgba(250,243,238,0.65);
    margin-top: var(--s-3);
    font-family: var(--script-l, var(--script));
    font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.15rem);
    letter-spacing: 0.02em;
    font-style: italic;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--s-5);
    margin-bottom: var(--s-4);
}

.footer-grid h4 {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(250,243,238,0.55);
    margin-bottom: var(--s-3);
    font-weight: 400;
    font-style: normal;
}

.footer-grid a {
    display: block;
    padding: 4px 0;
    color: rgba(250,243,238,0.82);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
}

.footer-grid a:hover {
    color: var(--rose);
}

.footer-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-3);
    padding-top: var(--s-3);
    border-top: 1px solid rgba(250,243,238,0.12);
    font-size: 0.74rem;
    color: rgba(250,243,238,0.5);
    letter-spacing: 0.05em;
}

.footer-socials {
    display: flex;
    gap: var(--s-4);
}

.footer-socials a {
    font-family: var(--sans);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.68rem;
}

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

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

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-3) var(--s-4);
    }
    .footer-grid h4 {
        font-size: 0.65rem;
        letter-spacing: 0.22em;
    }
    .footer-grid a {
        font-size: 0.9rem;
    }
}

/* ---------- Forms ---------- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3);
}

.form-grid .full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-family: var(--sans);
    font-size: 0.64rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--rule);
    border-radius: 0;
    padding: 0.55rem 0;
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--ink);
    transition: border-color .25s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--terracotta);
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}

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

/* ---------- Cards (for guide and similar) ---------- */
.estate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--s-4);
}

.card {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: var(--s-4);
}

.card .eyebrow {
    margin-bottom: var(--s-2);
    font-size: 0.7rem;
}

.card h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: var(--s-2);
}

.card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin: 0;
}

.card-img {
    margin: 0 0 var(--s-3);
    aspect-ratio: 4/5;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.reveal.in {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 10px;
}

.reveal[data-delay="100"] {
    transition-delay: 0.1s;
}

.reveal[data-delay="200"] {
    transition-delay: 0.2s;
}

.reveal[data-delay="300"] {
    transition-delay: 0.3s;
}

.reveal[data-delay="400"] {
    transition-delay: 0.4s;
}

.img-reveal {
    overflow: hidden;
}

.img-reveal img,
.img-reveal picture {
    transform: scale(1.06);
    transition: transform 1.4s var(--ease-out);
}

.img-reveal.in img,
.img-reveal.in picture {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .img-reveal img {
        transform: none !important;
    }

    * {
        transition: none !important;
        animation: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    background: var(--cream);
    color: var(--ink);
    padding: .75rem 1rem;
    z-index: 100;
}

.skip-link:focus {
    left: 8px;
}

/* ---------- Helper ---------- */
.text-link {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 3px;
    border-bottom: 1px solid var(--ink);
    transition: color .25s var(--ease), border-color .25s var(--ease);
    display: inline-block;
}

.text-link:hover {
    color: var(--terracotta);
    border-color: var(--terracotta);
}

.text-link-on-dark {
    color: var(--cream);
    border-color: var(--cream);
}

.text-link-on-dark:hover {
    color: var(--rose);
    border-color: var(--rose);
}

/* ============================================================
   ELEPHANTS ROW (Story page — Our Emblem section)
   ============================================================ */
.elephants-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.elephants-text {
    max-width: 38ch;
}

.elephants-text p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ink);
}

.elephants-img {
    position: relative;
}

.elephants-img picture,
.elephants-img img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    opacity: 0.92;
}

@media (max-width: 820px) {
    .elephants-row {
        grid-template-columns: 1fr;
        gap: var(--s-5);
    }

    .elephants-text {
        max-width: none;
    }
}

/* ============================================================
   BEACH & BUSH page — two-side layout + included lists
   ============================================================ */
.bb-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.bb-side {
    text-align: center;
}

.bb-side h3 {
    margin-top: 0.5rem;
    font-size: clamp(1.4rem, 1vw + 1.1rem, 2rem);
}

.bb-side p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ink);
    max-width: 38ch;
    margin-inline: auto;
}

.bb-list,
.bb-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 36ch;
    margin-inline: auto;
}

.bb-list li,
.bb-included-list li {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(43,38,34,0.08);
    text-align: center;
}

.bb-list li:last-child,
.bb-included-list li:last-child {
    border-bottom: none;
}

.bb-included {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.bb-included .eyebrow.center,
.bb-included .display-italic.center,
.bb-included h3 {
    display: block;
    text-align: center;
}

.bb-included-list {
    max-width: 36ch;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .bb-pair,
    .bb-included {
        grid-template-columns: 1fr;
        gap: var(--s-6);
    }
}

/* Elephants band — illustrative full-width drawing (no parallax, blends into cream) */
.elephants-band {
    background: var(--cream);
    text-align: center;
}

.elephants-band-img {
    display: block;
    max-width: 900px;
    width: 90%;
    height: auto;
    margin: var(--s-5) auto;
    mix-blend-mode: multiply;
    opacity: 0.95;
}

/* Beach & Bush — editorial price block */
.price-block {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-4) var(--s-6);
    border-top: 1px solid rgba(43,38,34,0.18);
    border-bottom: 1px solid rgba(43,38,34,0.18);
}

.price-figure {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
}

.price-currency {
    font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2.2rem);
    color: var(--terracotta);
}

.price-amount {
    font-size: clamp(2.4rem, 2.2vw + 1.6rem, 3.6rem);
    letter-spacing: -0.01em;
}

.price-unit {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* Beach & Bush map — wider, shorter than the elephants drawing */
.elephants-band-img.bb-map {
    max-width: 1100px;
    width: 95%;
}

/* ============================================================
   SANCTUARY — off-grid stats row
   ============================================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 3rem);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.stat-cell {
    display: grid;
    grid-template-rows: auto auto 1fr;  /* number → unit → label (label pinned to bottom) */
    justify-items: center;
    align-items: start;
    padding: var(--s-4) var(--s-3);
    border-top: 1px solid rgba(43,38,34,0.18);
    border-bottom: 1px solid rgba(43,38,34,0.18);
    min-height: 200px;
}
.stat-number {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2.2rem, 1.8vw + 1.8rem, 3.6rem);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.stat-percent {
    font-size: 0.6em;
    color: var(--terracotta);
    vertical-align: super;
    margin-left: 0.05em;
}
.stat-unit {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(0.9rem, 0.4vw + 0.8rem, 1.05rem);
    color: var(--terracotta);
    margin-top: 0.35rem;
    letter-spacing: 0.02em;
    min-height: 1.5rem;  /* reserve unit row even when empty (e.g. 98%) */
}
.stat-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: var(--s-3);
    max-width: 18ch;
    align-self: end;  /* pin label to bottom of cell so all 3 labels align */
}
@media (max-width: 640px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: var(--s-3);
        max-width: 320px;
    }
}

/* ============================================================
   BLUE RHINO — manor-house section (text + 2x2 photo grid)
   ============================================================ */
.bluerhino-row {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}
.bluerhino-text {
    max-width: 38ch;
}
.bluerhino-text p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ink);
}
.bluerhino-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 1.2vw, 18px);
}
.bluerhino-cell {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.bluerhino-cell img,
.bluerhino-cell picture,
.bluerhino-cell picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.bluerhino-cell:hover img {
    transform: scale(1.04);
}
@media (max-width: 820px) {
    .bluerhino-row {
        grid-template-columns: 1fr;
        gap: var(--s-5);
    }
    .bluerhino-text {
        max-width: none;
        text-align: center;
    }
    .bluerhino-text p {
        margin-inline: auto;
    }
}

/* ============================================================
   BLUE RHINO — homepage teaser (single large photo + text)
   ============================================================ */
.bluerhino-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
}
.bluerhino-teaser-img {
    aspect-ratio: 4/5;
    overflow: hidden;
}
.bluerhino-teaser-img img,
.bluerhino-teaser-img picture,
.bluerhino-teaser-img picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bluerhino-teaser-text {
    max-width: 40ch;
}
.bluerhino-teaser-text p {
    font-size: 1.02rem;
    line-height: 1.7;
}
@media (max-width: 820px) {
    .bluerhino-teaser {
        grid-template-columns: 1fr;
        gap: var(--s-5);
    }
    .bluerhino-teaser-img {
        aspect-ratio: 3/2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .bluerhino-teaser-text {
        max-width: none;
        text-align: center;
    }
    .bluerhino-teaser-text p {
        margin-inline: auto;
    }
}

/* =========================================================
   v4 dark palette overrides
   Fixes sections that were originally designed as "dark
   inversions on a light page" and now need to be re-tuned
   for a globally dark page.
   ========================================================= */

/* Section.dark = even deeper than page, with cream text */
section.dark {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
}
section.dark h1,
section.dark h2,
section.dark h3,
section.dark .eyebrow {
    color: var(--inverse-fg);
}
section.dark .lead {
    color: rgba(239, 231, 210, 0.85);
}

/* Filled CTA buttons \u2014 use gold as signature luxury accent */
.btn-filled {
    background: var(--terracotta);
    color: #0E1E17;
    border-color: var(--terracotta);
}
.btn-filled:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: #0E1E17;
}

/* Drawer booking buttons \u2014 same gold treatment */
.drawer-side a.btn,
.drawer-side a.btn-filled {
    background: var(--terracotta);
    color: #0E1E17;
    border-color: var(--terracotta);
}
.drawer-side a.btn-filled:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: #0E1E17;
}

/* Header enquire CTA hover \u2014 also gold */
.site-header.solid .enquire-cta:hover {
    background: var(--terracotta);
    color: #0E1E17;
    border-color: var(--terracotta);
}

/* Footer \u2014 deepest dark band, cream text */
.site-footer {
    background: var(--inverse-bg);
    color: rgba(239, 231, 210, 0.82);
}
.site-footer .footer-top {
    border-bottom-color: rgba(239, 231, 210, 0.15);
}
.site-footer .footer-top .footer-brand {
    color: var(--inverse-fg);
}
.site-footer .footer-top .signature-small {
    color: rgba(239, 231, 210, 0.65);
}
.site-footer .footer-grid h4 {
    color: rgba(239, 231, 210, 0.55);
}
.site-footer .footer-grid a {
    color: rgba(239, 231, 210, 0.82);
}
.site-footer .footer-grid a:hover {
    color: var(--terracotta);
}
.site-footer .footer-base {
    border-top-color: rgba(239, 231, 210, 0.12);
    color: rgba(239, 231, 210, 0.5);
}

/* Hero gradient overlay \u2014 deepen for readability over photos */
.hero::after {
    background: linear-gradient(
        180deg,
        rgba(14, 30, 23, 0.45) 0%,
        rgba(14, 30, 23, 0.15) 30%,
        rgba(14, 30, 23, 0.65) 100%
    );
}

/* Hero text \u2014 always cream against photos (was var(--cream) which is now dark) */
.hero {
    color: var(--inverse-fg);
}
.hero-title,
.hero-italic-sub {
    color: var(--inverse-fg);
}

/* Eyebrows tagged .light \u2014 always cream */
.eyebrow.light {
    color: var(--inverse-fg);
}

/* Header elements — always cream/gold on dark page (both transparent & solid states) */
.site-header .nav-toggle,
.site-header.solid .nav-toggle,
.site-header .logo,
.site-header.solid .logo,
.site-header .enquire-cta,
.site-header.solid .enquire-cta {
    color: var(--inverse-fg);
}
.site-header .enquire-cta,
.site-header.solid .enquire-cta {
    border-color: var(--inverse-fg);
}
/* Solid header gets a slightly darker bg distinct from page */
.site-header.solid {
    background: rgba(8, 18, 13, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rule);
}

/* Cinematic / image overlay captions */
.cinematic .caption,
.cinematic .caption .display-italic {
    color: var(--inverse-fg);
}

/* .btn-on-dark stays cream-on-transparent regardless of palette */
.btn-on-dark {
    color: var(--inverse-fg);
    border-color: var(--inverse-fg);
}
.btn-on-dark:hover {
    background: var(--inverse-fg);
    color: var(--cream); /* dark fill on hover */
}

/* .btn-terracotta (gold filled) gets dark text */
.btn-terracotta {
    color: #0E1E17;
}
.btn-terracotta:hover {
    color: var(--terracotta);
}

/* Any caption-on-image element using --cream stays cream */
.cinematic-caption,
[class*="caption-overlay"] {
    color: var(--inverse-fg);
}

/* =========================================================
   R10 — gold accent system
   Eyebrows, button outlines and button text now all use gold,
   reserving cream for body text + headlines only.
   ========================================================= */

/* All eyebrows \u2014 gold */
.eyebrow,
.eyebrow.light,
section.dark .eyebrow {
    color: var(--terracotta);
}

/* Default outlined button \u2014 gold outline + gold text. Excludes filled variant. */
.btn:not(.btn-filled) {
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.btn:not(.btn-filled):hover {
    background: var(--terracotta);
    color: #0E1E17;
    border-color: var(--terracotta);
}

/* Filled CTA \u2014 explicit, beats .btn cascade. Gold fill + dark text. */
.btn.btn-filled {
    background: var(--terracotta);
    color: #0E1E17;
    border-color: var(--terracotta);
}
.btn.btn-filled:hover {
    background: var(--rose);
    color: #0E1E17;
    border-color: var(--rose);
}

/* On-dark variant inherits gold treatment */
.btn-on-dark {
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.btn-on-dark:hover {
    background: var(--terracotta);
    color: #0E1E17;
    border-color: var(--terracotta);
}

/* Header ENQUIRE \u2014 gold outline + gold text (consistent with body buttons) */
.site-header .enquire-cta,
.site-header.solid .enquire-cta {
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.site-header .enquire-cta:hover,
.site-header.solid .enquire-cta:hover {
    background: var(--terracotta);
    color: #0E1E17;
    border-color: var(--terracotta);
}

/* Header logo + hamburger stay cream (anchor, not accent) */
.site-header .nav-toggle,
.site-header.solid .nav-toggle,
.site-header .logo,
.site-header.solid .logo {
    color: var(--inverse-fg);
}

/* Footer link hover already gold via earlier override */

/* R10 \u2014 logo & sketch images now use normal blend (was multiply, which
   darkened them on the dark page). Transparent PNGs let the dark bg show
   through without bleeding the white edges. */
.elephants-img picture,
.elephants-img img {
    mix-blend-mode: normal;
    opacity: 1;
}

/* Cabanas teaser drawing in drawer + any other sketch */
.drawer-sketch img,
.elephants-band-img,
.drawer img[src*="mukima-cabanas-drawing"],
.bluerhino-teaser-img img,
.bluerhino-teaser img,
.cabanas-drawing img,
[class*="cabanas-drawing"] img {
    mix-blend-mode: normal;
    opacity: 1;
}

/* =========================================================
   R11 \u2014 selective cream islands inside the dark theme
   ========================================================= */

/* The original cream/paper palette restored for opt-in surfaces */
.cream-island,
body.theme-cream {
    /* Re-establish the original light palette inside this scope */
    --cream:       #FAF3EE;
    --cream-2:     #F3EAE0;
    --cream-warm:  #EFE3D2;
    --paper:       #FFFCF7;
    --ink:         #2B2622;
    --ink-soft:    #4A4138;
    --grey:        #6F6760;
    --grey-light:  #A29A92;
    --rule:        rgba(43, 38, 34, 0.12);
    --rule-strong: rgba(43, 38, 34, 0.22);
    /* Accents revert to original warm safari palette */
    --terracotta:  #B47558;
    --rose:        #C5917B;
    --sage:        #98A48A;
    --moss:        #5F6B52;
    --ochre:       #B89567;

    background: var(--cream);
    color: var(--ink);
}

/* The cream-island section itself: light bg, dark text */
section.cream-island {
    background: var(--cream-warm);
    color: var(--ink);
    padding-block: var(--s-7);
}

section.cream-island h1,
section.cream-island h2,
section.cream-island h3,
section.cream-island p {
    color: var(--ink);
}

section.cream-island .eyebrow,
section.cream-island .eyebrow.spaced {
    color: var(--terracotta);
}

/* Restore the original multiply blend on the elephant + logo inside cream-island,
   so the gold logo and pencil sketch read correctly on cream */
section.cream-island .elephants-img picture,
section.cream-island .elephants-img img {
    mix-blend-mode: multiply;
    opacity: 0.92;
}

/* Buttons inside cream-island: keep gold treatment but on cream */
section.cream-island .btn {
    color: var(--terracotta);
    border-color: var(--terracotta);
}
section.cream-island .btn:hover {
    background: var(--terracotta);
    color: var(--cream);
    border-color: var(--terracotta);
}

/* ---------------------------------------------------------
   theme-cream applies to whole pages (sister + beach-and-bush)
   Restore the original light look across all standard
   surfaces; the dark overrides earlier in this file (footer,
   solid header, hero overlays, etc.) need to be neutralised
   for these pages.
   --------------------------------------------------------- */
body.theme-cream {
    background: var(--cream);
    color: var(--ink);
}

/* Hero text in cream pages stays cream (over photo) */
body.theme-cream .hero,
body.theme-cream .hero-title,
body.theme-cream .hero-italic-sub {
    color: #FFFCF7;
}

/* Hero gradient \u2014 use ink-toned overlay matching cream palette */
body.theme-cream .hero::after {
    background: linear-gradient(
        180deg,
        rgba(43, 38, 34, 0.45) 0%,
        rgba(43, 38, 34, 0.15) 30%,
        rgba(43, 38, 34, 0.55) 100%
    );
}

/* Header in cream pages: transparent state over hero uses cream text */
body.theme-cream .site-header .nav-toggle,
body.theme-cream .site-header .logo,
body.theme-cream .site-header .enquire-cta {
    color: #FFFCF7;
}
body.theme-cream .site-header .enquire-cta {
    border-color: #FFFCF7;
}

/* Header solid state on cream page: ink text, white-ish bg */
body.theme-cream .site-header.solid {
    background: rgba(250, 243, 238, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rule);
}
body.theme-cream .site-header.solid .nav-toggle,
body.theme-cream .site-header.solid .logo {
    color: var(--ink);
}
body.theme-cream .site-header.solid .enquire-cta {
    color: var(--terracotta);
    border-color: var(--terracotta);
}
body.theme-cream .site-header.solid .enquire-cta:hover {
    background: var(--terracotta);
    color: #FFFCF7;
    border-color: var(--terracotta);
}

/* Buttons on cream pages */
body.theme-cream .btn {
    color: var(--terracotta);
    border-color: var(--terracotta);
}
body.theme-cream .btn:hover {
    background: var(--terracotta);
    color: #FFFCF7;
    border-color: var(--terracotta);
}
body.theme-cream .btn-on-dark {
    color: #FFFCF7;
    border-color: #FFFCF7;
}
body.theme-cream .btn-on-dark:hover {
    background: #FFFCF7;
    color: var(--ink);
}
body.theme-cream .btn-filled {
    background: var(--terracotta);
    color: #FFFCF7;
    border-color: var(--terracotta);
}
body.theme-cream .btn-filled:hover {
    background: var(--ink);
    color: #FFFCF7;
    border-color: var(--ink);
}

/* Eyebrows on cream pages \u2014 terracotta accent */
body.theme-cream .eyebrow,
body.theme-cream .eyebrow.light,
body.theme-cream section.dark .eyebrow {
    color: var(--terracotta);
}

/* section.dark on cream pages \u2014 still gives a deeper inset band */
body.theme-cream section.dark {
    background: var(--ink);
    color: #FFFCF7;
}
body.theme-cream section.dark h1,
body.theme-cream section.dark h2,
body.theme-cream section.dark h3 {
    color: #FFFCF7;
}
body.theme-cream section.dark .eyebrow {
    color: var(--terracotta);
}

/* Footer on cream pages \u2014 dark band w/ cream text (the original treatment) */
body.theme-cream .site-footer {
    background: var(--ink);
    color: rgba(250, 243, 238, 0.82);
}
body.theme-cream .site-footer .footer-top {
    border-bottom-color: rgba(250, 243, 238, 0.15);
}
body.theme-cream .site-footer .footer-top .footer-brand,
body.theme-cream .site-footer .footer-top .signature-small {
    color: #FFFCF7;
}
body.theme-cream .site-footer .footer-grid h4 {
    color: rgba(250, 243, 238, 0.55);
}
body.theme-cream .site-footer .footer-grid a {
    color: rgba(250, 243, 238, 0.82);
}
body.theme-cream .site-footer .footer-grid a:hover {
    color: var(--terracotta);
}
body.theme-cream .site-footer .footer-base {
    border-top-color: rgba(250, 243, 238, 0.12);
    color: rgba(250, 243, 238, 0.5);
}

/* Elephant images on cream pages \u2014 use original (non-inverted) versions if referenced
   and restore multiply blend for the sketch effect */
body.theme-cream .elephants-img picture,
body.theme-cream .elephants-img img,
body.theme-cream .drawer-sketch img,
body.theme-cream .elephants-band-img {
    mix-blend-mode: multiply;
    opacity: 0.92;
}


/* =========================================================
   R11 - drawer right column: cream panel with original
   black-line cabanas sketch so it pops
   ========================================================= */
.drawer-side {
    background: #F3EAE0;
    color: #2B2622;
    padding: var(--s-5);
    border-radius: 2px;
}

.drawer-side .eyebrow {
    color: #6F6760;
}
.drawer-side p {
    color: #4A4138;
}
.drawer-side a {
    color: #2B2622;
}
.drawer-side a:hover {
    color: #B47558;
}

/* Drawer Book Your Stay button on cream panel - dark filled button */
.drawer-side .btn,
.drawer-side a.btn,
.drawer-side a.btn-filled {
    background: #2B2622;
    color: #FAF3EE;
    border-color: #2B2622;
}
.drawer-side .btn:hover,
.drawer-side a.btn:hover,
.drawer-side a.btn-filled:hover {
    background: #B47558;
    color: #FAF3EE;
    border-color: #B47558;
}

/* Drawer sketch on cream panel: keep multiply blend on the original (black-line) drawing */
.drawer-side .drawer-sketch {
    border-top-color: rgba(43, 38, 34, 0.18);
}
.drawer-side .drawer-sketch img {
    mix-blend-mode: multiply;
    opacity: 0.95;
    filter: none;
}
.drawer-side .drawer-sketch-caption {
    color: #6F6760;
}

/* =========================================================
   R13 - Homepage "Our Logo" feature
   Dark forest-green panel with only the gold transparent logo
   (no elephant sketch). Logo sized prominently and centered.
   ========================================================= */
section.logo-feature {
    background: var(--cream-warm);
    color: var(--ink);
    padding-block: var(--s-7);
}

section.logo-feature .elephants-row {
    align-items: center;
}

section.logo-feature .eyebrow.spaced,
section.logo-feature .eyebrow {
    color: var(--terracotta);
}

section.logo-feature h2 {
    color: var(--ink);
}

section.logo-feature p {
    color: var(--ink-soft);
}

/* The gold transparent logo: NO blend mode, no opacity reduction */
section.logo-feature .elephants-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--s-5);
}
section.logo-feature .elephants-img img {
    mix-blend-mode: normal;
    opacity: 1;
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

/* Read Our Story button - gold outline + gold text */
section.logo-feature .btn {
    color: var(--terracotta);
    border-color: var(--terracotta);
}
section.logo-feature .btn:hover {
    background: var(--terracotta);
    color: #0E1E17;
    border-color: var(--terracotta);
}
