@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
    /* You can add font-weight and font-style here if it's not a variable font */
    /* For a variable font, you might define the weight range */
    font-weight: 200 800;
    font-style: normal;
}

:root {
    --vw: 1vw;
}

@font-face {
    font-family: "Petrona";
    src: url("../fonts/Petrona-VariableFont_wght.woff2") format("woff2");
    font-weight: 200 800;
    font-style: normal;
}

@font-face {
    font-family: "Petrona-Italic";
    src: url("../fonts/Petrona-Italic-VariableFont_wght.woff2") format("woff2");
    font-weight: 200 800;
    font-style: italic;
}

/* Styles for the main body and headings */
html,
body {
    width: 100% !important; /* Ensure full viewport width */
    max-width: 100% !important; /* Prevent any horizontal overflow */
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: clip !important; /* Use clip instead of hidden to allow sticky positioning */
    box-sizing: border-box !important;
    text-align: left; /* Ensure left alignment globally */
}

/* Disable automatic hyphenation */
.article-content, 
.post-content, 
.post-sidebar,
.post-body p {
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    text-align: left !important;
    word-wrap: normal !important;
    overflow-wrap: normal !important;
}

/* Prevent Ghost default scroll-lock/jump behaviors when menu is open */
html.gh-head-open, 
body.gh-head-open {
    overflow: visible !important;
    height: auto !important;
}

/* Override Ghost default header expansion when menu is open */
.gh-head-open #gh-head {
    height: 70px !important; /* Keep original header height */
    overflow: visible !important; /* Allow side menu to overflow */
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
}

/* Force menu visibility when open */
.gh-head-open #gh-head .gh-head-menu {
    left: 0 !important;
    visibility: visible !important;
    display: flex !important;
}

p {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.6em;
    font-family: "Petrona", serif;
    color: rgb(24, 24, 24);
}

.gh-content .kg-card+:not(.kg-card), .gh-content :not(.kg-card):not([id])+.kg-card {
    margin-top: 2vmin;
}

.gh-content [id]:not(:first-child) {
    margin: 0 0 0;
}

.gh-header {
    padding: 6vmin 0 6vmin;
}

h1 {
    font-family: "Manrope";
    font-weight: 800;
}

/* Header specific styles */
/* Mobile drawer: social + secondary blocks are desktop-hidden until sidebar breakpoint */
.gh-side-menu-social,
.gh-side-menu-secondary {
    display: none;
}

#gh-head {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #1c1b1b;
}

#gh-head.is-sticky {
    background-color: #fff !important;
    color: #1c1b1b !important;
}

#gh-head.gh-head-transparent {
    background-color: transparent !important;
    color: #fff !important;
}

#gh-head.gh-head-transparent .gh-head-logo,
#gh-head.gh-head-transparent .gh-search-icon,
#gh-head.gh-head-transparent .gh-burger {
    color: #fff !important;
}

@media (min-width: 901px) {
    #gh-head.gh-head-transparent .nav a {
        color: #fff !important;
    }
}

/* Hero landing: transparent nav before JS runs (header logic used to wait for window "load").
 * Do NOT set .gh-head-menu .nav link colors here — on mobile the drawer is white; white-on-white hid top-level items (dropdown rows stayed visible via longer selectors). */
body:has(.hero-section) #gh-head:not(.is-sticky),
body:has(.home-itinerary-hero) #gh-head:not(.is-sticky) {
    background-color: transparent !important;
    color: #fff !important;
}

body:has(.hero-section) #gh-head:not(.is-sticky) .gh-head-logo,
body:has(.hero-section) #gh-head:not(.is-sticky) .gh-search-icon,
body:has(.hero-section) #gh-head:not(.is-sticky) .gh-burger,
body:has(.home-itinerary-hero) #gh-head:not(.is-sticky) .gh-head-logo,
body:has(.home-itinerary-hero) #gh-head:not(.is-sticky) .gh-search-icon,
body:has(.home-itinerary-hero) #gh-head:not(.is-sticky) .gh-burger {
    color: #fff !important;
}

@media (min-width: 901px) {
    body:has(.hero-section) #gh-head:not(.is-sticky) .nav a,
    body:has(.home-itinerary-hero) #gh-head:not(.is-sticky) .nav a {
        color: #fff !important;
    }
}

/* Burger SVG Styles */
.gh-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    color: inherit;
    z-index: 1001;
}

.gh-burger svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
}

.gh-head-open .gh-burger-icon {
    display: none;
}

/* Side Menu Header Logo */
.gh-side-menu-header {
    display: none;
    width: 100%;
    margin-bottom: 40px;
}

.gh-side-menu-logo {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.6rem !important;
    letter-spacing: 0.5em;
    text-decoration: none;
    color: #1c1b1b !important;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Complete Mobile Menu Overhaul - side pull from left */
@media (max-width: 900px) {
    /* Remove Overlay */
    .gh-head-open::after {
        display: none !important;
    }

    .gh-head-open #gh-head {
        background: transparent !important;
        box-shadow: none !important;
        z-index: 1001 !important;
    }

    .gh-head-open .gh-head-inner {
        background: transparent !important;
    }

    .gh-head-open .gh-head-logo,
    .gh-head-open .gh-head-brand {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    #gh-head .gh-head-inner {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 45px !important;
        gap: 0 !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }

    /* Side Menu Sidebar */
    #gh-head .gh-head-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: #fff !important;
        z-index: 10000 !important;
        padding: 6px 24px 32px !important;
        transition: left 0.3s ease-out !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
        box-shadow: none !important;
        margin: 0 !important;
        /* Kill Casper/header.css mobile menu inheritance (3.6rem / 1.1em) — was blowing up li line-boxes */
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
        font-weight: 400 !important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .gh-head-open #gh-head .gh-head-menu {
        left: 0 !important;
        visibility: visible !important;
        display: flex !important;
    }

    .gh-side-menu-header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        margin-bottom: clamp(2rem, 6vmin, 3.5rem);
        flex-shrink: 0;
        gap: 1rem;
    }

    .menu-close {
        position: static !important;
        flex-shrink: 0;
        margin: 0 !important;
        background: none;
        border: none;
        font-size: 4.5rem;
        line-height: 1;
        cursor: pointer;
        padding: 0 0 0 1rem;
        color: #404040 !important;
        z-index: 10001 !important;
        font-weight: 200 !important;
    }

    .gh-side-menu-logo {
        margin-top: 10px !important;
        text-align: left !important;
        flex: 1;
        min-width: 0;
        font-size: clamp(1.8rem, 3.4vw, 1.9rem) !important;
        letter-spacing: clamp(0.22em, 1.5vw, 0.5em) !important;
    }

    .gh-side-menu-content {
        flex: 0 1 auto !important;
        display: block !important;
        width: 100% !important;
        margin-bottom: clamp(1.25rem, 4vmin, 2rem);
    }

    /* Nav: block stack (not flex) + every top-level li is "contents" so Retreats/Journal/Shop
       aren't a different box model than the three service rows. Invalid? DOM stays ul>li; CSS only. */
    #gh-head .gh-head-menu .nav {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 30px 0 10px 0 !important;
        list-style: none !important;
    }

    #gh-head .gh-head-menu .nav li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.25 !important;
        list-style: none !important;
        min-height: 0 !important;
        display: block !important;
    }

    /* Must follow . nav li — same specificity; restores flattening for top-level items */
    #gh-head .gh-head-menu .nav > li {
        display: contents !important;
    }

    /* Primary nav only: hide Work With Us on mobile (still in .gh-side-menu-secondary / footer) */
    #gh-head .gh-head-menu .nav > li.nav-work-with-us,
    #gh-head .gh-head-menu .nav > li.nav-workwithus,
    #gh-head .gh-head-menu .nav > li:has(> a[href*="work-with-us"]),
    #gh-head .gh-head-menu .nav > li:has(> a[href*="workwithus"]) {
        display: none !important;
    }

    #gh-head .gh-head-menu .nav a {
        font-family: "Petrona", serif !important;
        font-size: clamp(2rem, 5.2vw, 2.6rem) !important;
        font-weight: 400 !important;
        padding: 0.5rem 0 !important;
        margin: 0 !important;
        color: #000 !important;
        width: 100% !important;
        border-bottom: none !important;
        text-transform: none !important;
        letter-spacing: 0.01em !important;
        line-height: 1.25 !important;
        display: block !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    /* Flush-align all nav items; kill default.hbs .nav-dropdown li { margin-bottom: 2rem } */
    #gh-head .gh-head-menu .nav .nav-dropdown {
        margin: 0 !important;
        padding: 0 !important;
    }

    #gh-head .gh-head-menu .nav .nav-dropdown li {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    #gh-head .gh-head-menu .nav .nav-dropdown a {
        padding-left: 0 !important;
        color: #000 !important;
        font-family: "Petrona", serif !important;
        font-size: clamp(2rem, 5.2vw, 2.6rem) !important;
        font-weight: 400 !important;
        line-height: 1.25 !important;
        display: block !important;
    }

    #gh-head .gh-head-menu .nav > li.has-dropdown {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Services: hide label; inner ul becomes contents so 3 lis stack like siblings */
    #gh-head .gh-head-menu li.nav-services.has-dropdown > a {
        display: none !important;
    }

    #gh-head .gh-head-menu li.nav-services.has-dropdown > .nav-dropdown {
        display: contents !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        list-style: none !important;
        box-shadow: none !important;
    }

    #gh-head .gh-head-menu li.nav-services.has-dropdown .nav-dropdown li {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    #gh-head .gh-head-menu li.nav-services.has-dropdown .nav-dropdown a {
        font-family: "Petrona", serif !important;
        font-size: clamp(2rem, 5.2vw, 2.6rem) !important;
        font-weight: 400 !important;
        color: #000 !important;
        padding: 0.5rem 0 !important;
        line-height: 1.25 !important;
        text-transform: none !important;
        letter-spacing: 0.01em !important;
        white-space: normal !important;
        display: block !important;
    }

    /* Retreats: single line; submenu hidden (parent href set to “Attend” in JS) */
    #gh-head .gh-head-menu li.nav-retreats .nav-dropdown {
        display: none !important;
    }

    #gh-head .gh-head-menu li.nav-retreats.has-dropdown > a::after {
        content: none !important;
    }

    #gh-head .gh-head-menu li.nav-services.has-dropdown > a::after {
        content: none !important;
    }

    /* No current-page underline in mobile drawer (.nav-current on parent li matched every nested a) */
    #gh-head .gh-head-menu .nav-current > a::after,
    #gh-head .gh-head-menu .nav-current a::after {
        content: none !important;
        display: none !important;
    }

    #gh-head .gh-head-menu .nav-current a {
        position: static;
        box-shadow: none !important;
    }

    .gh-side-menu-social {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        flex-wrap: nowrap !important;
        gap: 0.45rem !important;
        width: 100% !important;
        margin-top: 25px !important;
        margin-bottom: 50px !important;
        font-family: "Manrope", sans-serif;
        font-size: 1.4rem;
        font-weight: 400;
    }

    .gh-side-menu-social a {
        color: #000 !important;
        text-decoration: underline !important;
        text-underline-offset: 0.2em;
        text-transform: lowercase;
    }

    .gh-side-menu-social a:hover {
        opacity: 0.75;
    }

    .gh-side-menu-secondary {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        column-gap: 1.5rem;
        row-gap: 0.75rem;
        width: 100% !important;
        margin-top: 0 !important;
        padding-top: 0;
        font-family: "Manrope", sans-serif;
        flex-shrink: 0;
    }

    .gh-side-menu-secondary-col {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .gh-side-menu-secondary-col li {
        margin: 0 0 0.85rem 0 !important;
    }

    .gh-side-menu-secondary-col a {
        font-size: 1.4rem !important;
        font-weight: 400 !important;
        color: #000 !important;
        text-decoration: none !important;
        line-height: 1.35;
        display: inline-block;
    }

    .gh-side-menu-secondary-col a:hover {
        opacity: 0.7;
    }

    /* Hide any badges/extra text in sidebar */
    #gh-head .gh-head-menu .exp-badge,
    #gh-head .gh-head-menu .badge,
    #gh-head .gh-head-menu span:not(.gh-side-menu-logo) {
        display: none !important;
    }

    .gh-burger {
        display: flex !important;
        order: 1 !important; /* Move to the right of the logo */
        margin-left: 2px !important;
        margin-right: 0 !important;
        color: inherit;
    }

    #gh-head .gh-head-brand {
        flex-direction: row-reverse;
        gap: 3rem;
    }

    .gh-head-right {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px !important;
        margin-right: 0.8rem;
        z-index: 1001 !important;
    }
}

