/* ============================================================
   Lindsay Beer Equestrian — Marketing site stylesheet
   Warm cream / terracotta / ink design language.
   Used by index.html, lindsay.html, team.html,
   facilities.html (stables), horses.html, partners.html, contact.html.
   ============================================================ */

:root {
    --cream:           #F4ECD8;
    --cream-deep:      #EADFC4;
    --sand:            #DCC9A0;
    --sand-deep:       #C9B380;
    --ink:             #2A1F15;
    --ink-soft:        #3D2E1F;
    --muted:           #7A6B58;
    --line:            rgba(42,31,21,0.14);
    --line-soft:       rgba(42,31,21,0.07);
    --terracotta:      #B05A3C;
    --terracotta-deep: #8B4329;
    --gold:            #A87C3A;
    --gold-deep:       #7E5A24;
    --gold-soft:       #D4B273;
    --navy:            #2D2018;
    --white:           #FCF9F1;
    --error:           #B8443A;

    --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
    --sans:  'Montserrat', system-ui, -apple-system, sans-serif;
    --body:  'Inter', system-ui, -apple-system, sans-serif;
    --mono:  'JetBrains Mono', ui-monospace, Menlo, monospace;
}

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

html, body {
    margin: 0;
    padding: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body { min-height: 100vh; }

button { font: inherit; cursor: pointer; }
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
}

a { color: inherit; text-decoration: none; }
::selection { background: rgba(176,90,60,0.3); color: var(--ink); }

@keyframes lbeFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

img { max-width: 100%; display: block; }

/* ─── Type primitives ─────────────────────────────── */

.lbe-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.lbe-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}
.lbe-eyebrow--center {
    justify-content: center;
}
.lbe-eyebrow--gold {
    color: var(--gold-soft);
}
.lbe-eyebrow--muted { color: var(--muted); }

.lbe-display {
    font-family: var(--serif);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--ink);
}
.lbe-display em { font-style: italic; color: var(--terracotta-deep); }
.lbe-display--lg { font-size: clamp(52px, 7vw, 88px); }
.lbe-display--md { font-size: clamp(40px, 5vw, 64px); }
.lbe-display--sm { font-size: clamp(34px, 4vw, 52px); }
.lbe-display--xs { font-size: clamp(32px, 4vw, 44px); }
.lbe-display--hero { font-size: clamp(44px, 7vw, 86px); }

.lbe-lede {
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    font-weight: 300;
    margin: 32px auto 0;
    max-width: 640px;
}

/* ─── Buttons ─────────────────────────────────────── */

.lbe-cta-solid,
.lbe-cta-ghost {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 28px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 150ms, color 150ms, border-color 150ms, transform 150ms;
    border: 1px solid transparent;
    background: var(--terracotta);
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
}
.lbe-cta-solid::after,
.lbe-cta-ghost::after {
    content: '→';
    display: inline-block;
    font-family: var(--body);
    font-size: 14px;
    letter-spacing: 0;
    transition: transform 200ms;
}
.lbe-cta-solid:hover,
.lbe-cta-ghost:hover { transform: translateY(-1px); }
.lbe-cta-solid:hover::after,
.lbe-cta-ghost:hover::after { transform: translateX(3px); }
.lbe-cta-solid:hover { background: var(--terracotta-deep); }

.lbe-cta-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.lbe-cta-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }

.lbe-cta-ghost--light {
    color: var(--white);
    border-color: var(--white);
}
.lbe-cta-ghost--light:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* ─── Nav ─────────────────────────────────────────── */

.lbe-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(180deg, rgba(42,31,21,0.55) 0%, rgba(42,31,21,0) 100%);
    color: var(--white);
    border-bottom: 1px solid transparent;
    transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
}
.lbe-nav--solid {
    background: var(--cream);
    color: var(--ink);
    border-bottom-color: var(--line);
    backdrop-filter: blur(8px);
}
.lbe-nav__row {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.lbe-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 0;
    color: inherit;
}
.lbe-nav__brand-text {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.2px;
    font-style: italic;
    white-space: nowrap;
}
.lbe-nav__brand-sub {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 8px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 500;
    opacity: 0.75;
}

.lbe-logo {
    display: block;
    height: 36px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    transition: filter 250ms;
}
.lbe-logo--sm { height: 28px; }
.lbe-logo--lg { height: 56px; }
.lbe-logo--invert { filter: invert(1); }
.lbe-logo--invert-soft {
    filter: invert(0.96) sepia(0.18) saturate(2.4) hue-rotate(2deg) brightness(1.05);
}

