/* ============================================================
   West End Rowing Club — website styles
   Implements the WERC design system (claude.ai/design project
   "West End Website Redesign"): tokens, base layer, components.
   ============================================================ */

/* --- Fonts (substitution: club has no published brand typeface) --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Spectral:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ============================ Tokens ============================ */
:root {
  /* Core brand */
  --werc-black: #000000;
  --werc-ink: #141414;
  --werc-white: #ffffff;

  /* Bullseye red (on the oars since 1951) */
  --werc-red: #c8102e;
  --werc-red-dark: #9c0b23;
  --werc-red-tint: #f7dbe0;

  /* Harbour teal (Whau / Cox's Bay water) */
  --werc-harbour: #1c6e7e;
  --werc-harbour-dark: #12505c;
  --werc-harbour-tint: #dcebed;

  /* Warm sand / heritage paper */
  --werc-sand: #e8e0d0;
  --werc-paper: #f7f5f0;

  /* Greyscale ramp */
  --grey-950: #141414; --grey-900: #1e1e1e; --grey-800: #2c2c2c;
  --grey-700: #444444; --grey-600: #5f5f5f; --grey-500: #7d7d7d;
  --grey-400: #a0a0a0; --grey-300: #c9c9c9; --grey-200: #e4e2dd;
  --grey-100: #efeee9; --grey-50: #f7f5f0;

  /* Semantic */
  --color-bg: var(--werc-white);
  --color-bg-paper: var(--werc-paper);
  --color-surface-dark: var(--werc-ink);
  --text-primary: var(--werc-ink);
  --text-secondary: var(--grey-600);
  --text-muted: var(--grey-500);
  --text-inverse: var(--werc-white);
  --text-inverse-muted: rgba(255,255,255,0.72);
  --border-color: var(--grey-200);
  --border-strong: var(--werc-ink);
  --accent: var(--werc-red);
  --accent-hover: var(--werc-red-dark);
  --link: var(--werc-ink);
  --link-hover: var(--werc-red);
  --focus-ring: var(--werc-harbour);

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;
  --font-serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --fs-display: 76px; --fs-h1: 52px; --fs-h2: 38px; --fs-h3: 28px;
  --fs-h4: 22px; --fs-lead: 20px; --fs-body: 17px; --fs-sm: 15px;
  --fs-xs: 13px; --fs-eyebrow: 13px;
  --lh-tight: 1.02; --lh-heading: 1.1; --lh-snug: 1.35; --lh-body: 1.6;
  --ls-display: -0.01em; --ls-tight: -0.005em; --ls-eyebrow: 0.18em; --ls-caps: 0.06em;

  /* Spacing / radii / shadows */
  --radius-sm: 2px; --radius-md: 4px; --radius-lg: 8px;
  --shadow-md: 0 4px 14px rgba(20,20,20,0.10);
  --shadow-lg: 0 12px 34px rgba(20,20,20,0.14);
  --container-max: 1120px;
  --container-narrow: 760px;

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 120ms; --dur-base: 200ms;

  /* Signature sash geometry */
  --sash-angle: -22deg; --sash-stripe: 14px; --sash-gap: 12px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
  margin: 0 0 16px;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 16px; text-wrap: pretty; }
img { max-width: 100%; }

a { color: var(--link); text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
a:hover { color: var(--link-hover); }
:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--werc-harbour-tint), 0 0 0 4px var(--focus-ring); }

strong { font-weight: 600; }

/* Wide-tracked uppercase kicker */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--muted { color: var(--text-inverse-muted); }

.serif { font-family: var(--font-serif); }

