/*  =========================================================
    Chapel & District Riding Club — "The Valley" Design System
    Original design. Inspired by the V-shape motif and
    Peak District landscape.
    ========================================================= */

/* --- Tokens --- */
:root {
    --plum-900: #44225F;
    --plum-800: #562A77;
    --plum-700: #66388A;
    --plum-600: #7D519D;
    --plum-500: #9777AC;
    --plum-400: #AF9DBB;
    --plum-300: #C5BACB;
    --plum-200: #D9D4DD;
    --plum-100: #EBE8ED;
    --plum-50:  #F5F4F6;

    --sage-700: #4A5E42;
    --sage-600: #5E7553;
    --sage-500: #7A8B6F;
    --sage-400: #96A78C;
    --sage-300: #B3C1AA;
    --sage-200: #D0DACA;
    --sage-100: #E8EDE5;

    --cream:    #FDFAF5;
    --ivory:    #F5F1EA;
    --ink:      #1E1E1E;
    --ink-soft: #4A4A4A;
    --ink-muted:#8A8A8A;
    --white:    #FFFFFF;
    --red-600:  #B33A3A;

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--plum-800); }

/* --- Wrapper --- */
.wrap {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}
.wrap--narrow { max-width: 780px; }
.wrap--wide   { max-width: 1140px; }

/* --- Utility classes --- */
.prose          { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8; }
.mt-sm          { margin-top: .5rem; }
.mt-md          { margin-top: 1rem; }
.mt-lg          { margin-top: 1.5rem; }
.mt-xl          { margin-top: 2rem; }
.mb-md          { margin-bottom: 1rem; }
.mb-xl          { margin-bottom: 2rem; }
.gap-stack      { display: flex; flex-direction: column; gap: 1.5rem; }
.text-center    { text-align: center; }
.text-muted     { color: var(--ink-muted); }
.text-warning   { color: var(--red-600); font-size: .9rem; }
.btn-row        { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn--full      { width: 100%; justify-content: center; text-align: center; }
.past-summary   { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink-muted); cursor: pointer; margin-bottom: 1rem; }
.past-timeline  { opacity: .55; }
.event-status   { font-size: .8rem; color: var(--ink-muted); margin-top: .5rem; }
.event-status i { margin-right: .3rem; color: var(--sage-500); }
.link-underline { color: var(--plum-600); border-bottom: 1px solid var(--plum-200); transition: border-color .2s; }
.link-underline:hover { border-color: var(--plum-600); }
.vacant         { color: var(--ink-muted); font-style: italic; }

/* ============================================================
   HEADER — Split-centre navigation
   ============================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253,250,245,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
}
.site-header.is-scrolled {
    border-bottom-color: var(--plum-100);
    background: rgba(253,250,245,.97);
}
.site-header__bar {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.site-header__nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.site-header__nav--left  { justify-self: end; }
.site-header__nav--right { justify-self: start; }
.site-header__link {
    font-family: var(--font-body);
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--plum-600);
    position: relative;
    padding: .25rem 0;
    transition: color .25s;
}
.site-header__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--sage-600);
    transition: width .3s var(--ease-out);
}
.site-header__link:hover { color: var(--plum-800); }
.site-header__link:hover::after,
.site-header__link.is-active::after { width: 100%; }
.site-header__link.is-active { color: var(--plum-800); }

.site-header__brand {
    padding: 0 2.5rem;
    text-align: center;
}
.site-header__brand-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--plum-800);
}

.site-header__toggle {
    display: none;
    position: absolute; right: 1.5rem; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 20px;
    flex-direction: column; justify-content: space-between;
}
.site-header__toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--plum-700);
    transition: transform .3s, opacity .2s;
}
.site-header__toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.site-header__toggle.is-open span:nth-child(2) { opacity: 0; }
.site-header__toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --- Mobile overlay menu --- */
.mobile-menu {
    position: fixed; inset: 0;
    z-index: 99;
    background: var(--plum-800);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1rem;
    padding-top: 72px;
    opacity: 0; visibility: hidden;
    transition: opacity .35s, visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__nav {
    display: flex; flex-direction: column;
    align-items: center; gap: .5rem;
}
.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--plum-100);
    padding: .5rem 1rem;
    transition: color .2s;
}
.mobile-menu__link:hover,
.mobile-menu__link.is-active { color: var(--sage-300); }
.mobile-menu__tagline {
    margin-top: 2rem;
    font-size: .8rem;
    color: var(--plum-400);
    text-align: center;
    line-height: 1.5;
}

