:root {
    --ink: #0a0908;
    --ink-soft: #15120f;
    --paper: #f5f2ec;
    --paper-bright: #ffffff;
    --paper-warm: #ece6dc;
    --rust: #c84b1d;
    --rust-dark: #8e2b0b;
    --amber: #e48c36;
    --sand: #d8c4aa;
    --line: rgba(10, 9, 8, 0.16);
    --line-light: rgba(255, 255, 255, 0.22);
    --muted: #6f6961;
    --white: #ffffff;
    --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
    --body: "DM Sans", Arial, Helvetica, sans-serif;
    --header-height: 74px;
    --shell: min(1180px, calc(100% - 48px));
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow: 0 24px 70px rgba(19, 11, 6, 0.16);
    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: calc(var(--header-height) + 24px);
    background: var(--ink);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper-bright);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

svg {
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    color: inherit;
}

::selection {
    color: var(--white);
    background: var(--rust);
}

[hidden] {
    display: none !important;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--white);
    border-radius: 999px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding-block: clamp(78px, 8vw, 126px);
}

.section-tight {
    padding-block: clamp(42px, 5vw, 72px);
}

.section-dark {
    padding-block: clamp(92px, 10vw, 150px);
    color: var(--white);
    background: var(--ink);
}

.eyebrow,
.micro-label {
    margin: 0 0 14px;
    color: var(--rust);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #f6b17a;
}

h1,
h2,
h3,
h4,
p,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 0.94;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 6.5vw, 6.4rem);
}

h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.section-heading {
    margin-bottom: clamp(42px, 6vw, 76px);
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: clamp(40px, 7vw, 90px);
}

.split-heading h2 {
    margin-bottom: 0;
}

.split-heading > p,
.events-heading > p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.75;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 21px 11px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button svg,
.text-link svg,
.header-contact svg,
.pill-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    transition: transform 0.25s var(--ease);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg,
.header-contact:hover svg,
.header-contact:focus-visible svg,
.pill-button:hover svg,
.pill-button:focus-visible svg {
    transform: translateX(4px);
}

.button-light {
    color: var(--ink);
    background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
    color: var(--white);
    background: var(--rust);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
    background: var(--rust);
}

.button-white {
    color: var(--ink);
    background: var(--white);
}

.button-white:hover,
.button-white:focus-visible {
    color: var(--white);
    background: var(--rust);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-block: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.2;
    text-transform: uppercase;
}

