/* ============================================================
   ERIC MEYER'S CSS RESET v2.0 | public domain
   https://meyerweb.com/eric/tools/css/reset/
   ============================================================ */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

[hidden] { display: none !important; }

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ============================================================
   BASE
   ============================================================ */

:root {
    /* Augmented fourth type scale (ratio: 1.414)
       base: 1rem (16px)
       h6  1rem       × 1.414^0 = 1rem
       h5  1rem       × 1.414^1 = 1.414rem
       h4  1rem       × 1.414^2 = 2rem
       h3  1rem       × 1.414^3 = 2.827rem
       h2  1rem       × 1.414^4 = 3.998rem
       h1  1rem       × 1.414^5 = 5.653rem
    */
    --color-sand: #E0D9CE;
    --color-blue: #384BDA;
    --color-text: #F0F0F0;
    --color-pink: #FF6BB5;

    --font-sans: 'Switzer', system-ui, sans-serif;

    --scale-ratio: 1.414;

    --text-h6: 1rem;
    --text-h5: 1.414rem;
    --text-h4: 2rem;
    --text-h3: 2.827rem;
    --text-h2: 3.998rem;
    --text-h1: 5.653rem;

    /* Modular rectangle grid
       Each module is a vertical rectangle: height = width × 1.414
       This compensates for the optical illusion where equal vertical
       and horizontal distances feel unequal — vertical feels larger.
       By making the row unit proportionally taller, spacing feels
       balanced in both axes.

       --module    = base column unit (horizontal)
       --module-h  = base row unit    (vertical = module × 1.414)
    */
    --module:   6rem;
    --module-h: calc(var(--module) * 1.414); /* 8.484rem */

    /* Convenience spacing tokens snapped to the grid */
    --space-1:  var(--module-h);               /* 1 row    ~8.5rem */
    --space-h:  calc(var(--module-h) / 2);     /* ½ row    ~4.2rem */
    --space-q:  calc(var(--module-h) / 4);     /* ¼ row    ~2.1rem */
    --gutter:   var(--module);                 /* 1 column ~6rem   */
    --gutter-h: calc(var(--module) / 2);       /* ½ column ~3rem   */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: var(--font-sans);
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    background-color: var(--color-sand);
    color: var(--color-text);
    overflow-x: hidden;
}

/* ============================================================
   HEADINGS
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-block: 0 0.5em;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }
h5 { font-size: var(--text-h5); }
h6 { font-size: var(--text-h6); }

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #ffffff;
    padding: 0 var(--gutter-h);
    height: var(--module-h);
}

.site-header__logo {
    display: flex;
    align-items: center;
    color: var(--color-pink);
    text-decoration: none;
    cursor: pointer;
}

.site-header__logo img {
    height: 5rem;
    width: auto;
    color: var(--color-pink);
    /* tints the SVG currentColor paths to pink */
    filter: invert(51%) sepia(82%) saturate(1200%) hue-rotate(295deg) brightness(105%);
    cursor: pointer;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: var(--gutter);
}

.site-header__nav a {
    color: #111111;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 500;
    cursor: pointer;
}

.site-header__nav a:hover {
    color: var(--color-pink);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
    background-color: #000765;
    padding: var(--space-h) var(--gutter-h);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gutter);
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__label {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a85b8;
    margin-block-end: 0.5rem;
}

.site-footer__col p,
.site-footer__col a {
    color: #b0b8d8;
    font-size: 0.9375rem;
    text-decoration: none;
    line-height: 1.6;
    cursor: pointer;
}

.site-footer__col nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-footer__col a:hover {
    color: var(--color-pink);
}

.site-footer__nhlstenden {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    text-decoration: none;
}

.site-footer__nhlstenden svg {
    width: 5rem;
    height: auto;
    color: #b0b8d8;
    display: block;
    transition: color 0.15s ease;
}

.site-footer__nhlstenden span {
    font-size: 0.9375rem;
    color: #b0b8d8;
    transition: color 0.15s ease;
}

.site-footer__nhlstenden:hover svg,
.site-footer__nhlstenden:hover span {
    color: #ffffff;
}