/* Nav: invert (white) over the transparent hero, black when scrolled */
.lbe-nav .lbe-logo { filter: invert(1); }
.lbe-nav--solid .lbe-logo { filter: none; }
@media (max-width: 900px) {
    .lbe-logo { height: 30px; }
}
@media (max-width: 480px) {
    .lbe-logo { height: 26px; max-width: 220px; }
}
.lbe-nav__links {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}
.lbe-nav__link {
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: inherit;
    padding-bottom: 4px;
    border-bottom: 1.5px solid transparent;
    transition: border-color 200ms;
}
.lbe-nav__link:hover { border-bottom-color: rgba(176,90,60,0.4); }
.lbe-nav__link[aria-current="page"] { border-bottom-color: var(--terracotta); }
.lbe-nav__cta {
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--terracotta);
    color: var(--white);
    border: none;
    padding: 11px 14px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 150ms;
    text-decoration: none;
}
.lbe-nav__cta:hover { background: var(--terracotta-deep); }

.lbe-nav__toggle {
    display: none;
    background: transparent;
    border: none;
    color: inherit;
    padding: 8px;
    cursor: pointer;
}
.lbe-nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    margin: 5px 0;
    transition: transform 200ms;
}

.lbe-nav__mobile-panel {
    display: none;
}

@media (max-width: 900px) {
    .lbe-nav__row { padding: 0 20px; height: 64px; }
    .lbe-nav__links { display: none; }
    .lbe-nav__cta { display: none; }
    .lbe-nav__toggle { display: block; margin-left: auto; }

    .lbe-nav__mobile-panel {
        display: block;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        color: var(--white);
        padding: 32px 24px;
        z-index: 39;
        transform: translateY(-110%);
        transition: transform 280ms ease;
        overflow-y: auto;
    }
    .lbe-nav__mobile-panel.is-open { transform: translateY(0); }
    .lbe-nav__mobile-link {
        display: block;
        font-family: var(--serif);
        font-size: 30px;
        font-style: italic;
        padding: 18px 0;
        border-bottom: 1px solid rgba(244,236,216,0.12);
        color: var(--white);
        text-decoration: none;
    }
    .lbe-nav__mobile-link[aria-current="page"] { color: var(--gold-soft); }
    .lbe-nav__mobile-cta {
        display: inline-flex;
        margin-top: 28px;
        background: var(--terracotta);
        color: var(--white);
        padding: 16px 24px;
        font-family: var(--sans);
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
    }
}

/* ─── Page header (shared across non-home pages) ─── */

.lbe-page-header {
    background: var(--cream);
    padding: 140px 40px 80px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}
.lbe-page-header__inner {
    max-width: 1080px;
    margin: 0 auto;
}

/* ─── Generic section helpers ──────────────────────── */

.lbe-section { padding: 110px 40px; }
.lbe-section--cream { background: var(--cream); }
.lbe-section--white { background: var(--white); }
.lbe-section--cream-deep { background: var(--cream-deep); }
.lbe-section--navy { background: var(--navy); color: var(--white); }
.lbe-section--bordered { border-bottom: 1px solid var(--line); }
.lbe-container {
    max-width: 1320px;
    margin: 0 auto;
}
.lbe-container--narrow { max-width: 980px; }
.lbe-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 40px;
    flex-wrap: wrap;
}
.lbe-section-head--center { text-align: center; flex-direction: column; align-items: center; }
.lbe-section-head--center .lbe-eyebrow { justify-content: center; }

/* ─── Photo / Placeholder ──────────────────────────── */

.lbe-photo {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    width: 100%;
}
.lbe-photo--4-3   { aspect-ratio: 4 / 3; }
.lbe-photo--4-5   { aspect-ratio: 4 / 5; }
.lbe-photo--3-4   { aspect-ratio: 3 / 4; }
.lbe-photo--1-1   { aspect-ratio: 1 / 1; }
.lbe-photo--16-9  { aspect-ratio: 16 / 9; }
.lbe-photo--16-8  { aspect-ratio: 16 / 8; }
.lbe-photo--16-11 { aspect-ratio: 16 / 11; }
.lbe-photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95) contrast(1.02);
}
.lbe-photo[data-object-position="center 30%"] > img { object-position: center 30%; }
.lbe-photo[data-object-position="center 32%"] > img { object-position: center 32%; }
.lbe-photo[data-object-position="center 35%"] > img { object-position: center 35%; }
.lbe-photo[data-object-position="center 40%"] > img { object-position: center 40%; }
.lbe-photo__caption {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.6px;
    color: rgba(252,249,241,0.85);
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    z-index: 2;
}