.text-link-light {
    color: var(--white);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--header-height);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(10, 9, 8, 0.08);
    box-shadow: 0 10px 32px rgba(10, 9, 8, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-shell {
    position: relative;
    display: grid;
    width: min(1380px, calc(100% - 36px));
    height: 100%;
    margin-inline: auto;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-self: start;
}

.desktop-nav > a,
.nav-more-button {
    position: relative;
    padding: 8px 0;
    border: 0;
    color: inherit;
    background: transparent;
    font-family: var(--display);
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}

.desktop-nav > a::after,
.nav-more-button::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s var(--ease);
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a.is-active::after,
.nav-more-button:hover::after,
.nav-more-button:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-more {
    position: relative;
}

.nav-more-button {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.nav-more-button svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.nav-more-button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.nav-more-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -16px;
    display: grid;
    min-width: 180px;
    gap: 2px;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(10, 9, 8, 0.08);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(10, 9, 8, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-more-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-more-menu a {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-more-menu a:hover,
.nav-more-menu a:focus-visible {
    color: var(--white);
    background: var(--rust);
}

.header-brand {
    display: grid;
    line-height: 0.86;
    text-align: center;
    justify-self: center;
}

.header-brand span,
.footer-brand span {
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
}

.header-brand small,
.footer-brand small {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.29em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}

.header-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.is-scrolled .header-icon {
    border-color: rgba(10, 9, 8, 0.18);
}

.header-icon:hover,
.header-icon:focus-visible {
    color: var(--white);
    background: var(--rust);
    border-color: var(--rust);
}

.header-icon svg {
    width: 16px;
    height: 16px;
}

.header-contact {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    color: var(--ink);
    background: var(--white);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.is-scrolled .header-contact {
    color: var(--white);
    background: var(--ink);
}

.header-contact:hover,
.header-contact:focus-visible,
.is-scrolled .header-contact:hover,
.is-scrolled .header-contact:focus-visible {
    color: var(--white);
    background: var(--rust);
}

.header-contact svg {
    width: 16px;
    height: 16px;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid currentColor;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
}

.mobile-menu-button svg {
    width: 20px;
    height: 20px;
}

.mobile-menu {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100svh - var(--header-height));
    padding: 30px 24px 40px;
    color: var(--white);
    background: var(--ink);
    overflow-y: auto;
}

.mobile-menu.is-open {
    display: grid;
}

.mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--display);
    font-size: 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    min-height: min(940px, 100svh);
    align-items: stretch;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.hero-background,
.hero-overlay,
.hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-background {
    background-image: url("../images/optimized/endurance-horses-1600.webp");
    background-position: center 56%;
    background-size: cover;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        radial-gradient(circle at 76% 43%, rgba(225, 103, 36, 0.16), transparent 31%),
        linear-gradient(90deg, rgba(10, 9, 8, 0.96) 0%, rgba(10, 9, 8, 0.82) 42%, rgba(10, 9, 8, 0.35) 72%, rgba(10, 9, 8, 0.58) 100%),
        linear-gradient(180deg, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.1) 38%, rgba(10, 9, 8, 0.82) 100%);
}

.hero-grid-lines {
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 100%;
    padding-top: calc(var(--header-height) + clamp(80px, 10vh, 120px));
    padding-bottom: 110px;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
    align-items: center;
    gap: clamp(34px, 5vw, 76px);
}

.hero-copy {
    min-width: 0;
    max-width: 760px;
}

.hero h1 {
    margin: 0 0 28px;
    font-size: clamp(4.3rem, 9vw, 9.3rem);
    line-height: 0.82;
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child {
    margin-left: clamp(0px, 4vw, 62px);
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-intro {
    max-width: 610px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.hero-portrait-stage {
    position: relative;
    min-width: 0;
    width: min(100%, 440px);
    aspect-ratio: 0.82;
    justify-self: end;
}

.orbit-copy {
    position: absolute;
    z-index: 1;
    inset: -3% -9% auto auto;
    width: 104%;
    height: 104%;
    overflow: visible;
    animation: orbit-spin 36s linear infinite;
}

.orbit-copy text {
    fill: rgba(255, 255, 255, 0.78);
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4.8px;
}

@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}

.portrait-monogram {
    position: absolute;
    z-index: 0;
    top: 8%;
    right: -2%;
    color: rgba(205, 74, 26, 0.52);
    font-family: var(--display);
    font-size: clamp(13rem, 25vw, 20rem);
    line-height: 0.7;
    user-select: none;
}

.hero-portrait-frame {
    position: absolute;
    z-index: 2;
    inset: 10% 8% 5% 9%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 46% 46% 10% 10% / 34% 34% 12% 12%;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.hero-portrait-frame::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 48%, rgba(10, 9, 8, 0.72) 100%),
        linear-gradient(90deg, rgba(204, 72, 24, 0.15), transparent 52%);
    content: "";
    pointer-events: none;
}

.hero-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: contrast(1.05) saturate(0.82);
}

.hero-portrait-frame picture,
.profile-photo-wrap picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-portrait-label {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    display: grid;
    min-width: 205px;
    gap: 1px;
    padding: 14px 18px 13px;
    color: var(--ink);
    background: var(--white);
    border-radius: 12px 0 12px 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-portrait-label strong {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-portrait-label span {
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-foot {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 28px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero-foot-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.34);
}

.hero-foot a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding-block: 10px;
    color: var(--white);
    white-space: nowrap;
    cursor: pointer;
}

.hero-foot a svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    pointer-events: none;
    transition: transform 0.25s var(--ease);
}

.hero-foot a:hover svg,
.hero-foot a:focus-visible svg {
    transform: translateX(4px);
}

.hero-foot a::after {
    content: none;
}

/* Leadership banner */
.leadership-banner {
    position: relative;
    z-index: 4;
    margin-top: -26px;
    padding-top: 0;
    background: var(--white);
}

.leadership-banner-card {
    display: flex;
    min-height: 144px;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 32px 38px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.leadership-banner-card h2 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 0.95;
}

.leadership-banner-card .micro-label {
    color: #f2a36a;
}

/* Stats */
.impact-stats {
    padding-top: clamp(42px, 5vw, 76px);
    padding-bottom: clamp(60px, 7vw, 105px);
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat-card {
    display: grid;
    min-height: 180px;
    align-content: center;
    gap: 8px;
    padding: 28px 30px;
    border-right: 1px solid var(--line);
}

.stat-card:first-child {
    padding-left: 0;
}

.stat-card:last-child {
    padding-right: 0;
    border-right: 0;
}

.stat-number {
    color: var(--rust);
    font-family: var(--display);
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.9;
}

.stat-card span {
    max-width: 215px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

/* Profile */
.profile-section {
    background: var(--paper);
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
}

.profile-media {
    position: relative;
    min-height: 690px;
}

.profile-photo-wrap {
    position: relative;
    width: 68%;
    height: 610px;
    margin-left: 8%;
    background: #d6d0c6;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(10, 9, 8, 0.16);
    overflow: hidden;
}

.profile-photo-wrap::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 66%, rgba(10, 9, 8, 0.72));
    content: "";
}

.profile-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.profile-photo-caption {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 18px;
    left: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-image-tile {
    position: absolute;
    border: 6px solid var(--paper);
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(10, 9, 8, 0.2);
    background-position: center;
    background-size: cover;
}

.profile-image-tile-jump {
    top: -13%;
    right: 0;
    width: 42%;
    height: 210px;
    background-image: none;
    background-position: center 48%;
}

.profile-image-tile-endurance {
    right: -18%;
    bottom: 1%;
    width: 48%;
    height: 220px;
    background-image: none;
    background-position: center 42%;
}

.profile-copy {
    max-width: 680px;
}

.profile-lead {
    margin-bottom: 22px;
    font-size: clamp(1.25rem, 2.1vw, 1.75rem);
    line-height: 1.45;
}

.profile-copy > p:not(.profile-lead) {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.8;
}

.competency-list {
    margin: 34px 0 38px;
    border-top: 1px solid var(--line);
}

.competency-item {
    display: grid;
    padding: 18px 0;
    grid-template-columns: 45px 1fr;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.competency-item > span {
    color: var(--rust);
    font-family: var(--display);
    font-size: 1.5rem;
    line-height: 1;
}

.competency-item div {
    display: grid;
    gap: 4px;
}

.competency-item strong {
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.competency-item small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

/* Focus */
.focus-section {
    position: relative;
    padding-block: clamp(84px, 9vw, 132px);
    color: var(--white);
    background:
        radial-gradient(circle at 15% 0%, rgba(231, 128, 52, 0.28), transparent 33%),
        linear-gradient(135deg, #a92f0b 0%, #d85a21 56%, #8e2609 100%);
    overflow: hidden;
}

.focus-section::after {
    position: absolute;
    right: -70px;
    bottom: -190px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.03), 0 0 0 140px rgba(255, 255, 255, 0.025);
}

.focus-shell {
    position: relative;
    z-index: 1;
}

.focus-title {
    display: grid;
    margin-bottom: 48px;
    grid-template-columns: 1fr 1fr;
    align-items: end;
}

.focus-title h2 {
    max-width: 780px;
    margin-bottom: 0;
    grid-column: 1 / -1;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.focus-card {
    min-height: 360px;
    padding: 34px 26px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    transition: background-color 0.25s ease, transform 0.25s var(--ease);
}

.focus-card:nth-child(3n) {
    border-right: 0;
}

.focus-card:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.focus-card:hover {
    background: rgba(10, 9, 8, 0.14);
    transform: translateY(-4px);
}

.focus-index {
    display: block;
    margin-bottom: 70px;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--display);
    font-size: 1.8rem;
}

.focus-card h3 {
    margin-bottom: 14px;
    font-size: clamp(1.85rem, 2.45vw, 2.65rem);
    line-height: 1.08;
}

.focus-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.77);
    font-size: 0.89rem;
    line-height: 1.7;
}

/* Events */
.events-section {
    background: var(--white);
}

.events-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: clamp(40px, 7vw, 90px);
}

.events-heading h2 {
    margin-bottom: 0;
}

.featured-event {
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
    padding: 32px 34px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.featured-event .micro-label {
    color: #f2a36a;
}

.featured-event h3 {
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.event-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.event-meta-line span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.event-meta-line svg {
    width: 14px;
    height: 14px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.event-card {
    position: relative;
    display: flex;
    min-height: 360px;
    padding: 22px;
    color: var(--white);
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-md);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(10, 9, 8, 0.18);
}

.event-card::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: inherit;
    background-position: center;
    background-size: cover;
    content: "";
    transition: transform 0.6s var(--ease);
}

.event-card:hover::before {
    transform: scale(1.045);
}

.event-card-jumping {
    background-image: none;
    background-position: center 44%;
}

.event-card-endurance {
    background-image: none;
    background-position: center 48%;
}

.event-card-shows {
    background-image: none;
    background-position: center 48%;
}

.event-card-night {
    background-image: none;
    background-position: center 40%;
}

.event-card-shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.58) 0%, rgba(10, 9, 8, 0.06) 42%, rgba(10, 9, 8, 0.88) 100%);
}