@media (max-width: 768px) {
    .gh-side-menu-logo {
        font-size: 1.4rem !important;
    }

    .menu-close {
        font-size: 3.5rem;
    }

    .gh-side-menu-social {
        margin-top: 14px !important;
        margin-bottom: 40px !important;
        font-size: 1.2rem;
    }
}

/* Offset for fixed header on pages without a full-viewport hero (transparent nav overlays hero) */
body:not(:has(.hero-section)):not(:has(.home-itinerary-hero)) .gh-viewport {
    padding-top: 70px;
}

@media (max-width: 900px) {
    body:not(:has(.hero-section)):not(:has(.home-itinerary-hero)) .gh-viewport {
        padding-top: 45px;
    }
}

/* Homepage: Mimti / food guide spotlight — floated card on white, aligned with header (1280px + 4vmin) */
.home-food-guide-spotlight {
    background: #fff;
    padding-top: 0;
    padding-bottom: clamp(3.25rem, 8vmin, 7.25rem);
    padding-inline: 4vmin;
    box-sizing: border-box;
}

.home-food-guide-spotlight__card {
    position: relative;
    width: min(100%, 1280px); /* Matches .gh-head-inner / hero content rail */
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 9 / 5.6; /* ~80% of 9 / 7 height for same width */
    overflow: visible; /* title may extend past card edge; image clipped on __bg */
    border-radius: 0;
    isolation: isolate;
}

.home-food-guide-spotlight__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.home-food-guide-spotlight__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-food-guide-spotlight__scrim {
    position: absolute;
    inset: 0;
    background-color: rgb(41 41 41 / 76%);
    pointer-events: none;
}

.home-food-guide-spotlight__content {
    position: relative;
    z-index: 1;
    display: grid;
    /* Wider right column for blurb; left still ~2/3 for 75px headline */
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    min-height: 100%;
    align-items: start;
    column-gap: clamp(1.25rem, 3.2vw, 3rem);
    row-gap: clamp(1.25rem, 3vw, 2.5rem);
    padding-top: clamp(2.85rem, 8vmin, 6.25rem);
    padding-inline: clamp(2.6rem, 8vmin, 5.75rem);
    padding-bottom: clamp(3.6rem, 10vmin, 7.75rem);
    box-sizing: border-box;
}

.home-food-guide-spotlight__meta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    text-align: right;
    max-width: 22rem;
}

.home-food-guide-spotlight__eyebrow {
    margin: 0 0 0.65rem;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d5d5d5;
    line-height: 1.35;
}

.home-food-guide-spotlight__handle {
    font-family: "Petrona", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

/* global.css sets a[class] { color: inherit }; needs parent chain + specificity for white links */
.home-food-guide-spotlight a.home-food-guide-spotlight__handle,
.home-food-guide-spotlight a.home-food-guide-spotlight__read {
    color: #fff !important;
}

.home-food-guide-spotlight a.home-food-guide-spotlight__handle:hover,
.home-food-guide-spotlight a.home-food-guide-spotlight__handle:focus-visible {
    color: #fff !important;
    opacity: 0.92;
}

.home-food-guide-spotlight a.home-food-guide-spotlight__read:hover,
.home-food-guide-spotlight a.home-food-guide-spotlight__read:focus-visible {
    background: #687587;
    color: #fff !important;
    border-color: transparent;
    opacity: 1;
}

.home-food-guide-spotlight__lead {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    max-width: none;
    width: 100%;
    min-width: 0;
    padding-left: clamp(1.5rem, 3.5vmin, 2.5rem);
    padding-right: clamp(0.75rem, 2vw, 1.25rem);
    box-sizing: border-box;
    margin-top: clamp(2.25rem, 6.5vmin, 4.75rem);
}

.home-food-guide-spotlight__title {
    margin: 0 0 clamp(1.25rem, 2.8vw, 2rem);
    font-family: "Petrona", serif;
    font-weight: 300;
    font-size: 85px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: #fff;
    max-width: none;
    overflow: visible;
    text-wrap: balance;
}

.home-food-guide-spotlight__read {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border: 1px solid transparent;
    border-radius: 10px !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

/* Lower-right quadrant only (matches upper-right eyebrow column) */
.home-food-guide-spotlight__aside {
    grid-column: 2;
    grid-row: 3;
    justify-self: stretch;
    align-self: end;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.home-food-guide-spotlight__blurb {
    margin: 0;
    font-family: "Petrona", serif;
    font-weight: 400;
    font-size: 2.2rem;
    line-height: 1.45;
    letter-spacing: 0;
    color: #fff;
    text-align: left;
    text-align-last: left;
}

@media (max-width: 768px) {
    .home-food-guide-spotlight {
        padding-top: 0;
        padding-bottom: clamp(2.75rem, 8vmin, 5rem);
        padding-inline: 0;
    }

    .home-food-guide-spotlight__card {
        /* Let height follow copy; rigid aspect-ratio was shorter than stacked content → scrim cut off mid-blurb */
        aspect-ratio: auto;
        height: auto;
        min-height: clamp(380px, 85vw, 520px);
    }

    /* Zoom / extend photo height inside clip; balances more band above & below focal area */
    .home-food-guide-spotlight__img {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        width: 100%;
        height: 145%;
        min-height: 145%;
        transform: translateY(-50%);
        object-fit: cover;
        object-position: center;
    }

    .home-food-guide-spotlight__content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 0;
        min-height: 0;
        align-items: start;
        row-gap: clamp(1.75rem, 6vmin, 2.75rem);
        padding-top: clamp(2.75rem, 12vmin, 4.5rem);
        padding-inline: clamp(2.25rem, 11vmin, 3.5rem);
        padding-bottom: clamp(3.5rem, 12vmin, 5.25rem);
    }

    .home-food-guide-spotlight__meta {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        text-align: left;
        max-width: none;
    }

    .home-food-guide-spotlight__eyebrow {
        margin-bottom: 0.28rem;
    }

    .home-food-guide-spotlight__lead {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
        margin-top: clamp(0.35rem, 2vmin, 0.85rem);
    }

    .home-food-guide-spotlight__aside {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
        justify-self: stretch;
    }

    .home-food-guide-spotlight__title {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: clamp(1.35rem, 4.5vmin, 2rem);
        font-size: clamp(2.85rem, 10vw, 5.3125rem); /* cap ≈ 85px desktop */
    }

    .home-food-guide-spotlight__read {
        font-size: 1.4rem;
    }

    .home-food-guide-spotlight__blurb {
        line-height: 1.55;
        max-width: 100%;
        font-family: "Manrope", sans-serif;
        letter-spacing: 0.02em;
        font-size: 1.3rem;
    }
}

/* Homepage: yoga retreats — full-bleed card (typically directly under hero; same horizontal rhythm as Mimti spotlight) */
.home-retreats-spotlight {
    background: #fff;
    box-sizing: border-box;
    width: 100%;
    padding-top: 50px;
    padding-bottom: clamp(3rem, 8vmin, 7.25rem);
    padding-inline: 4vmin;
    margin-top: 0;
    margin-bottom: 0;
}

.home-retreats-spotlight__card {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 9 / 5.6;
    overflow: hidden;
    border-radius: 0;
    isolation: isolate;
}

.home-retreats-spotlight__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.home-retreats-spotlight__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-retreats-spotlight__scrim {
    position: absolute;
    inset: 0;
    background-color: rgb(41 41 41 / 76%);
    pointer-events: none;
}

.home-retreats-spotlight__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    box-sizing: border-box;
    min-height: 100%;
    /* Full bleed inside card — avoid narrow max-width + margin-right:auto (left-rail + huge right void) */
    width: 100%;
    max-width: none;
    margin: 0;
    gap: clamp(1.35rem, 4vmin, 2.75rem);
    padding-top: clamp(3rem, 13vmin, 8rem);
    padding-left: clamp(3rem, 20vw, 28rem);
    padding-right: clamp(3rem, 12vw, 8.5rem);
    padding-bottom: clamp(4rem, 12vmin, 8rem);
}

.home-retreats-spotlight__title {
    margin: 0;
    font-family: "Petrona", serif;
    font-weight: 300;
    font-size: 85px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: #fff;
    /* Wide measure vs old 72%-wide column (~2/3 of inner area reads like comp 2) */
    max-width: min(980px, 82%);
}

.home-retreats-spotlight__blurb {
    margin: 0;
    font-family: "Petrona", serif;
    font-weight: 400;
    font-size: 2.2rem;
    line-height: 1.45;
    letter-spacing: 0;
    color: #fff;
    max-width: min(980px, 82%);
    text-wrap: balance;
}

.home-retreats-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(1rem, 12vw, 21rem);
    margin-top: clamp(2.5rem, 8vmin, 5.25rem);
    width: 100%;
}

/* Muted taupe CTA (design ref): beats generic .submit-btn from itinerary-page-assets */
.home-retreats-spotlight a.submit-btn.home-retreats-spotlight__cta {
    width: auto;
    flex: 0 1 auto;
    padding: 16px 40px;
    background: #a6856c;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-retreats-spotlight a.submit-btn.home-retreats-spotlight__cta:hover {
    background: #96755f;
    color: #fff;
}