.intro {
    position: relative;
    width: 100%;
    background-color: #000765;
    /* padding uses grid tokens: ½ row top/bottom, ½ column left/right */
    padding: var(--space-h) var(--gutter-h);
    overflow: hidden;
}

.intro h1 {
    color: #ffffff;
    margin-block: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: clamp(6rem, 22vw, 22rem);
    line-height: 0.85;
}

.intro h1 span {
    display: block;
    line-height: 0.9;
}

.intro__tagline {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: var(--text-h4);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-block: var(--space-h) var(--space-q);
}

.intro__body {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 55ch;
}

.intro__shape {
    position: absolute;
    bottom: -10%;
    right: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
    user-select: none;
    transform: rotate(90deg);
    transform-origin: center center;
}

/* ============================================================
   PEOPLE PREVIEW
   ============================================================ */

.people-preview {
    position: relative;
    width: 100%;
    background-color: #8126FF;
    padding: var(--space-h) var(--gutter-h);
    overflow: hidden;
}

.people-preview__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 110%;
    width: auto;
    pointer-events: none;
    user-select: none;
}

.people-preview__heading {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: clamp(5rem, 18vw, 18rem);
    line-height: 0.85;
    margin-block: 0 var(--space-h);
}

.people-preview__grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-q);
}

.people-preview__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
}

.people-preview__avatar {
    width: clamp(5rem, 10vw, 9rem);
    height: clamp(5rem, 10vw, 9rem);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.people-preview__avatar img,
.people-preview__avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.people-preview__name {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    max-width: 9rem;
}

.people-preview__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-block-start: var(--space-h);
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #8126FF;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.01em;
    cursor: pointer;
}

.people-preview__cta svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.5;
    transition: transform 0.15s ease;
}

.people-preview__cta:hover svg {
    transform: translateX(3px);
}

/* ============================================================
   STORIES PREVIEW
   ============================================================ */

.stories-preview {
    background-color: #EF4A4A;
    padding: var(--space-h) var(--gutter-h);
}

.stories-preview__heading {
    color: #ffffff;
    font-size: clamp(5rem, 18vw, 18rem);
    line-height: 0.85;
    margin-block: 0 var(--space-h);
}

.stories-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter-h);
}

.story-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.story-card__cover {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    flex-shrink: 0;
}

.story-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.story-card__byline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #EF4A4A;
}

.story-card__title {
    font-size: var(--text-h5);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #111111;
    margin-block: 0;
}

.story-card__date {
    font-size: 0.8125rem;
    color: #666666;
    margin-block-start: auto;
}

/* "Read more" button inside story cards */
.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-block-start: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #EF4A4A;
    letter-spacing: 0.02em;
}

.card-btn svg {
    width: 0.9rem;
    height: 0.9rem;
    stroke-width: 2.5;
    transition: transform 0.15s ease;
}

.story-card:hover .card-btn svg {
    transform: translateX(3px);
}

.story-card:hover .story-card__title {
    text-decoration: underline;
}

/* ── WDTW festival promo ─────────────────────────────────────────── */
.wdtw-promo {
    background-color: #F2F7F8;
    padding: var(--space-h) var(--gutter-h);
}

.wdtw-promo__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 64rem;
}

.wdtw-promo__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #47B69C;
    margin-block: 0;
}

.wdtw-promo__heading {
    font-size: clamp(2.5rem, 7vw, var(--text-h1));
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #111111;
    margin-block: 0;
}

.wdtw-promo__body {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #333333;
    max-width: 52ch;
    margin-block: 0;
}

.wdtw-promo__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #47B69C;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    align-self: flex-start;
}

.wdtw-promo__cta svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.5;
    transition: transform 0.15s ease;
}