.event-card-top,
.event-card-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
}

.event-card-top {
    display: flex;
    align-self: flex-start;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-card-bottom {
    display: flex;
    align-self: flex-end;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.event-card-bottom small {
    color: #f4a46e;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-card-bottom h3 {
    max-width: 400px;
    margin: 7px 0 0;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.pill-button {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border: 0;
    color: var(--ink);
    background: var(--white);
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ease);
}

.pill-button:hover,
.pill-button:focus-visible {
    color: var(--white);
    background: var(--rust);
    transform: translateY(-2px);
}

.past-events-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: clamp(62px, 8vw, 104px);
    margin-bottom: 24px;
}

.past-events-header h3 {
    margin: 0;
    font-size: clamp(2.3rem, 4.6vw, 4.2rem);
}

.rail-controls {
    display: flex;
    gap: 8px;
}

.rail-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.rail-button:hover,
.rail-button:focus-visible {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.event-rail {
    display: grid;
    grid-auto-columns: minmax(235px, 31%);
    grid-auto-flow: column;
    gap: 16px;
    padding-bottom: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--rust) transparent;
    scrollbar-width: thin;
}

.event-rail::-webkit-scrollbar {
    height: 6px;
}

.event-rail::-webkit-scrollbar-thumb {
    background: var(--rust);
    border-radius: 999px;
}

.rail-card {
    position: relative;
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
    background-position: center;
    background-size: cover;
    border-radius: 14px;
    overflow: hidden;
    scroll-snap-align: start;
    isolation: isolate;
}

.rail-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.08), rgba(10, 9, 8, 0.88));
    content: "";
}

.rail-card span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rail-card h4 {
    margin: 5px 0 0;
    font-family: var(--display);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 400;
    line-height: 0.96;
    text-transform: uppercase;
}

