:root {
    --sand-light: #F9F7F4;
    --sand-medium: #E8D5C4;
    --horse-brown: #8B5E3C;
    --normandy-green: #3E4C3E;
    --text-dark: #2C2C2C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--sand-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.container { width: 85%; max-width: 1200px; margin: 0 auto; padding: 60px 0; }
.container.narrow { max-width: 720px; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--sand-medium);
}

.nav-links { display: flex; list-style: none; }
.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--horse-brown);
}

.logo-link {
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.logo-img {
    display: block;
    height: 48px;
    width: auto;
    max-width: min(200px, 46vw);
    object-fit: contain;
}

/* Editorial / stay / lesson imagery */
.editorial-photo {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--sand-medium);
    box-shadow: 0 12px 36px rgba(62, 76, 62, 0.1);
    align-self: stretch;
}

.editorial-photo > img,
.editorial-photo__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.split-50-grid .editorial-photo {
    max-width: none;
}

.page-banner {
    width: 100%;
    margin: 0;
    max-height: min(42vh, 420px);
    overflow: hidden;
    border-bottom: 1px solid var(--sand-medium);
}

.page-banner img {
    display: block;
    width: 100%;
    height: min(42vh, 420px);
    object-fit: cover;
}

.lesson-photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.lesson-photo-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--sand-medium);
}

.stay-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 0;
}

.stay-photo-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--sand-medium);
}

@media (max-width: 768px) {
    .lesson-photo-gallery {
        grid-template-columns: 1fr;
    }

    .stay-photo-grid {
        grid-template-columns: 1fr;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.navbar-mobile-header {
    display: contents;
}

/* Language dropdown (shows current code; expand to switch) */
.lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.lang-switcher--drawer {
    display: none !important;
}

.lang-switcher--toolbar {
    display: block;
    margin-left: 12px;
}

.nav-cta-toolbar {
    display: none;
}

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--sand-medium);
    cursor: pointer;
    padding: 8px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--normandy-green);
    min-width: 4.5rem;
    justify-content: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-current:hover {
    border-color: var(--normandy-green);
}

.lang-current::after {
    content: "▾";
    font-size: 0.65em;
    opacity: 0.7;
}

.lang-dropdown {
    display: none;
    list-style: none;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    min-width: 100%;
    background: white;
    border: 1px solid var(--sand-medium);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
    z-index: 250;
}

.lang-switcher.lang-open .lang-dropdown {
    display: block;
}

.lang-dropdown button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-align: left;
    color: var(--text-dark);
}

.lang-dropdown button:hover {
    background: var(--sand-light);
    color: var(--horse-brown);
}

.lang-switcher--drawer .lang-dropdown {
    position: static;
    margin-top: 8px;
    box-shadow: none;
    border: 1px solid var(--sand-light);
}

.lang-switcher--drawer.lang-open .lang-dropdown {
    display: block;
}

/* Home — editorial prelude (above hero) */
.home-prelude {
    padding: 56px 8% 48px;
    background: var(--sand-light);
    border-bottom: 1px solid var(--sand-medium);
}

.home-prelude-inner {
    max-width: 38rem;
    margin: 0 auto;
}

.home-prelude-kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--horse-brown);
    margin-bottom: 0.65rem;
    text-align: center;
}

.home-lang-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--horse-brown);
    opacity: 0.72;
    text-align: center;
    margin: 1 1 1 1.6rem;
    line-height: 1.5;
}

.home-prelude-prose {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-dark);
    text-align: center;
}

.home-prelude-prose p + p {
    margin-top: 1.35rem;
}

.home-prelude-normandy {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
}

.home-prelude-normandy__img {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .home-prelude {
        padding: 40px 6% 36px;
    }

    .home-prelude-prose {
        text-align: left;
    }

    .home-prelude-kicker {
        text-align: left;
    }

    .home-lang-hint {
        text-align: left;
    }
}

/* Home — certification badges (trust strip) */
.home-certs {
    padding: 40px 5% 36px;
    background: #fff;
    border-bottom: 1px solid var(--sand-medium);
}

.home-certs-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
    max-width: 960px;
    margin: 0 auto;
}

.home-cert-badge {
    height: auto;
    max-height: 182px;
    width: auto;
    max-width: min(300px, 52vw);
    object-fit: contain;
    background: #fff;
    padding: 14px 20px;
  }

.home-cert-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.home-cert-badge-link:focus-visible {
    outline: 2px solid var(--horse-brown);
    outline-offset: 4px;
}

/* Stay — Airbnb social proof (hub headers + legacy) */
.stay-airbnb-wide {
    display: block;
    max-width: 420px;
    margin: 12px auto 0;
    line-height: 0;
}

.stay-airbnb-wide--header {
    max-width: min(680px, 94vw);
    margin-top: 10px;
}

.stay-airbnb-wide img {
    width: 100%;
    height: auto;
    display: block;
}

.page-header-airbnb {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--sand-medium);
}

.page-header-airbnb-kicker {
    margin-bottom: 4px;
}

.stay-airbnb-cta-line {
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
}

.stay-airbnb-cta-line--header {
    margin-top: 0.75rem;
}

.page-header-airbnb .stay-airbnb-cta-line {
    margin-left: auto;
    margin-right: auto;
    max-width: min(720px, 100%);
    text-align: center;
}

.stay-airbnb-detail-wrap {
    margin-top: 40px;
}

.stay-airbnb-detail-figure {
    margin: 0 auto;
    max-width: min(720px, 800%);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--sand-medium);
    box-shadow: 0 12px 36px rgba(62, 76, 62, 0.1);
}

.stay-airbnb-detail-link {
    display: block;
    line-height: 0;
}

.stay-airbnb-detail-figure img {
    display: block;
    width: 100%;
    height: auto;
}

.stay-airbnb-text-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--horse-brown);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.stay-airbnb-text-link:hover {
    text-decoration-thickness: 2px;
}

/* Home — farm exclusive teaser */
.home-exclusive-teaser {
    padding-top: 64px;
    padding-bottom: 64px;
}

.home-exclusive-teaser__wrap {
    max-width: 960px;
}

.home-exclusive-teaser .section-kicker {
    margin-bottom: 10px;
}