.wdtw-promo__cta:hover svg {
    transform: translateX(3px);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */

.video-section {
    position: relative;
    background-color: #EF4A4A;
    padding: var(--space-h) var(--gutter-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gutter-h);
    align-items: center;
    overflow: hidden;
}

.video-section__shape {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.12;
}

.video-section__statement {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.03em;
}

.video-section__embed {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-section__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ============================================================
   PAGE HERO (shared: people, stories)
   ============================================================ */

.page-hero {
    position: relative;
    padding: var(--space-h) var(--gutter-h) var(--space-q);
    overflow: hidden;
}

.page-hero--purple { background-color: #8126FF; }
.page-hero--purple .page-hero__heading { color: #ffffff; }
.page-hero--red    { background-color: #EF4A4A; }

.page-hero__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block-end: var(--space-q);
}

.page-hero__heading {
    color: #ffffff;
    font-size: clamp(5rem, 18vw, 18rem);
    line-height: 0.85;
    margin-block: 0;
}

.page-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5em 1em;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
}

.page-hero__back:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* On purple hero, no change needed — white outline works on both */
.page-hero--purple .page-hero__back { color: #ffffff; }
.page-hero--purple .page-hero__back:hover { color: #ffffff; }

.page-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-block-start: var(--space-q);
}

.page-hero__tags span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
}

.page-hero__meta {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    margin-block-start: var(--space-q);
}

.page-hero__meta a {
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-switcher a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
}

.lang-switcher a.is-active,
.lang-switcher a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* ============================================================
   PEOPLE INDEX
   ============================================================ */

.people-index {
    background-color: #8126FF;
    padding: var(--space-h) var(--gutter-h);
}

.people-index__count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-block-end: var(--space-q);
}

.people-index__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter-h);
}

.people-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1rem;
    margin-block-end: var(--space-q);
    background-color: #ffffff;
    padding: var(--space-q) var(--gutter-h);
    max-width: 60rem;
}

.people-filters__search {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #c0b9b0;
    background-color: #ffffff;
    color: #111111;
    outline: none;
    min-width: 16rem;
    align-self: stretch;
}

.people-filters__search::placeholder {
    color: #999999;
}

.people-filters__search:focus {
    border-color: #8126FF;
}

.people-filters__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: stretch;
}

.people-filters__tag {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    border: 1px solid transparent;
    background-color: transparent;
    transition: background-color 0.15s, color 0.15s;
}

.people-filters__tag:has(input:checked) {
    font-weight: 600;
}

.people-filters__tag input {
    display: none;
}

/* Toggle button — hidden on desktop, shown on mobile */
.people-filters__tags-toggle {
    display: none;
}

.people-filters__tags-toggle-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #8126FF;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    margin-inline-start: 0.25rem;
}

.person-card {
    background-color: #ffffff;
}

.person-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    cursor: pointer;
}

.person-card__avatar {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.person-card__avatar img,
.person-card__avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Shared initials SVG — used as fallback in every avatar context */
.person-avatar-initials {
    width: 100%;
    height: 100%;
    display: block;
}

.person-avatar-initials text {
    font-family: 'Switzer', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    fill: #ffffff;
}

.person-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.person-card__name {
    font-size: var(--text-h5);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-block: 0;
    color: #111111;
}

.person-card__bio {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #444444;
}

.person-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-block-start: auto;
}

.person-card__tags span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
}

.person-card:hover .person-card__name {
    text-decoration: underline;
}

/* ============================================================
   PERSON DETAIL
   ============================================================ */

/* Hero — full coloured section with shape */
.person-hero {
    position: relative;
    padding: var(--space-h) var(--gutter-h);
    overflow: hidden;
}

.person-hero__shape {
    position: absolute;
    right: -4rem;
    top: 50%;
    transform: translateY(-50%);
    height: 130%;
    width: auto;
    pointer-events: none;
    user-select: none;
}

.person-hero__body {
    display: flex;
    align-items: flex-end;
    gap: var(--gutter-h);
    margin-block-start: var(--space-q);
}

.person-hero__avatar {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #ffffff;
}

.person-hero__avatar img,
.person-hero__avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.person-hero__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-q);
    padding-block-end: 0.25rem;
}

.person-hero__name {
    font-size: clamp(2.5rem, 6vw, var(--text-h2));
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
    margin-block: 0;
}

/* Body content below the hero */
.person-detail {
    background-color: var(--color-sand);
    padding: var(--space-h) var(--gutter-h);
    display: flex;
    flex-direction: column;
    gap: var(--space-q);
    max-width: 48rem;
}

.person-detail__section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.person-detail__label {
    font-size: var(--text-h3);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #888888;
}

.person-detail__section p,
.person-detail__section li {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #111111;
}

.person-detail__links li,
.person-detail__stories li {
    margin-block-end: 0.25rem;
}