.rail-card-1 { background-image: none; }
.rail-card-2 { background-image: none; }
.rail-card-3 { background-image: none; }
.rail-card-4 { background-image: none; }
.rail-card-5 { background-image: none; }
.rail-card-6 { background-image: none; }

/* Journey timeline */
.journey-section {
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    position: absolute;
    top: 5%;
    left: -160px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.02), 0 0 0 120px rgba(255, 255, 255, 0.015);
}

.journey-heading {
    max-width: 940px;
    margin-bottom: clamp(70px, 9vw, 120px);
}

.journey-heading h2 {
    margin-bottom: 0;
}

.timeline {
    position: relative;
    max-width: 980px;
    margin-inline: auto;
}

.timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.28);
    content: "";
}

.timeline-row {
    position: relative;
    display: grid;
    min-height: 315px;
    grid-template-columns: 1fr 1fr;
}

.timeline-year {
    position: absolute;
    z-index: 2;
    top: 32px;
    left: 50%;
    min-width: 80px;
    padding: 8px 10px 6px;
    color: var(--ink);
    background: var(--white);
    border-radius: 999px;
    font-family: var(--display);
    font-size: 1.55rem;
    line-height: 1;
    text-align: center;
    transform: translateX(-50%);
}

.timeline-card {
    position: relative;
    width: calc(100% - 70px);
    min-height: 230px;
    align-self: start;
    padding: 28px;
    background: #171512;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    overflow: hidden;
}

.timeline-left .timeline-card {
    grid-column: 1;
    justify-self: start;
}

.timeline-right .timeline-card {
    grid-column: 2;
    justify-self: end;
}

.timeline-card::after {
    position: absolute;
    top: 37px;
    width: 70px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    content: "";
}

.timeline-left .timeline-card::after {
    right: -70px;
}

.timeline-right .timeline-card::after {
    left: -70px;
}

.timeline-card > * {
    position: relative;
    z-index: 2;
}

.timeline-card > span {
    color: #e99059;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.timeline-card h3 {
    margin: 42px 0 12px;
    font-size: clamp(2rem, 3.7vw, 3.15rem);
}

.timeline-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.84rem;
    line-height: 1.65;
}

.timeline-card-image {
    background-position: center;
    background-size: cover;
}

.timeline-card-image::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.34), rgba(10, 9, 8, 0.9));
    content: "";
}

.timeline-image-jump { background-image: none; }
.timeline-image-night { background-image: none; }
.timeline-image-endurance { background-image: none; }
.timeline-image-day { background-image: none; }

.timeline-card-accent {
    background:
        linear-gradient(145deg, rgba(10, 9, 8, 0.2), rgba(10, 9, 8, 0.55)),
        linear-gradient(135deg, #b7350e, #df672c);
}

/* Leadership tabs */
.leadership-section {
    background: var(--paper);
}

.leadership-tabs {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 42px;
}

.tab-list {
    display: grid;
    align-content: start;
    gap: 0;
    border-top: 1px solid var(--line);
}

.tab-list button {
    position: relative;
    padding: 18px 8px 18px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    background: transparent;
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, padding-left 0.2s var(--ease);
}

.tab-list button::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rust);
    content: "";
    transform: translateY(-50%);
    transition: width 0.2s ease;
}

.tab-list button[aria-selected="true"] {
    padding-left: 28px;
    color: var(--ink);
}

.tab-list button[aria-selected="true"]::before {
    width: 18px;
}

.tab-stage {
    min-width: 0;
}

.tab-stage [role="tabpanel"] {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(34px, 6vw, 78px);
    align-items: center;
    animation: panel-in 0.42s var(--ease);
}

@keyframes panel-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-image {
    min-height: 480px;
    background-position: center;
    background-size: cover;
    border-radius: 18px;
    box-shadow: 0 26px 55px rgba(10, 9, 8, 0.18);
}

.tab-image-governance { background-image: none; }
.tab-image-events { background-image: none; }
.tab-image-welfare { background-image: none; }
.tab-image-growth { background-image: none; }

.tab-copy {
    max-width: 600px;
}

.tab-copy h3 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.6vw, 5.2rem);
}