.home-exclusive-teaser .section-title.sm {
    margin-bottom: 14px;
}

.home-exclusive-lead {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

/* Home — farm exclusive: card with photo left, copy right */
.exclusive-promo-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    background: var(--surface-elevated, #fff);
    border: 1px solid rgba(45, 42, 38, 0.1);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(45, 42, 38, 0.08);
    overflow: hidden;
    text-align: left;
}

.exclusive-promo-card__media {
    flex: 0 0 44%;
    max-width: 44%;
    margin: 0;
    min-height: 200px;
}

.exclusive-promo-card__media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.exclusive-promo-card__body {
    flex: 1;
    min-width: 0;
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exclusive-promo-card__body .section-kicker {
    margin-bottom: 8px;
}

.exclusive-promo-card__body .section-title.sm {
    margin-bottom: 12px;
}

.exclusive-promo-card__body .home-exclusive-lead {
    margin-bottom: 20px;
}

.exclusive-promo-card__cta {
    margin: 0;
}

@media (max-width: 720px) {
    .exclusive-promo-card {
        flex-direction: column;
    }

    .exclusive-promo-card__media {
        flex: none;
        max-width: none;
        min-height: 180px;
    }

    .exclusive-promo-card__media img {
        min-height: 200px;
        max-height: 240px;
    }

    .exclusive-promo-card__body {
        padding: 24px 22px 28px;
    }
}

/* Horses intro — minimalist sitemap list */
.horses-sitemap-minimal {
    margin: 1.75rem 0 1.5rem;
    padding: 0;
    border-top: 1px solid rgba(45, 42, 38, 0.12);
}

.horses-sitemap-minimal ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.horses-sitemap-minimal li {
    margin: 0;
    border-bottom: 1px solid rgba(45, 42, 38, 0.12);
}

.horses-sitemap-minimal a.horses-sitemap-minimal__link {
    display: block;
    padding: 0.7rem 0;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.horses-sitemap-minimal a.horses-sitemap-minimal__link:hover,
.horses-sitemap-minimal a.horses-sitemap-minimal__link:focus-visible {
    background-color: rgba(45, 42, 38, 0.04);
}

.horses-sitemap-minimal a.horses-sitemap-minimal__link--current {
    cursor: default;
}

.horses-sitemap-minimal a.horses-sitemap-minimal__link--current:hover,
.horses-sitemap-minimal a.horses-sitemap-minimal__link--current:focus-visible {
    background-color: transparent;
}

.horses-sitemap-minimal__link--current .horses-sitemap-minimal__title {
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--horse-brown);
}

.horses-sitemap-minimal__title {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
}

.horses-sitemap-minimal__desc {
    display: block;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.45;
    margin-top: 0.25rem;
    opacity: 0.88;
}

.horses-lang-hint {
    text-align: left;
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.dual-cta--horses-intro {
    margin-top: 1.1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.dual-cta--horses-intro .btn-secondary {
    color: var(--normandy-green);
    border-color: var(--normandy-green);
}

.dual-cta--horses-intro .btn-secondary:hover {
    background: var(--normandy-green);
    color: #fff;
}

.page-header--with-icon {
    text-align: left;
}

.page-header--with-icon .page-header-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 28px 40px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 5%;
}

.page-header--with-icon .page-header-icon {
    width: 100%;
    max-width: 220px;
    height: auto;
    justify-self: center;
    object-fit: contain;
}

.page-header--with-icon .page-header-text {
    min-width: 0;
}

.page-header--with-icon .page-header-text .section-kicker {
    margin-bottom: 8px;
}

.page-header--with-icon .page-header-text h1 {
    margin-bottom: 0;
}

.page-header--with-icon .page-header-text .subtitle {
    margin-top: 10px;
}

@media (max-width: 520px) {
    .page-header--with-icon .page-header-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-header--with-icon .page-header-icon {
        max-width: 160px;
    }

    .page-header--with-icon .page-header-text .subtitle {
        text-align: center;
    }
}

/* 50/50 text + image (home experience, riding lessons, farm exclusive, etc.) */
.split-50-grid {
    align-items: stretch;
}

.split-50-copy {
    min-width: 0;
    align-self: start;
}

.split-50-grid .farm-drone-figure {
    margin: 0;
    max-width: none;
    align-self: stretch;
}

.split-50-grid .farm-drone-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

/* Farm exclusive — two stacked photos beside long-form copy */
.exclusive-media-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
    align-self: start;
}

.split-50-grid .exclusive-media-stack .farm-drone-figure {
    align-self: stretch;
}

.split-50-grid .exclusive-media-stack .farm-drone-figure img {
    height: auto;
    min-height: 240px;
    max-height: 380px;
    object-fit: cover;
}

/* Farm exclusive — stitched banner: logo strip + photo, equal height, no gutter */
.exclusive-hero-card-bleed {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(36px, 5vw, 56px);
    box-sizing: border-box;
}

.exclusive-hero-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    align-items: stretch;
    min-height: min(48vh, 520px);
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--sand-medium);
    border-radius: 6px;
    box-shadow: 0 16px 48px rgba(62, 76, 62, 0.12);
    background: var(--sand-light);
}

.exclusive-hero-card__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: clamp(14px, 2.5vw, 28px) clamp(14px, 2.5vw, 32px);
    background: var(--sand-light);
}

.exclusive-hero-card__logo {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exclusive-hero-card__logo-img {
    display: block;
    width: clamp(180px, 26vw, 320px);
    height: auto;
    max-height: min(360px, 52vh);
    object-fit: contain;
}

.exclusive-hero-card__media {
    min-width: 0;
    position: relative;
    background: var(--sand-medium);
}

@media (max-width: 720px) {
    .exclusive-hero-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(min(36vh, 280px), auto);
    }

    .exclusive-hero-card__brand {
        padding: clamp(20px, 4vw, 32px);
    }

    .exclusive-hero-card__logo-img {
        width: clamp(200px, 55vw, 300px);
        max-height: min(280px, 40vh);
    }

    .services-drone-fullbleed__viewport.exclusive-hero-card__viewport {
        min-height: min(36vh, 280px);
    }
}

/* Farm exclusive — centered copy + bottom gallery */
.exclusive-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(40px, 6vw, 64px);
}