@media (max-width: 768px) {
    .home-retreats-spotlight {
        padding-top: 0;
        padding-inline: 0vmin;
    }

    .home-retreats-spotlight__card {
        aspect-ratio: auto;
        height: auto;
        min-height: clamp(380px, 92vw, 560px);
    }

    .home-retreats-spotlight__img {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        width: 100%;
        height: 145%;
        min-height: 145%;
        transform: translateY(-50%);
        object-fit: cover;
        object-position: center;
    }

    .home-retreats-spotlight__content {
        align-items: flex-start;
        text-align: left;
        gap: clamp(1.15rem, 4.5vmin, 1.85rem);
        padding-top: clamp(2.5rem, 10vmin, 4rem);
        padding-left: clamp(2.25rem, 9vmin, 3.75rem);
        padding-right: clamp(2rem, 7vmin, 3.25rem);
        padding-bottom: clamp(3rem, 11vmin, 5.25rem);
        min-height: 0;
        margin: 0;
        max-width: none;
        width: 100%;
    }

    .home-retreats-spotlight__title {
        font-size: clamp(2.85rem, 10vw, 5.3125rem);
        max-width: 100%;
    }

    .home-retreats-spotlight__blurb {
        line-height: 1.55;
        max-width: 100%;
        font-family: "Manrope", sans-serif;
        letter-spacing: 0.02em;
        font-size: 1.4rem;
    }

    .home-retreats-spotlight__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: clamp(0.85rem, 6vw, 2rem);
        margin-top: clamp(2rem, 6vmin, 3.25rem);
        width: 100%;
    }

    .home-retreats-spotlight a.submit-btn.home-retreats-spotlight__cta {
        width: auto;
        justify-content: center;
        padding: 8px 20px;
        font-size: 1.2rem;
    }
}

/* Ensure no background box on the burger */
.gh-burger, .gh-burger-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#gh-head.gh-head-transparent .gh-search-icon {
    color: #fff !important;
}

.gh-head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px !important;
    margin: 0 auto !important;
}

.gh-head-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gh-head-brand {
    display: flex;
    align-items: center;
}

.gh-head-logo,
#gh-head .gh-head-logo {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 2rem !important;
    letter-spacing: 0.5em;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    display: inline-block;
    transition: opacity 0.3s ease-out; /* Match sidebar transition */
}

.gh-head-menu {
    display: flex;
    /* gap: 20px; */ /* Space between nav items */
}

.gh-head-menu .nav {
    display: flex;
    /* gap: 20px; */
}

.gh-head-menu .nav a,
.gh-head-menu-item {
    font-family: "Manrope", sans-serif;
    font-weight: 400; /* Regular font */
    text-decoration: none;
    color: inherit;
    font-size: 1.6rem; /* Adjust as needed */
    margin: 2rem 1.5vmin 2rem 1.5vmin;
    letter-spacing: 0.05em;
}

.hero-section {
    background-image: url("../images/Raha_Hero_explore_essaouira.webp");
    background-size: cover;
    background-position: bottom;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Reverted to Left aligned */
    text-align: left; /* Reverted to Left aligned */
    letter-spacing: 0.05em;
    color: #fff; /* White text for hero section */
    padding: 0 24px;
}

.hero-content {
    display: flex;
    align-items: flex-start; /* Reverted to Left aligned */
    align-content: flex-start; /* Reverted to Left aligned */
    flex-direction: column;
    gap: 20px; /* Adjust as needed for desired spacing */
    padding: 20px 0;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    letter-spacing: 0.2em;
    font-size: clamp(3.2rem, 8vw, 8rem);
    line-height: 1.3;
    margin: 0;
}

.hero-cta {
    font-family: "Petrona", serif;
    font-size: 2.6rem; /* Updated font size */
    color: #fff;
    text-decoration: none;
    margin-top: 1rem;
    transition: opacity 0.3s ease;
}

.hero-cta:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-content {
        gap: 10px;
    }

    .hero-cta {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .gh-head-logo,
    #gh-head .gh-head-logo {
        font-size: 1.3rem !important;
        margin-top: 0.1rem;
    }
    .gh-head-open .gh-head-inner.gh-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .gh-head-open .gh-head-brand {
        padding-top: 10px;
        justify-content: flex-start; /* Reverted to left aligned */
        position: initial !important; 
    }

    .gh-head-open .gh-burger {
        position: absolute;
        margin-top: 2.5rem;
        margin-left: 2.5rem;
        left: 0;
        transform: translateY(-50%);
    }

    .gh-head-menu {
        margin-bottom: 5px !important;
    }

    #gh-head .gh-head-brand {
        flex-direction: row-reverse;
        gap: 3rem;
    }
    .preloader-logo {
        font-size: 1.6rem !important;
    }
}

.gh-head-menu-item {
    margin: 0 0 0 1.5vmin !important;
}

.gh-head-right {
    display: flex;
    align-items: center;
    gap: 20px; /* Equal space between nav, subscribe, and search */
}

.gh-head-actions-list {
    display: flex;
    align-items: center;
}

.gh-search-icon {
    height: 15px !important;
    width: 15px !important;
    color: inherit !important; /* Use inherited color (black or white) */
}

.gh-search-icon:hover {
    opacity: 0.7;
}

.gh-head-menu .nav-current a {
    box-shadow: none;
}

.gh-head-menu .nav a:hover,
.gh-head-menu-item:hover {
    color: #999999; /* Light grey on hover */
}

.gh-head-menu .nav li {
    margin: 0 0 0 0 !important;
}

.gh-head {
    background: inherit;
    font-size: 1.6rem;
    line-height: 1.3em;
    padding: 1vmin 4vmin;
}

/* ==========================================================================
   Preloader Styles
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Make sure it's on top of everything */
    background-color: #fff; /* Match your site's background color */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader-logo {
    font-family: Manrope, var(--font-sans-serif);
    font-weight: 800;
    font-size: 2rem !important;
    letter-spacing: 0.5em;
    opacity: 0.5;
    white-space: nowrap;
    /* You can add a subtle animation if you like */
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* This is the class our script will add when the page is loaded */
body.is-loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================================================
   THEME GRID OVERRIDE (THE DEFINITIVE FIX)
   ========================================================================== */

/*
 * This rule intentionally overrides the broken grid definition from the
 * theme's core content.css file. It uses the fallback version that is
 * proven to work correctly.
*/
.gh-canvas,
.kg-width-full.kg-content-wide {
    grid-template-columns:
        [full-start] minmax(4vw, 1fr)
        [wide-start] minmax(0, 240px)
        [main-start] min(720px, 100% - 4vw * 2) [main-end]
        minmax(0, 240px) [wide-end]
        minmax(4vw, 1fr) [full-end] !important;
}

/* Experience Card Styles */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0 0 4rem 0;
    max-width: 1280px;
    margin: 0 auto;
}

.exp-card {
    position: relative;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: transform 0.2s ease;
    height: 100%;
}

.exp-card:hover {
    transform: translateY(-5px);
}

.exp-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

a.exp-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.exp-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.exp-image {
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
}

.exp-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding: 0px 4rem 0rem 1rem;
    flex: 1;
}

.exp-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 1rem;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 1;
}

.exp-category {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1c1b1b;
    margin-bottom: 1rem;
}

a.exp-category {
    text-decoration: none;
    color: #1c1b1b;
}

a.exp-category:hover {
    opacity: 0.75;
}

.exp-title {
    font-family: "Petrona", serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.exp-price {
    display: none !important; /* Removed as requested */
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    color: #888888 !important;
}

.exp-description {
    font-family: "Petrona", serif;
    font-size: 1.6rem;
    line-height: 1.4;
    font-style: normal;
    color: #444;
    margin-bottom: 1.2rem;
    flex: 1;
}

.exp-book-now {
    display: inline-block !important;
    align-self: flex-start !important; /* Prevents button from stretching full-width */
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border: 1px solid transparent;
    border-radius: 10px !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.exp-book-now:hover {
    background: #687587;
    color: #fff !important;
    border-color: transparent;
}

/* See All Experiences Button */
.exp-grid-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 3.5rem;
}

/* Snap Carousel Styles */
.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding: 0 2.5rem 4rem; /* 2.5rem left/right margin for inset look */
    margin: 0 -4vmin; /* Bleed container to viewport edges */
    scroll-padding-left: 2.5rem; /* Ensures snap position respects margin */
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 55%; /* Even smaller cards for a more refined look */
    scroll-snap-align: start;
}

@media (min-width: 769px) {
    .carousel-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        overflow: visible;
        scroll-snap-type: none;
        margin: 0;
        padding: 0;
        gap: 40px;
    }
    
    .carousel-item {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 0 4rem;
    }

    .carousel-item {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .exp-content {
        padding: 0 4rem 0 0;
    }

    a.exp-category {
        color: #454545;
    }

    .exp-category {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        color: #454545;
    }

    .exp-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .exp-description {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-top: 0.25rem;
    }

    .exp-book-now {
        font-size: 1rem;
        margin-top: 0;
        width: fit-content !important;
        text-align: left;
        padding: 0.6rem 1rem;
        display: inline-block !important;
    }

    .exp-badge {
        top: 2rem;
        left: 2rem;
        font-size: 1rem;
        padding: 0.2rem 0.5rem;
    }

    .exp-grid-footer .see-all-button {
        width: calc(100% - 32px);
        text-align: center;
        font-size: 1.2rem;
    }
}

.see-all-button {
    background: #eee;
    color: #000;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1.2rem 3.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
}

.see-all-button:hover {
    background: #e0e0e0;
}

/* How We Work Hero — width: 100% of main (no 100vw/calc: those drift when html zoom ≠ 1) */
.how-we-work-hero {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("../images/raha_how_we_work_hero.webp");
    background-size: cover, cover;
    /* Two values = gradient layer, photo layer. % = anchor point of image on container */
    background-position: center, 40% center;
    min-height: 90vh;
    position: relative;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
}

@media (min-width: 769px) {
    .how-we-work-hero {
        /* Photo layer only (gradient stays centered) — matches prior 185% crop on wide viewports */
        background-position: center, 185% center;
    }
}

@media (max-width: 1300px) {
    /* how-we-work-hero: keep full-bleed rules above (zoom + laptop widths); only reset related block here if needed */
    .related-experiences-section {
        width: 100% !important;
        left: 0 !important;
        margin: 0 !important;
        transform: none !important;
    }
}

.hww-content {
    max-width: min(900px, 1280px);
    padding: 7rem 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* Removing fixed gap to use custom padding on elements */
}

.hww-brand {
    font-family: "Manrope", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.9;
    padding-bottom: 50px;
}