.person-detail__links a,
.person-detail__stories a {
    color: #8126FF;
    text-decoration: underline;
    cursor: pointer;
}

/* ============================================================
   STORIES INDEX
   ============================================================ */

.stories-index {
    background-color: #EF4A4A;
    padding: var(--space-h) var(--gutter-h);
}

.stories-index__grid {
    margin-block-start: var(--gutter-h);
}

.stories-index__pagination {
    margin-block-start: var(--space-h);
}

/* Featured story — full-width horizontal card */
.story-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #ffffff;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-height: 28rem;
}

.story-featured__cover {
    overflow: hidden;
}

.story-featured__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.story-featured:hover .story-featured__cover img {
    transform: scale(1.03);
}

.story-featured__body {
    padding: var(--space-h) var(--gutter-h);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.story-featured__title {
    font-size: clamp(1.6rem, 3vw, var(--text-h4));
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #111111;
    margin-block: 0;
}

.story-featured:hover .story-featured__title {
    text-decoration: underline;
}

/* ============================================================
   STORY DETAIL
   ============================================================ */

/* Full-bleed cover above the red header */
.story-cover {
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    display: block;
}

.story-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Red header for story detail */
.story-hero {
    padding-block-end: var(--space-h);
}

.story-hero__title {
    font-size: clamp(2rem, 5vw, var(--text-h3));
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-block: var(--space-q) var(--space-q);
    max-width: 40ch;
}

.story-hero__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.story-hero__author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.15s;
}

.story-hero__author:hover {
    color: #ffffff;
    text-decoration: underline;
}

.story-hero__author img {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.4);
}

.story-hero__meta time {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Prose body */
.story-body {
    background-color: var(--color-sand);
    padding: var(--space-h) var(--gutter-h);
    display: flex;
    justify-content: center;
}

.story-body__prose {
    width: 100%;
    max-width: 68ch;
}

/* Prose typography */
.prose {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #111111;
}

.prose p {
    margin-block-end: 1.25em;
}

.prose h2 {
    font-size: var(--text-h4);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #111111;
    margin-block: 1.75em 0.5em;
}

.prose h3 {
    font-size: var(--text-h5);
    font-weight: 500;
    color: #111111;
    margin-block: 1.5em 0.4em;
}

.prose strong {
    font-weight: 600;
}

.prose em {
    font-style: italic;
    color: #444444;
}

.prose a {
    color: #EF4A4A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: #c43232;
}

.prose blockquote {
    border-left: 4px solid #EF4A4A;
    margin: 1.75em 0;
    padding: 0.75em 1.5em;
    background-color: rgba(239, 74, 74, 0.06);
    border-radius: 0 4px 4px 0;
}

.prose blockquote p {
    color: #333333;
    font-style: italic;
    margin-block-end: 0;
}

.prose ul,
.prose ol {
    margin-block-end: 1.25em;
    padding-inline-start: 1.5em;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
    margin-block-end: 0.4em;
}

.prose img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-block: 1.5em;
    border-radius: 2px;
}

.prose hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.12);
    margin-block: 2em;
}

.prose code {
    font-family: ui-monospace, monospace;
    font-size: 0.9em;
    background-color: rgba(0,0,0,0.06);
    padding: 0.1em 0.35em;
    border-radius: 3px;
}

.prose pre {
    background-color: #1e1e1e;
    color: #f0f0f0;
    padding: 1.25em 1.5em;
    overflow-x: auto;
    border-radius: 4px;
    margin-block-end: 1.25em;
}

.prose pre code {
    background: none;
    padding: 0;
    font-size: 0.875rem;
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */

/* Hide toggle on desktop */
.site-header__menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    /* Show the "Menu" button */
    .site-header__menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 0;
        font-family: var(--font-sans);
        font-size: 1.75rem;
        font-weight: 500;
        color: #111111;
        cursor: pointer;
    }

    .site-header__menu-toggle:hover {
        color: var(--color-pink);
    }

    /* Nav hidden by default on mobile */
    .site-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--gutter-h);
        padding: var(--gutter-h);
        z-index: 100;
    }

    /* Nav visible when open */
    .site-header__nav.is-open {
        display: flex;
    }

    /* Header needs position context */
    .site-header {
        position: relative;
    }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
    position: relative;
    background-color: #044B33;
    min-height: calc(100vh - var(--module-h)); /* fill viewport minus header */
    padding: var(--space-h) var(--gutter-h);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.contact-page__shape {
    position: absolute;
    bottom: -5%;
    right: -5%;
    height: 80%;
    width: auto;
    pointer-events: none;
    user-select: none;
}