.exclusive-intro-copy {
    width: 100%;
    max-width: 38rem;
    margin: 0 auto;
    text-align: left;
}

.exclusive-intro-copy > p:first-child {
    margin-top: 0;
}

.exclusive-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 2.5vw, 22px);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.exclusive-gallery__item {
    margin: 0;
    align-self: stretch;
}

/* Override global .farm-drone-figure margins (declared later in file) */
.exclusive-gallery .exclusive-gallery__item.farm-drone-figure {
    margin: 0;
    max-width: none;
}

.exclusive-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 160px;
    max-height: clamp(200px, 26vw, 300px);
    object-fit: cover;
}

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

    .exclusive-gallery__item img {
        max-height: 220px;
    }
}

/* Farm exclusive — CTA card: icon centered on top, copy + contact below */
.exclusive-cta-card {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.exclusive-cta-card__head {
    display: flex;
    justify-content: center;
    width: 100%;
}

.exclusive-cta-card__icon {
    width: 140px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.exclusive-cta-card__action {
    width: 100%;
    max-width: 520px;
}

.exclusive-cta-card__action p {
    margin: 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    line-height: 1.55;
}

/* horses-exclusive.html — larger type at all breakpoints */
.page-exclusive .page-header .section-kicker {
    font-size: clamp(0.82rem, 2.8vw, 0.9rem);
    letter-spacing: 0.18em;
}

.page-exclusive .page-header h1 {
    font-size: clamp(2.65rem, 8vw, 3.45rem);
    line-height: 1.08;
}

.page-exclusive .page-header .subtitle {
    font-size: clamp(1.1rem, 3.8vw, 1.3rem);
    line-height: 1.55;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.page-exclusive main.page-content .lead {
    font-size: clamp(1.22rem, 4.2vw, 1.42rem);
    line-height: 1.55;
    max-width: none;
}

.page-exclusive main.page-content .prose p {
    font-size: clamp(1.06rem, 3.5vw, 1.2rem);
    line-height: 1.68;
    margin-bottom: 1.1rem;
}

.page-exclusive .exclusive-cta-card__action p {
    font-size: clamp(1.05rem, 3.4vw, 1.18rem);
    line-height: 1.62;
}

.page-exclusive .exclusive-cta-card .btn-primary-link {
    font-size: clamp(0.82rem, 2.6vw, 0.92rem);
    padding: clamp(14px, 3vw, 17px) clamp(28px, 6vw, 38px);
}

.page-exclusive .footer {
    font-size: clamp(0.98rem, 3vw, 1.06rem);
}

.page-exclusive .footer h3,
.page-exclusive .footer h4 {
    font-size: clamp(1.15rem, 3.5vw, 1.35rem);
}

/* Aerial / farm context photo */
.farm-drone-figure {
    margin: 0 auto 32px;
    max-width: 900px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--sand-medium);
    box-shadow: 0 12px 36px rgba(62, 76, 62, 0.12);
}

.farm-drone-figure img {
    display: block;
    width: 100%;
    height: auto;
}

.farm-drone-figure--flush {
    margin-bottom: 0;
}

.content-section .farm-drone-figure:last-child {
    margin-bottom: 0;
}

/* Horse services — full-bleed drone +50/50 gallery */
.services-pension-media {
    padding: 72px 0 0;
}

.services-drone-fullbleed {
    width: 100%;
    margin: 0 0 40px;
}

.services-drone-fullbleed__viewport {
    overflow: hidden;
    width: 100%;
    height: min(52vh, 560px);
    background: var(--sand-medium);
}

.services-drone-fullbleed__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.14);
    animation: services-drone-zoom-out 26s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes services-drone-zoom-out {
    0% {
        transform: scale(1.14);
    }
    100% {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-drone-fullbleed__img {
        animation: none;
        transform: scale(1);
    }
}

/* Farm exclusive hero: viewport fills grid cell, not fixed band height */
.services-drone-fullbleed__viewport.exclusive-hero-card__viewport {
    height: 100%;
    min-height: min(48vh, 520px);
}

.exclusive-hero-card__viewport .services-drone-fullbleed__img {
    min-height: 100%;
}

.services-pension-media > .container {
    padding-top: 20px;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    padding: 0 5%;
}

.hero h1 { font-size: 4rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 25px; font-weight: 300; }

.intro-region {
    background: white;
}

.intro-region h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--normandy-green);
}

.page-header {
    padding: 48px 5% 24px;
    text-align: center;
    background: white;
    border-bottom: 1px solid var(--sand-medium);
}

.page-header h1 {
    font-size: 2.75rem;
    color: var(--normandy-green);
}

.page-header .subtitle {
    margin-top: 12px;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-dark);
}

.page-header .position-tag {
    margin-left: auto;
    margin-right: auto;
}

.page-header .contact-lang-note {
    margin-top: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--horse-brown);
}

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

.image-placeholder {
    min-height: 320px;
    background: linear-gradient(135deg, var(--sand-medium), var(--sand-light));
    border: 1px solid var(--sand-medium);
}

.image-placeholder.green-tint {
    background: linear-gradient(135deg, #5a6b5a, var(--normandy-green));
    opacity: 0.9;
}

.image-placeholder.sand-tint {
    background: linear-gradient(135deg, var(--sand-medium), #d4b8a0);
}

.text-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--normandy-green);
}

.btn-primary {
    padding: 15px 35px;
    background-color: var(--normandy-green);
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat';
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
}

.btn-primary:hover { background-color: var(--horse-brown); }

a.btn-primary,
a.btn-primary-link {
    display: inline-block;
    text-decoration: none;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.exp-card {
    padding: 40px;
    background: white;
    border-bottom: 4px solid var(--sand-medium);
    transition: 0.3s;
}

.exp-card:hover {
    border-color: var(--normandy-green);
    transform: translateY(-5px);
}

.exp-card h3 { color: var(--sand-medium); font-size: 2rem; }

/* Footer */
.footer {
    background: var(--normandy-green);
    color: var(--sand-light);
    padding: 60px 5%;
}

/* Page Management */
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.8s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .experience-menu { grid-template-columns: 1fr; }
    .facility-grid { grid-template-columns: 1fr; }
}