.hww-title {
    font-family: "Petrona", serif;
    font-size: clamp(3.2rem, 6vw, 4.8rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.3;
    margin: 0;
    color: #fff;
    padding-bottom: 30px;
}

.hww-subtitle {
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
    opacity: 0.9;
    margin: 0;
    padding-bottom: 50px;
}

.hww-cta {
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.hww-cta:hover {
    border-bottom-color: #fff;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .how-we-work-hero {
        min-height: 40vh;
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        margin-left: 0;
        /* Subject ~1/3 from left of frame; nudge vertical so rider+horse read in crop */
        background-position: center, 33% 42%;
    }

    .hww-content {
        padding: 2rem 2rem;
    }

    .hww-brand {
        font-size: 1.6rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hww-title {
        margin: 8px;
        font-size: 2.4rem !important;
    }

    .hww-subtitle {
        font-size: 1.2rem !important;
        letter-spacing: 0.05em;
        padding-bottom: 32px;
    }

    .hww-cta {
        font-size: 1.2rem;
        border-bottom: none;
        padding-bottom: 20px;
    }

    .hww-cta:hover {
        border-bottom-color: transparent;
    }
}

.work-with-us {
    display: none; /* Hidden as requested */
    padding: 8rem 0;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.work-with-us-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 0 8rem 0;
    padding: 0 4vmin;
}

.work-with-us-intro h2 {
    font-family: "Manrope", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.work-with-us-intro p {
    font-family: "Petrona", serif;
    font-size: 2rem;
    line-height: 1.4;
    color: #1c1b1b;
}

.work-with-us-footer {
    display: flex;
    justify-content: center;
    margin-top: 8rem;
}

.btn-planning {
    background: #eee;
    color: #1c1b1b;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1.2rem 3.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-planning:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .work-with-us {
        padding: 4rem 0;
    }

    .work-with-us-intro {
        text-align: left;
        margin-bottom: 4rem;
    }

    .work-with-us-intro p {
        font-size: 1.6rem;
    }

    .work-with-us-footer {
        margin-top: 4rem;
    }
}

/* Social Proof Section */
.social-proof {
    padding: 4rem 0;
    text-align: center;
    background: #fff;
    width: 100%;
}

.social-proof-title {
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 6rem;
    text-transform: uppercase;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 4vw, 2.5rem);
    flex-wrap: nowrap;
    padding: 0 32px; /* Increased side padding */
    width: 100%;
    box-sizing: border-box;
}

.logo-grid img {
    height: clamp(2.5rem, 8vw, 8rem); /* Slightly smaller minimum and slower growth */
    width: auto;
    max-width: 20%; /* Ensure no single logo takes too much space */
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .social-proof {
        padding: 3rem 0;
    }
    .logo-grid {
        padding: 0 4vmin; /* Match the padding of the See All button container */
        gap: 0; /* Removed gap as requested */
        justify-content: space-between; /* Spread them out to the edges */
    }
    .logo-grid img {
        height: 8rem; /* Increased size as requested */
        max-width: 25%; /* Set max-width as requested */
    }

    /* Homepage experiences strip — partner logos: 2×2, fixed height, no horizontal bleed */
    .guides-section--experiences-box .social-proof--in-home-card .social-proof-title {
        margin-top: 2rem;
        margin-bottom: 5rem;
        font-family: "Manrope", sans-serif;
        font-size: 1.2rem;
    }

    .guides-section--experiences-box .social-proof--in-home-card .logo-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1rem;
        row-gap: 1rem;
        padding: 0 8px;
        justify-items: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .guides-section--experiences-box .social-proof--in-home-card .logo-grid img {
        height: 5rem;
        max-height: 5rem;
        width: auto;
        max-width: min(44vw, 12rem);
        object-fit: contain;
    }
}

/* Guides Section */
.guides-section {
    padding: 0rem 0;
    width: 100%;
    background: #fff;
}

/* Homepage: Essaouira experiences + social proof (no elevated card frame) */
.guides-section--experiences-box {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(3.5rem, 8vw, 11rem);
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
    padding: 0 clamp(1.5rem, 3vw, 2.5rem);
    box-sizing: border-box;
}

.guides-section--experiences-box .guides-section--experiences-inner {
    background: transparent;
    padding: 0;
}

.guides-section--experiences-box .social-proof--in-home-card {
    background: transparent;
    padding-top: 2rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: clamp(3rem, 8vw, 8rem);
    margin-top: 0.5rem;
}

.guides-section--experiences-box .social-proof--in-home-card .social-proof-title {
    margin-bottom: 7rem;
    margin-top: 2rem;
}

.guides-section--experiences-box .see-all-button,
.guides-footer .see-all-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 16px 40px;
    background: #687587;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: pointer;
}

.guides-section--experiences-box .see-all-button:hover,
.guides-footer .see-all-button:hover {
    background: #566374;
    color: #fff;
}

@media (max-width: 768px) {
    body.home-template .gh-page {
        padding: 0;
    }

    /*
     * Homepage carousels: kill starter negative margins + centered title math so
     * section headings line up with the first card image (shared rail per section).
     */
    body.home-template .guides-section .carousel-container,
    body.home-template .guides-section--experiences-box .carousel-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        scroll-padding-left: 0;
    }

    body.home-template .guides-section .section-display-title,
    body.home-template .guides-section--experiences-inner .section-display-title {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    /* Essaouira Experiences (boxed strip + inner section) */
    .guides-section--experiences-box {
        width: 100%;
        max-width: 1280px;
        margin-left: 1rem;
        margin-right: auto;
        padding-inline: clamp(0rem, 4vw, 0rem);
    }

    .guides-section--experiences-box .guides-section--experiences-inner {
        margin-left: 0;
    }

    .guides-section--experiences-box .carousel-container {
        padding: 0 0 3rem;
        gap: 0.5rem;
    }

    .guides-section--experiences-inner .section-display-title {
        font-size: 2.6rem;
        line-height: 1;
        padding-top: 0;
        margin-top: 45px;
        margin-bottom: 20px;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }

    /* Our Mogador Travel Guides — isolated from transport via .guides-section--home-travel-guides */
    body.home-template .guides-section--home-travel-guides {
        margin-left: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
        width: 100%;
        background: #fff;
    }

    body.home-template .guides-section--home-travel-guides .section-display-title {
        font-size: 2.6rem;
        line-height: 1;
        margin-top: 30px;
        margin-bottom: clamp(2.5rem, 4vw, 4rem);
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }

    body.home-template .guides-section--home-travel-guides .guide-grid.carousel-container {
        padding: 0 0 3rem;
        gap: 0.5rem;
    }

    body.home-template .guides-section--home-travel-guides .guide-grid.carousel-container .carousel-item {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    body.home-template .guides-section--home-travel-guides .guide-title {
        font-size: 1.3rem;
    }

    body.home-template .guides-section--home-travel-guides .guide-description {
        font-size: 1.4rem;
        margin-right: 4rem;
    }

    body.home-template .guides-section--home-travel-guides .guide-read-more {
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }

    body.home-template .guides-section--home-travel-guides .guides-footer {
        padding-top: 2rem;
        padding-bottom: 7.5rem;
        margin-left: 0;
    }

    /* Private Transport Services — layout hacks stay scoped here only */
    body.home-template .guides-section--transport-services {
        margin-left: 1rem;
        padding-left: 0;
        padding-right: 1rem;
        box-sizing: border-box;
        width: 100%;
        background: #fff;
    }

    body.home-template .guides-section--transport-services .section-display-title {
        font-size: 2.6rem;
        line-height: 1;
        margin-top: 30px;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }

    body.home-template .guides-section--transport-services .guide-description {
        margin: 0 4rem 0 0;
    }

    body.home-template .guides-section--transport-services .guide-grid.carousel-container {
        padding: 0 0 3rem;
        gap: 0.5rem;
    }

    body.home-template .guides-section--transport-services .guides-footer {
        padding-top: 2rem;
        padding-bottom: 5.5rem;
        margin-left: 0;
    }

    .guide-grid .guide-image {
        aspect-ratio: 5 / 6;
    }

    .guides-section--experiences-box .see-all-button,
    .guides-footer .see-all-button {
        width: auto;
        max-width: 100%;
        padding: 8px 24px;
        font-size: 1.2rem;
    }

    .gh-content .kg-button-card .kg-btn {
        padding: 18px 38px;
        font-size: 1.4rem;
    }

    .guides-section--experiences-box .social-proof--in-home-card {
        padding-bottom: clamp(2.5rem, 10vw, 5rem);
    }
}

/* Ghost editor “Button” card — matches guides `.see-all-button`; only where you drop the Button block into content */
.gh-content .kg-button-card {
    display: flex;
}

.gh-content .kg-button-card.kg-align-left {
    justify-content: flex-start;
}

.gh-content .kg-button-card.kg-align-center {
    justify-content: center;
}

.gh-content .kg-button-card.kg-align-right {
    justify-content: flex-end;
}

.gh-content .kg-button-card .kg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 24px 50px;
    background: #687587;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    color: #fff !important;
}

.gh-content .kg-button-card .kg-btn:hover,
.gh-content .kg-button-card .kg-btn:focus {
    background: #566374;
    color: #fff !important;
    text-decoration: none;
}

/* Ghost always adds kg-btn-accent to this card — keep same slab as homepage */
.gh-content .kg-button-card .kg-btn.kg-btn-accent {
    background: #687587;
}

.gh-content .kg-button-card .kg-btn.kg-btn-accent:hover,
.gh-content .kg-button-card .kg-btn.kg-btn-accent:focus {
    background: #566374;
}

/* Extra breathing room around editor cards vs prose (overrides starter theme 6vmin) */
.gh-content .kg-card + :not(.kg-card),
.gh-content :not(.kg-card):not([id]) + .kg-card {
    margin-top: 10rem;
}

/* Homepage section headlines — also use .section-display-title alone on headings that shouldn’t carry .guides-section-title */
.section-display-title {
    font-family: "Petrona", serif;
    font-size: 5.2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #111;
    margin-top: 75px;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    line-height: 1.1;
}

.guides-section--experiences-inner .section-display-title {
    padding-top: 0;
}

.guide-grid {
    /* Base carousel functionality handled by .carousel-container */
}

@media (min-width: 769px) {
    .guide-grid.carousel-container,
    .exp-grid.carousel-container {
        display: grid !important; /* Ensure it's a grid, not flex */
        grid-template-columns: repeat(4, 1fr) !important; /* Strictly 4 columns to prevent wrapping */
        max-width: 1280px; /* Matching title width */
        margin: 0 auto;
        padding: 0 0 6rem 0;
        gap: 1rem; /* Very thin gap to fit all on one row */
        overflow: visible !important;
    }
}

.guide-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}