/* ============================================================
   V-SHAPE — Double downward-pointing chevron motif
   Two thick V-lines ARE the divider between dark and light.
   The dark section clips along the outer V. The strokes sit
   at the boundary. No filled triangle.
   ============================================================ */

.v-transition {
    position: absolute;
    bottom: -70px; left: 0; right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 2;
}
.v-transition svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Small decorative V-lines (used inline in content areas) */
.v-lines {
    display: flex;
    justify-content: center;
    padding: 2rem 0 1rem;
}
.v-lines svg {
    width: 120px;
    height: 40px;
}

/* Legacy class kept for the ticker section */
.v-down {
    position: relative;
    overflow: visible;
}

/* ============================================================
   MASTHEAD — editorial broadsheet opening
   ============================================================ */
.mast {
    position: relative;
    background: linear-gradient(155deg, #611F93, #591D87 60%, #4E1976);
    overflow: visible;
    margin-bottom: 70px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
}
.mast__grain {
    position: absolute; inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}
.mast__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: end;
    max-width: 1140px;
    margin: 0 auto;
    padding: calc(72px + 5rem) 2rem 7rem;
}
.mast__identity {
    animation: fadeUp .7s .15s both var(--ease-out);
}
.mast__title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1;
}
.mast__title-line {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.mast__title-amp {
    font-size: clamp(4rem, 9vw, 7rem);
    font-weight: 500;
    font-style: normal;
    color: var(--sage-400);
    text-align: center;
    margin: .15em 0;
    line-height: .75;
}
.mast__title-sub {
    font-size: clamp(.85rem, 1.8vw, 1.15rem);
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--plum-300);
    margin-top: .6em;
    font-family: var(--font-body);
}
.mast__loc {
    margin-top: 1.25rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--plum-400);
}

/* Next show — pulled out like a magazine sidebar */
.mast__next {
    animation: fadeUp .7s .4s both var(--ease-out);
    border-left: 2px solid var(--sage-600);
    padding-left: 1.5rem;
}
.mast__next-kicker {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sage-400);
    margin-bottom: .75rem;
}
.mast__next-day {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    line-height: .85;
    padding-bottom: .35em;
}
.mast__next-day-suffix {
    font-size: .3em;
    font-weight: 600;
    vertical-align: .9em;
    margin-left: .1em;
    letter-spacing: .02em;
}
.mast__next-month {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plum-200);
    margin-bottom: .5rem;
}
.mast__next-event {
    font-size: .85rem;
    color: var(--plum-300);
    margin-bottom: 1rem;
}
.mast__next-arrow {
    display: inline-flex;
    color: var(--sage-400);
    transition: color .2s, transform .2s;
}
.mast__next-arrow:hover { color: var(--white); transform: translateX(4px); }

/* Masthead with photo background — used on /index-3 preview only */
.mast--showground {
    background: var(--plum-900);
}
.mast--showground .mast__bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}
.mast--showground .mast__bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(155deg,
        rgba(97, 31, 147, 0.62),
        rgba(89, 29, 135, 0.72) 60%,
        rgba(78, 25, 118, 0.88));
    pointer-events: none;
}

/* V at the bottom — now uses .v-transition */

/* ============================================================
   ABOUT STRIP — editorial lead paragraph + sidebar facts
   ============================================================ */
.strip {
    padding: 5rem 0 4rem;
    border-bottom: 1px solid var(--plum-100);
}
.strip__grid {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 4rem;
    align-items: start;
}
.strip__lead {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--plum-700);
    margin-bottom: 1.25rem;
}
.strip__body {
    font-size: .95rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.strip__more {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--sage-600);
    transition: gap .2s;
}
.strip__more:hover { gap: .6rem; }
.strip__aside {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: .5rem;
}
.strip__fact {
    display: flex;
    align-items: baseline;
    gap: .75rem;
}
.strip__fact-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sage-600);
    line-height: 1;
}
.strip__fact-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    line-height: 1.4;
}

/* ============================================================
   SEASON TICKER — bold typographic date run
   ============================================================ */