/* Experience Menu Cards */
.experience-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.sub-card {
    cursor: pointer;
    background: white;
    padding-bottom: 20px;
    text-align: center;
    border: 1px solid var(--sand-medium);
    transition: transform 0.4s ease;
}

.sub-card:hover { transform: translateY(-10px); }

.card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--horse-brown);
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* Sub-page Specifics */
.sub-page { background: var(--sand-light); }

.btn-back {
    margin: 20px 5%;
    background: none;
    border: none;
    font-family: 'Montserrat';
    cursor: pointer;
    color: var(--normandy-green);
    font-weight: 600;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li::before {
    content: "— ";
    color: var(--horse-brown);
}

.highlight-box {
    padding: 30px;
    background: var(--sand-medium);
    margin-top: 30px;
    font-family: 'Cormorant Garamond';
}

/* Horse roster (about-horses) */
.horse-profile {
    padding: 48px 5%;
    background: white;
    border-top: 1px solid var(--sand-medium);
}

.horse-profile--reverse {
    background: var(--sand-light);
}

.horse-profile-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 36px 48px;
    max-width: 960px;
    margin: 0 auto;
}

.horse-profile--reverse .horse-profile-inner {
    flex-direction: row-reverse;
}

.horse-profile-media {
    flex: 1 1 280px;
    max-width: 420px;
    min-height: 220px;
    margin: 0 auto;
    background: linear-gradient(155deg, var(--sand-medium) 0%, rgba(255, 255, 255, 0.65) 48%, var(--sand-light) 100%);
    border: 1px dashed rgba(74, 93, 74, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 24px;
}

.horse-profile-media span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--normandy-green);
    opacity: 0.8;
}

.horse-profile-media:has(.horse-profile-img) {
    padding: 0;
    border: none;
    min-height: 0;
    background: var(--sand-medium);
}

.horse-profile-media .horse-profile-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.horse-profile-body {
    flex: 1 1 240px;
    min-width: 0;
}

.horse-profile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--normandy-green);
    margin: 0;
    line-height: 1.15;
}

@media (max-width: 700px) {
    .horse-profile-inner,
    .horse-profile--reverse .horse-profile-inner {
        flex-direction: column;
    }

    .horse-profile-media {
        max-width: none;
        width: 100%;
    }
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.facility-item {
    padding: 20px;
    border: 1px solid var(--normandy-green);
}

/* —— Site content layout (English-first build) —— */
.navbar {
    flex-wrap: wrap;
    gap: 12px;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--sand-medium);
    padding: 10px 18px;
    cursor: pointer;
    font-size: 1.65rem;
    line-height: 1;
    color: var(--normandy-green);
    border-radius: 4px;
}

.nav-collapse {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-links {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.nav-links > li {
    position: relative;
}

.nav-item.has-sub > a::after {
    content: " ▾";
    font-size: 1.05em;
    line-height: 0;
    opacity: 0.85;
    vertical-align: middle;
}

.submenu {
    list-style: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: white;
    border: 1px solid var(--sand-medium);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
}

.nav-item.has-sub:hover .submenu,
.nav-item.has-sub:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: block;
    margin: 0;
    padding: 10px 18px;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.submenu a:hover {
    background: var(--sand-light);
    color: var(--horse-brown);
}

.nav-link-row {
    display: contents;
}

.nav-sub-expand {
    display: none;
}

.nav-sub-expand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
}

.nav-sub-expand-icon::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--normandy-green);
    border-bottom: 2px solid var(--normandy-green);
    transform: rotate(-45deg);
    margin-left: -0.15rem;
}

.lang-panel-trigger {
    display: none;
}

.nav-cta-contact {
    display: none;
}

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