.contact-page__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-h);
    height: 100%;
    flex: 1;
}

.contact-page__heading {
    color: #ffffff;
    font-size: clamp(5rem, 18vw, 18rem);
    line-height: 0.85;
    margin-block: 0;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
}

.contact-block__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-block: 0 0.75rem;
}

.contact-block__address {
    font-style: normal;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-block__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-block__list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
}

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

/* ============================================================
   SUBMISSION FORM
   ============================================================ */

.submission-form-section {
    background-color: var(--color-sand);
    padding: var(--space-h) var(--gutter-h);
}

.submission-form__errors {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #900;
    padding: 1rem 1.25rem;
    margin-block-end: var(--space-q);
    font-size: 0.9rem;
}

.submission-form__errors ul {
    list-style: disc;
    padding-inline-start: 1.25rem;
}

.submission-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 52rem;
}

.submission-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.submission-form__field--full {
    grid-column: 1 / -1;
}

.submission-form__label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #444;
}

.submission-form__required {
    color: #8126FF;
}

.submission-form__input {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #c0b9b0;
    background-color: #ffffff;
    color: #111;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.submission-form__input:focus {
    border-color: #8126FF;
}

.submission-form__textarea {
    resize: vertical;
    min-height: 7rem;
}

/* Photo upload */
.submission-form__photo-upload {
    background-color: #ffffff;
    border: 1px solid #c0b9b0;
    min-height: 14rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.submission-form__file-input {
    display: none;
}

.submission-form__photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: #888;
    font-size: 0.9375rem;
    pointer-events: none;
}

.submission-form__photo-hint {
    font-size: 0.8125rem;
    color: #aaa;
}

.submission-form__cropper-wrap {
    width: 100%;
    max-height: 22rem;
    overflow: hidden;
}

.submission-form__cropper-wrap img {
    display: block;
    max-width: 100%;
}

.submission-form__crop-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e0d9d0;
}

.submission-form__crop-preview-wrap {
    width: 6rem;
    height: 6rem;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #c0b9b0;
}

.submission-form__crop-preview {
    width: 6rem;
    height: 6rem;
    overflow: hidden;
}

.submission-form__crop-done {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
}

.submission-form__crop-result {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #c0b9b0;
}

.submission-form__crop-result img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Buttons */
.submission-form__btn {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    border: none;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.submission-form__btn--primary {
    background-color: #8126FF;
    color: #ffffff;
}

.submission-form__btn--primary:hover {
    background-color: #6b1fdd;
}

.submission-form__btn--secondary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.submission-form__btn--secondary:hover {
    background-color: #333333;
}

.submission-form__btn--ghost {
    background-color: transparent;
    color: #8126FF;
    border: 1px solid #8126FF;
}

.submission-form__btn--ghost:hover {
    background-color: #8126FF;
    color: #ffffff;
}

/* Tags */
.submission-form__tags-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.submission-form__tag-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.submission-form__tag-suggestion {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border: 1px solid #c0b9b0;
    background: #fff;
    cursor: pointer;
    color: #444;
}

.submission-form__tag-suggestion.is-selected {
    background-color: #8126FF;
    color: #ffffff;
    border-color: #8126FF;
}

.submission-form__selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    min-height: 1.5rem;
}

.submission-form__tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background-color: #8126FF;
    color: #ffffff;
    padding: 0.2rem 0.5rem;
}

.submission-form__tag-remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
}

/* Links */
.submission-form__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-block-end: 0.5rem;
}

.submission-form__link-row {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 0.5rem;
    align-items: center;
}

.submission-form__link-remove {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}

.submission-form__link-remove:hover {
    color: #900;
}

.submission-form__actions {
    padding-block-start: 0.5rem;
}

/* Success page */
.submission-success {
    background-color: var(--color-sand);
    padding: var(--space-h) var(--gutter-h);
    display: flex;
    flex-direction: column;
    gap: var(--space-q);
    max-width: 36rem;
}