.ticker {
    background: var(--plum-800);
    padding: 4rem 0 7rem;
    overflow: visible;
    position: relative;
    margin-bottom: 70px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
}
.ticker__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}
.ticker__heading {
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--sage-400);
    margin-bottom: 2.5rem;
}
.ticker__track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
}
.ticker__event {
    padding: 1.5rem 1.25rem;
    border-left: 1px solid rgba(255,255,255,.08);
    transition: background .25s;
}
.ticker__event:first-child { border-left: none; }
.ticker__event:hover { background: rgba(255,255,255,.04); }
.ticker__date {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: .35rem;
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum";
}
.ticker__detail {
    display: flex;
    flex-direction: column;
}
.ticker__month {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sage-300);
    margin-bottom: .35rem;
}
.ticker__name {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 600;
    color: var(--plum-200);
    margin-bottom: .5rem;
}
.ticker__quals {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
}
.ticker__quals em {
    font-style: normal;
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .1rem .4rem;
    background: rgba(255,255,255,.07);
    color: var(--plum-300);
    border-radius: 2px;
}
.ticker__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: 2rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--sage-300);
    transition: color .2s;
}
.ticker__link:hover { color: var(--white); }

/* ============================================================
   BOTTOM GRID — asymmetric bento layout
   ============================================================ */
.grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}
.grid-bottom__card {
    padding: 2.5rem;
    border: 1px solid var(--plum-100);
    border-radius: 6px;
    background: var(--white);
    transition: border-color .25s, box-shadow .25s;
}
.grid-bottom__card:hover {
    border-color: var(--plum-200);
    box-shadow: 0 4px 20px rgba(30,26,27,.06);
}
.grid-bottom__card--membership {
    border-top: 3px solid var(--sage-500);
}
.grid-bottom__card--contact {
    border-top: 3px solid var(--plum-400);
}
.grid-bottom__card--sponsors {
    border-top: 3px solid var(--sage-400);
}
.grid-bottom__card--affil {
    border-top: 3px solid var(--plum-300);
}
.grid-bottom__kicker {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--sage-600);
    margin-bottom: .75rem;
}
.grid-bottom__kicker i {
    margin-right: .3rem;
    font-size: .55rem;
}
.grid-bottom__title {
    font-size: 1.5rem;
    margin-bottom: .75rem;
}
.grid-bottom__text {
    font-size: .9rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.grid-bottom__benefits {
    margin-bottom: 1.5rem;
}
.grid-bottom__benefits li {
    padding: .3rem 0;
    font-size: .9rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.grid-bottom__benefits li i {
    color: var(--sage-600);
    font-size: .75rem;
    flex-shrink: 0;
}
.grid-bottom__contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: .9rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.grid-bottom__contacts a {
    color: var(--plum-600);
    border-bottom: 1px solid var(--plum-200);
    transition: border-color .2s;
}
.grid-bottom__contacts a:hover { border-color: var(--plum-600); }
.grid-bottom__contacts i {
    font-size: .7rem;
    color: var(--sage-600);
    margin-right: .2rem;
}
.grid-bottom__sponsor-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.25rem;
}
.grid-bottom__sponsor-list span {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--plum-700);
    padding: .25rem .7rem;
    background: var(--sage-100);
    border-radius: 3px;
    transition: background .2s;
}
.grid-bottom__sponsor-list span:hover {
    background: var(--sage-200);
}
.grid-bottom__affil-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.grid-bottom__affil-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.grid-bottom__affil-item > i {
    color: var(--sage-600);
    font-size: .95rem;
    margin-top: .2rem;
    flex-shrink: 0;
}
.grid-bottom__affil-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--plum-700);
    line-height: 1.3;
}
.grid-bottom__affil-item span {
    font-size: .8rem;
    color: var(--ink-muted);
}

/* ============================================================
   SUB-PAGE BANNER — with V bottom
   ============================================================ */