.lbe-placeholder {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.lbe-placeholder--4-3   { aspect-ratio: 4 / 3; }
.lbe-placeholder--4-5   { aspect-ratio: 4 / 5; }
.lbe-placeholder--3-4   { aspect-ratio: 3 / 4; }
.lbe-placeholder--1-1   { aspect-ratio: 1 / 1; }
.lbe-placeholder--16-9  { aspect-ratio: 16 / 9; }
.lbe-placeholder--16-8  { aspect-ratio: 16 / 8; }
.lbe-placeholder--auto  { height: 100%; }

.lbe-placeholder--cream      { background: var(--cream-deep); --stripe: rgba(42,31,21,0.07); --txt: rgba(42,31,21,0.55); }
.lbe-placeholder--creamDeep  { background: var(--sand);       --stripe: rgba(42,31,21,0.09); --txt: rgba(42,31,21,0.6); }
.lbe-placeholder--sand       { background: var(--sand);       --stripe: rgba(42,31,21,0.09); --txt: rgba(42,31,21,0.6); }
.lbe-placeholder--gold       { background: var(--gold);       --stripe: rgba(244,236,216,0.14); --txt: rgba(244,236,216,0.85); }
.lbe-placeholder--terracotta { background: var(--terracotta); --stripe: rgba(244,236,216,0.14); --txt: rgba(244,236,216,0.85); }
.lbe-placeholder--navy       { background: var(--navy);       --stripe: rgba(220,201,160,0.10); --txt: rgba(220,201,160,0.75); }

.lbe-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(35deg, transparent 0 7px, var(--stripe) 7px 14px);
}
.lbe-placeholder::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--txt);
    opacity: 0.18;
    pointer-events: none;
}
.lbe-placeholder__caption {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.4px;
    color: var(--txt);
    text-transform: uppercase;
    z-index: 2;
}

/* ─── Home: Hero ───────────────────────────────────── */

.lbe-hero {
    position: relative;
    min-height: 680px;
    height: 92vh;
    margin-top: -76px;
    color: var(--white);
    overflow: hidden;
}
.lbe-hero__photo,
.lbe-hero__photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.lbe-hero__photo > img {
    object-fit: cover;
    object-position: center 32%;
    filter: saturate(0.95) contrast(1.02);
}
.lbe-hero__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(42,31,21,0.30) 0%,
        rgba(42,31,21,0.05) 30%,
        rgba(42,31,21,0.15) 55%,
        rgba(31,22,15,0.80) 100%);
}
.lbe-hero__content {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 160px 40px 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.lbe-hero__display em {
    font-style: italic;
    color: var(--gold-soft);
}
.lbe-hero__display { text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.lbe-hero__lede {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    color: rgba(252,249,241,0.92);
    max-width: 540px;
    margin: 28px 0 0;
    font-weight: 300;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.lbe-hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 38px;
    flex-wrap: wrap;
}
.lbe-hero__scroll {
    position: absolute;
    left: 40px;
    bottom: 28px;
    color: var(--gold-soft);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
}
.lbe-hero__scroll::after {
    content: '';
    width: 60px;
    height: 1px;
    background: currentColor;
}
.lbe-hero__coords {
    position: absolute;
    right: 40px;
    bottom: 28px;
    text-align: right;
    color: rgba(252,249,241,0.65);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* ─── Discipline cards (home) ───────────────────────── */

.lbe-discipline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lbe-discipline-card {
    background: var(--white);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 300ms ease, box-shadow 300ms ease;
    box-shadow: 0 2px 10px rgba(42,31,21,0.05);
    cursor: default;
    text-align: left;
    border: none;
    padding: 0;
}
.lbe-discipline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(42,31,21,0.25);
}
.lbe-discipline-card__img-wrap {
    position: relative;
}
.lbe-discipline-card__num {
    position: absolute;
    top: 18px;
    left: 22px;
    font-family: var(--serif);
    font-size: 56px;
    color: var(--white);
    font-style: italic;
    line-height: 1;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    z-index: 2;
}
.lbe-discipline-card__body {
    padding: 32px 30px 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lbe-discipline-card__tag {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 12px;
}
.lbe-discipline-card__title {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.05;
    margin: 0 0 16px;
}
.lbe-discipline-card__body p {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-soft);
    font-weight: 300;
    margin: 0;
}

/* ─── Full-bleed banner (love / closing) ───────────── */

.lbe-bleed {
    position: relative;
    overflow: hidden;
    min-height: 560px;
}
.lbe-bleed__photo,
.lbe-bleed__photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.lbe-bleed__photo > img {
    object-fit: cover;
    object-position: center 40%;
}
.lbe-bleed__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31,22,15,0.85) 0%, rgba(31,22,15,0.55) 50%, rgba(31,22,15,0.15) 100%);
}
.lbe-bleed__overlay--radial {
    background: radial-gradient(ellipse at center, rgba(31,22,15,0.4) 0%, rgba(31,22,15,0.95) 80%);
}
.lbe-bleed__content {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 140px 40px;
    color: var(--white);
}
.lbe-bleed__content--center { text-align: center; }
.lbe-bleed__copy {
    max-width: 620px;
}
.lbe-bleed__copy p {
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 300;
    color: rgba(252,249,241,0.88);
    margin: 32px 0 0;
    max-width: 540px;
}
.lbe-bleed--center p { margin-left: auto; margin-right: auto; }
.lbe-bleed__display em {
    font-style: italic;
    color: var(--gold-soft);
}