.guide-image {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.guide-card:hover .guide-image {
    opacity: 0.9;
}

.guide-title {
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0.4rem 0 1.2rem 0;
}

.guide-description {
    font-family: "Petrona", serif;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #444;
    margin: 0 2rem 0 0;
    flex: 1;
}

.guide-read-more {
    display: inline-block !important;
    align-self: flex-start !important;
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border: 1px solid transparent;
    border-radius: 10px !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    margin-top: 1rem;
}

.guide-read-more:hover {
    background: #687587;
    color: #fff !important;
    border-color: transparent;
}

.guides-footer {
    display: flex;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 13.5rem;
}

/* Site Footer */
.site-footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 6rem 0 4rem;
    font-family: "Manrope", sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 2rem;
    margin-bottom: 5rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.footer-col h4 {
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: #1c1b1b;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #444;
    font-size: 1.6rem;
    transition: color 0.2s ease;
    display: block;
}

.footer-col ul li a:hover {
    color: #000;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-newsletter p {
    font-family: "Petrona", serif;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 2rem;
    max-width: 320px;
}

/* Footer Subscribe Form */
.footer-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
}

.footer-form input {
    background: #fff;
    border: none;
    padding: 0.8rem;
    font-family: "Manrope", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    outline: none;
    width: 100%;
}

.footer-form button {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.8rem;
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    border-radius: 10px;
}

.footer-form button:hover {
    background: #000;
}

.footer-form .success-msg {
    display: none;
    color: green;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.footer-form.success .success-msg {
    display: block;
}

.footer-form .error-msg {
    display: none;
    color: red;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.footer-form.error .error-msg {
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 24px 0;
}

.footer-bottom-col {
    display: flex;
    justify-content: flex-start;
}

.footer-bottom-col:last-child {
    justify-content: flex-end;
}

.footer-social-center {
    justify-content: center;
}

.footer-bottom-col p {
    font-size: 1.6rem;
    color: #888;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a.social-link {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    transition: opacity 0.2s ease;
    margin-right: 1rem;
}

.footer-social a.social-link:hover {
    opacity: 0.7;
}

.footer-bottom-right h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #1c1b1b;
    margin: 0;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 1rem;
        row-gap: 3rem;
    }

    .footer-col h4,
    .footer-col ul li a {
        font-size: 1.2rem;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        margin-top: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-newsletter p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .footer-form {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 0;
    }

    .footer-bottom-col,
    .footer-bottom-col:last-child {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-bottom-col p {
        font-size: 1.4rem;
    }

    .footer-social a.social-link {
        font-size: 1.1rem;
    }

    .footer-bottom-right h3 {
        font-size: 1.6rem;
    }
}

/* Post Editorial Layout */
.post-hero {
    position: relative;
    width: 100vw;
    height: 70vh;
    max-width: 100%;
    margin-bottom: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-hero img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.post-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
    z-index: 2;
}
.hero-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    width: 100%;
    max-width: min(900px, 1280px);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.blog-hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}
.blog-hero-subtitle {
    font-family: 'Petrona', serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 3vw, 3.2rem);
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
}

.post-container {
    display: grid;
    grid-template-columns: clamp(300px, 34%, 480px) 1fr; /* Exact proportional fluid sidebar */
    gap: 5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%; /* Fluid padding relative to container */
    align-items: start;
    box-sizing: border-box;
}

/* Sidebar item stability */
.sidebar-item {
    margin-bottom: 4rem;
    background: #fff;
    position: relative;
    z-index: 10;
    width: 100%; /* Fill column width */
    max-width: 320px; /* Keep widgets centered/narrow within the column */
}

/* Ensure parents don't break sticky */
.gh-viewport, .gh-main, .post-full-width, .post-wrapper, .gh-article, .post-content, .post-body {
    overflow: visible !important;
}

.gh-article, .gh-postfeed {
    padding: 3vmin 0 0;
}

.post-sidebar {
    position: relative;
    width: 100%;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: stretch;
}

.sidebar-meta-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.post-content {
    position: relative;
    height: 100%;
    max-width: 720px;
    width: 100%; /* Ensure it takes available space */
    justify-self: start; /* Changed from end to prevent right-pushing */
    grid-column: 2;
    grid-row: 2;
}

.article-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3.5rem;
    padding-top: 2rem;
    width: 100%;
    max-width: 720px;
    font-family: "Manrope", sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    grid-column: 2;
    grid-row: 1;
}

.article-category {
    font-weight: 800;
    color: #1c1b1b;
}

.article-category a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-category a:hover {
    color: #999999;
}

.cat-sep {
    margin: 0 1.5rem;
    font-weight: 400;
    color: #1c1b1b;
}

.article-date {
    font-weight: 800;
    color: #a9a7a7;
}

.sidebar-sticky-wrapper {
    position: sticky;
    top: 100px;
    z-index: 10;
    background: #fff;
    width: 100%;
    padding-top: 0rem; /* Removed padding-top */
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile fallback for sidebar images */
.sidebar-image-data {
    padding-top: 3rem;
}

@media (max-width: 900px) {
    .post-body .sidebar-image-data,
    .post-body figure.sidebar-image,
    .post-body .kg-card.sidebar-image {
        width: 100% !important;
        margin: 4rem 0 !important;
        display: block !important;
        position: relative !important;
    }
    
    .post-body .sidebar-image-data img,
    .post-body figure.sidebar-image img,
    .post-body .kg-card.sidebar-image img {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }
}

.sidebar-kicker {
    font-family: "Manrope", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    display: block;
    margin-bottom: 2rem; /* Updated margin-bottom */
    padding-top: 2rem;
}

.toc-toggle {
    font-family: "Manrope", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    display: block;
    margin-bottom: 2rem;
    cursor: pointer;
    text-align: left;
}

.meta-widget p {
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    letter-spacing: .06em;
    margin: 0 0 1rem 0; /* Clean vertical stacking with margin-bottom */
    color: #1c1b1b;
}

.meta-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 5rem;
    padding-top: 2.5rem;
}

.btn-share {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1c1b1b;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.btn-share svg {
    width: 1.6rem;
    height: 1.6rem;
    stroke-width: 2.5px;
}

.btn-share:hover {
    opacity: 0.7;
}

/* Share Modal Styles */
.share-modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    inset: 0;
    background: rgba(0,0,0,0.4); 
    align-items: center; 
    justify-content: center;
}

.share-modal.is-active { 
    display: flex; 
}

.share-modal-content {
    background: #fff; 
    padding: 3rem; 
    width: 90%; 
    max-width: 500px;
    position: relative; 
    text-align: center; 
    border-radius: 4px;
}

.share-title { 
    font-family: 'Manrope', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    font-size: 1rem; 
    margin-bottom: 2rem; 
}

.share-input-group { 
    display: flex; 
    border: 1px solid #eee; 
    padding: 5px; 
}

#share-url-input { 
    border: none; 
    flex-grow: 1; 
    padding: 10px; 
    font-family: 'Petrona', serif; 
    font-size: 1.2rem; 
    color: #474646; 
    outline: none; 
}

#copy-modal-btn { 
    background: #333; 
    color: #fff; 
    border: none; 
    padding: 10px 20px; 
    font-family: 'Manrope', sans-serif; 
    font-weight: 700; 
    font-size: 1rem; 
    cursor: pointer; 
    letter-spacing: 0.1em; 
}

.close-share { 
    position: absolute; 
    top: 1rem; 
    right: 1.5rem; 
    background: none; 
    border: none; 
    font-size: 2rem; 
    cursor: pointer; 
    color: #999; 
}

#copy-success-msg { 
    font-size: 0.8rem; 
    color: #2ecc71; 
    margin-top: 1rem; 
    font-family: 'Manrope', sans-serif; 
}

.toc-widget h3, 
.promo-widget h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: #1c1b1b;
    padding-top: 2.5rem; /* Added padding as requested */
}

/* Tocbot Customization */
.toc-container {
    padding-left: 1.5rem; /* Indent under header */
}

.toc-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-left: none !important; /* Remove grey bar */
}

.toc-link {
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    line-height: 28px !important; /* Set as requested */
    color: #444 !important;
    text-decoration: underline !important; /* Set as requested */
}

.toc-link::before {
    background-color: #eeeeee00 !important;
}

/* Remove active link formatting */
.is-active-link {
    font-weight: normal !important;
    color: #444 !important;
}

.is-active-link::before {
    display: none !important; /* Remove any active bar indicator */
}

.toc-list-item {
    margin-bottom: 0.5rem;
}

.promo-widget p {
    font-family: "Petrona", serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 2rem;
}

.post-title {
    font-family: "Petrona", serif;
    font-size: clamp(3.2rem, 6vw, 5.6rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 7rem;
    color: #1c1b1b;
}

.post-body {
    font-family: "Petrona", serif;
    font-size: 2rem;
    line-height: 1.6;
    color: #333;
}

.post-body p {
    margin-bottom: 2.5rem;
}

.post-body h2,
.post-body h3 {
    scroll-margin-top: 100px; /* Offset for fixed header when jumping to TOC links */
    padding: 4rem 0 4rem 0;
}

/* Sidebar Form Specifics */
.sidebar-form {
    max-width: 100% !important;
}

.sidebar-form input {
    border: 1px solid #eee !important;
}

/* Mobile Media Queries removed from here and moved to the bottom for consistency */

/* Guide Profile Card (Editorial Layout) */
.guide-profile-card {
    max-width: 1280px;
    margin: 6rem auto;
    padding: 4rem 4% 4rem 4%; /* Match .post-container padding */
    display: grid;
    grid-template-columns: clamp(300px, 34%, 480px) 1fr; /* Exact match to .post-container */
    gap: 5rem;
    align-items: start;
    background-color: #fff;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

@media (max-width: 1400px) {
    .guide-profile-card {
        padding: 4rem 4vw 4vw 4vw;
    }
}

.guide-profile-card .guide-image,
.guide-profile-card .guide-image img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    display: block !important;
}

.guide-profile-card .guide-image {
    margin-bottom: -11.5rem !important;
}

.guide-info {
    max-width: 720px; /* Match .post-content max-width */
    justify-self: start; /* Aligned with post body content */
    padding-top: 5rem;
}

.guide-info h1, 
.guide-info h2, 
.guide-info h3,
.about-our-local-guide,
#about-our-local-guide {
    display: block !important;
    padding: 0 !important;
    padding-bottom: 4rem !important;
    margin: 0 !important;
    font-family: 'Petrona', serif !important;
    text-transform: none !important;
    font-size: 3.2rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: #1c1b1b !important;
}

.btn-guide-link {
    display: inline-block !important;
    margin-top: 4rem;
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border: 1px solid transparent;
    border-radius: 0 !important;
    transition: all 0.2s ease;
}

.btn-guide-link:hover {
    background: #000;
    color: #fff !important;
    border-color: #000;
}