.page-banner {
    position: relative;
    padding: calc(72px + 4rem) 2rem 7rem;
    background: linear-gradient(155deg, #611F93, #591D87 60%, #4E1976);
    text-align: center;
    overflow: visible;
    margin-bottom: 70px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
}
.page-banner__crumbs {
    position: relative; z-index: 1;
    font-size: .8125rem;
    margin-bottom: .75rem;
}
.page-banner__crumbs a { color: var(--plum-300); transition: color .2s; }
.page-banner__crumbs a:hover { color: var(--white); }
.page-banner__crumbs span { color: var(--plum-400); margin: 0 .35rem; }
.page-banner__crumbs em { font-style: normal; color: var(--sage-300); }
.page-banner__title {
    position: relative; z-index: 1;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: .75rem;
}
.page-banner__desc {
    position: relative; z-index: 1;
    font-size: 1.1rem;
    color: var(--plum-200);
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
/*
   Buttons — editorial style: no border-radius, bottom-border accent,
   mixed-case with display font. Feels like a magazine call-to-action,
   not a software UI button.
*/
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .7rem 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .02em;
    border: none;
    border-bottom: 2px solid currentColor;
    background: none;
    transition: color .25s var(--ease-out), border-color .25s var(--ease-out), gap .2s;
    cursor: pointer;
}
.btn:hover { gap: .75rem; }
.btn i { font-size: .8em; }

/* Dark on light backgrounds */
.btn--fill {
    color: var(--plum-800);
    border-bottom-color: var(--sage-600);
}
.btn--fill:hover {
    color: var(--sage-700);
}

/* Light on dark backgrounds */
.btn--outline-light {
    color: var(--plum-200);
    border-bottom-color: var(--sage-400);
}
.btn--outline-light:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* Subtle on light backgrounds */
.btn--outline-dark {
    color: var(--plum-600);
    border-bottom-color: var(--plum-300);
}
.btn--outline-dark:hover {
    color: var(--plum-800);
    border-bottom-color: var(--plum-800);
}

/* Sage accent — the primary action */
.btn--sage {
    color: var(--sage-700);
    border-bottom-color: var(--sage-500);
}
.btn--sage:hover {
    color: var(--sage-600);
    border-bottom-color: var(--sage-700);
}

/* Emphasized variant — for when you need a filled block (used sparingly) */
.btn--block {
    padding: .75rem 1.75rem;
    border-bottom: none;
    border-left: 3px solid var(--sage-600);
    background: var(--plum-800);
    color: var(--white);
    font-size: .95rem;
}
.btn--block:hover {
    background: var(--plum-700);
    border-left-color: var(--sage-400);
}

/* ============================================================
   STORY BLOCKS — light editorial text, no box styling
   ============================================================ */
.story-block__heading {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: .75rem;
    padding-left: 1rem;
    border-left: 2px solid var(--sage-500);
}
.story-block__text {
    font-size: .95rem;
    color: var(--ink-soft);
    line-height: 1.8;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 5rem 0;
}
.section--ivory {
    background: var(--ivory);
}
.section--plum {
    background: var(--plum-800);
    color: var(--plum-100);
}
.section--plum h2, .section--plum h3, .section--plum h4 { color: var(--white); }
.section--plum .section__label { color: var(--sage-300); }

.section__label {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--sage-600);
    margin-bottom: .5rem;
}
.section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}
.section__intro {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 600px;
}
.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section__header .section__intro {
    margin-left: auto; margin-right: auto;
}

/* ============================================================
   TWO-COL LAYOUT
   ============================================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-col--reverse > :first-child { order: 2; }
.two-col--reverse > :last-child  { order: 1; }

/* ============================================================
   THREE-COL LAYOUT
   ============================================================ */
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* ============================================================
   FEATURE PANELS — editorial boxes with top border
   ============================================================ */
.panel {
    border-top: 3px solid var(--sage-500);
    padding: 2rem 0 0;
}
.panel__icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--sage-100);
    color: var(--sage-700);
    border-radius: 50%;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.panel__title {
    font-size: 1.35rem;
    margin-bottom: .5rem;
}
.panel__text {
    color: var(--ink-soft);
    font-size: .95rem;
}

/* ============================================================
   EVENT TIMELINE — vertical list with date markers
   ============================================================ */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding-left: 140px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 120px; top: 0; bottom: 0;
    width: 2px;
    background: var(--plum-200);
}
.timeline__item {
    position: relative;
    padding: 0 0 3rem 2.5rem;
}
.timeline__item:last-child { padding-bottom: 0; }

/* Dot on the line — vertically centred with title first line */
.timeline__item::before {
    content: '';
    position: absolute;
    left: -7px; top: .45rem;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--sage-500);
    border: 3px solid var(--cream);
}
.timeline__item--past::before {
    background: var(--plum-300);
}