.tab-copy > p:not(.micro-label) {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.tab-copy ul {
    display: grid;
    gap: 11px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.tab-copy li {
    position: relative;
    padding-left: 25px;
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1.5;
}

.tab-copy li::before {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 11px;
    height: 2px;
    background: var(--rust);
    content: "";
}

/* Business */
.business-section {
    background: var(--white);
}

.business-intro {
    display: grid;
    max-width: 880px;
    margin-inline: auto;
    margin-bottom: clamp(54px, 7vw, 86px);
    text-align: center;
}

.business-intro h2 {
    margin-bottom: 24px;
}

.business-intro > p:last-child {
    max-width: 680px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.business-card {
    position: relative;
    min-height: 420px;
    padding: 34px 30px;
    background: var(--paper);
    border: 1px solid rgba(10, 9, 8, 0.09);
    border-radius: 16px;
    overflow: hidden;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s var(--ease);
}

.business-card::after {
    position: absolute;
    right: -58px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(200, 75, 29, 0.24);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 34px rgba(200, 75, 29, 0.04), 0 0 0 68px rgba(200, 75, 29, 0.025);
}

.business-card:hover {
    color: var(--white);
    background: var(--ink);
    transform: translateY(-5px);
}

.business-card:hover::after {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.03), 0 0 0 68px rgba(255, 255, 255, 0.02);
}

.business-years {
    color: var(--rust);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.business-card h3 {
    margin: 105px 0 8px;
    font-size: clamp(2.6rem, 4.6vw, 4rem);
}

.business-role {
    margin-bottom: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.business-card > p:last-child {
    position: relative;
    z-index: 2;
    max-width: 330px;
    margin: 0;
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.business-card:hover > p:last-child {
    color: rgba(255, 255, 255, 0.7);
}

.language-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.language-strip span {
    padding: 9px 14px;
    color: var(--muted);
    background: var(--paper);
    border: 1px solid rgba(10, 9, 8, 0.08);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Vision */
.vision-banner {
    position: relative;
    min-height: 650px;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.vision-image,
.vision-overlay {
    position: absolute;
    inset: 0;
}

.vision-image {
    background-image: none;
    background-position: center;
    background-size: cover;
}

.vision-overlay {
    background:
        radial-gradient(circle at 78% 48%, rgba(217, 94, 29, 0.22), transparent 36%),
        linear-gradient(90deg, rgba(10, 9, 8, 0.95), rgba(10, 9, 8, 0.52) 68%, rgba(10, 9, 8, 0.68));
}

.vision-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 650px;
    flex-direction: column;
    justify-content: center;
}

.vision-content blockquote {
    max-width: 990px;
    margin-bottom: 24px;
    font-family: var(--display);
    font-size: clamp(3.3rem, 7vw, 7rem);
    letter-spacing: 0.01em;
    line-height: 0.94;
    text-transform: uppercase;
}

.vision-content > span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Contact */
.contact-section {
    position: relative;
    padding-block: clamp(92px, 10vw, 150px);
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.contact-background,
.contact-overlay {
    position: absolute;
    inset: 0;
}

.contact-background {
    background-image: none;
    background-position: center 42%;
    background-size: cover;
}

.contact-overlay {
    background:
        linear-gradient(90deg, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.85) 46%, rgba(10, 9, 8, 0.68) 100%),
        linear-gradient(180deg, rgba(191, 63, 16, 0.24), transparent 45%);
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 8vw, 112px);
}

.contact-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(3.6rem, 7vw, 6.8rem);
}

.contact-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
}

.direct-contact-list {
    display: grid;
    margin: 36px 0 32px;
    border-top: 1px solid var(--line-light);
}

.direct-contact-list > * {
    display: grid;
    min-width: 0;
    padding: 16px 0;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--line-light);
}

.direct-contact-list > a:hover span,
.direct-contact-list > a:focus-visible span {
    color: #f5ad77;
}

.direct-contact-list svg {
    width: 20px;
    height: 20px;
}

.direct-contact-list span {
    display: grid;
    min-width: 0;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
    transition: color 0.2s ease;
}

.direct-contact-list small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form-card {
    padding: clamp(28px, 4vw, 46px);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    border-radius: 22px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.form-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.form-header span {
    color: var(--rust);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-header strong {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field-group {
    display: grid;
    gap: 7px;
    margin-bottom: 17px;
}

.field-group label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    border: 1px solid rgba(10, 9, 8, 0.2);
    color: var(--ink);
    background: var(--white);
    border-radius: 9px;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field-group input,
.field-group select {
    min-height: 49px;
    padding: 0 13px;
}

.field-group textarea {
    min-height: 150px;
    padding: 13px;
    resize: vertical;
}

.field-group textarea::placeholder {
    color: #999188;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--rust);
    box-shadow: 0 0 0 3px rgba(200, 75, 29, 0.12);
}

.field-group.is-invalid input,
.field-group.is-invalid select,
.field-group.is-invalid textarea {
    border-color: #b91c1c;
    background: #fff8f8;
}

.field-error {
    min-height: 1em;
    color: #a11212;
    font-size: 0.66rem;
    line-height: 1.3;
}

.field-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.64rem;
}

.consent-field {
    display: grid;
    margin: 2px 0 8px;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.5;
    cursor: pointer;
}

.consent-field input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--rust);
}

.button-submit {
    width: 100%;
    margin-top: 18px;
    color: var(--white);
    background: var(--ink);
    border: 0;
}

.button-submit:hover,
.button-submit:focus-visible {
    background: var(--rust);
}

.button-submit[disabled] {
    opacity: 0.58;
    cursor: wait;
    transform: none;
}

.form-status,
.server-form-status {
    margin-top: 13px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.5;
}

.server-form-status {
    margin: 0 0 20px;
    padding: 11px 13px;
    border-radius: 8px;
}

.server-form-status.is-success {
    color: #165b35;
    background: #e9f8ef;
}

.server-form-status.is-error {
    color: #8b1f1f;
    background: #fff0f0;
}

.form-status.is-success { color: #17603a; }
.form-status.is-error { color: #a11212; }

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

/* Contact strip */
.contact-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: var(--ink);
}

.contact-strip-card {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
    background-position: center;
    background-size: cover;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    isolation: isolate;
}

.contact-strip-card::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.25), rgba(10, 9, 8, 0.9));
    content: "";
    transition: background-color 0.25s ease;
}

