/* Red Auerbach International Basketball School — redabballschool.com
   Vendiloop sections site. Vanilla CSS, no frameworks, one family (Roboto).
   Palette = the school's own (Celtics green #007a33, gold #ba9653) on black,
   with white sections alternating as on the original site.
   The 12 --color-* names below are the platform's semantic roles: the editor's
   palette panel rewrites them in place. --color-secondary is the WHITE surface. */

:root {
  --color-primary: #007a33;
  --color-secondary: #ffffff;
  --color-accent: #ba9653;
  --color-background: #000000;
  --color-text: #f2f2f2;
  --color-surface: #ffffff;
  --color-surface-alt: #1a1a1a;
  --color-border: #6f6f6f;
  --color-text-muted: #c7c7c7;
  --color-primary-light: #e6f2ea;
  --color-primary-dark: #00612a;
  --color-accent-light: #f3ead8;
  --font-heading: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --max: 1160px;
  --nav-h: 76px;
  --track: 0.18em;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-background);
  padding-top: var(--nav-h);
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:hover { color: var(--color-accent); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
address { font-style: normal; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; letter-spacing: 0.04em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); text-transform: uppercase; letter-spacing: var(--track); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; }
.lead { font-size: 1.15rem; }
.small { font-size: 0.92rem; }
.muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.rule { width: 72px; height: 4px; background: var(--color-accent); border: 0; margin: 0 0 22px; }
.section-head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.section-head .rule { margin-left: auto; margin-right: auto; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 860px; }
.section { padding: 72px 0; }
.section--light { background: var(--color-secondary); color: var(--color-background); }
.section--light h1, .section--light h2, .section--light h3, .section--light h4 { color: var(--color-background); }
.section--light .muted { color: #555555; }
.section--light a:hover { color: var(--color-primary); }
.section--alt { background: var(--color-surface-alt); }
.section--tight { padding: 48px 0; }
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 48px; align-items: center; }
.split--rev { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
.mt-2 { margin-top: 16px; } .mt-4 { margin-top: 36px; } .mb-0 { margin-bottom: 0; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row--center { justify-content: center; }

/* ---------- Buttons (square, 1px outline, invert on hover — as the original) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  padding: 14px 28px;
  border-radius: 0;
  border: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:hover { background: var(--color-text); color: var(--color-background); }
.btn-primary { background: var(--color-primary); border-color: var(--color-primary); color: #ffffff; }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #ffffff; }
.section--light .btn { border-color: var(--color-background); color: var(--color-background); }
.section--light .btn:hover { background: var(--color-background); color: var(--color-secondary); }
.section--light .btn-primary { background: var(--color-primary); border-color: var(--color-primary); color: #ffffff; }
.section--light .btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #ffffff; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--color-background);
  border-bottom: 3px solid var(--color-accent);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--color-text); min-width: 0; }
.brand:hover { color: var(--color-text); }
.brand__seal { width: 54px; height: 54px; flex: 0 0 54px; }
.brand__text { font-weight: 700; text-transform: uppercase; line-height: 1.05; }
.brand__text strong { display: block; font-size: 1.05rem; letter-spacing: 0.08em; }
.brand__text span { display: block; font-size: 0.66rem; letter-spacing: 0.16em; color: var(--color-accent); }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
  padding: 8px 9px;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.is-active { color: var(--color-accent); }
.nav a.is-active { border-bottom-color: var(--color-accent); }
.nav .btn { margin-left: 10px; padding: 10px 16px; font-size: 13px; border-bottom-width: 1px; }
.nav .btn:hover { color: #ffffff; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--color-text); }
.nav-toggle svg { width: 30px; height: 30px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-menu { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }
@media (max-width: 1120px) {
  .brand__text strong { font-size: 0.95rem; }
  .nav a { padding: 8px 6px; font-size: 13.5px; }
}
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-background); border-bottom: 3px solid var(--color-accent);
    padding: 8px 12px 18px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--color-surface-alt); }
  .nav a.is-active { border-bottom-color: var(--color-surface-alt); }
  .nav .btn { margin: 14px 0 0; text-align: center; border: 1px solid var(--color-primary); }
  .brand__text span { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #ffffff;
  background: var(--color-background) center 35% / cover no-repeat;
}
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 160px; background: linear-gradient(to bottom, rgba(0,0,0,0), var(--color-background)); }
.hero .container { position: relative; z-index: 1; padding-top: 64px; padding-bottom: 96px; }
.hero__seal { width: 150px; height: 150px; margin: 0 auto 22px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6)); }
.hero h1 { color: #ffffff; margin-bottom: 4px; font-size: clamp(1.9rem, 5.2vw, 3.6rem); text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.hero h1 small { display: block; font-size: 0.55em; letter-spacing: 0.22em; color: var(--color-accent); margin-top: 6px; }
.hero__season {
  display: inline-block;
  margin: 18px 0 14px;
  padding: 10px 22px;
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  font-weight: 700; font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero__intro { max-width: 720px; margin: 0 auto 26px; font-size: 1.15rem; text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
.hero__follow { margin-top: 34px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.85rem; }
.hero__follow .social { justify-content: center; margin-top: 12px; }

/* ---------- Season (the ONE place dates & fees live) ---------- */
.season { background: var(--color-surface-alt); border-top: 4px solid var(--color-accent); border-bottom: 4px solid var(--color-accent); }
.season__headline { text-align: center; margin-bottom: 30px; }
.season__headline h2 { margin-bottom: 4px; }
.season__dates { font-weight: 700; font-size: clamp(1.4rem, 3.4vw, 2.1rem); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent); display: block; }
.season__where { font-size: 1.1rem; color: var(--color-text-muted); margin: 6px 0 0; }
.season__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.season__item { background: var(--color-background); border: 1px solid var(--color-border); padding: 18px 20px; }
.season__label { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 6px; }
.season__value { display: block; font-weight: 700; font-size: 1.35rem; line-height: 1.2; }
.season__note { margin: 6px 0 0; font-size: 0.9rem; color: var(--color-text-muted); }
.season__foot { margin: 22px 0 0; text-align: center; font-size: 0.95rem; color: var(--color-text-muted); }

/* ---------- Cards ---------- */
.card { background: var(--color-surface-alt); border: 1px solid var(--color-border); padding: 26px; display: block; text-decoration: none; color: inherit; }
a.card:hover { border-color: var(--color-accent); color: inherit; }
.card h3 { margin-bottom: 8px; }
.card .more { font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; color: var(--color-accent); }
.section--light .card { background: var(--color-secondary); border-color: #d6d6d6; }
.section--light a.card:hover { border-color: var(--color-primary); }
.figure { margin: 0; }
.figure img { width: 100%; }
.figure figcaption { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 8px; }
.section--light .figure figcaption { color: #555555; }
.figure--framed img { border: 1px solid var(--color-border); }

/* ---------- Page banner (inner pages) ---------- */
.banner { background: var(--color-background); padding: 56px 0 44px; border-bottom: 1px solid var(--color-surface-alt); text-align: center; }
.banner h1 { margin: 0; }
.banner p { margin: 10px auto 0; max-width: 720px; color: var(--color-text-muted); font-size: 1.1rem; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--color-accent); }
.timeline li { position: relative; padding: 0 0 26px 28px; }
.timeline li::before { content: ""; position: absolute; left: -8px; top: 8px; width: 14px; height: 14px; background: var(--color-accent); }
.timeline strong { display: block; font-size: 1.1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent); }
.timeline p { margin: 4px 0 0; }
.archive-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; align-items: start; }
.archive-grid a { display: block; }
.archive-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border: 1px solid var(--color-border); background: var(--color-surface-alt); }
.archive-grid a:hover img { border-color: var(--color-accent); }
.archive-grid img.is-landscape { aspect-ratio: 4 / 3; }