/* Consolidating media queries into the bottom section */
/* Related Experiences Section (Blog Bottom) */
.related-experiences-section {
    background-color: #f4f4f4;
    padding: 7rem 24px 8rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.related-exp-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    box-sizing: border-box;
}

.related-experiences-section .section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.4rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    margin-bottom: 6rem !important;
    color: #111 !important;
    font-weight: 800 !important;
    text-align: left !important;
}

.related-experiences-section .exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: left;
    margin-bottom: 6rem;
}

.related-experiences-section .exp-card {
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.related-experiences-section .exp-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.related-experiences-section .exp-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 1rem;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 1;
}

.related-experiences-section .exp-content h3 {
    font-family: 'Petrona', serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.related-experiences-section .exp-price {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #888;
}

.related-experiences-section .exp-description {
    font-family: 'Petrona', serif;
    font-style: normal;
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.4;
    padding-top: 1rem;
    flex: 1;
}

.related-experiences-section .exp-btn {
    display: inline-block !important;
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border: 1px solid transparent;
    border-radius: 0 !important;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.related-experiences-section .exp-btn:hover {
    background: #000;
    color: #fff !important;
    border-color: #000;
}

.related-experiences-section .btn-view-all {
    display: block;
    margin: 0 auto;
    width: fit-content;
    background: #e0e0e0;
    color: #111;
    padding: 1.2rem 3.5rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.2s ease;
}

.related-experiences-section .btn-view-all:hover {
    background: #d4d4d4;
}

@media (max-width: 900px) {
    .related-experiences-section .exp-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 0 2.5rem 4rem; /* Match homepage carousel padding */
        margin: 0 -1.5rem; /* Bleed to edges since parent has 1.5rem padding */
        scroll-padding-left: 2.5rem;
        grid-template-columns: none; /* Disable grid */
    }

    .related-experiences-section .exp-grid::-webkit-scrollbar {
        display: none;
    }

    .related-experiences-section .exp-card {
        flex: 0 0 75%; /* Slightly larger than home for better readability in post context */
        scroll-snap-align: start;
    }
    
    .related-experiences-section {
        padding: 6rem 1.5rem;
        overflow: hidden; /* Contain the bleeding carousel */
    }
}

@media (max-width: 900px) {
    /* 1. Force the container to be a single column */
    .post-container {
        grid-template-columns: 1fr !important;
        gap: 0rem !important;
        padding: 0 4vmin;
    }

    .post-hero {
        height: 50vh;
        margin-bottom: 0rem !important;
    }

    .article-meta-header {
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        max-width: calc(100% - 3rem) !important;
        margin-bottom: 0rem !important;
        margin-left: 3rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.7rem !important;
        color: #646161 !important;
    }

    .article-date {
        margin-bottom: 1.2rem !important;
        margin-top: 0.5rem !important;
        color: #646161 !important;
        letter-spacing: 0.16em !important;
    }

    .post-sidebar {
        grid-row: 2 !important;
        grid-column: 1 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-left: 3rem !important;
        margin-bottom: 0 !important;
        max-width: calc(100% - 3rem) !important;
        display: block !important;
    }

    .sidebar-sticky-wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0rem !important;
        border: none !important;
        padding: 0 !important;
        width: 100% !important;
        position: relative !important;
        top: 0 !important;
    }

    /* 2. Place items specifically in the wrapper grid */
    .meta-widget { grid-column: 1 / 2; grid-row: 1; text-align: left !important; }
    .toc-widget { 
        grid-column: 1 / 2; 
        grid-row: 2; 
        text-align: left; 
        margin-top: 0rem !important;
    }
    .meta-actions { 
        grid-column: 1 / 2; 
        grid-row: 3; 
        text-align: left !important; 
        display: flex !important; 
        justify-content: flex-start !important; 
        justify-self: start !important; 
        margin-top: 1.2rem !important;
        margin-bottom: 2rem !important;
        padding-top: 0 !important; 
        width: 100% !important; 
    }

    .btn-share {
        margin-left: 0 !important;
        margin-right: auto !important;
        font-size: 1.3rem !important;
        letter-spacing: 0.16em !important;
        color: #646161 !important;
        margin-bottom: 2rem !important;
    }

    .sidebar-item {
        margin-bottom: 0rem !important;
    }

    /* 3. Collapse TOC by default */
    .toc-container { display: none !important; }
    .toc-container.is-open { display: block !important; }
    .toc-toggle { 
        display: block !important; 
        cursor: pointer; 
        padding-top: 0rem !important;
        margin-bottom: 0 !important; 
        font-family: 'Manrope', sans-serif !important;
        font-size: 1.3rem !important;
        letter-spacing: 0.16em !important;
        text-transform: uppercase !important;
        color: #646161 !important;
    }

    /* 4. Remove all borders */
    .meta-widget, .toc-widget, .article-meta-header, .post-sidebar * {
        border: none !important;
    }

    /* 5. Clean Typography */
    .sidebar-kicker {
        display: none !important;
    }

    .toc-widget h3 {
        font-family: 'Manrope', sans-serif !important;
        font-size: clamp(0.7rem, 2vw, 1.3rem) !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        padding-top: 0rem !important;
    }

    .meta-widget p {
        font-family: 'Manrope', sans-serif !important;
        font-size: 1.3rem !important;
        letter-spacing: 0.16em !important;
        text-transform: uppercase !important;
        margin-top: 0.1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .post-content {
        grid-row: 3 !important;
        grid-column: 1 !important;
        order: 2;
        max-width: 99% !important;
        justify-self: center;
        padding: 0 0rem !important;
    }

    .post-body h2 {
        padding: 5rem 0 5rem 0 !important;
        font-size: 3.4rem !important;
        border: none !important;
    }

    .post-body h3 {
        padding: 4rem 0 2rem 0 !important;
        border: none !important;
    }

    hr, .divider, .post-body > * {
        border-top: none !important;
    }

    .blog-hero-title {
        font-size: clamp(2rem, 6vw, 6rem) !important;
        margin: 0rem 3rem 4rem 3rem !important;
    }

    .blog-hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 3.2rem) !important;
        margin: 2rem 2rem auto !important;
    }

    /* Image refinements */
    .post-body .sidebar-image-data img,
    .post-body figure.sidebar-image img,
    .post-body .kg-card.sidebar-image img {
        width: 75% !important;
        margin: 0 auto 4rem auto !important;
        display: block !important;
    }

    /* Guide Profile Card refinements */
    .guide-profile-card .guide-image {
        width: 75% !important;
        margin: 0 auto -20rem auto !important;
    }

    .guide-profile-card {
        grid-template-columns: 1fr !important;
        gap: 20rem !important;
        padding: 3rem 2.5rem 4rem 2.5rem !important;
    }

    /* Related Experiences refinements */
    .related-experiences-section .exp-grid {
        padding: 0 2.5rem 8rem 4rem !important;
    }

    .related-experiences-section .section-title {
        padding: 0rem 0rem 0rem 1.5rem !important;
        font-size: 2.2rem !important;
    }

    .related-experiences-section {
        padding: 6rem 2.5rem 10rem 2.5rem !important;
    }

    /* How We Work refinements (posts only — homepage mobile sizes live earlier in omi.css) */
    body.post-template .how-we-work-hero .hww-title {
        font-size: 3.2rem !important;
    }

    body.post-template .how-we-work-hero .hww-subtitle {
        font-size: 1.6rem !important;
        font-weight: 500 !important;
        margin: 0rem 2rem 0rem 2rem !important;
    }

    /* 6. Hide Newsletter on Mobile */
    .promo-widget {
        display: none !important;
    }
}

@media (max-width: 400px) {
    .article-meta-header,
    .meta-widget p,
    .toc-toggle,
    .btn-share {
        font-size: 1rem !important;
    }
}

/* Book Page Custom Styles */
.book-page {
    background: #fff;
    padding-top: 70px; /* Account for fixed header */
}

.book-page, 
.book-page p, 
.book-page h1, 
.book-page h2, 
.book-page h3, 
.book-page .step-number,
.book-page .exp-title,
.book-page .exp-description,
.book-page .pathway-card p,
.book-page .book-hero p {
    font-family: 'Manrope', sans-serif !important;
}