/* ─── Stats strip (Developing Sport) ───────────────── */

.lbe-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: start;
}
.lbe-stat {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 32px;
    border-left: 1px solid var(--line);
}
.lbe-stat:first-child { padding-left: 0; border-left: none; }
.lbe-stat__fig {
    font-family: var(--serif);
    font-size: 68px;
    font-weight: 400;
    line-height: 0.95;
    color: var(--ink);
    font-style: italic;
}
.lbe-stat__unit {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 8px;
    font-weight: 600;
}
.lbe-stat__text {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    font-weight: 300;
    max-width: 230px;
}

/* ─── Horse list rows (home) ───────────────────────── */

.lbe-horse-feature {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 64px;
}
.lbe-horse-rows {
    background: var(--white);
    padding: 32px 40px;
}
.lbe-horse-row {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 28px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}
.lbe-horse-row:last-child { border-bottom: none; }
.lbe-horse-row__name {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.2px;
    font-style: italic;
    transition: color 200ms;
}
.lbe-horse-row:hover .lbe-horse-row__name { color: var(--terracotta-deep); }
.lbe-horse-row__tag {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 4px;
}
.lbe-horse-row__sub {
    font-family: var(--body);
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
}
.lbe-horse-row__arrow {
    color: var(--terracotta);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: gap 200ms;
}
.lbe-horse-row__arrow::after { content: '→'; transition: transform 200ms; }
.lbe-horse-row:hover .lbe-horse-row__arrow::after { transform: translateX(6px); }

/* ─── Partner cells (home) ─────────────────────────── */

.lbe-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.lbe-partner-cell {
    padding: 40px 28px;
    min-height: 160px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    transition: background 200ms;
    cursor: pointer;
}
.lbe-partner-cell:hover { background: var(--cream); }
.lbe-partner-cell__cat {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
}
.lbe-partner-cell__name {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.2px;
    line-height: 1.1;
}

/* ─── Press strip ──────────────────────────────────── */

.lbe-press {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
}
.lbe-press__col {
    padding-left: 60px;
    border-left: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 200ms;
}
.lbe-press__col:first-child { padding-left: 0; border-left: none; }
a.lbe-press__col:hover { transform: translateY(-2px); }
a.lbe-press__col:hover .lbe-press__headline { color: var(--terracotta-deep); }
.lbe-press__headline { transition: color 200ms; }
.lbe-press__source {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 12px;
}
.lbe-press__headline {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    font-style: italic;
    line-height: 1.35;
    font-weight: 400;
}

/* ─── New rider welcome ────────────────────────────── */

