/* =========================================================================
   Beaches theme — Southern Beaches Rugby Football Club
   Colours from the club crest: sand, water, coal.
   ========================================================================= */
:root {
  --yellow: #FFCB06;
  --sky: #43B7E8;
  --sky-pale: #EAF6FC;
  --sky-line: #BFE3F5;
  --deep: #2758A7;
  --deep-dark: #1B3F7C;
  --coal: #231F20;
  --ink: #2B2B2E;
  --ink-soft: #5B5B60;
  --white: #FFFFFF;
  --sand: #FFF6D6;

  --display: "Sofia Sans Extra Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Sofia Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(3rem, 8vw, 6rem);
  --radius: 6px;
  --hoop: 8px;
}

/* ---- Reset-ish ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
body { margin: 0; font-family: var(--body); font-size: 1.0625rem; line-height: 1.6; color: var(--ink); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--deep); text-decoration-thickness: 1.5px; text-underline-offset: .15em; }
a:hover { color: var(--deep-dark); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
button { font: inherit; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; background: var(--yellow); color: var(--coal); padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: .5rem; top: .5rem; }

/* ---- Type --------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 900; text-transform: uppercase; line-height: .95; letter-spacing: .005em; margin: 0 0 .5em; color: var(--deep); text-wrap: balance; }
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; color: var(--coal); }
p { margin: 0 0 1em; }
.lead { font-size: 1.25rem; line-height: 1.5; max-width: 38em; }
.prose { max-width: 42em; }
.prose h2 { margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; color: var(--coal); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose blockquote { margin: 1.5em 0; padding-left: 1.25rem; border-left: var(--hoop) solid var(--yellow); font-size: 1.15em; }
.prose figure { margin: 1.5em 0; }
.prose img { border-radius: var(--radius); }

/* Section heading with the yellow bar: a scoreboard underline, not an eyebrow. */
.section-title { position: relative; padding-bottom: .35em; margin-bottom: 1rem; }
.section-title::after { content: ""; display: block; width: 4.5rem; height: var(--hoop); background: var(--yellow); margin-top: .35em; }
.section-title--sky::after { background: var(--sky); }