.book-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.book-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.book-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.book-hero h1 {
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 6.5rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.book-hero p {
    font-weight: 400;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    letter-spacing: .08em;
    color: #fff;
    margin: 0;
}

.book-pathways {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 6rem auto;
    padding: 0 4vmin;
}

.pathway-card {
    background: #f8f8f8;
    padding: 4rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.pathway-card:hover {
    filter: brightness(0.95);
    cursor: pointer;
}

.pathway-card h3 {
    font-weight: 800;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.pathway-card p {
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: .08em;
    margin: 0;
}

.book-grid-section {
    max-width: 1280px;
    margin: 10rem auto;
    padding: 0 4vmin;
    scroll-margin-top: calc(70px + 10.5rem);
}

.book-grid-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.book-grid-section h2 {
    font-weight: 800;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.view-all {
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1c1b1b;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.view-all:hover {
    opacity: 0.7;
}

.card-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.book-page .exp-card {
    position: relative;
}

.book-page .exp-book-now {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
}

.book-page .exp-title {
    margin: 0 0 1.5rem 0;
    font-weight: 800;
}

.book-page .step-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1c1b1b;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.book-page .grid-footer {
    display: flex;
    justify-content: center;
    margin-top: 6rem;
}

.book-page .book-cta-centered {
    text-align: center;
    max-width: 800px;
    margin: 10rem auto 0;
    padding: 0 2rem;
}

.book-page .book-cta-centered p {
    font-weight: 800;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 4rem;
}

.book-page .btn-text {
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1c1b1b;
    text-decoration: none;
    border-bottom: 1px solid #1c1b1b;
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.book-page .btn-text:hover {
    opacity: 0.7;
}

.how-it-works {
    max-width: 1280px;
    margin: 10rem auto;
    padding: 8rem 4vmin;
    background: #f8f8f8;
}

.how-it-works h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6rem;
    text-align: center;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.step-number {
    display: block;
    font-family: "Petrona", serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1c1b1b;
}

.step h3 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.step p {
    font-family: "Petrona", serif;
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}

.book-faqs {
    max-width: 900px;
    margin: 10rem auto;
    padding: 0 4vmin;
}

.book-faqs h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
}

.book-faqs details {
    border-bottom: 1px solid #eee;
    padding: 2rem 0;
}

.book-faqs summary {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-faqs summary::-webkit-details-marker {
    display: none;
}

.faq-content {
    padding-top: 2rem;
}

.faq-content p {
    margin: 0;
}

.retreat-strip {
    background: #f8f8f8;
    padding: 10rem 4vmin;
    text-align: center;
}

.retreat-strip p {
    font-family: "Petrona", serif;
    font-size: 2.2rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.retreat-strip .btn {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #1c1b1b;
    color: #fff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.retreat-strip .btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .book-pathways,
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .book-hero {
        height: 50vh;
    }

    .book-grid-section {
        margin: 6rem auto;
    }

    .card-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        margin: 0 -4vmin;
        padding-left: 4vmin;
    }

    .card-carousel::-webkit-scrollbar {
        display: none;
    }

    .card-carousel .exp-card {
        min-width: 85vw;
        scroll-snap-align: start;
    }
}

/* ==========================================================================
   Experience Page Custom Template
   ========================================================================== */

.experience-page {
    padding: 5rem 4vmin 4rem; /* Increased top padding to 5rem */
    margin-top: 70px; /* Offset for fixed header height to prevent tucking */
}

.exp-hero-header {
    text-align: center;
}

.exp-hero-header.title-only {
    padding: 0;
}

.exp-hero-header.subtitle-only {
    padding: 0rem 0rem 3rem 0rem;
}

.exp-hero-header h1 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 3rem;
    line-height: 1.1;
}

.exp-hero-header .exp-subtitle {
    font-family: "Petrona", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.exp-hero-header .exp-category-top {
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1rem;
    margin-top: 0;
}

.exp-hero-header .exp-category-top a {
    color: inherit;
    text-decoration: none;
}

.exp-hero-header .exp-badge {
    display: inline-block;
    position: relative; /* Override global absolute positioning */
    top: auto;
    left: auto;
    background: #f0f0f0;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.exp-header-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10rem;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.exp-main-content {
    font-family: "Petrona", serif;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #333;
    max-width: none;
}

/* Luxury 2x2 Square Gallery Grid */
.luxury-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 2rem;
}

.luxury-gallery .grid-item {
    overflow: hidden;
    border-radius: 8px;
}

.luxury-gallery .grid-item img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
}

.luxury-gallery .grid-item img:hover {
    transform: scale(1.05);
}

.btn-view-all {
    display: block;
    width: fit-content;
    margin-left: auto; /* Align to the right of the images */
    background: none;
    color: #707070;
    border: none;
    border-bottom: 1px solid #707070;
    padding: 0;
    padding-bottom: 5px;
    border-radius: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    margin-bottom: 4rem;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.btn-view-all:hover {
    opacity: 0.7;
    background: none;
    color: #707070;
}

/* Itinerary & Hosts Styling */
.itinerary-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 4rem;
}

.itinerary-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: #111;
}

.itinerary-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.itinerary-item:last-child {
    margin-bottom: 0;
}

.itinerary-item img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.item-text h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.1em;
    color: #111;
}

.item-text p {
    font-family: 'Petrona', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: #555;
    margin: 0;
}

.hosts-placeholder {
    margin-top: 4rem;
}

.hosts-container {
    margin-top: 10rem;
}

.host-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 6rem;
    align-items: center;
}

.host-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.host-text h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.1em;
    color: #111;
}

.host-text p {
    font-family: 'Petrona', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: #666;
    margin: 0;
}

/* Where We'll Meet (below header grid; .meeting-point-section from editor) */
.exp-meeting-slot {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 4rem;
}

.exp-meeting-slot:empty {
    display: none;
    padding: 0;
}

.exp-things-slot {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.exp-things-slot:empty {
    display: none;
}

.meeting-point-section,
.meeting-section {
    margin-top: 4rem;
    margin-bottom: 0;
}

.meeting-point-section h2.section-heading,
.meeting-section h2.section-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    margin-top: 0;
    color: #111;
    line-height: 1.2;
}

.meeting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
}

/* Map: either <div class="meeting-map"><a>...</a></div> or <a class="meeting-map"> */
.meeting-map a,
a.meeting-map {
    display: block;
    text-decoration: none;
    color: inherit;
}

.meeting-map img,
a.meeting-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.meeting-map a:hover img,
.meeting-map a:focus-visible img,
a.meeting-map:hover img,
a.meeting-map:focus-visible img {
    transform: scale(1.02);
}

.meeting-details h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #111;
    line-height: 1.3;
}

.meeting-details p {
    font-family: 'Petrona', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    margin: 0 0 1rem 0;
}

.meeting-details a.meeting-address {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    margin: 0 0 1rem 0;
    display: inline-block;
}

.meeting-details a.meeting-address:hover,
.meeting-details a.meeting-address:focus-visible {
    color: #111;
}

.meeting-details p:last-child,
.meeting-details a.meeting-address:last-child {
    margin-bottom: 0;
}

/* Things to know */
.things-to-know {
    background: #ffffff;
    padding: 5rem;
    border-radius: 24px;
    margin: 4rem 0;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.things-to-know h2.section-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
    margin-top: 2rem;
    color: #111;
    line-height: 1.2;
}

.things-to-know .knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8rem;
}

.things-to-know h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    text-transform: none;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    margin: 0 0 1rem 0;
    color: #111;
    line-height: 1.3;
}

.things-to-know p,
.things-to-know li {
    font-family: 'Petrona', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
}

.things-to-know p {
    margin: 0 8rem 5rem 0;
}

.things-to-know .knowledge-grid > * > p:last-child {
    margin-bottom: 0;
}

.things-to-know ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.things-to-know ul:last-child {
    margin-bottom: 0;
}

.things-to-know ul li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.5rem;
}

.things-to-know ul li:last-child {
    margin-bottom: 0;
}

.things-to-know ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #999;
}

@media (max-width: 768px) {
    .things-to-know {
        padding: 2rem;
    }

    .things-to-know .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .things-to-know p {
        margin: 0 0 2rem 0;
    }

    .things-to-know h2.section-heading {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 2.5rem;
        margin-top: 0;
    }
}

/* All Photos Full Screen Modal */
.all-photos-modal {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    padding: 4rem 2rem;
}

.modal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 2rem;
    z-index: 10001;
    border-bottom: 1px solid #eee;
}

.close-modal {
    background: none;
    border: none;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
    padding: 10px;
}

.all-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.modal-grid-item {
    width: 100%;
}

.modal-grid-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.modal-grid-item img:hover {
    opacity: 0.9;
}

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

/* Single Image Slider */
.single-image-slider {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-counter {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #000;
    z-index: 20001;
    padding-top: 2rem;
}

.slider-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 4rem;
    line-height: 1;
    cursor: pointer;
    color: #000;
    z-index: 20001;
    padding: 10px;
}

.slider-prev,
.slider-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 5rem;
    line-height: 1;
    cursor: pointer;
    color: #000;
    z-index: 20001;
    padding: 20px;
    transition: opacity 0.2s ease;
}

.slider-prev:hover,
.slider-next:hover {
    opacity: 0.5;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.slider-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    user-select: none;
}

@media (max-width: 768px) {
    .slider-prev,
    .slider-next {
        font-size: 3rem;
        padding: 10px;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .slider-content {
        padding: 40px;
    }
}

.exp-subtitle {
    font-family: "Petrona", serif;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 2rem;
}

.badge-top-rated {
    display: inline-block;
    background: #f0f0f0;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.booking-widget-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.price-display {
    font-family: "Petrona", serif;
    font-size: 2.2rem;
    margin: 1.5rem 0;
    color: #111;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.booking-header .price-display {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

#total-price {
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #000;
}

#booking-router .form-group {
    margin-bottom: 1.5rem;
}

#booking-router label {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

#booking-router select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    background: #fff;
}

.btn-reserve {
    width: 100%;
    padding: 1.2rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s ease;
}

.btn-reserve:hover {
    background: #333;
}

.booking-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.link-airbnb {
    font-family: "Manrope", sans-serif;
    font-size: 1.4rem;
    color: #666;
    text-decoration: underline;
}

.custom-booking-cta {
    border-top: 1px solid #eee;
    margin-top: 2rem;
    padding-top: 2rem;
}

.custom-booking-cta p {
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    color: #696969;
    text-align: center;
    margin-bottom: 1rem;
}

.btn-custom-link {
    background: none;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    color: #111;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 0;
    transition: opacity 0.2s ease;
}

.btn-custom-link:hover {
    opacity: 0.7;
}

.exchange-disclaimer {
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    color: #999;
    margin-top: 0.8rem;
    margin-bottom: 0;
    font-style: italic;
    text-align: left;
}

@media (max-width: 900px) {
    .experience-page {
        padding: 4.5rem clamp(1rem, 4vmin, 1.5rem) 3rem;
        margin-top: clamp(56px, 12vw, 70px);
    }

    .exp-header-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Flatten columns so we can reorder: hero title → photos → hero subtitle → booking → hosts → itinerary → body */
    .exp-left-column,
    .exp-booking-sidebar {
        display: contents;
    }

    .exp-hero-header.title-only {
        order: 1;
        padding: 0;
    }

    #luxury-gallery-grid {
        order: 2;
        min-width: 0;
    }

    #open-gallery-btn {
        order: 3;
    }

    .exp-hero-header.subtitle-only {
        order: 4;
        padding: 0 0 2rem 0;
    }

    .booking-widget-card {
        order: 5;
        position: relative;
        top: 0;
    }

    #hosts-placeholder {
        order: 6;
    }

    #itinerary-placeholder {
        order: 7;
    }

    #exp-main-body {
        order: 8;
        min-width: 0;
    }

    .exp-hero-header h1 {
        font-size: clamp(1.85rem, 6vw, 2.85rem);
        margin-bottom: 1.75rem;
    }

    .exp-hero-header .exp-subtitle {
        font-size: clamp(1.05rem, 3.8vw, 1.55rem);
    }

    .exp-hero-header .exp-category-top {
        font-size: clamp(0.95rem, 2.8vw, 1.15rem);
    }

    .exp-main-content {
        font-size: clamp(1.05rem, 3.5vw, 1.55rem);
        line-height: 1.65;
    }

    .luxury-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-template-columns: none;
        grid-template-rows: none;
        height: auto;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .luxury-gallery .grid-item {
        min-width: min(82vw, 380px);
        width: min(82vw, 380px);
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: none;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .luxury-gallery .grid-item img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .btn-view-all {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
        font-size: clamp(0.95rem, 2.8vw, 1.15rem);
    }

    #itinerary-placeholder,
    #hosts-placeholder {
        text-align: center;
        width: 100%;
        max-width: 40rem;
        margin-left: auto;
        margin-right: auto;
    }

    .itinerary-card {
        padding: clamp(1.25rem, 4vw, 2.25rem);
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .itinerary-card h3 {
        font-size: clamp(1.2rem, 4vw, 1.9rem);
        margin-bottom: 2rem;
    }

    .itinerary-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .itinerary-item img {
        width: 100%;
        max-width: min(100%, 240px);
        height: auto;
        aspect-ratio: 1 / 1;
        margin-left: auto;
        margin-right: auto;
    }

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

    .item-text h4,
    .item-text p {
        font-size: clamp(1rem, 3.4vw, 1.45rem);
    }

    .hosts-container {
        margin-top: 2rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .host-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .host-item img {
        width: clamp(100px, 28vw, 130px);
        height: clamp(100px, 28vw, 130px);
    }

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

    .host-text h4,
    .host-text p {
        font-size: clamp(1rem, 3.4vw, 1.45rem);
    }

    .meeting-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .meeting-point-section,
    .meeting-section {
        margin-top: 2rem;
    }

    .meeting-point-section h2.section-heading,
    .meeting-section h2.section-heading {
        font-size: clamp(1.75rem, 5.5vw, 2.6rem);
        margin-bottom: 2rem;
    }

    .meeting-details h3 {
        font-size: clamp(1.35rem, 4vw, 2rem);
    }

    .meeting-details p,
    .meeting-details a.meeting-address {
        font-size: clamp(1rem, 3.2vw, 1.45rem);
    }

    .exp-meeting-slot {
        padding-bottom: 2.5rem;
    }

    .things-to-know {
        padding: clamp(1.5rem, 4vw, 2.5rem);
    }

    .things-to-know .knowledge-grid {
        gap: 3rem;
    }

    .things-to-know h4 {
        font-size: clamp(1.25rem, 3.8vw, 1.65rem);
    }

    .things-to-know p,
    .things-to-know li {
        font-size: clamp(0.95rem, 3vw, 1.35rem);
    }

    .booking-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .booking-header .price-display {
        font-size: clamp(1.45rem, 4vw, 1.85rem);
    }

    #total-price {
        font-size: clamp(1.15rem, 3.4vw, 1.45rem);
    }

    #booking-router label {
        font-size: clamp(0.95rem, 2.6vw, 1.1rem);
    }

    #booking-router select {
        font-size: clamp(1.05rem, 3.2vw, 1.35rem);
        padding: 0.85rem 1rem;
    }

    .btn-reserve {
        font-size: clamp(1.05rem, 3.2vw, 1.35rem);
        padding: 1rem;
    }

    .all-photos-modal {
        padding: 3.5rem clamp(0.75rem, 3vw, 1.25rem) 2rem;
    }

    .all-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .experience-page {
        padding-top: 4rem;
    }

    .luxury-gallery .grid-item {
        min-width: 82vw;
        width: 82vw;
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: none;
    }

    .itinerary-card {
        margin-bottom: 2.5rem;
    }

    .all-photos-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------------------
   About layout (custom-about template) — vertical gallery column + typography
   --------------------------------------------------------------------------- */