.lbe-welcome {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--cream);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.lbe-welcome__hi {
    font-family: var(--serif);
    font-size: 180px;
    color: var(--terracotta);
    font-style: italic;
    font-weight: 400;
    opacity: 0.22;
    line-height: 0.9;
}
.lbe-welcome p {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    font-weight: 300;
    margin: 0 0 32px;
    max-width: 540px;
}

/* ─── Lindsay page bio grid ────────────────────────── */

.lbe-bio-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.lbe-bio-grid > .lbe-photo { aspect-ratio: 3/4; }
.lbe-bio-grid p {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
    font-weight: 300;
    margin: 0 0 18px;
}
.lbe-bio-grid p:last-child { margin-bottom: 28px; }
.lbe-bio-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.lbe-bio-stat__k {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--ink);
    font-style: italic;
}
.lbe-bio-stat__v {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-top: 6px;
}

/* ─── Timeline ──────────────────────────────────────── */

.lbe-timeline-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.lbe-timeline-row__year {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--terracotta-deep);
    font-style: italic;
    font-weight: 500;
}
.lbe-timeline-row__text {
    font-family: var(--body);
    font-size: 16px;
    color: var(--ink);
    line-height: 1.55;
    font-weight: 300;
}

/* ─── Team cards ───────────────────────────────────── */

.lbe-team-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.lbe-team-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
    background: var(--white);
    padding: 28px;
}
.lbe-team-card__role {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 10px;
}
.lbe-team-card__name {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.3px;
    margin: 0 0 6px;
}
.lbe-team-card__cred {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 18px;
}
.lbe-team-card__bio {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-soft);
    font-weight: 300;
    margin: 0 0 20px;
}
.lbe-team-card__stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.lbe-team-card__stat-v {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    font-style: italic;
}
.lbe-team-card__stat-k {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-top: 4px;
}

/* ─── Stables map ──────────────────────────────────── */

.lbe-stables-map-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}
.lbe-stables-map {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    min-width: 0;
    width: 100%;
    height: 600px;
    max-height: 70vh;
}
.lbe-stables-map-leaflet {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.lbe-stables-map-leaflet .leaflet-control-attribution {
    background: rgba(31,22,15,0.7);
    color: rgba(244,236,216,0.85);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.4px;
}
.lbe-stables-map-leaflet .leaflet-control-attribution a {
    color: var(--gold-soft);
}
.lbe-stables-map-leaflet .leaflet-control-zoom a {
    background: rgba(31,22,15,0.85);
    color: var(--cream);
    border-color: rgba(244,236,216,0.2);
    font-family: var(--serif);
    font-style: italic;
}
.lbe-stables-map-leaflet .leaflet-control-zoom a:hover {
    background: var(--terracotta);
}
.lbe-stables-pin {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(176,90,60,0.85);
    border: 2px solid rgba(252,249,241,0.95);
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 200ms, background 200ms, box-shadow 200ms;
    position: relative;
}
.lbe-stables-pin:hover { transform: scale(1.15); }
.lbe-stables-pin.is-active {
    background: var(--terracotta);
    transform: scale(1.4);
    box-shadow: 0 0 0 8px rgba(176,90,60,0.25), 0 4px 14px rgba(0,0,0,0.5);
}
.lbe-stables-pin.is-active::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--white);
}
.lbe-stables-pin-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--ink);
    padding: 4px 10px;
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 150ms;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.lbe-stables-pin.is-active .lbe-stables-pin-label,
.lbe-stables-pin:hover .lbe-stables-pin-label { opacity: 1; }
.lbe-stables-coords {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.8px;
    color: rgba(244,236,216,0.85);
    background: rgba(31,22,15,0.65);
    padding: 4px 10px;
    text-transform: uppercase;
    z-index: 500;
    pointer-events: none;
}

.lbe-stables-panel {
    background: var(--cream);
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
}
.lbe-stables-panel__counter {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 14px;
}
.lbe-stables-panel__title {
    font-family: var(--serif);
    font-size: 40px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.05;
    margin: 0 0 10px;
}
.lbe-stables-panel__stat {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--terracotta-deep);
    font-style: italic;
    margin-bottom: 24px;
}
.lbe-stables-panel__desc {
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    font-weight: 300;
    margin: 0;
}
.lbe-stables-panel__chips {
    display: flex;
    gap: 8px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.lbe-chip {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 8px 12px;
    cursor: pointer;
    transition: all 150ms;
}
.lbe-chip.is-active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* Stables gallery */
.lbe-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    grid-auto-rows: 200px;
}
.lbe-gallery > * { height: 100%; }
.lbe-gallery__span2 { grid-column: span 2; }
.lbe-gallery__span2row2 { grid-column: span 2; grid-row: span 2; }