.timeline__date {
    position: absolute;
    left: -140px; top: 0;
    width: 100px;
    text-align: right;
    font-family: var(--font-display);
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.timeline__day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--plum-700);
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum";
    line-height: 1;
}
.timeline__month {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--plum-500);
}

.timeline__title {
    font-size: 1.3rem;
    margin-bottom: .35rem;
}
.timeline__desc {
    color: var(--ink-soft);
    font-size: .95rem;
    margin-bottom: .75rem;
}
.timeline__badges {
    display: flex; flex-wrap: wrap; gap: .35rem;
    margin-bottom: .5rem;
}
.badge {
    display: inline-block;
    padding: .15rem .6rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: var(--sage-100);
    color: var(--sage-700);
    border-radius: 2px;
}
.badge--brown {
    background: var(--plum-100);
    color: var(--plum-700);
}
.timeline__location {
    font-size: .85rem;
    color: var(--ink-muted);
}
.timeline__location i { margin-right: .3rem; color: var(--sage-500); }

.timeline__item--past {
    opacity: .55;
}
.timeline__item--past:hover { opacity: .8; }

/* ============================================================
   CONTACT DIRECTORY — minimal cards
   ============================================================ */
.directory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.directory__card {
    padding: 1.75rem;
    border: 1px solid var(--plum-100);
    border-radius: 6px;
    background: var(--white);
    transition: border-color .25s, transform .25s;
}
.directory__card:hover {
    border-color: var(--sage-400);
    transform: translateY(-3px);
}
.directory__role {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sage-600);
    margin-bottom: .4rem;
}
.directory__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: .5rem;
}
.directory__detail {
    font-size: .9rem;
    color: var(--ink-soft);
}
.directory__detail a {
    color: var(--plum-600);
    border-bottom: 1px solid var(--plum-200);
    transition: border-color .2s;
}
.directory__detail a:hover { border-color: var(--plum-600); }

/* ============================================================
   SPONSOR TILES
   ============================================================ */
.sponsor-tile {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--plum-100);
    border-radius: 6px;
    background: var(--white);
    transition: border-color .25s, transform .25s;
}
.sponsor-tile:hover {
    border-color: var(--sage-400);
    transform: translateY(-3px);
}
.sponsor-tile__logo {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    margin: 0 auto 1.25rem;
    object-fit: contain;
}
.sponsor-tile__icon {
    width: 56px; height: 56px;
    margin: 0 auto 1.25rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--sage-100);
    color: var(--sage-700);
    border-radius: 50%;
    font-size: 1.3rem;
}
.sponsor-tile__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: .4rem;
}
.sponsor-tile__desc {
    font-size: .9rem;
    color: var(--ink-soft);
}

/* ============================================================
   BENEFIT ROW — icon + text, horizontal
   ============================================================ */
.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--plum-100);
}
.benefit-row:last-child { border-bottom: none; }
.benefit-row__icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--sage-100);
    color: var(--sage-700);
    border-radius: 50%;
    font-size: 1rem;
}
.benefit-row__title {
    font-weight: 600;
    margin-bottom: .15rem;
}
.benefit-row__text {
    font-size: .9rem;
    color: var(--ink-soft);
}

/* ============================================================
   PRICING BLOCK
   ============================================================ */
.pricing-block {
    max-width: 380px;
    border: 2px solid var(--sage-500);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: var(--white);
}
.pricing-block__head {
    padding: 2rem;
    background: var(--plum-800);
    color: var(--white);
}
.pricing-block__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: .25rem;
    color: var(--white);
}
.pricing-block__price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--sage-300);
}
.pricing-block__body {
    padding: 2rem;
}
.pricing-block__list {
    text-align: left;
    margin-bottom: 1.5rem;
}
.pricing-block__list li {
    padding: .4rem 0;
    font-size: .9rem;
    color: var(--ink-soft);
    display: flex; align-items: center; gap: .5rem;
}
.pricing-block__list li i { color: var(--sage-600); font-size: .75rem; }

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--plum-100);
    border-left: 4px solid var(--sage-500);
    border-radius: 0 6px 6px 0;
}
.info-box__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: .5rem;
}
.info-box__title i { color: var(--sage-600); margin-right: .4rem; }
.info-box__text {
    font-size: .95rem;
    color: var(--ink-soft);
}
.info-box__list {
    margin-top: .5rem;
}
.info-box__list li {
    padding: .25rem 0;
    font-size: .9rem;
    color: var(--ink-soft);
}
.info-box__list li i { color: var(--sage-600); margin-right: .4rem; font-size: .75rem; }