/* ---------- Staff ---------- */
.staff-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 44px; }
.staff-card { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 24px; align-items: start; }
.staff-card img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; object-position: center top; border: 4px solid var(--color-primary); background: #dddddd; }
.staff-card h3 { margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.staff-card .role { font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: var(--color-primary); margin-bottom: 10px; }
.staff-card p { font-size: 0.98rem; }
.staff-card ul { font-size: 0.98rem; }
.staff-teaser { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 14px; text-align: center; }
.staff-teaser a { text-decoration: none; color: inherit; font-size: 0.82rem; line-height: 1.3; }
.staff-teaser img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: center top; margin: 0 auto 8px; border: 3px solid var(--color-primary); background: #dddddd; }
.staff-teaser strong { display: block; }

/* ---------- Schedule ---------- */
.schedule { width: 100%; border-collapse: collapse; }
.schedule th, .schedule td { padding: 12px 18px; text-align: left; border-bottom: 1px solid #d6d6d6; }
.schedule th { background: var(--color-primary); color: #ffffff; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem; }
.schedule td:first-child { font-weight: 700; white-space: nowrap; width: 230px; }
.schedule tr:nth-child(even) td { background: #f4f4f4; }
.schedule tr.is-meal td { background: var(--color-accent-light); }

/* ---------- Forms ---------- */
.form { background: var(--color-secondary); border: 1px solid #d6d6d6; padding: 32px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.field .req { color: #b42318; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="number"],
.field select, .field textarea {
  width: 100%; font: inherit; padding: 12px 14px;
  border: 1px solid var(--color-border); border-radius: 0; background: #ffffff; color: var(--color-background);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: var(--color-primary); }
.field .hint { font-size: 0.85rem; color: #555555; margin: 4px 0 0; }
.choice { display: flex; flex-direction: column; gap: 8px; }
.choice label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; font-size: 1rem; cursor: pointer; }
.choice input { margin-top: 5px; accent-color: var(--color-primary); }
.hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.cf-turnstile { margin: 6px 0 14px; }
.ezeweb-form-success { padding: 18px 20px; background: var(--color-primary-light); color: var(--color-primary-dark); border: 1px solid var(--color-primary); font-weight: 500; }
.form--dark { background: var(--color-surface-alt); border-color: var(--color-border); }
.form--dark .field label { color: var(--color-text); }
.form--dark .field input, .form--dark .field textarea { background: var(--color-background); color: var(--color-text); border-color: var(--color-border); }
.form--dark .field .hint { color: var(--color-text-muted); }

/* ---------- Notices / terms ---------- */
.notice { border-left: 6px solid var(--color-accent); background: var(--color-accent-light); padding: 18px 22px; margin: 0 0 20px; }
.notice--red { border-color: #b42318; background: #fdecea; }
.notice--green { border-color: var(--color-primary); background: var(--color-primary-light); }
.notice h3 { margin-bottom: 6px; }
.terms p strong { color: var(--color-primary-dark); }
.linen-list { columns: 2; column-gap: 32px; }
.linen-list li { break-inside: avoid; }

/* ---------- Contact ---------- */
.contact-block { font-size: 1.05rem; }
.contact-block dt { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-accent); margin-top: 14px; }
.contact-block dd { margin: 2px 0 0; }
.contact-block a { text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }

/* ---------- Social icons (inline SVG) ---------- */
.social { display: flex; gap: 12px; flex-wrap: wrap; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--color-text); color: var(--color-text); transition: background 0.15s, color 0.15s; }
.social a:hover { background: var(--color-text); color: var(--color-background); }
.social svg { width: 20px; height: 20px; fill: currentColor; }
.section--light .social a { border-color: var(--color-background); color: var(--color-background); }
.section--light .social a:hover { background: var(--color-background); color: var(--color-secondary); }

/* ---------- CTA band ---------- */
.cta { background: var(--color-primary); color: #ffffff; text-align: center; padding: 60px 0; }
.cta h2 { color: #ffffff; margin-bottom: 8px; }
.cta p { max-width: 640px; margin: 0 auto 24px; }
.cta .btn { border-color: #ffffff; color: #ffffff; }
.cta .btn:hover { background: #ffffff; color: var(--color-primary); }

/* ---------- Gallery / press / testimonials / video ---------- */
.gallery-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px; }
.gallery-nav a { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 8px 14px; border: 1px solid var(--color-border); }
.gallery-nav a:hover { border-color: var(--color-accent); }
.photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.photo-grid a { display: block; overflow: hidden; background: #e6e6e6; }
.photo-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.3s; }
.photo-grid a:hover img { transform: scale(1.03); }
.press-list { display: grid; gap: 40px; }
.press-item { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 32px; align-items: start; }
.press-item .scan { border: 1px solid #d6d6d6; }
.press-item .scan a { display: block; }
.press-item .scan span { display: block; font-size: 0.8rem; color: #555555; padding: 8px 10px; border-top: 1px solid #d6d6d6; }
.press-item h3 { margin-bottom: 4px; }
.press-item .source { font-size: 0.85rem; color: #555555; margin-bottom: 12px; }
.press-item .body p { font-size: 0.98rem; }
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.quote { background: var(--color-surface-alt); border: 1px solid var(--color-border); border-top: 4px solid var(--color-accent); padding: 26px 28px; margin: 0; display: flex; flex-direction: column; }
.quote p { font-size: 1.02rem; }
.quote p:last-of-type { margin-bottom: 0; }
.quote p:first-of-type::before { content: "\201C"; color: var(--color-accent); font-size: 2.4rem; line-height: 0; vertical-align: -0.35em; margin-right: 4px; font-weight: 700; }
.quote footer { margin-top: auto; padding-top: 16px; font-size: 0.9rem; }
.quote footer strong { display: block; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; }
.quote .as-received { margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--color-text-muted); text-decoration: none; }
.quote .as-received img { width: 44px; height: 44px; object-fit: cover; object-position: top left; border: 1px solid var(--color-border); }
/* testimonials on a white section: white cards, dark text */
.section--light .quote { background: var(--color-secondary); border-color: #d6d6d6; color: var(--color-background); }
.section--light .quote footer { color: #555555; }
.section--light .quote .as-received { color: #555555; }
.section--light .quote .as-received img { border-color: #d6d6d6; }
/* EXTRA-gallery.css — rules added by the gallery section builder (not in style.css) */

/* Press list sits on a dark section; style.css styles .press-item for a light background */
.section:not(.section--light) .press-item .scan { border-color: var(--color-border); }
.section:not(.section--light) .press-item .scan span,
.section:not(.section--light) .press-item .source { color: var(--color-text-muted); border-color: var(--color-border); }

/* Multi-page scans stacked inside one .scan column */
.press-item .scan a + a { border-top: 1px solid #d6d6d6; }
.section:not(.section--light) .press-item .scan a + a { border-top-color: var(--color-border); }
.press-item .scan img { width: 100%; }

/* Sub-heads and photo captions inside transcribed article text */
.press-item .body h4 { margin: 20px 0 6px; }
.press-item .body .caption { font-size: 0.85rem; font-style: italic; color: var(--color-text-muted); }
.section--light .press-item .body .caption { color: #555555; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.video-card video { width: 100%; aspect-ratio: 16 / 9; background: #000000; object-fit: cover; border: 1px solid var(--color-border); }
.video-card--portrait video { aspect-ratio: 9 / 16; max-height: 560px; object-fit: contain; }
.video-card h3 { margin: 12px 0 2px; }
.video-card p { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }

/* ---------- Sponsors ---------- */
.sponsor-logos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; align-items: center; }
.sponsor-logos img { max-height: 220px; width: auto; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-background); color: var(--color-text-muted); padding: 56px 0 24px; border-top: 4px solid var(--color-accent); }
.site-footer h4 { color: var(--color-text); margin-bottom: 14px; }
.site-footer a { color: var(--color-text); text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr)); gap: 40px; }
.footer__brand img { width: 110px; height: 110px; margin-bottom: 14px; }
.footer__brand p { font-size: 0.95rem; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 8px; }
.footer__compliance { border-top: 1px solid var(--color-surface-alt); margin-top: 40px; padding-top: 22px; font-size: 0.9rem; max-width: 900px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 18px; font-size: 0.85rem; }

/* ---------- How-to page ---------- */
.howto h2 { margin-top: 40px; font-size: 1.3rem; letter-spacing: 0.1em; border-bottom: 2px solid var(--color-primary); padding-bottom: 6px; }
.howto ol li, .howto ul li { margin-bottom: 8px; }
.howto code { background: #f4f4f4; border: 1px solid #d6d6d6; padding: 1px 6px; font-size: 0.92em; }

/* ---------- Sponsors logos ---------- */
/* EXTRA-core.css — rules added by the section builders (not in style.css) */

/* Sponsor logos inside a .split: keep small source logos at native size, centered */
.figure--logo { max-width: 320px; margin: 0 auto; }

/* ---------- Blog (platform-generated pages link this file; their inline styles come later,
   so the selectors below carry extra specificity where they must win) ---------- */
.blog-container { padding-top: 2rem; }
body > main.blog-content > article { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 4rem; }
.blog-content h1 { text-transform: none; letter-spacing: 0; font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.15; }
.blog-content h2 { text-transform: none; letter-spacing: 0; font-size: clamp(1.35rem, 2.6vw, 1.7rem); }
.blog-content .meta { color: var(--color-text-muted); font-size: 0.95rem; }
.blog-content a { color: var(--color-accent); }
.blog-content blockquote { border-left-color: var(--color-accent); opacity: 1; color: var(--color-text-muted); }
main.blog-content img.featured-image { background: var(--color-surface-alt) !important; border-radius: 0 !important; }
.blog-content .back-link a { font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .season__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .staff-grid { grid-template-columns: minmax(0, 1fr); }
  .staff-teaser { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .press-item { grid-template-columns: 220px minmax(0, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .hero { min-height: 82vh; }
  .hero__seal { width: 110px; height: 110px; }
  .split, .split--rev { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quotes, .video-grid { grid-template-columns: minmax(0, 1fr); }
  .press-item { grid-template-columns: minmax(0, 1fr); }
  .press-item .scan { max-width: 320px; }
  .staff-card { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .staff-card img { margin: 0 auto; }
  .staff-card ul { text-align: left; }
  .staff-teaser { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .form { padding: 22px; }
  .form__row { grid-template-columns: minmax(0, 1fr); }
  .schedule td:first-child { width: auto; }
  .schedule th, .schedule td { padding: 10px 12px; font-size: 0.95rem; }
  .linen-list { columns: 1; }
  .sponsor-logos { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .btn { width: 100%; text-align: center; }
  .nav .btn { width: auto; }
}
@media (max-width: 420px) {
  .season__grid { grid-template-columns: minmax(0, 1fr); }
  .staff-teaser { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .photo-grid img { transition: none; }
}