/* ─── Horses page ──────────────────────────────────── */

.lbe-horses-filter {
    background: var(--white);
    padding: 24px 40px;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 76px;
    z-index: 20;
    backdrop-filter: blur(6px);
}
.lbe-horses-filter__row {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.lbe-horses-filter__label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-right: 20px;
}
.lbe-filter-chip {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 10px 18px;
    cursor: pointer;
    transition: all 150ms;
}
.lbe-filter-chip.is-active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.lbe-horses-filter__count {
    margin-left: auto;
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.lbe-horses-section {
    margin-bottom: 64px;
}
.lbe-horses-section__head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.lbe-horses-section__title {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.2px;
    margin: 0;
}
.lbe-horses-section__count {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.lbe-horses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lbe-horse-card {
    background: var(--white);
    cursor: pointer;
    transition: transform 250ms, box-shadow 250ms;
    box-shadow: 0 2px 8px rgba(42,31,21,0.05);
    border: none;
    padding: 0;
    text-align: left;
    width: 100%;
}
.lbe-horse-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px -20px rgba(42,31,21,0.22);
}
.lbe-horse-card__img-wrap {
    position: relative;
}
.lbe-horse-card__img-wrap .lbe-photo { aspect-ratio: 4 / 3; }
.lbe-horse-card__img-wrap .lbe-photo > img { transition: transform 600ms ease; }
.lbe-horse-card:hover .lbe-horse-card__img-wrap .lbe-photo > img { transform: scale(1.04); }
.lbe-horse-card__level {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    padding: 6px 12px;
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    z-index: 2;
}
.lbe-horse-card__body { padding: 26px 28px 30px; }
.lbe-horse-card__name {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.2px;
    margin: 0 0 4px;
    font-style: italic;
}
.lbe-horse-card__reg {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 18px;
}
.lbe-horse-card__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
}
.lbe-horse-card__meta-k {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 4px;
}
.lbe-horse-card__meta-v {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink);
}
.lbe-horse-card__blurb {
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.65;
    color: var(--ink-soft);
    font-weight: 300;
    margin: 0 0 20px;
}
.lbe-horse-card__foot {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.lbe-horse-card__owner {
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    color: var(--muted);
}
.lbe-horse-card__cta {
    color: var(--terracotta);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 200ms;
}
.lbe-horse-card__cta::after { content: '→'; transition: transform 200ms; }
.lbe-horse-card:hover .lbe-horse-card__cta::after { transform: translateX(6px); }

/* ─── Modal (welcome + horse resume) ───────────────── */

.lbe-modal-bg {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(31,22,15,0.78);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: lbeFadeIn 200ms ease;
}
.lbe-modal {
    background: var(--white);
    max-width: 980px;
    width: 100%;
    max-height: 92vh;
    overflow: auto;
    position: relative;
    animation: lbeSlideUp 300ms cubic-bezier(.2,.7,.3,1);
}
.lbe-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 1px solid var(--line);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 18px;
}
.lbe-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.lbe-modal__body { padding: 48px 48px 44px; }
.lbe-modal__eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 14px;
}
.lbe-modal__title {
    font-family: var(--serif);
    font-size: 56px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.4px;
    line-height: 1;
    margin: 0 0 6px;
    font-style: italic;
}
.lbe-modal__title--small { font-size: 42px; }
.lbe-modal__sub {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 24px;
}
.lbe-modal__meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}
.lbe-modal__results {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lbe-modal__results li {
    display: grid;
    grid-template-columns: 1.5fr 0.4fr 1fr;
    font-family: var(--body);
    font-size: 13px;
    color: var(--ink-soft);
    padding-bottom: 8px;
    border-bottom: 1px dotted var(--line);
    font-weight: 300;
}
.lbe-modal__results .lbe-mr-yr { color: var(--muted); }
.lbe-modal__results .lbe-mr-r {
    color: var(--terracotta-deep);
    font-family: var(--serif);
    font-style: italic;
    text-align: right;
}
.lbe-modal__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    gap: 16px;
    flex-wrap: wrap;
}