/* ============================================================
   SCHEDULE DOWNLOADS — big editorial cards for PDF schedules
   ============================================================ */
.schedule-downloads {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.schedule-download {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--plum-100);
    border-top: 3px solid var(--sage-500);
    border-radius: 6px;
    transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.schedule-download:hover {
    border-color: var(--plum-200);
    border-top-color: var(--sage-600);
    box-shadow: 0 8px 28px rgba(30,26,27,.08);
    transform: translateY(-3px);
}
.schedule-download__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sage-100);
    color: var(--sage-700);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    transition: background .25s, color .25s;
}
.schedule-download:hover .schedule-download__icon {
    background: var(--sage-600);
    color: var(--white);
}
.schedule-download__kicker {
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--sage-600);
    margin-bottom: .5rem;
}
.schedule-download__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.schedule-download__action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--sage-700);
    border-bottom: 2px solid var(--sage-500);
    padding-bottom: .25rem;
    transition: gap .2s, color .25s, border-color .25s;
}
.schedule-download:hover .schedule-download__action {
    gap: .75rem;
    color: var(--sage-600);
    border-bottom-color: var(--sage-700);
}
.schedule-download__action i { font-size: .85em; }

/* ============================================================
   CALL-TO-ACTION BAND
   ============================================================ */
.cta-band {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--plum-800);
    color: var(--plum-100);
    position: relative;
    overflow: hidden;
}
.cta-band .v-up::before { border-top-color: var(--cream); }
.cta-band__title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: .75rem;
}
.cta-band__text {
    font-size: 1.05rem;
    color: var(--plum-200);
    max-width: 520px;
    margin: 0 auto 2rem;
}
.cta-band__actions {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   QUOTE
   ============================================================ */
.pullquote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}
.pullquote__text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: var(--plum-700);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.pullquote__text::before { content: '\201C'; }
.pullquote__text::after  { content: '\201D'; }
.pullquote__attr {
    font-size: .85rem;
    font-weight: 600;
    color: var(--sage-600);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--plum-900);
    color: var(--plum-300);
    position: relative;
}
/* Footer V-top — cream wedge clipped to a V, with stroke lines */
.site-footer__v-top {
    height: 80px;
    background: var(--cream);
    position: relative;
    overflow: visible;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
}
.site-footer__v-top svg {
    position: absolute;
    bottom: -70px; left: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}
.site-footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}
.site-footer__cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.site-footer__heading {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .75rem;
}
.site-footer__text {
    font-size: .875rem;
    line-height: 1.7;
    margin-bottom: .75rem;
}
.site-footer__text--small { font-size: .75rem; color: var(--plum-400); }
.site-footer__text a {
    color: var(--plum-200);
    border-bottom: 1px solid var(--plum-600);
    transition: border-color .2s, color .2s;
}
.site-footer__text a:hover { color: var(--white); border-color: var(--white); }
.site-footer__link {
    display: block;
    font-size: .875rem;
    padding: .2rem 0;
    color: var(--plum-300);
    transition: color .2s;
}
.site-footer__link:hover { color: var(--sage-300); }
.site-footer__social {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .85rem;
    color: var(--plum-200);
    border-bottom: 1px solid var(--plum-600);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}
.site-footer__social:hover { color: var(--white); border-color: var(--white); }
.site-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .8rem;
    color: var(--plum-500);
    text-align: center;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .site-header__nav { display: none; }
    .site-header__toggle { display: flex; }
    .site-header__bar { grid-template-columns: 1fr auto; }
    .site-header__brand { padding: 0; justify-self: start; }

    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .two-col--reverse > :first-child { order: 0; }
    .two-col--reverse > :last-child  { order: 0; }

    .three-col { grid-template-columns: 1fr 1fr; }
    .directory { grid-template-columns: 1fr 1fr; }
    .site-footer__cols { grid-template-columns: 1fr 1fr; }
    .mast__inner { grid-template-columns: 1fr; gap: 2rem; }
    .mast__identity { text-align: center; }
    .mast__next { border-left: none; border-top: 2px solid var(--sage-600); padding-left: 0; padding-top: 1.5rem; text-align: center; }
    .ticker__track { grid-template-columns: repeat(3, 1fr); }
    .grid-bottom { grid-template-columns: 1fr; }
    .schedule-downloads { grid-template-columns: 1fr; }
    .strip__grid { grid-template-columns: 1fr; gap: 2rem; }
    .strip__aside { flex-direction: row; gap: 3rem; }
}