/* Signature double diagonal sash */
.sash {
  --sash-color: var(--werc-ink);
  height: 14px;
  background-image: repeating-linear-gradient(
    var(--sash-angle),
    var(--sash-color) 0,
    var(--sash-color) var(--sash-stripe),
    transparent var(--sash-stripe),
    transparent calc(var(--sash-stripe) + var(--sash-gap)),
    var(--sash-color) calc(var(--sash-stripe) + var(--sash-gap)),
    var(--sash-color) calc(var(--sash-stripe) * 2 + var(--sash-gap)),
    transparent calc(var(--sash-stripe) * 2 + var(--sash-gap)),
    transparent calc(var(--sash-stripe) * 2 + var(--sash-gap) * 6)
  );
}
.sash--white { --sash-color: #ffffff; }
.sash--red { --sash-color: var(--werc-red); height: 10px; }

/* Small sash rule (SectionHeading underline / era rules) */
.sash-rule {
  height: 6px; width: 84px; margin-top: 14px;
  background-image: repeating-linear-gradient(-22deg,
    var(--werc-ink) 0, var(--werc-ink) 6px, transparent 6px, transparent 11px,
    var(--werc-ink) 11px, var(--werc-ink) 17px, transparent 17px, transparent 40px);
}
.sash-rule--flex { flex: 1; width: auto; margin-top: 0; }

/* ============================ Layout ============================ */
.container { max-width: var(--container-max); margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.section { padding-top: 72px; padding-bottom: 72px; }
.band-dark { background: var(--color-surface-dark); color: #fff; }
.band-dark h1, .band-dark h2, .band-dark h3 { color: #fff; }
.band-paper { background: var(--color-bg-paper); border-top: 1px solid var(--border-color); }

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { height: 36px; padding: 0 16px; font-size: 12px; }
.btn--md, .btn { height: 48px; padding: 0 24px; font-size: 13.5px; }
.btn--lg { height: 56px; padding: 0 30px; font-size: 15px; }

.btn--primary { background: var(--werc-ink); color: #fff; }
.btn--primary:hover { background: var(--werc-red); color: #fff; }
.btn--accent { background: var(--werc-red); color: #fff; }
.btn--accent:hover { background: var(--werc-red-dark); color: #fff; }
.btn--secondary { background: transparent; color: var(--werc-ink); border-color: var(--werc-ink); }
.btn--secondary:hover { background: var(--werc-ink); color: #fff; }
.btn--ghost { background: transparent; color: var(--werc-ink); }
.btn--ghost:hover { color: var(--werc-red); }
.btn--inverse { background: transparent; color: #fff; border-color: #fff; }
.btn--inverse:hover { background: #fff; color: var(--werc-ink); }

/* ============================ Badge ============================ */
.badge {
  display: inline-flex; align-items: center; height: 24px; padding: 0 10px;
  font-family: var(--font-display); font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase; border-radius: var(--radius-sm);
}
.badge--accent { background: var(--werc-red); color: #fff; }
.badge--ink { background: var(--werc-ink); color: #fff; }
.badge--outline { border: 2px solid var(--werc-ink); color: var(--werc-ink); }
.badge--harbour { background: var(--werc-harbour); color: #fff; }

/* ======================== Section heading ======================== */
.section-heading .eyebrow { display: block; margin-bottom: 10px; }
.section-heading h2 { margin: 0; font-weight: 700; }
.section-heading .lede {
  font-family: var(--font-body); font-size: 16.5px; color: var(--text-secondary);
  max-width: 620px; margin: 16px 0 0;
}
.section-heading--on-dark h2 { color: #fff; }
.section-heading--on-dark .sash-rule {
  background-image: repeating-linear-gradient(-22deg,
    #fff 0, #fff 6px, transparent 6px, transparent 11px,
    #fff 11px, #fff 17px, transparent 17px, transparent 40px);
}

/* Split heading row (heading + "all X →" link) */
.heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.heading-row .more-link {
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; padding-bottom: 8px;
}

/* ============================ Event card ============================ */
.event-card {
  display: flex; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md);
  padding: 18px 22px; position: relative;
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
  color: var(--werc-ink);
}
a.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--werc-ink); }
.event-card--featured { border-left: 4px solid var(--werc-red); }
.event-card__chip {
  flex: none; width: 62px; height: 62px; border-radius: var(--radius-md);
  background: var(--werc-ink); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.event-card__chip .day { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1; }
.event-card__chip .month { font-family: var(--font-display); font-weight: 500; font-size: 11px; letter-spacing: 0.18em; margin-top: 2px; }
.event-card__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 18px; line-height: 1.15; }
.event-card__date { font-family: var(--font-body); font-size: 13.5px; color: var(--text-secondary); margin-top: 3px; }
.event-card__meta { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); margin-top: 1px; }
.event-card__flag {
  position: absolute; top: 12px; right: 14px;
  font-family: var(--font-display); font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--werc-red);
}
/* Keep the title clear of the absolutely-positioned flag */
.event-card--featured .event-card__title { padding-right: 72px; }

/* ============================ News card ============================ */
.news-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border-color); border-radius: var(--radius-md);
  overflow: hidden; position: relative; color: var(--werc-ink);
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
a.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--werc-ink); }
.news-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--grey-100); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-base) var(--ease-standard); }
a.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-card__date { font-family: var(--font-display); font-weight: 500; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.news-card__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 20px; line-height: 1.15; margin: 8px 0 8px; }
.news-card__excerpt { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.news-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--werc-red); color: #fff; padding: 3px 10px;
  font-family: var(--font-display); font-weight: 500; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; border-radius: var(--radius-sm);
}

/* ============================ Stat block ============================ */
.stat__value { font-family: var(--font-display); font-weight: 700; font-size: 46px; line-height: 1; color: var(--werc-ink); }
.stat__label { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
.stat--accent .stat__value { color: var(--werc-red); }
.stat--on-dark .stat__value { color: #fff; }
.stat--on-dark .stat__label { color: var(--text-inverse-muted); }

/* ============================ Quote ============================ */
.quote { position: relative; }
.quote__tick {
  height: 6px; width: 64px; margin-bottom: 18px;
  background-image: repeating-linear-gradient(-22deg,
    var(--werc-red) 0, var(--werc-red) 6px, transparent 6px, transparent 11px,
    var(--werc-red) 11px, var(--werc-red) 17px, transparent 17px, transparent 40px);
}
.quote__text { font-family: var(--font-serif); font-style: italic; font-size: 24px; line-height: 1.45; color: var(--werc-ink); margin: 0; }
.quote__author { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 18px; }
.quote__role { font-family: var(--font-display); font-weight: 500; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--werc-red); margin-top: 2px; }

/* ============================ Site nav ============================ */
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; min-height: 72px; background: var(--werc-ink); color: #fff;
  position: relative; z-index: 10;
}
.site-nav__brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.site-nav__brand:hover { color: #fff; }
.site-nav__brand img { height: 44px; }
.site-nav__name {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: 16px; letter-spacing: 0.04em; line-height: 1.05;
}
.site-nav__links {
  display: flex; align-items: center; gap: 26px;
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.site-nav__links a { color: rgba(255,255,255,0.75); padding: 4px 0; border-bottom: 2px solid transparent; }
.site-nav__links a:hover { color: #fff; }
.site-nav__links a.active { color: #fff; border-bottom-color: var(--werc-red); }
.site-nav__toggle { display: none; }
.site-nav__hamburger { display: none; }

/* ============================ Page hero ============================ */
.hero { position: relative; background: var(--werc-ink); color: #fff; overflow: hidden; }
.hero--harbour { background: var(--werc-harbour); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.hero__img--dim { opacity: 0.3; mix-blend-mode: luminosity; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,20,0.9) 0%, rgba(20,20,20,0.55) 65%, rgba(20,20,20,0.3) 100%); }
.hero--harbour .hero__scrim { background: linear-gradient(90deg, rgba(21,82,94,0.92) 0%, rgba(21,82,94,0.55) 65%, rgba(21,82,94,0.3) 100%); }
.hero__content { position: relative; max-width: var(--container-max); margin: 0 auto; padding: 76px 32px 84px; }
.hero h1 { font-weight: 700; font-size: 64px; line-height: 0.98; margin: 0; color: #fff; }
.hero h1.hero__title--display { font-size: 80px; letter-spacing: -0.01em; line-height: 0.96; }
.hero__lede { font-family: var(--font-serif); font-style: italic; font-size: 21px; color: rgba(255,255,255,0.88); max-width: 600px; margin: 20px 0 0; }
.hero .eyebrow { display: block; margin-bottom: 16px; }
.hero__sash { position: absolute; bottom: 0; left: 0; right: 0; }

/* ============================ Grids ============================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ============================ Cards ============================ */
.panel-card {
  background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 32px;
}
.panel-card--rail-ink { border-top: 4px solid var(--werc-ink); }
.panel-card--rail-red { border-top: 4px solid var(--werc-red); }
.panel-card--rail-harbour { border-top: 4px solid var(--werc-harbour); }

.person-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 26px; display: flex; gap: 20px; align-items: flex-start; }
.person-card__avatar {
  width: 60px; height: 60px; flex: none; border-radius: var(--radius-md);
  background: var(--werc-ink); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
}
.person-card h3 { font-size: 19px; margin: 0 0 2px; }
.person-card__role { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--werc-red); margin-bottom: 10px; }
.person-card p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

.coach-card { background: #fff; border: 1px solid var(--border-color); border-top: 4px solid var(--werc-red); border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; }
.coach-card--photo { padding: 0; overflow: hidden; }
.coach-card--photo .coach-card__body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.coach-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--grey-100); }
.coach-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; display: block; transition: transform var(--dur-base) var(--ease-standard); }
.coach-card--photo:hover .coach-card__media img { transform: scale(1.04); }
.person-card__photo { width: 72px; height: 72px; flex: none; border-radius: var(--radius-md); object-fit: cover; object-position: center 30%; border: 1px solid var(--border-color); }
.coach-card__avatar {
  width: 72px; height: 72px; border-radius: var(--radius-md);
  background: var(--werc-ink); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: 0.02em;
}
.coach-card h3 { font-size: 22px; margin: 18px 0 2px; }
.coach-card__role { font-family: var(--font-display); font-weight: 500; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--werc-red); margin-bottom: 12px; }
.coach-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 16px; flex: 1; }
.coach-card__email { font-family: var(--font-display); font-weight: 500; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; }

/* Featured split panel (Give it a Row / Beach sprints home) */
.feature-panel { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--werc-ink); }
.feature-panel__media { position: relative; overflow: hidden; min-height: 380px; }
.feature-panel__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }.feature-panel__body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.feature-panel__body--paper { background: var(--werc-paper); }

/* Checklist ("What you get") */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; font-size: 15px; line-height: 1.5; color: #3a3733; }
.checklist > div { display: flex; gap: 10px; }
.checklist > div > span { color: var(--werc-red); font-weight: 600; }

/* Timeline (History) */
.era-header { display: flex; align-items: center; gap: 18px; margin: 40px 0 18px; }
.era-header__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 30px; color: var(--werc-red); white-space: nowrap; }
.timeline-row { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--grey-100); }
.timeline-row__year { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--werc-ink); }
.timeline-row__text { font-size: 15.5px; line-height: 1.6; color: #3a3733; }

/* Archive table rows (Events past) */
.archive-row { display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: baseline; padding: 16px 4px; border-bottom: 1px solid var(--grey-100); }
.archive-row__date { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.archive-row__title { font-weight: 600; font-size: 15.5px; color: var(--werc-ink); }
.archive-row__where { font-size: 13.5px; color: var(--text-muted); }

/* Season regatta cards */
.season-card { background: #fff; border: 1px solid var(--border-color); border-left: 4px solid var(--werc-ink); border-radius: var(--radius-md); padding: 20px 22px; }
.season-card__when { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--werc-red); }
.season-card__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 18px; margin-top: 6px; }
.season-card__where { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }

/* Shop cards */
.product-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 26px; display: flex; flex-direction: column; gap: 6px; transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard); color: var(--werc-ink); }
a.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--werc-ink); }
.product-card__name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 17px; line-height: 1.2; }
.product-card__price { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--werc-red); }