.contact-strip-card:hover::before,
.contact-strip-card:focus-visible::before {
    background: linear-gradient(180deg, rgba(168, 46, 10, 0.4), rgba(10, 9, 8, 0.88));
}

.contact-strip-card svg {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 25px;
    height: 25px;
}

.contact-strip-card span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-strip-card strong {
    font-family: var(--display);
    font-size: clamp(1.7rem, 2.4vw, 2.6rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.strip-email { background-image: none; }
.strip-call { background-image: none; }
.strip-zagreb { background-image: none; }
.strip-lucerne { background-image: none; }
.strip-cv { background-image: none; border-right: 0; }

/* Footer */
.site-footer {
    padding-top: 72px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    padding-bottom: 60px;
    grid-template-columns: 1.45fr repeat(3, minmax(0, 0.75fr));
    gap: 50px;
}

.footer-brand {
    display: inline-grid;
    margin-bottom: 22px;
    color: var(--white);
    line-height: 0.86;
}

.footer-brand span {
    font-size: 2.35rem;
}

.footer-brand small {
    font-size: 0.66rem;
}

.footer-brand-block p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.83rem;
    line-height: 1.7;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-column h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-family: var(--body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    width: fit-content;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: #f5a36b;
}

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

.footer-bottom {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.65rem;
}

.footer-bottom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom button,
.footer-bottom a {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.footer-bottom button:hover,
.footer-bottom button:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--white);
}

/* Dialogs */
.site-dialog {
    width: min(620px, calc(100% - 32px));
    max-height: calc(100svh - 40px);
    padding: clamp(28px, 5vw, 54px);
    border: 0;
    color: var(--ink);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
}

.site-dialog::backdrop {
    background: rgba(10, 9, 8, 0.78);
    backdrop-filter: blur(5px);
}

.site-dialog[open] {
    animation: dialog-in 0.28s var(--ease);
}

@keyframes dialog-in {
    from { opacity: 0; transform: translateY(15px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
    color: var(--white);
    background: var(--ink);
}

.dialog-close svg {
    width: 18px;
    height: 18px;
}

.site-dialog h2 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 8vw, 5rem);
}

.event-dialog > strong {
    display: block;
    margin-bottom: 18px;
    color: var(--rust);
    font-size: 0.76rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-dialog > p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.75;
}

.event-dialog .button {
    margin-top: 12px;
}

/* Toast */
.toast {
    position: fixed;
    z-index: 3000;
    right: 18px;
    bottom: 18px;
    max-width: min(390px, calc(100% - 36px));
    padding: 13px 16px;
    color: var(--white);
    background: var(--ink);
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    font-size: 0.78rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.toast.is-error {
    background: #8d1f1f;
}

.toast.is-success {
    background: #165a38;
}

/* Reveal effects */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.26s; }

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.no-js .reveal {
    opacity: 1;
    transform: none;
}


.business-intro,
.profile-layout,
.contact-layout,
.leadership-tabs,
.events-heading,
.split-heading {
    min-width: 0;
}

.business-intro > *,
.profile-layout > *,
.contact-layout > *,
.leadership-tabs > *,
.events-heading > *,
.split-heading > * {
    min-width: 0;
}

/* Focus outlines */
:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}

/* Performance: same source imagery served as optimized WebP and loaded shortly before it enters the viewport. */
.profile-image-tile-jump.is-bg-loaded {
    background-image: linear-gradient(rgba(10, 9, 8, 0.12), rgba(10, 9, 8, 0.12)), url("../images/optimized/campaign-networking.webp");
}

.profile-image-tile-endurance.is-bg-loaded {
    background-image: linear-gradient(rgba(173, 57, 15, 0.16), rgba(10, 9, 8, 0.18)), url("../images/optimized/equestrian-stakeholder-engagement.webp");
}

.featured-event.is-bg-loaded {
    background: linear-gradient(90deg, rgba(10, 9, 8, 0.96), rgba(10, 9, 8, 0.72)), url("../images/optimized/cro02.webp") center 44% / cover;
}

.event-card-jumping.is-bg-loaded { background-image: url("../images/optimized/showjumping-series-podium.webp"); }
.event-card-endurance.is-bg-loaded { background-image: url("../images/optimized/uae-endurance-cup.webp"); }
.event-card-shows.is-bg-loaded { background-image: url("../images/optimized/venue-operational-review.webp"); }
.event-card-night.is-bg-loaded { background-image: url("../images/optimized/championship-awards-night.webp"); }

.rail-card-1.is-bg-loaded { background-image: url("../images/optimized/dresura1.webp"); }
.rail-card-2.is-bg-loaded { background-image: url("../images/optimized/zap1.webp"); }
.rail-card-3.is-bg-loaded { background-image: url("../images/optimized/zap2.webp"); }
.rail-card-4.is-bg-loaded { background-image: url("../images/optimized/balkan-jumping-2.webp"); }
.rail-card-5.is-bg-loaded { background-image: url("../images/optimized/endurance-1.webp"); }
.rail-card-6.is-bg-loaded { background-image: url("../images/optimized/auto-zubak-2.webp"); }