.nav-mobile-list a,
.nav-mobile-list .nav-lang-choice {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--sand-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s, background 0.2s;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.nav-mobile-list a:hover,
.nav-mobile-list .nav-lang-choice:hover {
    color: var(--horse-brown);
}

.nav-lang-choice:disabled {
    opacity: 0.45;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .navbar-mobile-header {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        order: 1;
    }

    .lang-switcher--toolbar {
        display: none !important;
    }

    .nav-cta-toolbar {
        display: none !important;
    }

    .navbar {
        flex-wrap: wrap;
        align-items: center;
    }

    body.nav-drawer-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.nav-drawer-open .navbar {
        position: fixed;
        inset: 0;
        z-index: 1000;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        padding: 0;
        overflow: hidden;
        box-shadow: none;
    }

    body.nav-drawer-open .navbar-mobile-header {
        flex-shrink: 0;
        width: 100%;
        padding: 20px 5%;
        border-bottom: 1px solid var(--sand-medium);
        box-sizing: border-box;
    }

    .nav-collapse {
        display: none;
        width: 100%;
        order: 2;
        flex: 1;
        min-height: 0;
        padding: 0;
        border: none;
        justify-content: stretch;
        align-items: stretch;
    }

    .nav-collapse.nav-open {
        display: flex;
        flex-direction: column;
    }

    body.nav-drawer-open .nav-collapse.nav-open {
        flex: 1;
        min-height: 0;
    }

    .nav-drawer-viewport {
        flex: 1;
        min-height: 0;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .nav-drawer-track {
        display: flex;
        width: 200%;
        height: 100%;
        min-height: 0;
        transform: translate3d(0, 0, 0);
        transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
    }

    .nav-drawer-track[data-nav-depth="sub"] {
        transform: translate3d(-50%, 0, 0);
    }

    .nav-drawer-panel {
        flex: 0 0 50%;
        width: 50%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    .nav-drawer-panel--main {
        padding: 0 5%;
        min-height: min(100dvh, 100vh);
    }

    .nav-drawer-panel--secondary {
        padding: 0 5%;
        background: var(--sand-light);
        min-height: min(100dvh, 100vh);
    }

    .nav-panel-body {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-drawer-footer {
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex-shrink: 0;
        padding: 20px 0 calc(24px + env(safe-area-inset-bottom, 0));
        margin-top: auto;
        margin-bottom: 80px;
        border-top: 1px solid var(--sand-medium);
    }

    .lang-panel-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 16px;
        background: white;
        border: 1px solid var(--sand-medium);
        border-radius: 4px;
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--normandy-green);
        transition: border-color 0.2s, transform 0.12s ease, box-shadow 0.2s;
        -webkit-tap-highlight-color: transparent;
    }

    .lang-panel-trigger:active {
        transform: scale(0.985);
    }

    .lang-panel-trigger-chevron {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
    }

    .lang-panel-trigger-chevron::after {
        content: "";
        display: block;
        width: 0.45rem;
        height: 0.45rem;
        border-right: 2px solid var(--normandy-green);
        border-bottom: 2px solid var(--normandy-green);
        transform: rotate(-45deg);
    }

    .nav-cta-contact {
        display: block;
        text-align: center;
        padding: 16px 24px;
        background: var(--normandy-green);
        color: var(--sand-light) !important;
        text-decoration: none !important;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 0.72rem;
        font-weight: 600;
        border-radius: 4px;
        transition: opacity 0.2s, transform 0.12s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-cta-contact:active {
        transform: scale(0.988);
    }

    .nav-cta-contact.active {
        box-shadow: inset 0 0 0 2px var(--horse-brown);
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-left: 0;
        margin-left: 0;
    }

    .nav-links > li {
        padding-left: 0;
        margin-left: 0;
    }

    .nav-link-row {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        border-bottom: 1px solid var(--sand-light);
    }

    .nav-link-row > a {
        flex: 1;
        min-width: 0;
        margin: 0;
        padding: 16px 8px 16px 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .nav-sub-expand {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
        padding: 0;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--normandy-green);
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.12s ease;
    }

    .nav-sub-expand:active {
        transform: scale(0.92);
    }

    .nav-links > li > a:not(.nav-cta-contact) {
        margin: 0;
        padding: 16px 0;
        border-bottom: 1px solid var(--sand-light);
        text-align: left;
    }

    .nav-mobile-list {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .nav-mobile-list > li {
        padding-left: 0;
    }

    .submenu {
        display: none !important;
    }

    .nav-item.has-sub > .nav-link-row > a::after,
    .nav-item.has-sub > a::after {
        content: "";
    }

    .nav-secondary-top {
        flex-shrink: 0;
        padding: 12px 0 16px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--sand-medium);
    }

    .nav-back {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px 8px 0;
        margin: 0;
        background: none;
        border: none;
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--horse-brown);
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.12s ease;
    }

    .nav-back:active {
        transform: translateX(-2px);
    }

    .nav-back-icon {
        display: inline-flex;
        width: 1.25rem;
        height: 1.25rem;
        align-items: center;
        justify-content: center;
    }

    .nav-back-icon::after {
        content: "";
        display: block;
        width: 0.45rem;
        height: 0.45rem;
        border-left: 2px solid var(--horse-brown);
        border-bottom: 2px solid var(--horse-brown);
        transform: rotate(45deg);
        margin-left: 0.2rem;
    }

    .nav-secondary-headline {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.35rem;
        color: var(--normandy-green);
        margin: 0 0 8px;
        padding: 0;
        font-weight: 500;
        text-align: left;
    }

    .nav-secondary-headline .nav-secondary-overview-link {
        display: block;
        font-family: inherit;
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
        text-decoration: none;
        text-align: left;
        line-height: 1.25;
        padding: 4px 0;
        margin: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-secondary-headline .nav-secondary-overview-link:active {
        opacity: 0.82;
    }

    .nav-secondary-headline[hidden] {
        display: none !important;
    }

    .nav-secondary-body {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .nav-collapse .nav-mobile-list .nav-lang-choice {
        border-bottom-color: var(--sand-medium);
    }

    @media (prefers-reduced-motion: reduce) {
        .nav-drawer-track {
            transition: none;
        }
    }
}

@media (min-width: 1025px) {
    .nav-sub-expand {
        display: none !important;
    }

    .nav-link-row {
        display: contents;
    }

    .nav-drawer-footer,
    .lang-panel-trigger {
        display: none !important;
    }

    .nav-cta-toolbar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 12px;
        padding: 8px 16px;
        background: var(--normandy-green);
        color: var(--sand-light) !important;
        text-decoration: none !important;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-size: 0.72rem;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
        border-radius: 4px;
        flex-shrink: 0;
        transition: opacity 0.2s, transform 0.12s ease, box-shadow 0.2s;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-cta-toolbar:hover {
        opacity: 0.92;
        color: var(--sand-light) !important;
    }

    .nav-cta-toolbar:focus-visible {
        outline: 2px solid var(--horse-brown);
        outline-offset: 2px;
    }

    .nav-cta-toolbar.active {
        box-shadow: inset 0 0 0 2px var(--horse-brown);
    }

    .nav-drawer-viewport {
        flex: 1;
        overflow: visible;
        display: flex;
        justify-content: center;
        min-width: 0;
    }

    .nav-drawer-track {
        display: flex;
        width: 100%;
        height: auto;
        transform: none !important;
        transition: none;
        min-height: 0;
    }

    .nav-drawer-panel--main {
        flex: 1 1 auto;
        width: 100%;
        max-width: none;
        min-height: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
        overflow: visible;
    }

    .nav-panel-body {
        flex: 0 1 auto;
        overflow: visible;
        min-height: 0;
    }

    .nav-drawer-panel--secondary {
        display: none !important;
    }

    .nav-collapse template {
        display: none !important;
    }
}

main.page-content {
    background: var(--sand-light);
}

.content-section {
    padding: 72px 5%;
}

.content-section.alt {
    background: white;
}

.content-section.narrow {
    max-width: 760px;
    margin: 0 auto;
}

.section-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--horse-brown);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--normandy-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.sm {
    font-size: 1.75rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 640px;
    margin-bottom: 24px;
}

.prose {
    max-width: 720px;
}

.prose p {
    margin-bottom: 1rem;
}

.prose ul {
    margin: 1rem 0 1rem 1.25rem;
}

.prose strong {
    font-weight: 600;
}

.dual-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 28px;
}

.dual-cta.left {
    justify-content: flex-start;
}

.btn-secondary {
    padding: 15px 35px;
    background: transparent;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--normandy-green);
}

.hero .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.85);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.signature-pillars {
    margin-top: 28px;
}