/* Donor level cards */
.donor-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 24px; }
.donor-card__level { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 20px; }
.donor-card__amount { font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--werc-red); margin-top: 4px; }
.donor-card__note { font-size: 13.5px; color: var(--text-muted); margin-top: 10px; }
.donor-card--gold { border-top: 4px solid #b8860b; }
.donor-card--silver { border-top: 4px solid #8c8c8c; }
.donor-card--bronze { border-top: 4px solid #a0622d; }
.donor-card--friend { border-top: 4px solid var(--werc-ink); }

/* Doc list (Members resources) */
.doc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 16px 4px; border-bottom: 1px solid var(--grey-100); }
.doc-row__name { font-weight: 600; font-size: 15.5px; }
.doc-row__meta { font-size: 13px; color: var(--text-muted); }
.doc-row__link { font-family: var(--font-display); font-weight: 500; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--grey-100); padding: 6px 0; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 14px 4px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 17px;
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--werc-red); font-size: 20px; font-weight: 500; }
.faq-item[open] summary::after { content: '–'; }
.faq-item .answer { padding: 0 4px 18px; font-size: 15px; line-height: 1.65; color: var(--text-secondary); max-width: 720px; }

/* ============================ Article ============================ */
.article { max-width: var(--container-narrow); margin: 0 auto; padding: 56px 32px 72px; }
.article p { font-size: 16.5px; line-height: 1.7; color: #3a3733; }
.article h2 { font-size: 26px; margin: 36px 0 14px; }
.article .article-note { font-size: 14px; color: var(--text-muted); }
.article-meta { font-family: var(--font-display); font-weight: 500; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.award-row { display: grid; grid-template-columns: 300px 1fr; gap: 20px; padding: 11px 4px; border-bottom: 1px solid var(--grey-100); align-items: baseline; }
.award-row__trophy { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; letter-spacing: 0.04em; text-transform: uppercase; }
.award-row__winner { font-size: 15px; color: #3a3733; }
.award-row__winner strong { color: var(--werc-red); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border-color); border-radius: var(--radius-md); background: #fff; }
.results-table { border-collapse: collapse; width: 100%; min-width: 880px; font-size: 14px; }
.results-table th {
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; text-align: left;
  background: var(--werc-ink); color: #fff; padding: 12px 14px; white-space: nowrap;
}
.results-table td { padding: 11px 14px; border-bottom: 1px solid var(--grey-100); vertical-align: top; color: #3a3733; line-height: 1.45; }
.results-table tr:last-child td { border-bottom: none; }
.results-table td.num { font-family: var(--font-display); font-weight: 600; color: var(--werc-ink); white-space: nowrap; }
.results-table td.stat { font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.results-table tr.is-werc td { background: #fdf4f5; }
.results-table tr.is-werc td:first-child { box-shadow: inset 3px 0 0 var(--werc-red); }
.article-nav { display: flex; justify-content: space-between; gap: 24px; border-top: 2px solid var(--werc-ink); margin-top: 48px; padding-top: 18px; }
.article-nav a { font-family: var(--font-display); font-weight: 500; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; }
@media (max-width: 620px) {
  .award-row { grid-template-columns: 1fr; gap: 2px; }
}

/* ============================ Footer ============================ */
.site-footer { background: var(--werc-ink); color: #fff; }
.site-footer__grid { max-width: var(--container-max); margin: 0 auto; padding: 56px 32px 48px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; }
.site-footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.site-footer__brand img { height: 52px; }
.site-footer__name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 16px; line-height: 1.1; }
.site-footer__motto { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: rgba(255,255,255,0.8); }
.site-footer__sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; }
.site-footer__label { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.site-footer nav { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.site-footer nav a { color: rgba(255,255,255,0.85); }
.site-footer nav a:hover { color: #fff; }
.site-footer__address { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.85); }
.site-footer__social { display: flex; gap: 18px; margin-top: 16px; font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer__social a { color: rgba(255,255,255,0.75); }
.site-footer__social a:hover { color: #fff; }
.site-footer__legal { border-top: 1px solid rgba(255,255,255,0.14); }
.site-footer__legal-inner { max-width: var(--container-max); margin: 0 auto; padding: 20px 32px; display: flex; justify-content: space-between; gap: 24px; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; }

/* ============================ Responsive ============================ */
@media (max-width: 960px) {
  .hero h1, .hero h1.hero__title--display { font-size: 46px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .feature-panel { grid-template-columns: 1fr; }
  .feature-panel__media { min-height: 260px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }

  /* Collapsible nav */
  .site-nav { flex-wrap: wrap; padding: 14px 20px; }
  .site-nav__hamburger {
    display: block; cursor: pointer; color: #fff;
    font-family: var(--font-display); font-weight: 500; font-size: 13px;
    letter-spacing: 0.14em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.4); border-radius: var(--radius-sm); padding: 8px 14px;
  }
  .site-nav__links {
    display: none; width: 100%; flex-direction: column; align-items: flex-start;
    gap: 4px; padding: 18px 0 10px;
  }
  .site-nav__links a { padding: 10px 0; }
  .site-nav__toggle:checked ~ .site-nav__links { display: flex; }
}
@media (max-width: 620px) {
  h1 { font-size: 38px; }
  .hero h1, .hero h1.hero__title--display { font-size: 36px; }
  .hero__content { padding: 56px 24px 64px; }
  .container { padding-left: 24px; padding-right: 24px; }
  .grid-2, .grid-3, .grid-4, .checklist { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline-row { grid-template-columns: 90px 1fr; gap: 14px; }
  .archive-row { grid-template-columns: 110px 1fr; }
  .archive-row__where { display: none; }
  .heading-row { flex-direction: column; align-items: flex-start; }
}