/* ---- Layout ------------------------------------------------------------- */
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--pale { background: var(--sky-pale); }
.section--deep { background: var(--deep); color: var(--white); }
.section--deep h2, .section--deep h3, .section--deep a { color: var(--white); }
.section--deep .section-title::after { background: var(--yellow); }
.section--coal { background: var(--coal); color: var(--white); }
.section--tight { padding-block: calc(var(--section) * .6); }
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.split { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
@media (min-width: 860px) { .split { grid-template-columns: 5fr 4fr; } .split--rev > :first-child { order: 2; } }

/* Hoops: the jersey stripe. The one loud device on the site. */
.hoops { height: calc(var(--hoop) * 4); background: repeating-linear-gradient(180deg, var(--sky) 0 var(--hoop), var(--yellow) var(--hoop) calc(var(--hoop) * 2)); }
.hoops--thin { height: calc(var(--hoop) * 2); }

/* ---- Buttons ------------------------------------------------------------ */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 1.35rem; letter-spacing: .02em; line-height: 1; padding: .85rem 1.5rem .8rem; border-radius: var(--radius); text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s; }
.btn--yellow { background: var(--yellow); color: var(--coal); }
.btn--yellow:hover { background: #F5C000; color: var(--coal); }
.btn--deep { background: var(--deep); color: var(--white); }
.btn--deep:hover { background: var(--deep-dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--coal); }
.btn--outline-deep { background: transparent; color: var(--deep); border-color: var(--deep); }
.btn--outline-deep:hover { background: var(--deep); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ---- Header ------------------------------------------------------------- */
.site-header { background: var(--deep); color: var(--white); position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 0 var(--yellow); }
.site-header__inner { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; color: var(--white); text-decoration: none; }
.brand__crest { width: 4.25rem; height: auto; flex: none; }
.brand__name { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 1.35rem; line-height: .9; letter-spacing: .01em; }
.brand__name span { color: var(--yellow); }
.nav__list, .site-footer__list { list-style: none; margin: 0; padding: 0; display: flex; gap: .25rem; flex-wrap: wrap; }
.nav__list a { display: block; padding: .6rem .8rem; color: var(--white); text-decoration: none; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.25rem; letter-spacing: .03em; border-bottom: 3px solid transparent; }
.nav__list a:hover { border-bottom-color: var(--sky); color: var(--white); }
.nav__list .current-menu-item > a, .nav__list .current_page_parent > a { border-bottom-color: var(--yellow); }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle__bar { display: block; width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav { display: none; position: fixed; inset: 4.5rem 0 0 0; background: var(--deep); padding: 1rem var(--gutter) 2rem; overflow: auto; }
  body.nav-open .nav { display: block; }
  body.nav-open { overflow: hidden; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list a { font-size: 2rem; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .nav__list .current-menu-item > a { color: var(--yellow); border-bottom-color: rgba(255,255,255,.15); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---- Page head (inner pages) ------------------------------------------- */
.page-head { background: var(--deep); color: var(--white); padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 3.5rem); position: relative; overflow: hidden; }
.page-head__title { color: var(--white); margin: 0; }
.page-head__lead { color: var(--sky-pale); margin: 1rem 0 0; font-size: 1.2rem; max-width: 40em; }
.page-head--photo { min-height: 46vh; display: flex; align-items: flex-end; }
.page-head--photo .page-head__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-head--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,63,124,.92) 0%, rgba(27,63,124,.45) 55%, rgba(27,63,124,.05) 100%); }
.page-head--photo .container { position: relative; z-index: 1; }

/* ---- Hero (home) -------------------------------------------------------- */
.hero { position: relative; min-height: min(88vh, 56rem); display: flex; align-items: flex-end; color: var(--white); background: var(--coal); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(35,31,32,.9) 0%, rgba(35,31,32,.35) 45%, rgba(35,31,32,0) 75%); }
.hero__inner { position: relative; z-index: 1; padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero__crest { width: clamp(6rem, 12vw, 9rem); margin-bottom: 1rem; }
.hero__title { color: var(--white); font-size: clamp(3.25rem, 9vw, 7.5rem); max-width: 11em; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero__sub { font-size: clamp(1.15rem, 2vw, 1.4rem); max-width: 34em; color: #F3F8FC; margin: 0; }

/* ---- Home: welcome + training ------------------------------------------ */
.welcome__training { background: var(--sky-pale); border-left: var(--hoop) solid var(--sky); padding: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; }
.welcome__training h3 { margin-top: 0; }
.welcome__training p:last-child { margin-bottom: 0; }

/* ---- Slideshow ---------------------------------------------------------- */
.slideshow-wrap { display: grid; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); gap: .5rem; } /* no-JS fallback */
.slideshow-wrap figure { margin: 0; }
.slideshow-wrap--live, .slideshow-wrap:has(.slideshow) { display: block; }
.slideshow { position: relative; overflow: hidden; background: var(--coal); border-radius: var(--radius); }
.slideshow__track { display: flex; transition: transform .5s ease; }
.slideshow__slide { flex: 0 0 100%; position: relative; aspect-ratio: 16 / 9; }
.slideshow__slide img { width: 100%; height: 100%; object-fit: cover; }
.slideshow__caption { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 2rem 1.25rem .9rem; color: var(--white); background: linear-gradient(to top, rgba(35,31,32,.8), transparent); font-size: .95rem; }
.slideshow__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 3rem; height: 3rem; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--coal); font-size: 2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.slideshow__btn:hover { background: var(--yellow); }
.slideshow__btn--prev { left: .75rem; } .slideshow__btn--next { right: .75rem; }
.slideshow__dots { position: absolute; left: 0; right: 0; bottom: .6rem; display: flex; justify-content: center; gap: .4rem; }
.slideshow__dot { width: .65rem; height: .65rem; border-radius: 50%; border: 0; background: rgba(255,255,255,.55); cursor: pointer; padding: 0; }
.slideshow__dot[aria-current="true"] { background: var(--yellow); }
.slideshow--static img { border-radius: var(--radius); }

/* ---- Sponsors ----------------------------------------------------------- */
.tier { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.tier__title { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.tier__title::after { content: ""; flex: 1; height: 2px; background: var(--sky-line); }
.tier__grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--tile)), 1fr)); }
.tier--major { --tile: 20rem; --tile-h: 11rem; }
.tier--gold { --tile: 14rem; --tile-h: 8rem; }
.tier--academy { --tile: 11.5rem; --tile-h: 6.5rem; }
.tier--network { --tile: 9.5rem; --tile-h: 5.5rem; }
.tier--junior { --tile: 8.25rem; --tile-h: 4.75rem; }
.sponsor { display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--sky-line); border-radius: var(--radius); padding: 1rem; height: var(--tile-h); text-decoration: none; color: var(--coal); }
a.sponsor:hover { border-color: var(--deep); }
.sponsor img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.sponsor__name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; text-align: center; line-height: 1; }
.tier--major .sponsor__name { font-size: 2rem; }