@media (min-width: 769px) {
    .signature-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pillar-card {
    background: white;
    padding: 32px 28px;
    border: 1px solid var(--sand-medium);
    transition: 0.3s;
}

.pillar-card:hover {
    border-color: var(--normandy-green);
    box-shadow: 0 16px 40px rgba(62, 76, 62, 0.1);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--normandy-green);
}

.pillar-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.pillar-card .pillar-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--horse-brown);
    text-decoration: none;
    font-weight: 600;
}

.pillar-card .pillar-link:hover {
    text-decoration: underline;
}

.proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    padding: 36px 5%;
    background: var(--normandy-green);
    color: var(--sand-light);
    font-size: 1.05rem;
}

.proof-strip span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
}

.proof-strip-stars {
    font-size: 1.35rem !important;
    letter-spacing: 0.2em;
    color: #f0e6d2 !important;
}

.notice-banner {
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--sand-medium);
    border-left: 4px solid var(--horse-brown);
    font-size: 0.95rem;
}

.category-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 40px 0 56px;
}

.hub-card {
    background: white;
    padding: 28px 24px;
    border: 1px solid var(--sand-medium);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: 0.3s;
}

.hub-card:hover {
    border-color: var(--normandy-green);
    transform: translateY(-4px);
}

.hub-card .hub-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--horse-brown);
    margin-bottom: 8px;
}

.hub-card h3 {
    font-size: 1.35rem;
    color: var(--normandy-green);
    margin-bottom: 8px;
}

.hub-card p {
    font-size: 0.9rem;
    font-weight: 300;
}

.riding-pricing-two-col {
    align-items: start;
}

.riding-pricing-two-col .price-table-wrap {
    margin-top: 8px;
    margin-bottom: 16px;
}

.riding-pricing-two-col .pricing-col {
    min-width: 0;
}

.price-table-wrap {
    overflow-x: auto;
    margin: 28px 0;
}

table.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: white;
}

table.price-table th,
table.price-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--sand-medium);
}

table.price-table th {
    background: var(--normandy-green);
    color: var(--sand-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
}

table.price-table tr:hover td {
    background: var(--sand-light);
}

.price-table--3col th:nth-child(2),
.price-table--3col th:nth-child(3),
.price-table--3col td:nth-child(2),
.price-table--3col td:nth-child(3) {
    text-align: right;
}

.price-table--3col td.cell-empty {
    color: rgba(0, 0, 0, 0.35);
}

.pricing-tariff-note {
    display: block;
    margin-top: 8px;
    font-size: 0.88em;
    font-style: italic;
    color: var(--normandy-green);
}



/* Contact page — details column */
.contact-details-column .section-title.heading-with-icon {
    margin-bottom: 28px;
}

.contact-details-kicker {
    margin-bottom: 14px;
    margin-top: 0;
}

.contact-details-address {
    margin: 0 0 1.75rem;
    font-style: normal;
    line-height: 1.7;
    font-size: 0.98rem;
}

.contact-details-list {
    list-style: none;
    margin: 0 0 1.85rem;
    padding: 1.35rem 0 0;
    border-top: 1px solid var(--sand-medium);
}

.contact-details-list li {
    display: grid;
    grid-template-columns: minmax(4.25rem, 5.25rem) minmax(0, 1fr);
    gap: 0.35rem 0.85rem;
    align-items: start;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(232, 213, 196, 0.65);
}

.contact-details-list li:first-child {
    padding-top: 0;
}

.contact-details-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (max-width: 420px) {
    .contact-details-list li {
        grid-template-columns: 1fr;
        gap: 0.15rem 0;
    }

    .contact-details-label {
        padding-top: 0;
    }
}

.contact-details-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--normandy-green);
    opacity: 0.88;
    padding-top: 0.2rem;
}

.contact-details-value {
    font-size: 0.95rem;
    line-height: 1.45;
    word-break: break-word;
}

.contact-details-value--split {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem 0.45rem;
}

.contact-details-tel-note {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--normandy-green);
    opacity: 0.55;
}

.contact-details-list a {
    color: var(--horse-brown);
    text-decoration: none;
}

.contact-details-list a:hover {
    text-decoration: underline;
}

.contact-details-banner {
    margin-top: 0;
}

.contact-form-block {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--sand-medium);
}

.contact-form-block__title {
    margin-top: 0;
}

.contact-form--embedded {
    max-width: none;
}

/* Contact page — Netlify form + honeypot (netlify-honeypot="bot-field") */
.contact-form-lead {
    margin: 0 0 24px;
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.92;
}

.contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 560px;
}

.contact-form__hp {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-form__hp input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
}

.contact-form__row {
    display: grid;
    gap: 20px;
}

@media (min-width: 560px) {
    .contact-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
}

.contact-form__label {
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--normandy-green);
}

.contact-form__optional {
    font-weight: 400;
    opacity: 0.75;
}

.contact-form__label--inline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid var(--sand-medium);
    border-radius: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--horse-brown);
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.18);
}

.contact-form__submit {
    align-self: flex-start;
    margin-top: 4px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--normandy-green);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.12s ease;
}

.contact-form__submit:hover {
    background: var(--horse-brown);
}

.contact-form__submit:active {
    transform: scale(0.988);
}

.contact-map-section {
    margin-top: 0;
}

.contact-map-wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 24px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--sand-medium);
    line-height: 0;
}

.contact-how-column .contact-map-wrap--inline {
    max-width: none;
    margin: 24px 0 0;
}

.contact-map-wrap iframe {
    width: 100%;
    height: min(55vw, 420px);
    min-height: 280px;
    border: 0;
    display: block;
}

.contact-map-section {
    margin-top: 0;
}

.contact-map-wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 24px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--sand-medium);
    line-height: 0;
}

.contact-map-wrap iframe {
    width: 100%;
    height: min(55vw, 420px);
    min-height: 280px;
    border: 0;
    display: block;
}

a.footer-legal-link {
    text-decoration: none;
    opacity: 0.92;
}

a.footer-legal-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.legal-page {
    max-width: 720px;
    margin: 0 auto;
}

.legal-page h2 {
    margin-top: 2.25rem;
    font-size: 1.15rem;
}

.legal-page h2:first-of-type {
    margin-top: 0;
}

.legal-page .placeholder-field {
    background: rgba(0, 80, 60, 0.08);
    padding: 2px 6px;
    border-radius: 2px;
}