.timeline-image-jump.is-bg-loaded { background-image: url("../images/optimized/mladi-konji1-222.webp"); }
.timeline-image-night.is-bg-loaded { background-image: url("../images/optimized/cro02.webp"); }
.timeline-image-endurance.is-bg-loaded { background-image: url("../images/optimized/endurance-horses-1200.webp"); }
.timeline-image-day.is-bg-loaded { background-image: url("../images/optimized/balkan-jumping-1.webp"); }

.tab-image-governance.is-bg-loaded { background-image: linear-gradient(rgba(10, 9, 8, 0.08), rgba(10, 9, 8, 0.14)), url("../images/optimized/dresura-4.webp"); }
.tab-image-events.is-bg-loaded { background-image: url("../images/optimized/dresura-2.webp"); }
.tab-image-welfare.is-bg-loaded { background-image: url("../images/optimized/image3.webp"); }
.tab-image-growth.is-bg-loaded { background-image: linear-gradient(rgba(10, 9, 8, 0.18), rgba(10, 9, 8, 0.18)), url("../images/optimized/img-0470.webp"); }

.vision-image.is-bg-loaded { background-image: url("../images/optimized/4-1.webp"); }
.contact-background.is-bg-loaded { background-image: url("../images/optimized/img-2252-1920.webp"); }
.strip-email.is-bg-loaded { background-image: url("../images/optimized/endurance-horses-1200.webp"); }
.strip-call.is-bg-loaded { background-image: url("../images/optimized/mladi-konji1-222.webp"); }
.strip-zagreb.is-bg-loaded { background-image: url("../images/optimized/auto-zubak-2.webp"); }
.strip-lucerne.is-bg-loaded { background-image: url("../images/optimized/4-1.webp"); }
.strip-cv.is-bg-loaded { background-image: url("../images/optimized/img-2258.webp"); }

@media (max-width: 720px) {
    .hero-background { background-image: url("../images/optimized/endurance-horses-1200.webp"); }
    .contact-background.is-bg-loaded { background-image: url("../images/optimized/img-2252-1200.webp"); }
}

@media (min-width: 1601px) {
    .hero-background { background-image: url("../images/optimized/endurance-horses-2200.webp"); }
}

/* Responsive */
@media (max-width: 1120px) {
    :root {
        --shell: min(100% - 40px, 1040px);
    }

    .desktop-nav {
        gap: 15px;
    }

    .desktop-nav > a,
    .nav-more-button {
        font-size: 0.79rem;
    }

    .header-icon {
        display: none;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    }

    .hero h1 {
        font-size: clamp(4.2rem, 8.5vw, 7.8rem);
    }

    .profile-photo-wrap {
        width: 72%;
        margin-left: 0;
    }

    .focus-card {
        padding-inline: 20px;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
        gap: 46px;
    }
}