.submission-success__message {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #444;
}

/* ============================================================
   CLUBS — SHARED COLOUR
   ============================================================ */

:root {
    --color-clubs: #E751A7;
}

/* ============================================================
   3D DISCO BALL
   ============================================================ */

/* Outer wrapper: hangs from top-centre of the hero */
.disco-hang-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

/* Thin cord */
.disco-cord-line {
    width: 2px;
    height: 3rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0.15));
    flex-shrink: 0;
}

/* Sphere container — perspective needed for 3D tiles */
#discoBall {
    width: 200px;
    height: 200px;
    position: relative;
    perspective: 600px;
    flex-shrink: 0;
}

/* Inner rotating sphere */
#discoBallMiddle {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: discoBallSpin 8s linear infinite;
}

/* Each mirror tile */
.square {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    background: #d0d0d0;
    border: 1px solid rgba(0,0,0,0.25);
    animation: reflect 2s linear infinite normal none;
    backface-visibility: visible;
}

/* Each tile independently flashes a highlight — staggered by animation-delay */
@keyframes reflect {
    0%   { background: #a0a0a0; }
    10%  { background: #ffffff; box-shadow: 0 0 8px 2px rgba(255,255,255,0.9); }
    20%  { background: #b8b8b8; }
    40%  { background: #e8e8e8; box-shadow: 0 0 4px 1px rgba(255,220,255,0.5); }
    60%  { background: #909090; }
    80%  { background: #cccccc; }
    100% { background: #a0a0a0; }
}

/* Whole-ball slow rotation */
@keyframes discoBallSpin {
    from { transform: rotateY(0deg);   }
    to   { transform: rotateY(360deg); }
}

/* ============================================================
   CLUBS HERO (index page)
   ============================================================ */

.clubs-hero {
    position: relative;
    background-color: var(--color-clubs);
    padding: var(--space-h) var(--gutter-h) var(--space-q);
    overflow: hidden;
    /* extra top padding so the cord+ball have room (200px ball + 3rem cord) */
    padding-block-start: calc(var(--space-h) + 16rem);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.clubs-hero__heading {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: clamp(5rem, 18vw, 18rem);
    line-height: 0.85;
    margin-block: 0;
}

/* CTA button in the clubs hero */
.clubs-hero__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-block-start: var(--space-q);
    background-color: #ffffff;
    color: var(--color-clubs);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.15s, color 0.15s;
}

.clubs-hero__cta:hover {
    background-color: #111111;
    color: #ffffff;
}

.clubs-hero__cta svg {
    width: 1.1em;
    height: 1.1em;
    stroke-width: 2.5;
    flex-shrink: 0;
}

/* ============================================================
   CLUBS INDEX (list below the hero)
   ============================================================ */

.clubs-index {
    background-color: var(--color-clubs);
    padding: var(--space-h) var(--gutter-h);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter-h);
    align-items: start;
}

@media (max-width: 900px) {
    .clubs-index {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.clubs-index__empty {
    font-size: 1.125rem;
    color: #ffffff;
    grid-column: 1 / -1;
}

/* Club card — white tile on the pink background */
.club-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #ffffff;
    text-decoration: none;
    color: #111111;
    padding: var(--space-q) var(--gutter-h);
    transition: background-color 0.15s;
}

.club-card:hover {
    background-color: #f5f0f8;
}

/* Top section: title + chips */
.club-card__top {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.club-card__title {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #111111;
    margin-block: 0;
}

.club-card:hover .club-card__title {
    color: var(--color-clubs);
}

/* Small solid-colour meta chips for time + location */
.club-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.club-card__chip {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background-color: var(--color-clubs);
    color: #ffffff;
    padding: 0.2rem 0.5rem;
}

/* Description */
.club-card__desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #444444;
    margin-block: 0;
    flex: 1;
}

/* Contact person row at bottom of card */
.club-card__contact {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-block-start: auto;
    padding-block-start: 0.75rem;
    border-top: 1px solid #e8e0f0;
}

.club-card__contact-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border: 2px solid var(--color-clubs);
}

.club-card__contact-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-clubs);
}

/* ============================================================
   CLUB DETAIL (show page)
   ============================================================ */

.club-hero {
    position: relative;
    background-color: var(--color-clubs);
    padding: var(--space-h) var(--gutter-h) var(--space-q);
    overflow: hidden;
    /* top padding to give the disco ball room (200px ball + 3rem cord) */
    padding-block-start: calc(var(--space-h) + 16rem);
}

.club-hero__shape {
    position: absolute;
    right: -4rem;
    top: 50%;
    transform: translateY(-50%);
    height: 130%;
    width: auto;
    mix-blend-mode: multiply;
    pointer-events: none;
    user-select: none;
}

.club-hero__top {
    display: flex;
    align-items: center;
    margin-block-end: var(--space-q);
    position: relative;
    z-index: 1;
}

.club-hero__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-q);
    position: relative;
    z-index: 1;
}

.club-hero__title {
    font-size: clamp(3rem, 8vw, var(--text-h2));
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
    margin-block: 0;
    max-width: 20ch;
}

.club-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    align-items: center;
}

.club-hero__meta-item {
    font-size: 1rem;
    color: #ffffff;
}

/* Detail body — also clubs pink, not sand */
.club-detail {
    background-color: var(--color-sand);
    padding: var(--space-h) var(--gutter-h);
    display: flex;
    flex-direction: column;
    gap: var(--space-q);
    max-width: 52rem;
}

.club-detail--pink {
    background-color: var(--color-clubs);
}

/* On pink background, override prose & label colours */
.club-detail--pink .person-detail__label {
    color: #f5c2df;
}

.club-detail--pink .prose {
    color: #ffffff;
}

.club-detail--pink .prose a {
    color: #ffffff;
    text-decoration-color: #f5c2df;
}

.club-detail--pink .prose blockquote {
    border-left-color: #f5c2df;
    background-color: #c9348e;
}

.club-detail--pink .prose blockquote p {
    color: #ffffff;
}

.club-detail__section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Contact person link */
.club-detail__contact {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ffffff;
}

.club-detail__contact:hover .club-detail__contact-name {
    text-decoration: underline;
    color: #f5c2df;
}

.club-detail__contact-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border: 2px solid #ffffff;
}