.bullet-highlight {
    list-style: none;
    margin: 24px 0;
}

.bullet-highlight li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid var(--sand-medium);
}

.bullet-highlight li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--horse-brown);
    font-weight: bold;
}

.footer-inner {
    width: 100%;

}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr) auto;
    gap: 2rem clamp(28px, 4vw, 48px);
    align-items: start;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--sand-light);
    line-height: 1.25;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.92);
}

.footer-address {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    opacity: 0.92;
}

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

.footer-contact-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
    margin-bottom: 12px;
    font-size: 0.94rem;
    line-height: 1.45;
}

.footer-contact-list li:last-child {
    margin-bottom: 0;
}

.footer-contact-label {
    flex: 0 0 4.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.72;
}

.footer-contact-list a {
    word-break: break-word;
}

.footer-col--actions {
    justify-self: end;
    text-align: right;
    min-width: min(100%, 200px);
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    width: 100%;
    max-width: 22rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px 10px;
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-legal {
    padding-top: 16px;
    width: 100%;
    text-align: right;
}

.footer-social-link {
    text-decoration: none;
    opacity: 0.95;
}

.footer-social-link:hover {
    text-decoration: underline;
    opacity: 1;
}

.footer-social-sep {
    opacity: 0.45;
    user-select: none;
}

.footer-legal .footer-legal-link {
    display: inline-block;
    text-align: right;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.88;
}

.footer-legal .footer-legal-link:hover {
    opacity: 1;
}

.footer-copyright {
    margin: 48px 0 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.82;
}

.footer-copyright-line {
    display: inline-block;
    max-width: 40rem;
}

.footer a {
    color: var(--sand-light);
    opacity: 0.95;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

a.footer-contact-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--sand-light);
    color: var(--normandy-green) !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    border: 2px solid var(--sand-light);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    width: fit-content;
}

a.footer-contact-cta:hover {
    background: transparent;
    color: var(--sand-light) !important;
    border-color: rgba(255, 255, 255, 0.85);
}

a.footer-book-cta {
    display: inline-block;
    margin-top: 0;
    padding: 12px 22px;
    background: transparent;
    color: var(--sand-light) !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: fit-content;
    transition: border-color 0.25s, background 0.25s;
}

a.footer-book-cta:hover {
    border-color: var(--sand-light);
    background: rgba(255, 255, 255, 0.08);
}

.footer-phone {
    font-size: 1.25rem;
    margin-top: 8px;
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-col--actions {
        grid-column: 1 / -1;
        justify-self: stretch;
        text-align: right;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .footer-social {
        justify-content: flex-end;
    }

    .footer-meta {
        align-items: flex-end;
    }
}

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

    .footer-col--actions {
        text-align: center;
        align-items: center;
    }

    .footer-meta {
        align-items: center;
        max-width: none;
    }

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

    .footer-legal {
        text-align: center;
    }

    .footer-legal .footer-legal-link {
        text-align: center;
    }
}

.position-tag {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--horse-brown);
    margin-top: 12px;
    max-width: 520px;
}

.anchor-offset {
    scroll-margin-top: 100px;
}

/* Home — guest social proof strip */
.home-social {
    background: white;
    border-top: 1px solid var(--sand-medium);
    border-bottom: 1px solid var(--sand-medium);
    padding: 52px 5%;
}

.home-social-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.home-social-star-row {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    line-height: 1;
    letter-spacing: 0.18em;
    color: #c9a227;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    margin: 0 0 10px;
}

.home-social-stars {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    color: var(--horse-brown);
    margin-bottom: 18px;
}

.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 8px 0 28px;
    text-align: left;
}

.home-testimonial {
    margin: 0;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--sand-medium);
    border-radius: 2px;
}

.home-testimonial-stars {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: #c9a227;
    margin: 0 0 12px;
}

.home-testimonial blockquote {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-dark);
}

.home-testimonial figcaption {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--normandy-green);
    font-weight: 600;
}

@media (max-width: 900px) {
    .home-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.home-social-readall {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--horse-brown);
    text-decoration: none;
    border-bottom: 2px solid var(--sand-medium);
    padding-bottom: 4px;
    transition: border-color 0.2s, color 0.2s;
}

.home-social-readall:hover {
    border-color: var(--horse-brown);
    color: var(--normandy-green);
}

/* Guest page — testimonial bento grid (full viewport width band) */
.testimonial-bento-wrap {
    margin: 0;
}

.testimonial-bento-wrap--fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 20px 0 28px;
    background: var(--sand-light);
    border-top: 1px solid var(--sand-medium);
    border-bottom: 1px solid var(--sand-medium);
}

/* One continuous three-column bento: same vertical gap everywhere (no “new band” spacer). */
.testimonial-bento-columns {
    --bento-gap: 18px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--bento-gap);
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
}

.testimonial-bento-columns > .testimonial-bento-col {
    flex: 1 1 0;
    min-width: 0;
}

.guest-review-photo-card {
    margin: 0;
    width: 100%;
    max-width: none;
    padding: 18px 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--sand-medium);
    background: #fff;
    box-shadow:
        0 1px 2px rgba(61, 48, 32, 0.04),
        0 8px 24px rgba(61, 48, 32, 0.07);
}

.guest-review-photo-card__fill {
    position: relative;
    width: 100%;
    height: clamp(200px, 32vw, 280px);
    flex: 0 0 auto;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(74, 90, 74, 0.55) 0%, transparent 45%),
        linear-gradient(215deg, #5c4f3f 0%, #8a7968 35%, #b8a995 100%);
}

.guest-review-photo-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-bento-col {
    display: flex;
    flex-direction: column;
    gap: var(--bento-gap);
    min-width: 0;
}

.guest-marquee-intro {
    max-width: 40rem;
    margin: 0 auto 16px;
    padding: 0 5% 8px;
    text-align: center;
}

.guest-marquee-stars,
.guest-header-stars {
    font-size: clamp(1.15rem, 3vw, 1.65rem);
    letter-spacing: 0.2em;
    color: #c9a227;
    margin: 8px 0 6px;
}

.guest-marquee-rating {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--normandy-green);
    margin: 0 0 10px;
}