@media (max-width: 940px) {
    :root {
        --header-height: 68px;
        --shell: min(100% - 36px, 850px);
    }

    .desktop-nav,
    .header-contact {
        display: none;
    }

    .header-shell {
        grid-template-columns: 1fr auto 1fr;
    }

    .mobile-menu-button {
        display: grid;
    }

    .header-actions {
        grid-column: 3;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: 920px;
        padding-top: calc(var(--header-height) + 90px);
        grid-template-columns: 1fr;
        align-content: start;
        gap: 42px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero h1 {
        font-size: clamp(4.5rem, 12vw, 8rem);
    }

    .hero-portrait-stage {
        width: min(82vw, 420px);
        margin-right: 2vw;
        justify-self: end;
    }

    .hero-background {
        background-position: 63% center;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(10, 9, 8, 0.92) 0%, rgba(10, 9, 8, 0.75) 48%, rgba(10, 9, 8, 0.88) 100%),
            linear-gradient(90deg, rgba(10, 9, 8, 0.42), rgba(10, 9, 8, 0.16));
    }

    .leadership-banner {
        margin-top: 0;
        padding-top: 28px;
    }

    .leadership-banner-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-card:nth-child(2) {
        border-right: 0;
    }

    .stat-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .stat-card:nth-child(3) {
        padding-left: 0;
    }

    .profile-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .profile-media {
        width: min(100%, 690px);
        margin-inline: auto;
    }

    .profile-copy {
        max-width: none;
    }

    .focus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .focus-card,
    .focus-card:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .focus-card:nth-child(even) {
        border-right: 0;
    }

    .focus-card:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .event-rail {
        grid-auto-columns: minmax(245px, 45%);
    }

    .leadership-tabs {
        grid-template-columns: minmax(0, 1fr);
    }

    .tab-list {
        display: flex;
        gap: 6px;
        padding-bottom: 8px;
        border-top: 0;
        overflow-x: auto;
    }

    .tab-list button {
        flex: 0 0 auto;
        padding: 11px 16px;
        border: 1px solid var(--line);
        border-radius: 999px;
        font-family: var(--body);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.05em;
    }

    .tab-list button[aria-selected="true"] {
        padding-left: 16px;
        color: var(--white);
        background: var(--ink);
        border-color: var(--ink);
    }

    .tab-list button::before {
        display: none;
    }

    .business-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .business-card {
        min-height: 320px;
    }

    .business-card h3 {
        margin-top: 70px;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-copy {
        max-width: 760px;
    }

    .contact-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-strip-card:nth-child(3) {
        border-right: 0;
    }

    .contact-strip-card:nth-child(n+4) {
        min-height: 170px;
    }

    .strip-lucerne {
        grid-column: span 1;
    }

    .strip-cv {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }

    .footer-contact-column {
        grid-column: 2 / -1;
    }
}

@media (max-width: 720px) {
    :root {
        --shell: calc(100% - 28px);
    }

    h2 {
        font-size: clamp(2.35rem, 11.8vw, 4.2rem);
    }

    .section {
        padding-block: 76px;
    }

    .split-heading,
    .events-heading,
    .business-intro,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .split-heading > *,
    .events-heading > *,
    .business-intro > *,
    .contact-layout > * {
        min-width: 0;
        max-width: 100%;
    }

    .header-shell {
        width: calc(100% - 22px);
    }

    .hero-inner {
        min-height: 900px;
        padding-top: calc(var(--header-height) + 72px);
        padding-bottom: 94px;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(3.2rem, 16.5vw, 5.1rem);
    }

    .hero h1 span:last-child {
        margin-left: 0;
    }

    .hero-intro {
        font-size: 0.94rem;
    }

    .hero-buttons {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-portrait-stage {
        width: min(88vw, 370px);
        max-width: 100%;
        margin-right: 0;
    }

    .hero-foot {
        bottom: 19px;
        gap: 10px;
        font-size: 0.58rem;
    }

    .hero-foot-line {
        width: 25px;
    }

    .leadership-banner-card {
        padding: 28px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card,
    .stat-card:first-child,
    .stat-card:nth-child(3),
    .stat-card:last-child {
        min-height: 145px;
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .profile-media {
        min-height: 600px;
    }

    .profile-photo-wrap {
        width: 78%;
        height: 510px;
    }

    .profile-image-tile-jump {
        width: 46%;
        height: 165px;
    }

    .profile-image-tile-endurance {
        width: 53%;
        height: 170px;
    }

    .focus-title {
        grid-template-columns: 1fr;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-card,
    .focus-card:nth-child(3n),
    .focus-card:nth-child(even),
    .focus-card:nth-last-child(-n+2) {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .focus-card:last-child {
        border-bottom: 0;
    }

    .focus-index {
        margin-bottom: 45px;
    }

    .featured-event {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 23px;
    }

    .event-meta-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-height: 410px;
    }

    .event-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-rail {
        grid-auto-columns: minmax(235px, 78%);
    }

    .timeline::before {
        left: 19px;
    }

    .timeline-row {
        min-height: auto;
        padding: 0 0 58px 54px;
        grid-template-columns: 1fr;
    }

    .timeline-year {
        top: 24px;
        left: 19px;
        min-width: 68px;
        font-size: 1.35rem;
        transform: translateX(-50%);
    }

    .timeline-card,
    .timeline-left .timeline-card,
    .timeline-right .timeline-card {
        width: 100%;
        grid-column: 1;
        justify-self: stretch;
    }

    .timeline-card::after,
    .timeline-left .timeline-card::after,
    .timeline-right .timeline-card::after {
        top: 32px;
        right: auto;
        left: -36px;
        width: 36px;
    }

    .tab-stage [role="tabpanel"] {
        grid-template-columns: 1fr;
    }

    .tab-image {
        min-height: 390px;
    }

    .vision-banner,
    .vision-content {
        min-height: 560px;
    }

    .vision-content blockquote {
        font-size: clamp(3.1rem, 15vw, 5.4rem);
    }

    .contact-copy,
    .contact-form-card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .contact-copy h2 {
        font-size: clamp(2.8rem, 12vw, 4.1rem);
    }

    .contact-form-card {
        padding: 27px 20px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-strip {
        grid-template-columns: 1fr 1fr;
    }

    .contact-strip-card,
    .contact-strip-card:nth-child(n+4) {
        min-height: 165px;
    }

    .contact-strip-card:nth-child(2),
    .contact-strip-card:nth-child(4) {
        border-right: 0;
    }

    .strip-cv {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }

    .footer-contact-column {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }
}

@media (max-width: 480px) {
    .header-brand span {
        font-size: 1.12rem;
    }

    .header-brand small {
        font-size: 0.45rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 16.5vw, 4.75rem);
    }

    .hero-foot > span:first-child {
        display: none;
    }

    .hero-foot-line {
        display: none;
    }

    .profile-media {
        min-height: 520px;
    }

    .profile-photo-wrap {
        width: 82%;
        height: 440px;
    }

    .profile-image-tile-jump {
        top: 11%;
        width: 45%;
        height: 140px;
    }

    .profile-image-tile-endurance {
        width: 55%;
        height: 145px;
    }

    .profile-photo-caption {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-card {
        min-height: 385px;
    }

    .business-card {
        min-height: 350px;
    }

    .contact-strip {
        grid-template-columns: 1fr;
    }

    .contact-strip-card,
    .contact-strip-card:nth-child(2),
    .contact-strip-card:nth-child(3),
    .contact-strip-card:nth-child(4) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .strip-cv {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-block,
    .footer-contact-column {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