.about-page .about-page__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 14rem;
    align-items: start;
    max-width: 1280px;
    margin-inline: auto;
}

.about-page .about-page__gallery:empty {
    display: none;
}

.about-page .about-page__shell.about-page__shell--no-gallery {
    grid-template-columns: 1fr;
}

.about-page .about-page__gallery .kg-card {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.about-page .about-page__gallery .kg-gallery-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.about-page .about-page__gallery .kg-gallery-row {
    display: contents !important;
}

.about-page .about-page__gallery .kg-gallery-image {
    margin: 0 !important;
    width: 100% !important;
}

.about-page .about-page__gallery .kg-gallery-image img,
.about-page .about-page__gallery .kg-image-card img,
.about-page .about-page__gallery .about-gallery img {
    width: 100%;
    display: block;
    margin: 2px 0;
}

.about-page .about-page__gallery figure {
    margin: 0 !important;
}

.about-page .about-page__gallery figcaption {
    display: none;
}

.about-page .about-page__body.gh-canvas,
.about-page .about-page__body .kg-width-full.kg-content-wide {
    margin-top: 100px;
    margin-right: 50px;
}

.about-page .about-page__body.gh-canvas > * {
    grid-column: 1 / -1;
}

.about-page .about-page__body > h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin: 0 0 30px;
    color: #111;
}

.about-page .about-page__body > h2 a {
    color: inherit;
    text-decoration: none;
}

.about-page .about-page__body > h2 a:hover,
.about-page .about-page__body > h2 a:focus-visible {
    color: inherit;
    text-decoration: none;
}

.about-page .about-page__body > h2:not(:first-child) {
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.about-page .about-page__body > h3 {
    font-family: "Petrona", serif;
    font-weight: 300;
    letter-spacing: -0.06em;
    font-size: clamp(2.75rem, 3.5vw + 1.5rem, 6rem);
    line-height: 1.06;
    margin: 0 0 20px !important;
    color: #111;
}

.about-page .about-page__body > h4,
.about-page .about-page__body > h5,
.about-page .about-page__body > h6 {
    font-family: "Petrona", serif;
    font-weight: 500;
}

.about-page .about-page__body > p {
    font-family: "Petrona", serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 0.85vw + 1.52rem, 2rem);
    line-height: 1.62;
    color: #383838;
    text-align: justify;
    margin: 0;
}

.about-page .about-page__body.gh-content > p + p {
    margin-top: 1.35em;
}

.about-page .about-page__body > p:last-child {
    margin-bottom: 0;
}

/* WHO WE ARE: tight lines — use one HTML card, root class about-contact-lines */

.about-page .about-page__body .about-contact-lines {
    margin: 0;
    padding: 0;
}

.about-page .about-page__body .about-contact-lines p {
    font-family: "Petrona", serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 0.85vw + 1.52rem, 2rem);
    line-height: 1.42;
    color: #383838;
    margin: 0;
    text-align: left;
}

.about-page .about-page__body .about-contact-lines p + p {
    margin-top: 0.35em;
}

.about-page .about-page__body .about-contact-lines a {
    color: inherit;
}

.about-page .about-page__body a {
    color: inherit;
}

@media (max-width: 849px) {
    .about-page .about-page__shell {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 6vw, 3rem);
    }

    /* Copy first, horizontal gallery underneath (homepage carousel pattern) */
    .about-page .about-page__body {
        order: 1;
    }

    .about-page .about-page__body.gh-canvas,
    .about-page .about-page__body .kg-width-full.kg-content-wide {
        margin: 40px;
    }

    .about-page .about-page__body > h2 {
        font-size: 2rem;
    }

    /* Linked headings only (`<h2><a>…`) — tighter tracking + smaller linked section labels */
    .about-page .about-page__body > h2:has(a) {
        letter-spacing: 0.14em;
    }

    .about-page .about-page__body > h2:not(:first-child):has(a) {
        margin-top: 6rem;
        margin-bottom: 2rem;
        line-height: 3.5rem;
        font-size: 1.6rem;
    }

    .about-page .about-page__body > h3 {
        font-size: 5rem;
    }

    .about-page .about-page__body > p {
        text-align: left;
    }

    .about-page .about-page__gallery:not(:empty) {
        order: 2;
        align-self: stretch;
        width: 100%;
        max-width: none;
        margin: 0 calc(-4vmin) 2rem calc(-4vmin);
        padding: 0 calc(4vmin + 8px) 1rem calc(4vmin + 8px);

        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.75rem;

        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: calc(4vmin + 8px);

        scrollbar-width: none;
    }

    .about-page .about-page__gallery::-webkit-scrollbar {
        display: none;
    }

    /* KG gallery → flatten so each tile is a snap target */
    .about-page .about-page__gallery > figure.kg-gallery-card {
        display: contents;
    }

    .about-page .about-page__gallery .kg-gallery-container {
        display: contents !important;
    }

    .about-page .about-page__gallery .kg-gallery-row {
        display: contents !important;
    }

    .about-page .about-page__gallery .kg-gallery-image {
        flex: 0 0 82vw !important;
        width: 82vw !important;
        max-width: 82vw !important;
        scroll-snap-align: start;

        scroll-margin-inline: 8px;
    }

    /* Three separate image cards pulled into sidebar */
    .about-page .about-page__gallery > figure.kg-image-card {
        flex: 0 0 82vw;
        scroll-snap-align: start;
        scroll-margin-inline: 8px;
        width: auto;
    }

    .about-page .about-page__gallery > figure.kg-image-card img,
    .about-page .about-page__gallery .kg-gallery-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 0;
        margin: 0;
    }

    /* HTML `.about-gallery` inside first HTML card — peel wrappers so imgs sit in strip */
    .about-page .about-page__gallery .kg-html-card,
    .about-page .about-page__gallery .kg-html-card .kg-html-content {
        display: contents;
    }

    .about-page .about-page__gallery .about-gallery {
        display: contents;
    }

    .about-page .about-page__gallery .about-gallery img {
        flex: 0 0 82vw !important;
        width: 82vw !important;
        max-width: none !important;
        scroll-snap-align: start;
        scroll-margin-inline: 8px;
        flex-shrink: 0;
        object-fit: cover;
        height: auto;
        margin: 0 !important;
    }
}

/* ---------------------------------------------------------------------------
   Policy pages (custom-policy template)
   --------------------------------------------------------------------------- */

.policy-page {
    padding-bottom: 100px;
}

.policy-page .policy-page__content a:not([class]) {
    color: #262626;
}

.policy-page .gh-header {
    padding: 12vmin 0 0;
}

.policy-page .policy-page__content > * + * {
    margin-top: 0;
}

/* Default theme grid uses a 720px main column — widen for long-form policy copy */
.policy-page .gh-canvas {
    grid-template-columns:
        [full-start] minmax(4vw, 1fr)
        [wide-start] minmax(0, 200px)
        [main-start] min(1020px, 100% - 4vw * 2) [main-end]
        minmax(0, 200px) [wide-end]
        minmax(4vw, 1fr) [full-end] !important;
}

.policy-page .policy-page__title {
    font-family: "Petrona", serif;
    font-weight: 300;
    letter-spacing: -0.06em;
    font-size: clamp(2.75rem, 3.5vw + 1.5rem, 6rem);
    line-height: 1.06;
    margin: 0 0 20px !important;
    color: #111;
}

.policy-page .policy-page__kicker {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 24px;
}

.policy-page .policy-page__content h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 4rem !important;
}

.policy-page .policy-page__content h3 {
    font-family: "Petrona", serif;
    font-weight: 300;
    letter-spacing: -0.06em;
    font-size: 2.8rem;
    line-height: 1.06;
    margin: 30px 0 20px !important;
    color: #111;
}

.policy-page .policy-page__content table {
    border-collapse: collapse;
    width: 100%;
    font-family: "Manrope", sans-serif;
    margin-bottom: 30px;
}

.policy-page .gh-canvas > ul {
    margin-bottom: 2rem;
}

.policy-page .policy-page__feature {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 600px) {
    .policy-page .policy-page__kicker {
        font-size: 1.55rem;
        letter-spacing: 0.14em;
    }
}

/* Formspree AJAX inline errors */
.formspree-submit-error:not(:empty) {
    color: #c62828;
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    /*
     * zoom on body leaves uneven horizontal gaps in Chromium (content drifts right).
     * Applying zoom on html avoids vw/% mismatch with full-bleed calcs and centers the scaled page.
     */
    html {
        zoom: 0.75;
    }
}