@media (max-width: 768px) {
    .three-col { grid-template-columns: 1fr; }
    .directory { grid-template-columns: 1fr; }
    .mast, .page-banner, .ticker {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
        margin-bottom: 50px;
    }
    .v-transition { bottom: -50px; height: 60px; }
    .v-transition svg { height: 60px; }
    .site-footer__v-top { height: 60px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px)); }
    .ticker__track { grid-template-columns: repeat(2, 1fr); }

    .timeline { padding-left: 90px; }
    .timeline::before { left: 70px; }
    .timeline__date { left: -90px; width: 60px; }
    .timeline__day { font-size: 1.5rem; }

    .section { padding: 3.5rem 0; }
    .site-footer__cols { grid-template-columns: 1fr; text-align: center; }
    .site-footer__social { justify-content: center; }
}

@media (max-width: 480px) {
    .wrap { padding: 0 1.25rem; }
    .timeline { padding-left: 60px; }
    .timeline::before { left: 42px; }
    .timeline__date { left: -60px; width: 38px; }
    .timeline__day { font-size: 1.25rem; }
    .timeline__month { font-size: .7rem; }
    .mast__next-day { font-size: 3.5rem; }
    .ticker__track { grid-template-columns: 1fr; }
    .ticker__event { border-left: none; border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
    .ticker__event:first-child { border-top: none; }
    .cta-band__actions { flex-direction: column; align-items: center; }
}

@media (min-width: 1400px) {
    .wrap { padding: 0 3rem; }
}

/* Print */
@media print {
    .site-header, .site-footer, .mobile-menu, .btn { display: none !important; }
    body { font-size: 11pt; color: #000; background: #fff; }
    .mast, .page-banner, .cta-band, .ticker { background: none; color: #000; padding: 1rem 0; }
    .v-transition, .site-footer__v-top, .mast__grain { display: none; }
    .mast, .page-banner, .ticker { clip-path: none; margin-bottom: 0; }
    .section { padding: 1rem 0; }
}

/* ============================================================
   NOTICE — time-sensitive announcement strip (e.g. published times)
   Bold brand-purple band that sits above the masthead. The top
   72px clears the fixed site header. Uses the same plum gradient
   and grain as the masthead so they read as one continuous zone.
   ============================================================ */
.notice {
    position: relative;
    background: linear-gradient(155deg, #611F93, #591D87 60%, #4E1976);
    color: var(--white);
    padding-top: 72px; /* clear the fixed .site-header */
    overflow: hidden;
}
.notice__grain {
    position: absolute; inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}
.notice__inner {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 2.25rem 2rem 2.25rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
}
.notice__body {
    line-height: 1.25;
    min-width: 0;
}
.notice__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
    letter-spacing: .005em;
}
.notice__meta {
    margin-top: .55rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--plum-200);
    letter-spacing: .03em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .45rem;
}
.notice__meta i {
    color: var(--sage-300);
    font-size: .85em;
    margin-right: .25rem;
}
.notice__dot {
    color: var(--plum-400);
    margin: 0 .25rem;
}
.notice__cta {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: 1rem 1.6rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--plum-900);
    background: var(--sage-300);
    border-bottom: 3px solid var(--sage-500);
    transition: background .25s var(--ease-out), color .25s var(--ease-out), gap .2s, transform .25s var(--ease-out);
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.notice__cta:hover {
    background: var(--white);
    color: var(--plum-900);
    gap: .9rem;
    transform: translateY(-1px);
}
.notice__cta i {
    font-size: .9em;
    transition: transform .25s var(--ease-out);
}
.notice__cta:hover i {
    transform: translateY(2px);
}

@media (max-width: 820px) {
    .notice__inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.75rem 1.5rem 1.75rem;
        text-align: center;
    }
    .notice__meta { justify-content: center; }
    .notice__cta {
        justify-self: center;
        padding: .9rem 1.25rem;
        font-size: 1.05rem;
    }
}
@media (max-width: 480px) {
    .notice__title { font-size: 1.45rem; }
    .notice__meta { font-size: .82rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