.marquee-stars {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    color: #c9a227;
    margin: 2px 0 8px;
}

.marquee-card {
    flex: 0 0 auto;
    width: min(340px, 88vw);
    padding: 18px 20px;
    background: var(--sand-light);
    border: 1px solid var(--sand-medium);
    font-size: 0.82rem;
    line-height: 1.45;
}

.testimonial-bento-columns .marquee-card.review-bento-card {
    width: 100%;
    border-radius: 20px;
    box-shadow:
        0 1px 2px rgba(61, 48, 32, 0.04),
        0 8px 24px rgba(61, 48, 32, 0.07);
}

.testimonial-bento-columns .marquee-card.review-bento-card:not(.marquee-card--de) {
    background: #fff;
}

.marquee-card header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    color: var(--normandy-green);
    margin-bottom: 4px;
}

.marquee-card .marquee-date {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--horse-brown);
    margin-bottom: 10px;
}

.marquee-card .marquee-body {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 6px;
}

.testimonial-bento-columns .marquee-card.review-bento-card .marquee-body {
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.marquee-card .marquee-body p + p {
    margin-top: 0.65rem;
}

.marquee-card--de {
    background: #faf8f5;
}

.marquee-card--de .marquee-body {
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .testimonial-bento-columns {
        flex-direction: column;
    }
}

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

    .dual-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .dual-cta .btn-primary,
    .dual-cta .btn-primary-link,
    .dual-cta .btn-secondary {
        text-align: center;
    }
}

/* B2B corporate retreat pages */
.page-header--corp {
    padding-bottom: 2.5rem;
}

.page-header--corp .dual-cta {
    margin-top: 1.5rem;
    justify-content: center;
}

.corp-trust-section {
    padding-top: 0;
    padding-bottom: 1.5rem;
}

.corp-principle-quote-section + .corp-trust-section {
    padding-top: 0;
}

.corp-trust-banner {
    margin-top: 0;
    text-align: center;
}

.corp-cta-micro {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 0.5rem;
}

.corp-flow-list {
    padding-left: 1.25rem;
    line-height: 1.7;
}

.form-success-banner {
    margin: 0 0 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    background: rgba(72, 120, 80, 0.12);
    border: 1px solid rgba(72, 120, 80, 0.35);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.corp-inquiry-note {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.inquiry-form {
    margin-top: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

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

.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--font-body, "Montserrat", sans-serif);
    font-size: 0.95rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 2px;
}

.form-field input:disabled,
.form-field select:disabled,
.form-field textarea:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.form-trust-note {
    font-size: 0.85rem;
    margin: 1rem 0 1.25rem;
    opacity: 0.85;
}

.corp-final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.corp-inquiry-section {
    text-align: center;
}

.corp-inquiry-section .inquiry-form {
    text-align: left;
}

.corp-inquiry-mailto {
    display: inline-block;
    margin: 1.25rem auto 0;
}

.corp-inquiry-submit {
    display: inline-block;
    margin: 1.25rem auto 0;
    cursor: pointer;
    border: none;
    font: inherit;
}

.inquiry-form .contact-form__hp {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Corp hub — principle quote band */
.corp-principle-quote-section {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    background: var(--sand-light);
    border-bottom: 1px solid var(--sand-medium);
}

.corp-principle-quote-section .container {
    padding-top: 0;
    padding-bottom: 0;
}

.corp-principle-quote {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.corp-principle-quote__text {
    position: relative;
    margin: 0 0 1.5rem;
    padding: 0;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-dark);
}

.corp-principle-quote__text::before {
    content: "\201C";
    display: block;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1;
    color: var(--sand-medium);
    margin-bottom: 0.35rem;
    font-style: normal;
}

.corp-principle-quote__support {
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--sand-medium);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-dark);
    opacity: 0.88;
}

/* Corp hub — offers section */
.corp-hub-offers-section .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.corp-hub-offers-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 48rem;
}

.corp-hub-offers-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--normandy-green);
    margin: 0 0 1.75rem;
    letter-spacing: 0.01em;
}

.corp-offer-highlights {
    margin: 0.75rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    line-height: 1.55;
}

.corp-offer-highlights li {
    margin-bottom: 0.35rem;
}

.corp-method-grid {
    margin-top: 2rem;
}

.corp-hub-offers-intro {
    max-width: none;
    margin: 0;
    text-align: left;
    font-size: 1.02rem;
    line-height: 1.7;
}

.corp-hub-offers-intro p + p {
    margin-top: 1.25rem;
}

.corp-hub-offer-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: none;
    margin: 0;
}

.corp-offer-row {
    align-items: stretch;
}

.corp-offer-row + .corp-offer-row {
    border-top: 1px solid var(--sand-medium);
    padding-top: 4rem;
    margin-top: 4rem;
}

.corp-offer-row__media {
    margin: 0;
}

.corp-offer-row__media img {
    min-height: 280px;
}

.corp-offer-row__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-self: stretch;
    height: 100%;
}

.corp-offer-row__content {
    flex: 1 1 auto;
}

.corp-offer-row__footer {
    margin-top: auto;
    padding-top: 1.25rem;
    text-align: right;
}

.corp-offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--horse-brown);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--sand-medium);
    border-radius: 2px;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.corp-offer-cta__arrow {
    display: inline-block;
    transition: transform 0.2s;
}

.corp-offer-cta:hover {
    border-color: var(--horse-brown);
    background: rgba(249, 247, 244, 0.95);
    color: var(--normandy-green);
}

.corp-offer-cta:hover .corp-offer-cta__arrow {
    transform: translateX(3px);
}

.corp-offer-block {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--sand-medium);
}

.corp-offer-block:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.corp-offer-headline {
    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--normandy-green);
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
}

.corp-offer-block-body {
    max-width: none;
}

@media (max-width: 640px) {
    .corp-principle-quote {
        text-align: left;
    }

    .corp-principle-quote__text::before {
        text-align: left;
    }

    .corp-offer-row__media img {
        min-height: 220px;
    }

    .corp-offer-row + .corp-offer-row {
        padding-top: 3rem;
        margin-top: 3rem;
    }

    .corp-hub-offers-section .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.corp-pdf-teaser {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.corp-pdf-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 1rem 0;
}

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