.sotm { display: grid; gap: 1.5rem; align-items: center; background: var(--white); border: 1px solid var(--sky-line); border-top: var(--hoop) solid var(--yellow); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2.5rem); }
@media (min-width: 760px) { .sotm { grid-template-columns: 18rem 1fr; } }
.sotm__logo { display: flex; align-items: center; justify-content: center; min-height: 8rem; }
.sotm__logo img { max-height: 10rem; width: auto; }
.sotm__kicker { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.1rem; letter-spacing: .04em; color: var(--deep); margin: 0 0 .25rem; }
.sotm__title { margin-bottom: .5rem; }
.sotm__body p:last-child { margin-bottom: 0; }

.marquee { overflow: hidden; display: flex; gap: 3rem; padding-block: 1.25rem; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__strip { display: flex; gap: 3rem; align-items: center; flex: none; }
.marquee__strip img { height: 3.25rem; width: auto; max-width: 11rem; object-fit: contain; }
.marquee__strip .sponsor__name { font-size: 1.1rem; white-space: nowrap; color: var(--ink-soft); }
.marquee--live .marquee__strip { animation: marquee var(--marquee-duration, 40s) linear infinite; }
.marquee:hover .marquee__strip { animation-play-state: paused; }
.marquee--static { flex-wrap: wrap; mask-image: none; }
.marquee--static .marquee__strip { flex-wrap: wrap; justify-content: center; }
@keyframes marquee { to { transform: translateX(calc(-100% - 3rem)); } }

/* ---- People ------------------------------------------------------------- */
.people { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 11rem), 1fr)); }
.people--wide { grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)); }
.person { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--sky-line); }
.person__photo { aspect-ratio: 4 / 5; background: var(--sky-pale); display: grid; place-items: center; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__photo svg { width: 45%; height: auto; color: var(--sky); }
.person__body { padding: .75rem .9rem .9rem; border-top: 4px solid var(--yellow); }
.person__name { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 1.35rem; line-height: 1; color: var(--coal); margin: 0 0 .2rem; }
.person__role { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.person__email { display: inline-block; margin-top: .4rem; font-size: .9rem; word-break: break-all; }
.person__blurb { font-size: .95rem; margin-top: .5rem; }
.person__blurb p:last-child { margin-bottom: 0; }

/* ---- Honour board ------------------------------------------------------- */
.honour { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.honour__col { background: var(--coal); color: var(--white); border-radius: var(--radius); padding: 1.5rem; border-top: var(--hoop) solid var(--yellow); }
.honour__col h3 { color: var(--yellow); margin-bottom: .75rem; }
.honour__list { list-style: none; margin: 0; padding: 0; font-family: var(--display); font-weight: 700; font-size: 1.35rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .01em; }
.honour__list li { border-bottom: 1px solid rgba(255,255,255,.12); padding: .2rem 0; }
.honour__col .empty { background: transparent; color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.3); }

/* ---- Staff by grade ----------------------------------------------------- */
.grade { margin-bottom: 2rem; }
.grade__title { display: inline-block; background: var(--yellow); color: var(--coal); padding: .25rem .75rem .15rem; border-radius: var(--radius); margin-bottom: 1rem; }

/* ---- Empty state: an invitation, not an apology ----------------------- */
.empty { border: 2px dashed var(--sky-line); border-radius: var(--radius); padding: 1.25rem 1.5rem; color: var(--ink-soft); background: var(--white); max-width: 40em; }
.empty p { margin: 0; }

/* ---- Newsletter --------------------------------------------------------- */
.news-list { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr)); }
.news-card { background: var(--white); border: 1px solid var(--sky-line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.news-card__img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.news-card__body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.news-card__date { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.news-card__title { margin: 0; font-size: 1.75rem; }
.news-card__title a { text-decoration: none; color: var(--deep); }
.news-card__title a:hover { text-decoration: underline; }
.news-card__excerpt { font-size: .98rem; margin: 0; }
.news-card__actions { margin-top: auto; padding-top: .75rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.news-card--feature { grid-column: 1 / -1; }
@media (min-width: 760px) { .news-card--feature { flex-direction: row; } .news-card--feature .news-card__img { width: 45%; aspect-ratio: 4 / 3; } }
.single-news__meta { color: var(--ink-soft); }
.pdf-embed { width: 100%; aspect-ratio: 8.5 / 11; border: 1px solid var(--sky-line); border-radius: var(--radius); margin-top: 1.5rem; }
.pagination { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 2rem; }
.pagination .page-numbers { padding: .4rem .8rem; border: 1px solid var(--sky-line); border-radius: var(--radius); text-decoration: none; }
.pagination .current { background: var(--deep); color: var(--white); border-color: var(--deep); }

/* ---- Forms (Contact Form 7) -------------------------------------------- */
.form { color: var(--ink); background: var(--white); border: 1px solid var(--sky-line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2rem); }
.form label { display: block; font-weight: 600; margin-bottom: .35rem; }
.form .field { margin-bottom: 1.1rem; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form textarea { width: 100%; font: inherit; padding: .7rem .8rem; border: 1.5px solid #C9D3E0; border-radius: var(--radius); background: var(--white); color: var(--ink); }
.form input:focus, .form textarea:focus { border-color: var(--deep); outline: 3px solid rgba(67,183,232,.35); outline-offset: 0; }
.form textarea { min-height: 9rem; resize: vertical; }
.form input[type="submit"] { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 1.35rem; letter-spacing: .02em; padding: .85rem 1.5rem .8rem; border: 0; border-radius: var(--radius); background: var(--yellow); color: var(--coal); cursor: pointer; }
.form input[type="submit"]:hover { background: #F5C000; }
.wpcf7-not-valid-tip { color: #B3261E; font-size: .9rem; display: block; margin-top: .3rem; }
.wpcf7-response-output { margin: 1rem 0 0 !important; padding: .75rem 1rem !important; border-radius: var(--radius); border: 2px solid var(--sky) !important; }
.wpcf7-spinner { display: none; }
.wpcf7-response-output:empty, .hidden-fields-container { display: none; }
.screen-reader-response { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.wpcf7 form.sent .wpcf7-response-output { border-color: #2E8B57 !important; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output { border-color: #B3261E !important; }
.form .hp { position: absolute; left: -9999px; }

/* ---- Contact ------------------------------------------------------------ */
.contact-card { background: var(--deep); color: var(--white); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2rem); }
.contact-card h3 { color: var(--yellow); }
.contact-card a { color: var(--white); }
.contact-card p:last-child { margin-bottom: 0; }
.map { aspect-ratio: 4 / 3; border: 0; border-radius: var(--radius); width: 100%; margin-top: 1.25rem; }

/* ---- Shop notice -------------------------------------------------------- */
.notice { background: var(--sand); border-left: var(--hoop) solid var(--yellow); padding: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; max-width: 42em; }
.notice p:last-child { margin-bottom: 0; }

/* ---- Song and poem ------------------------------------------------------ */
.verse { font-family: var(--display); font-weight: 700; font-size: 1.4rem; line-height: 1.3; text-transform: uppercase; color: var(--deep); }
.verse p { margin-bottom: 1.2em; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--coal); color: var(--white); margin-top: 0; }
.site-footer a { color: var(--white); }
.site-footer__inner { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; display: grid; gap: 2rem; padding-block: 3rem 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.site-footer__club img { width: 11rem; margin-bottom: 1rem; }
.site-footer__address { margin: 0 0 .5rem; }
.site-footer__list { flex-direction: column; gap: 0; }
.site-footer__list a { display: inline-block; padding: .25rem 0; text-decoration: none; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.2rem; letter-spacing: .03em; }
.site-footer__list a:hover { color: var(--yellow); }
.site-footer__social { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.site-footer__legal { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; border-top: 1px solid rgba(255,255,255,.15); padding-block: 1.25rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; font-size: .9rem; color: rgba(255,255,255,.75); }
.site-footer__legal a { color: rgba(255,255,255,.75); }

/* ---- Large screens: scale the whole system so a TV is not a small island ---- */
@media (min-width: 1920px) { :root { --container: 1480px; } html { font-size: 112.5%; } }
@media (min-width: 2560px) { :root { --container: 1900px; } html { font-size: 137.5%; } }
@media (min-width: 3400px) { :root { --container: 2500px; } html { font-size: 175%; } }
/* Tablet landscape: full nav needs a touch less air */
@media (min-width: 901px) and (max-width: 1100px) { .nav__list a { padding-inline: .5rem; font-size: 1.1rem; } .brand__name { font-size: 1.15rem; } }

/* ---- Utilities ---------------------------------------------------------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1rem; }
.anchor { scroll-margin-top: 5.5rem; }