.club-detail__contact-name {
    font-size: 1.125rem;
    font-weight: 500;
}

/* ============================================================
   START-A-CLUB PAGE
   ============================================================ */

.club-manifesto-hero {
    background-color: var(--color-clubs);
    padding: var(--space-h) var(--gutter-h);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 100%;
}

.club-manifesto-hero > * {
    max-width: 52rem;
    margin-inline: auto;
    width: 100%;
}

.club-manifesto-hero__label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f5c2df;
    margin-block: 0;
}

.club-manifesto-hero__heading {
    font-size: clamp(3rem, 8vw, var(--text-h2));
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #ffffff;
    margin-block: 0;
}

.club-manifesto-hero__intro {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #ffffff;
    margin-block: 0;
    max-width: 60ch;
}

.club-manifesto-body {
    background-color: var(--color-sand);
    padding: var(--space-h) var(--gutter-h);
    display: flex;
    flex-direction: column;
    gap: var(--space-h);
    max-width: 100%;
}

.club-manifesto-body > * {
    max-width: 52rem;
    margin-inline: auto;
    width: 100%;
}

.club-manifesto-section__heading {
    font-size: clamp(1.5rem, 3vw, var(--text-h3));
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #111111;
    margin-block: 0 1rem;
}

.club-manifesto-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    margin-block: 0;
}

/* Four principles in a 2-col grid */
.club-manifesto-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gutter-h);
}

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

.club-manifesto-principle {
    background-color: #ffffff;
    padding: var(--space-q) var(--gutter-h);
    border-top: 4px solid var(--color-clubs);
}

.club-manifesto-principle__heading {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-clubs);
    margin-block: 0 0.75rem;
}

.club-manifesto-principle p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #333333;
    margin-block: 0;
}

/* Checklist */
.club-manifesto-checklist {
    list-style: none;
    padding: 0;
    margin-block: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.club-manifesto-checklist li {
    font-size: 1rem;
    line-height: 1.5;
    color: #333333;
    padding-inline-start: 1.5rem;
    position: relative;
}

.club-manifesto-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.6rem;
    height: 0.6rem;
    background-color: var(--color-clubs);
}

