/* ==========================================================================
   DCC LEE McDonald's — design system
   Palette and type carried over from the original Squarespace 7.1 site:
   accent #FFBC0D, dark accent #DB0007, dark band #2D2D2D, light band #F7F7F7,
   Speedee (McDonald's brand face) in Bold / Regular / Light.
   ========================================================================== */

/* ---------- fonts ---------- */
@font-face {
  font-family: "Speedee";
  src: url("/static/fonts/Speedee-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Speedee";
  src: url("/static/fonts/Speedee-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Speedee";
  src: url("/static/fonts/Speedee-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --yellow: #ffbc0d;
  --red: #db0007;
  --black: #000000;
  --dark: #2d2d2d;
  --light: #f7f7f7;
  --white: #ffffff;
  --grey-500: #6e6e6e;
  --grey-300: #d0d0d0;

  --font: "Speedee", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --step--1: clamp(0.83rem, 0.8rem + 0.16vw, 0.92rem);
  --step-0: clamp(1rem, 0.95rem + 0.24vw, 1.13rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3: clamp(1.9rem, 1.5rem + 1.9vw, 3rem);
  --step-4: clamp(2.4rem, 1.7rem + 3.2vw, 4.2rem);

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --measure: 68ch;
  --wrap: 1280px;
  --wrap-narrow: 860px;
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 14px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.16);
  --header-h: 76px;

  --ink: var(--black);
  --bg: var(--white);
  --muted: var(--grey-500);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

img, video, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-underline-offset: 0.18em; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 0; top: -100%;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ---------- layout ---------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section {
  padding-block: var(--section-y);
  background: var(--bg);
  color: var(--ink);
  position: relative;
}
.section > .wrap { position: relative; z-index: 1; }

/* Section colour themes, mirroring the original site's section themes. */
.theme-white       { --bg: var(--white); --ink: var(--black); --muted: var(--grey-500); }
.theme-white-bold  { --bg: var(--white); --ink: var(--black); --muted: var(--grey-500); }
.theme-light       { --bg: var(--light); --ink: var(--black); --muted: var(--grey-500); }
.theme-bright      { --bg: var(--yellow); --ink: var(--black); --muted: #5c4700; }
.theme-black       { --bg: var(--dark); --ink: var(--white); --muted: #b9b9b9; }

.section-title {
  text-align: center;
  margin-bottom: 0.35em;
}
.section-sub {
  text-align: center;
  max-width: var(--measure);
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  font-size: var(--step-1);
  font-weight: 300;
  color: var(--muted);
}
.section-sub:last-child { margin-bottom: 0; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--yellow);
  --btn-ink: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  background: var(--btn-bg);
  color: var(--btn-ink);
  font-weight: 700;
  font-size: var(--step-0);
  line-height: 1;
  padding: 0.95em 1.7em;
  border: 2px solid var(--btn-bg);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); background: #ffcb3d; border-color: #ffcb3d; }
.btn:active { transform: translateY(0); }

.btn--dark { --btn-bg: var(--black); --btn-ink: var(--white); }
.btn--dark:hover { background: var(--red); border-color: var(--red); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: currentColor;
  border-color: currentColor;
}
.btn--ghost:hover { background: currentColor; border-color: currentColor; transform: translateY(-2px); }
.btn--ghost:hover { color: var(--bg); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.btn-row--center { justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding-block: 0.6rem;
}
.site-logo { display: block; flex: 0 0 auto; }
.site-logo img {
  height: clamp(30px, 4.6vw, 44px);
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--black);
}
.nav-toggle svg { width: 28px; height: 28px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.6vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-weight: 700;
  font-size: var(--step--1);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { border-bottom-color: var(--yellow); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--black); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: var(--shadow);
    display: none;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .site-nav li { margin: 0; }
  .site-nav a {
    display: block;
    font-size: var(--step-1);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] { border-bottom-color: var(--yellow); }
}

/* ---------- hero ---------- */
.hero { padding-block: 0; }
.hero__media {
  position: relative;
  height: clamp(320px, 46vh, 520px);
  display: grid;
  overflow: hidden;
}
.hero__media img,
.hero__media video {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__body {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.hero__body .lead {
  font-size: var(--step-1);
  font-weight: 300;
  max-width: var(--measure);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
}

/* ---------- page header ---------- */
.page-header { text-align: center; }
.page-header__media {
  position: relative;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 6;
}
.page-header__media img,
.page-header__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.page-header p { max-width: var(--measure); margin-inline: auto; }
.page-header .lead {
  font-size: var(--step-1);
  font-weight: 300;
  color: var(--muted);
}

/* ---------- prose ---------- */
.prose { max-width: var(--measure); margin-inline: auto; }
.prose p { font-size: var(--step-0); }
.prose figure { margin: 0 0 2rem; }
.prose figure img { border-radius: var(--radius); width: 100%; }
figcaption {
  font-size: var(--step--1);
  color: var(--muted);
  font-style: italic;
  margin-top: 0.7rem;
  text-align: center;
}

/* ---------- split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img,
.split__media video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split__media--contain {
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split__media--contain img {
  box-shadow: none;
  max-height: 260px;
  width: auto;
  object-fit: contain;
}
.split__body > :last-child { margin-bottom: 0; }
.split dl { margin: 0; }
.split dt { font-weight: 700; margin-top: 1.1rem; }
.split dt:first-child { margin-top: 0; }
.split dd { margin: 0.15rem 0 0; color: var(--muted); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- people carousel ---------- */
.people { position: relative; }
.people__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.people__viewport::-webkit-scrollbar { display: none; }
.people__track {
  --per-view: 1.25;
  --gap: 1.25rem;
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.people__track > .person {
  /* Percentages resolve against the scroll container, so this reliably shows
     N cards per view while the row overflows and scrolls. */
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
}
@media (min-width: 560px)  { .people__track { --per-view: 2.25; } }
@media (min-width: 900px)  { .people__track { --per-view: 3; } }
@media (min-width: 1200px) { .people__track { --per-view: 4; } }

.person {
  scroll-snap-align: start;
  margin: 0;
}
.person__media {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}
.person__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.person a:hover .person__media img { transform: scale(1.04); }
.person__name {
  font-size: var(--step-1);
  margin: 0.9rem 0 0.15rem;
}
.person__role {
  margin: 0;
  font-size: var(--step--1);
  font-weight: 300;
  color: var(--muted);
}
.person a { text-decoration: none; display: block; }

.people__controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.people__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.people__btn:hover { background: currentColor; }
.people__btn:hover svg { color: var(--bg); }
.people__btn svg { width: 20px; height: 20px; }
.people__btn[disabled] { opacity: 0.35; cursor: default; }
.people__btn[disabled]:hover { background: transparent; }

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 1.25rem;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- cards ---------- */
.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.cards[data-columns="4"] { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.card {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.15rem);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--yellow);
}
.theme-white .card { background: var(--light); }
.card h3 { font-size: var(--step-1); }
.card p:last-child { margin-bottom: 0; }
.card__link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--red);
}

/* ---------- checklist ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.checklist li {
  display: grid;
  grid-template-columns: 1.6em 1fr;
  gap: 0.6em;
  align-items: start;
  margin: 0;
  font-weight: 400;
}
.checklist li::before {
  content: "";
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.28em;
  border-radius: 50%;
  background: var(--black) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFBC0D' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 68% no-repeat;
}

/* ---------- FAQ ---------- */
.faq { max-width: var(--wrap-narrow); margin-inline: auto; }
.faq__item {
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 0;
  font-weight: 700;
  font-size: var(--step-1);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 1.4rem; height: 1.4rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding-bottom: 1.4rem; max-width: var(--measure); }
.faq__answer a { color: var(--red); font-weight: 700; }

/* ---------- sponsors ---------- */
.sponsors {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.sponsor {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  align-content: start;
}
.sponsor__logo {
  height: 92px;
  display: grid;
  place-items: center;
}
.sponsor__logo img { max-height: 92px; width: auto; object-fit: contain; }
.sponsor h3 { font-size: var(--step-1); margin-bottom: 0; }
.sponsor p { font-size: var(--step--1); color: var(--muted); margin: 0; }

/* ---------- locations ---------- */
.locations {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.location {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--yellow);
}
.theme-white .location { background: var(--light); }
.location__body { padding: clamp(1.25rem, 2.5vw, 1.75rem); display: grid; gap: 0.5rem; align-content: start; flex: 1; }
.location h3 { font-size: var(--step-1); margin: 0; }
.location__no {
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.location__addr, .location__blurb { margin: 0; font-size: var(--step--1); }
.location__blurb { color: var(--muted); }
.location__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: var(--step--1);
  font-weight: 700;
  margin-top: 0.25rem;
}
.location__meta a { color: var(--red); }
.location__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--step--1);
  font-weight: 700;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  padding: 0.3em 0.85em;
  align-self: start;
}
.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
}
.location__actions .btn { font-size: var(--step--1); padding: 0.7em 1.25em; }
.location details { margin-top: 0.35rem; }
.location details summary { cursor: pointer; font-weight: 700; font-size: var(--step--1); }
.location details pre {
  font: inherit;
  font-size: var(--step--1);
  white-space: pre-wrap;
  margin: 0.6rem 0 0;
  color: var(--muted);
}

/* ---------- video ---------- */
.video-block { max-width: var(--wrap); margin-inline: auto; }
.video-block video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: #000;
}
.loop-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
}
.loop-strip video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- embeds ---------- */
.embed {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.embed iframe { width: 100%; border: 0; display: block; }
.embed__fallback {
  padding: 1.5rem;
  font-size: var(--step--1);
  color: var(--muted);
}
.widget-slot { margin-top: 1.5rem; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}
.contact-card dl { display: grid; gap: 1.1rem; margin: 0; }
.contact-card dt {
  font-size: var(--step--1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}
.contact-card dd { margin: 0.15rem 0 0; font-size: var(--step-1); }
.contact-card dd a { color: var(--red); font-weight: 700; text-decoration: none; }
.contact-card dd a:hover { text-decoration: underline; }
.contact-grid img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* ---------- banner ---------- */
.banner {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}
.banner p { max-width: var(--measure); font-size: var(--step-1); font-weight: 300; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--yellow);
  color: var(--black);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  background-image: url("/static/img/sesame-seeds-bg-480.webp");
  background-size: 520px;
  background-repeat: repeat;
  background-blend-mode: soft-light;
}
.site-footer__inner {
  display: grid;
  gap: 2.5rem;
  justify-items: center;
  text-align: center;
}
.site-footer__logo img { height: 74px; width: auto; }
.site-footer address {
  font-style: normal;
  font-size: var(--step-0);
  line-height: 1.85;
}
.site-footer a { color: var(--black); font-weight: 700; }
.site-footer__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.site-footer__apps img { height: 46px; width: auto; }
.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--step--1);
  font-weight: 700;
}
.site-footer__legal {
  font-size: var(--step--1);
  color: #5c4700;
  max-width: 62ch;
}

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header, .people__controls, .embed, .site-footer__apps { display: none; }
  .section { padding-block: 1rem; }
}

/* ---------- decorative brand band ---------- */
.page-header__band {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  height: clamp(110px, 16vw, 210px);
  overflow: hidden;
  margin-top: calc(var(--section-y) * -0.55);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  background: var(--yellow);
}
.page-header__band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Consecutive sections sharing a colour read as one band. */
.section--tight-top { padding-top: 0; }
.section--tight-top.hero { padding-top: 0; }