.lbe-modal__progress {
    display: flex;
    gap: 6px;
    margin: 28px 0;
}
.lbe-modal__progress > div {
    flex: 1;
    height: 3px;
    background: var(--line);
    cursor: pointer;
    transition: background 300ms;
}
.lbe-modal__progress > div.is-past { background: var(--terracotta); }

/* ─── Partners page ────────────────────────────────── */

.lbe-partners-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}
.lbe-partner-detail {
    background: var(--cream);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}
.lbe-partner-detail__num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--serif);
    font-size: 64px;
    color: var(--terracotta);
    font-style: italic;
    opacity: 0.2;
    line-height: 1;
}
.lbe-partner-detail__cat {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 12px;
}
.lbe-partner-detail__name {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.1;
    margin: 0 0 20px;
}
.lbe-partner-detail__quote {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.55;
    font-style: italic;
    color: var(--ink-soft);
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 1;
}
.lbe-partner-detail__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--terracotta);
    border-bottom: 1px solid var(--terracotta);
    padding-bottom: 4px;
    transition: gap 200ms, color 150ms;
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.lbe-partner-detail__link::after {
    content: '↗';
    font-family: var(--body);
    font-size: 13px;
    letter-spacing: 0;
    transition: transform 200ms;
}
.lbe-partner-detail__link:hover {
    color: var(--terracotta-deep);
    border-bottom-color: var(--terracotta-deep);
    gap: 14px;
}
.lbe-partner-detail__link:hover::after { transform: translate(2px, -2px); }

/* ─── Contact page ─────────────────────────────────── */

.lbe-contact-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.lbe-contact-card {
    background: var(--white);
    padding: 36px 32px;
    margin-bottom: 16px;
}
.lbe-contact-card:last-child { margin-bottom: 0; }
.lbe-contact-card__lede {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    line-height: 1.4;
    font-weight: 500;
}
.lbe-contact-card__sub {
    font-family: var(--body);
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
    font-weight: 300;
}
.lbe-contact-form { background: var(--white); padding: 40px 40px 36px; }
.lbe-form-field { margin-bottom: 24px; }
.lbe-form-label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lbe-form-label.is-error { color: var(--error); }
.lbe-form-label__err {
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
}
.lbe-form-input,
.lbe-form-textarea {
    width: 100%;
    font-family: var(--body);
    font-size: 16px;
    padding: 16px 18px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 0;
    outline: none;
    transition: border-color 150ms;
    box-sizing: border-box;
}
.lbe-form-textarea { padding: 14px 16px; resize: vertical; }
.lbe-form-input:focus,
.lbe-form-textarea:focus { border-color: var(--terracotta); }
.lbe-form-input.is-error,
.lbe-form-textarea.is-error { border-color: var(--error); }
.lbe-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.lbe-radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.lbe-radio-chip {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 14px 16px;
    cursor: pointer;
    text-align: left;
    transition: all 150ms;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lbe-radio-chip__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lbe-radio-chip.is-selected {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.lbe-radio-chip.is-selected .lbe-radio-chip__dot {
    border-color: var(--white);
}
.lbe-radio-chip.is-selected .lbe-radio-chip__dot::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--white);
}
.lbe-form-foot {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.lbe-form-foot p {
    font-family: var(--body);
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
    max-width: 320px;
    margin: 0;
}

/* ─── Footer ───────────────────────────────────────── */

.lbe-footer {
    background: var(--navy);
    color: var(--cream);
    padding: 80px 40px 36px;
}
.lbe-footer__row {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(244,236,216,0.15);
}
.lbe-footer__brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.lbe-footer__brand-name {
    font-family: var(--serif);
    font-size: 28px;
    font-style: italic;
    color: var(--white);
    line-height: 1;
}
.lbe-footer__brand-name small {
    display: block;
    font-size: 18px;
    color: var(--gold-soft);
}
.lbe-footer__about {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
    color: rgba(244,236,216,0.78);
    font-weight: 300;
    margin: 0;
}
.lbe-footer__motto {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.5;
    margin-top: 18px;
    color: var(--gold-soft);
    font-style: italic;
}
.lbe-footer__col-title {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 20px;
    font-weight: 600;
}
.lbe-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lbe-footer__list a {
    font-family: var(--body);
    font-size: 14px;
    color: rgba(244,236,216,0.85);
    font-weight: 300;
    text-decoration: none;
}
.lbe-footer__list a:hover { color: var(--gold-soft); }
.lbe-footer__contact {
    font-family: var(--body);
    font-size: 13px;
    line-height: 1.8;
    color: rgba(244,236,216,0.78);
    margin: 0 0 18px;
    font-weight: 300;
}
.lbe-footer__contact a {
    color: var(--gold-soft);
    border-bottom: 1px solid var(--gold-soft);
    padding-bottom: 1px;
}
.lbe-footer__social {
    display: flex;
    gap: 16px;
    color: var(--gold-soft);
    margin-top: 14px;
}
.lbe-footer__social a { color: inherit; }
.lbe-footer__bottom {
    max-width: 1320px;
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244,236,216,0.48);
    gap: 20px;
    flex-wrap: wrap;
}