/* Get listed CTA block */
.club-manifesto-cta {
    background-color: #ffffff;
    padding: var(--space-q) var(--gutter-h);
    border-top: 4px solid var(--color-clubs);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.club-manifesto-cta__heading {
    font-size: clamp(1.5rem, 3vw, var(--text-h3));
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #111111;
    margin-block: 0;
}

.club-manifesto-cta__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-block: 0;
}

.club-manifesto-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.club-manifesto-cta__btn {
    display: inline-block;
    background-color: var(--color-clubs);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    transition: background-color 0.15s;
}

.club-manifesto-cta__btn:hover {
    background-color: #111111;
}

.club-manifesto-cta__note {
    font-size: 0.875rem;
    color: #666666;
    margin-block: 0;
}

/* ============================================================
   MOBILE — shared breakpoint ≤ 640px
   ============================================================ */
@media (max-width: 640px) {

    /* ── Reduce spacing tokens so all sections get tighter padding ── */
    :root {
        --module:   3.5rem;
        --module-h: calc(var(--module) * 1.414);
    }

    /* ── Header: restore fixed padding regardless of token changes ── */
    .site-header {
        padding: 0 1.25rem;
        height: 4rem;
    }

    .site-header__nav {
        padding: 1.25rem;
    }

    .site-header__logo img {
        height: 3rem;
    }

    /* ── Intro shape: push behind text ── */
    .intro__shape {
        z-index: 0;
    }

    /* ── Shapes: shrink decorative images ── */
    .intro__shape {
        height: 55%;
    }

    .people-preview__shape {
        height: 60%;
    }

    .contact-page__shape {
        height: 40%;
    }

    /* ── Intro: CMD LWD heading ── */
    .intro h1 {
        font-size: clamp(4rem, 22vw, 8rem);
    }

    /* ── People preview: PEOPLE heading ── */
    .people-preview__heading {
        font-size: clamp(3rem, 18vw, 6rem);
    }

    /* ── Stories preview heading ── */
    .stories-preview__heading {
        font-size: clamp(3rem, 18vw, 6rem);
    }

    /* ── Stories preview: 1 column ── */
    .stories-preview__grid {
        grid-template-columns: 1fr;
    }

    /* ── Video section: stack vertically, smaller quote ── */
    .video-section {
        grid-template-columns: 1fr;
    }

    .video-section__statement {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .video-section__embed {
        width: 100%;
    }

    /* ── Footer: stack to 1 column ── */
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-q);
    }

    /* ── People page: filters stack vertically, search full width ── */
    .people-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .people-filters__search {
        min-width: 0;
        width: 100%;
    }

    .people-filters__tags {
        flex-wrap: wrap;
        padding-block-end: 0.25rem;
    }

    /* Tag toggle button */
    .people-filters__tags-toggle {
        display: flex;
        align-items: center;
        font-family: var(--font-sans);
        font-size: 0.9375rem;
        font-weight: 600;
        color: #111111;
        background-color: transparent;
        border: 1px solid #c0b9b0;
        padding: 0.5rem 1rem;
        cursor: pointer;
        text-align: left;
        width: 100%;
    }

    .people-filters__tags-toggle[aria-expanded="true"] {
        border-color: #8126FF;
        color: #8126FF;
    }

    /* Tags drawer: hidden by default on mobile, shown when toggle is expanded */
    .people-filters__tags {
        display: none;
    }

    .people-filters__tags.is-open {
        display: flex;
    }

    /* ── People grid: 1 column ── */
    .people-index__grid {
        grid-template-columns: 1fr;
    }

    /* ── Stories index: 1 column, featured stacks ── */
    .story-featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .story-featured__cover {
        aspect-ratio: 16 / 9;
    }

    /* ── Contact page: 1 column ── */
    .contact-page__grid {
        grid-template-columns: 1fr;
        gap: var(--space-q);
    }

    /* ── Person hero: stack avatar + name vertically ── */
    .person-hero__shape {
        display: none;
    }

    .person-hero__body {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .person-hero__avatar {
        width: 6rem;
        height: 6rem;
    }

    .person-hero__name {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}