/* ─── Responsive ────────────────────────────────────── */

@media (max-width: 1100px) {
    .lbe-stables-map-grid { grid-template-columns: 1fr; }
    .lbe-stables-map { height: 420px; max-height: 70vh; }
    .lbe-horses-grid { grid-template-columns: repeat(2, 1fr); }
    .lbe-stat-strip { grid-template-columns: 1fr 1fr; }
    .lbe-press { grid-template-columns: 1fr; gap: 36px; }
    .lbe-press__col { padding-left: 0; border-left: none; padding-top: 24px; border-top: 1px solid var(--line); }
    .lbe-press__col:first-child { padding-top: 0; border-top: none; }
}

@media (max-width: 900px) {
    .lbe-section { padding: 80px 24px; }
    .lbe-hero__content { padding: 120px 24px 64px; }
    .lbe-hero__scroll, .lbe-hero__coords { display: none; }
    .lbe-page-header { padding: 100px 24px 60px; }
    .lbe-discipline-grid { grid-template-columns: 1fr; }
    .lbe-horse-feature { grid-template-columns: 1fr; gap: 40px; }
    .lbe-horse-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
    .lbe-horse-row__arrow { display: none; }
    .lbe-horse-rows { padding: 20px 24px; }
    .lbe-partner-grid { grid-template-columns: 1fr 1fr; }
    .lbe-stat-strip { grid-template-columns: 1fr; gap: 24px; }
    .lbe-stat { padding-left: 0; border-left: none; border-top: 1px solid var(--line); padding-top: 24px; }
    .lbe-stat:first-child { border-top: none; padding-top: 0; }
    .lbe-bio-grid { grid-template-columns: 1fr; gap: 36px; }
    .lbe-team-grid { grid-template-columns: 1fr; }
    .lbe-team-card { grid-template-columns: 1fr; }
    .lbe-team-card .lbe-placeholder, .lbe-team-card .lbe-photo { max-width: 240px; }
    .lbe-timeline-row { grid-template-columns: 1fr; gap: 4px; }
    .lbe-stables-panel { padding: 28px; }
    .lbe-horses-filter { padding: 18px 24px; }
    .lbe-horses-filter__row { gap: 6px; }
    .lbe-horses-grid { grid-template-columns: 1fr; }
    .lbe-horse-card__meta { grid-template-columns: 1fr 1fr 1fr; }
    .lbe-partners-grid { grid-template-columns: 1fr; }
    .lbe-contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .lbe-modal-bg { padding: 16px; }
    .lbe-modal__grid { grid-template-columns: 1fr; }
    .lbe-modal__body { padding: 28px; }
    .lbe-modal__title { font-size: 38px; }
    .lbe-modal__title--small { font-size: 28px; }
    .lbe-welcome { padding: 36px 28px; grid-template-columns: 1fr; }
    .lbe-welcome__hi { display: none; }
    .lbe-bleed__content { padding: 80px 24px; }
    .lbe-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .lbe-gallery__span2row2 { grid-column: span 2; grid-row: span 2; }
    .lbe-footer { padding: 56px 24px 28px; }
    .lbe-footer__row { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
    .lbe-form-row, .lbe-radio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .lbe-partner-grid { grid-template-columns: 1fr; }
    .lbe-horse-card__meta { grid-template-columns: 1fr 1fr; }
    .lbe-hero { min-height: 560px; }
}

/* Utility */
.lbe-center { text-align: center; }
.lbe-mt-md { margin-top: 36px; }
.lbe-mt-lg { margin-top: 56px; }
.lbe-mb-md { margin-bottom: 36px; }
.lbe-mb-lg { margin-bottom: 56px; }
