/* =====================================================
   STRAND MUIDERBERG — mobile-first
   ===================================================== */

:root {
  /* palette — IJmeer / strand */
  --c-ink:        #0e2532;
  --c-ink-soft:   #34556a;
  --c-muted:      #6b8294;
  --c-line:       #e3ebef;
  --c-paper:      #ffffff;
  --c-sand:       #f6f1e7;
  --c-sand-warm:  #efe6d3;
  --c-sea:        #0b3a5b;
  --c-sea-deep:   #082a44;
  --c-sea-bright: #1d6da0;
  --c-sun:        #f1b541;
  --c-coral:      #c25d3a;

  /* sport rating colors */
  --c-excellent: #5a8a52;
  --c-good:      #3d7a8c;
  --c-moderate:  #c98144;
  --c-poor:      #a84e26;

  /* layout */
  --hdr-h: 60px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  /* type */
  --f-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --f-disp: 'Cambria', Georgia, 'Times New Roman', serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html { scroll-padding-top: var(--hdr-h); }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }

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

.skip {
  position: absolute; top: -100px; left: 8px;
  background: var(--c-ink); color: #fff; padding: 8px 12px;
  border-radius: var(--r-sm); z-index: 1000;
  text-decoration: none;
}
.skip:focus { top: 8px; }

/* ===== container ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow { max-width: 760px; }

/* ===== HEADER ===== */
.hdr {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--hdr-h);
  padding: 0 1rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.hdr-brand {
  display: flex; align-items: center; gap: .55rem;
  text-decoration: none; color: var(--c-ink);
  min-width: 0;
}
.hdr-logo { height: 32px; width: auto; flex: 0 0 auto; }
.hdr-wordmark {
  display: flex; flex-direction: column; line-height: 1.05;
  font-size: .68rem;
}
.hdr-wordmark b {
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-sea-bright); font-size: .58rem;
}
.hdr-wordmark em {
  font-style: normal; font-weight: 700;
  font-size: .82rem; color: var(--c-sea-deep); margin-top: 2px;
  letter-spacing: -.005em;
}

.hdr-burger {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 1px solid var(--c-line);
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  cursor: pointer;
}
.hdr-burger span:not(.sr) {
  display: block; width: 18px; height: 2px; background: var(--c-ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hdr-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hdr-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hdr-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hdr-menu {
  position: absolute;
  top: var(--hdr-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  padding: .5rem 1rem 1rem;
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.hdr-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hdr-menu a {
  text-decoration: none; color: var(--c-ink);
  padding: .9rem .25rem;
  border-bottom: 1px solid var(--c-line);
  font-weight: 500;
}
.hdr-menu a:last-child { border-bottom: none; }
.hdr-menu .cta {
  margin-top: .75rem;
  background: var(--c-sea);
  color: #fff;
  text-align: center;
  border-radius: var(--r-sm);
  padding: .85rem 1rem;
  border: none;
}

/* ===== HERO ===== */
.hero { padding: 0; background: var(--c-sand); }

.hero-cam {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #082336;
}
.hero-cam img,
.hero-cam iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; object-fit: cover;
}
.hero-cam img { display: none; }
.hero-cam.is-fullscreen { aspect-ratio: auto; height: 100%; }

.hero-cam-fs {
  position: absolute; bottom: .75rem; right: .75rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s;
}
.hero-cam-fs:hover { background: rgba(0,0,0,.8); }

.hero-cam-open {
  position: absolute; bottom: .75rem; left: .75rem;
  background: var(--c-sun); color: var(--c-sea-deep);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .04em;
  padding: .5rem .85rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex; align-items: center;
  box-shadow: 0 4px 12px rgba(11, 58, 91, .25);
  transition: transform .15s, background .2s;
}
.hero-cam-open:hover { background: #e2a528; transform: translateY(-1px); }
.hero-cam.is-fullscreen .hero-cam-open { display: none; }

.hero-live {
  position: absolute; top: .75rem; left: .75rem;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  backdrop-filter: blur(6px);
}
.hero-live .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff4848;
  box-shadow: 0 0 0 0 rgba(255,72,72,.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,72,72,.6); }
  70% { box-shadow: 0 0 0 9px rgba(255,72,72,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,72,72,0); }
}

.hero-body {
  padding: 1.5rem 1.25rem 2.5rem;
}
.hero-eyebrow {
  margin: 0 0 .75rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-sea-bright);
}
.hero-title {
  margin: 0 0 .75rem;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(2rem, 7.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -.005em;
  color: var(--c-sea-deep);
}
.hero-title em {
  font-style: italic;
  display: block;
  color: var(--c-sea-bright);
  font-weight: 700;
}
.hero-sub {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  max-width: 38ch;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin: 1.5rem 0;
  padding: .9rem;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  box-shadow: 0 1px 0 rgba(11, 58, 91, 0.04);
}
.hs { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hs span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.hs b {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--c-sea-deep);
  font-feature-settings: 'tnum' 1;
}

.hero-jumps {
  display: flex; flex-direction: column; gap: .65rem;
  margin-top: 1.25rem;
}

/* sunset countdown */
.sunset {
  margin-top: 1.25rem;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: 0 1px 0 rgba(11, 58, 91, 0.04);
}
.sunset-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: .65rem;
  margin-bottom: 0;
  font-size: .82rem;
}
.sunset-label {
  color: var(--c-muted);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .68rem;
}
.sunset-time {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-sea-deep);
  font-feature-settings: 'tnum' 1;
}
.sun-arc {
  display: block;
  width: 100%;
  height: auto;
  max-height: 110px;
  margin: 0 auto .55rem;
}
.sun-arc #sunMarker {
  transition: transform .8s ease-out;
}
.sun-arc.is-night #sunMarker circle { fill: #d8dde4; stroke: #889099; }
.sun-arc.is-night #sunMarker g { stroke: #889099; opacity: .6; }

/* ===== buttons ===== */
.btn {
  display: inline-block;
  padding: .85rem 1.25rem;
  border-radius: var(--r-sm);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  line-height: 1.2;
}
.btn-primary {
  background: var(--c-sea); color: #fff;
}
.btn-primary:hover { background: var(--c-sea-deep); }
.btn-link {
  background: transparent; color: var(--c-sea);
  border-color: var(--c-line);
}
.btn-link:hover { background: var(--c-sand); }
.btn:active { transform: translateY(1px); }

/* ===== sec base ===== */
.sec { padding: 3rem 0; }
.sec-h { margin-bottom: 1.75rem; max-width: 700px; }
@media (min-width: 960px) {
  .sec-h { max-width: none; }
}
.kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-sea-bright);
}
.kicker-light { color: var(--c-sun); }
.display {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(1.7rem, 5.2vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -.005em;
  margin: .35rem 0 .75rem;
  color: var(--c-sea-deep);
}
.display em { font-style: italic; color: var(--c-sea-bright); font-weight: 700; }
.display-light { color: #fff; }
.display-light em { color: var(--c-sun); }
.lede {
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  margin: 0;
  max-width: 60ch;
}
.lede-light { color: rgba(255,255,255,.85); }

/* ===== WATERSPORT SECTION ===== */
.sec-water { background: var(--c-paper); border-top: 1px solid var(--c-line); }

.cam-deep {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #082336;
  margin-bottom: .75rem;
  box-shadow: 0 14px 30px -20px rgba(11, 58, 91, .3);
}
.cam-deep iframe,
.cam-deep .cam-deep-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; object-fit: cover;
}
.cam-deep .cam-deep-img { display: none; }
.cam-deep-bar {
  position: absolute; top: .65rem; left: .65rem; right: .65rem;
  display: flex; align-items: center; gap: .65rem;
  pointer-events: none;
}
.cam-deep-live {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  padding: .3rem .55rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.cam-deep-live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #ff4848;
  animation: pulse 1.6s infinite;
}
.cam-deep-time {
  background: rgba(0,0,0,.55); color: #fff;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .72rem;
  padding: .3rem .55rem; border-radius: 999px;
  font-feature-settings: 'tnum' 1;
}
.cam-deep-fs {
  margin-left: 0;
  pointer-events: auto;
  width: 36px; height: 36px;
  border: 0; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.cam-deep-open {
  margin-left: auto;
  pointer-events: auto;
  background: var(--c-sun); color: var(--c-sea-deep);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .04em;
  padding: .4rem .7rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cam-deep.is-fullscreen .cam-deep-open { display: none; }
.cam-cap {
  font-size: .85rem;
  color: var(--c-muted);
  margin: 0 0 1.75rem;
  max-width: 60ch;
}

/* ===== weather card ===== */
.wx {
  background: linear-gradient(160deg, #f9fbfc 0%, var(--c-sand) 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.wx-loading { color: var(--c-muted); font-size: .9rem; padding: 1rem 0; text-align: center; }
.wx-temp {
  display: flex; align-items: center; gap: .8rem;
  padding-bottom: 1rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.wx-temp .sunset {
  margin: 0 0 0 auto;
  padding: .5rem .75rem;
  background: transparent;
  border: none;
  box-shadow: none;
  flex: 0 0 auto;
  width: clamp(200px, 38%, 280px);
}
@media (max-width: 560px) {
  .wx-temp .sunset { width: 100%; }
}
.wx-deg {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: clamp(3.5rem, 14vw, 5rem);
  line-height: .9;
  color: var(--c-sea-deep);
  font-feature-settings: 'tnum' 1;
}
.wx-deg sup { font-size: .55em; vertical-align: top; color: var(--c-sea-bright); }
.wx-meta { display: flex; flex-direction: column; gap: 2px; }
.wx-icon { font-size: 1.6rem; line-height: 1; }
.wx-desc { font-size: .9rem; color: var(--c-ink-soft); }

.wx-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 1rem;
}
.wx-stats > div {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: .65rem .75rem;
}
.wx-stats label {
  display: block;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 2px;
}
.wx-stats span {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-sea-deep);
  font-feature-settings: 'tnum' 1;
}

/* UV-index balk */
.wx-uv-cell .wx-uv-row {
  display: flex; flex-direction: column; gap: .35rem;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: .85rem;
  color: var(--c-sea-deep);
}
.wx-uv-cell .wx-uv-row b {
  font-family: var(--f-disp);
  font-size: 1rem;
}
.wx-uv-cell .wx-uv-row small {
  display: inline; font-size: .75rem; color: var(--c-muted);
  font-weight: 500;
}
.wx-uv-bar {
  display: block;
  position: relative;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg,
    #5a8a52 0%, #5a8a52 18%,
    #d6c43a 18%, #d6c43a 45%,
    #db8a31 45%, #db8a31 67%,
    #c94c4c 67%, #c94c4c 90%,
    #8b3aa8 90%, #8b3aa8 100%);
  border-radius: 3px;
  overflow: hidden;
}
.wx-uv-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: rgba(0,0,0,0);
  border-right: 2px solid #fff;
  box-shadow: 0 0 0 1.5px var(--c-ink-soft);
}
.wx-aqi-tip {
  display: block;
  margin-top: .35rem;
  font-size: .78rem;
  color: var(--c-muted);
  font-weight: 500;
  font-family: var(--f-sans);
  line-height: 1.4;
}
.wx-aqi-cell { grid-column: 1 / -1; }
.wx-aqi-src {
  display: block;
  margin-top: .2rem;
  color: var(--c-muted);
  font-size: .7rem;
  font-weight: 500;
}

.wx-surf {
  background: #fff;
  border-left: 4px solid var(--c-good);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .85rem 1rem;
}
.wx-surf--excellent { border-color: var(--c-excellent); }
.wx-surf--good      { border-color: var(--c-good); }
.wx-surf--moderate  { border-color: var(--c-moderate); }
.wx-surf--poor      { border-color: var(--c-poor); }

.wx-surf-head { margin-bottom: .8rem; }
.wx-surf-head strong { font-size: .95rem; color: var(--c-sea-deep); display: block; }
.wx-surf-head small { font-size: .85rem; color: var(--c-ink-soft); }

.wx-surf-bars { display: flex; flex-direction: column; gap: .55rem; }
.wx-bar {
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
}
.wx-bar-name { color: var(--c-ink-soft); }
.wx-bar-track {
  height: 8px; background: #eef2f5; border-radius: 4px; overflow: hidden;
}
.wx-bar-track > div {
  height: 100%; border-radius: 4px;
  transition: width .6s ease-out;
}
.wx-bar-pct {
  text-align: right; font-family: 'JetBrains Mono', monospace;
  font-size: .8rem; font-weight: 600;
}

/* surf timeline */
.wx-card--timeline { margin-top: 1rem; margin-bottom: 1rem; }
.surf-timeline {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 120px;
  margin: 0 -1.1rem;
  padding: 0 1.1rem .25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.st-col {
  flex: 1 0 28px;
  display: flex; flex-direction: column; align-items: center;
  scroll-snap-align: start;
  min-width: 28px;
}
.st-bar-wrap {
  width: 100%;
  height: 96px;
  display: flex; align-items: flex-end;
  background: var(--c-sand);
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.st-bar {
  width: 100%;
  min-height: 4px;
  border-radius: 3px 3px 0 0;
  transition: height .6s ease-out;
}
.st-bar--excellent { background: var(--c-excellent); }
.st-bar--good      { background: var(--c-good); }
.st-bar--moderate  { background: var(--c-moderate); }
.st-bar--poor      { background: var(--c-poor); }
.st-bar--night     { background: #2c4358; opacity: .35; }
.st-h {
  font-size: .65rem;
  font-weight: 600;
  color: var(--c-muted);
  margin-top: .25rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-feature-settings: 'tnum' 1;
}
.st-col.is-now .st-h { color: var(--c-sea-deep); }
.st-col.is-now .st-bar-wrap { outline: 2px solid var(--c-sea-deep); outline-offset: -1px; }

.surf-legend {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
  margin-top: .75rem; padding-top: .75rem;
  border-top: 1px solid var(--c-line);
  font-size: .75rem; color: var(--c-ink-soft);
}
.lg-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.lg {
  display: inline-block; width: 12px; height: 12px;
  border-radius: 3px;
}
.lg--excellent { background: var(--c-excellent); }
.lg--good      { background: var(--c-good); }
.lg--moderate  { background: var(--c-moderate); }
.lg--poor      { background: var(--c-poor); }
.lg--night     { background: #2c4358; opacity: .35; }

/* water section */
.water {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}
.water-h {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--c-sea-deep);
  margin: 0 0 .35rem;
}
.water-lede {
  color: var(--c-ink-soft);
  margin: 0 0 1.5rem;
  max-width: 60ch;
}
.water-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.water-block {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.15rem 1.25rem 1.3rem;
}
.water-i {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: .35rem;
}
.water-block h4 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 .35rem;
  color: var(--c-sea-deep);
}
.water-block p {
  margin: 0 0 .35rem;
  color: var(--c-ink-soft);
  font-size: .92rem;
  line-height: 1.55;
}
.water-block p strong {
  color: var(--c-sea-deep);
  font-family: var(--f-disp);
  font-size: 1.05em;
}
.water-block p a {
  color: var(--c-sea-bright);
  font-weight: 600;
}
.water-block small {
  font-size: .78rem;
  color: var(--c-muted);
}
@media (min-width: 760px) {
  .water-grid { grid-template-columns: repeat(2, 1fr); }
}
.zw-status strong {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.1em;
}
.zw-status .zw-tip {
  display: block;
  color: var(--c-ink-soft);
  font-size: .88rem;
  margin: .2rem 0 .4rem;
}
.zw-status .zw-link {
  font-size: .78rem;
  color: var(--c-sea-bright);
  font-weight: 600;
}

/* daily forecast (Komende dagen) */
.wx-subhead {
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-sea-bright);
  margin: 1.25rem 0 .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
}
.daily {
  display: flex; gap: .55rem;
  overflow-x: auto;
  margin: 0 -1.1rem;
  padding: 0 1.1rem .5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.daily .hr { width: 76px; }
.daily .hr-t { text-transform: capitalize; }

/* hourly + advice */
.wx-extra {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2.5rem;
}
.wx-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.1rem 1.25rem;
}
.wx-card h3 {
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-sea-bright);
  margin: 0 0 .85rem;
}

.hourly {
  display: flex;
  gap: .55rem;
  overflow-x: auto;
  margin: 0 -1.1rem;
  padding: 0 1.1rem .5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.hr {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 64px;
  text-align: center;
  background: var(--c-sand);
  border-radius: var(--r-sm);
  padding: .6rem .25rem;
  border: 1px solid transparent;
}
.hr.is-now { background: var(--c-sea-deep); color: #fff; }
.hr.is-now .hr-w { color: rgba(255,255,255,.75); }
.hr-t { font-size: .7rem; font-weight: 600; opacity: .8; }
.hr-i { font-size: 1.3rem; margin: .2rem 0; }
.hr-d { font-family: var(--f-disp); font-weight: 600; font-size: 1.1rem; }
.hr-w { font-size: .7rem; color: var(--c-muted); }

/* wind advice */
.wind-advice { font-size: .92rem; color: var(--c-ink); }
.wa-alert {
  padding: .7rem .85rem;
  border-radius: var(--r-sm);
  margin-bottom: .85rem;
  font-size: .9rem;
}
.wa-alert--red   { background: #fdecec; color: #7a1d1d; border-left: 4px solid #c94c4c; }
.wa-alert--amber { background: #fdf3e1; color: #7a4a13; border-left: 4px solid #db9a31; }
.wa-head { margin: 0 0 .6rem; line-height: 1.45; }
.wa-rows {
  list-style: none; padding: 0; margin: 0 0 .6rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.wa-rows li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: .55rem .75rem;
  background: var(--c-sand);
  border-radius: var(--r-sm);
}
.wa-l {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-sea-bright);
}
.wa-gust { font-size: .82rem; color: var(--c-coral); margin: 0; }
.wa-temp {
  font-size: .85rem; margin: .65rem 0 0;
  padding: .55rem .75rem;
  background: rgba(241, 181, 65, .12);
  border-left: 3px solid var(--c-sun);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-ink);
}
.wa-temp--cold {
  background: rgba(29, 109, 160, .08);
  border-color: var(--c-sea-bright);
}

/* per-sport detail */
/* ===== Luchtkwaliteit-dashboard ===== */
.aq {
  margin: 1.25rem 0 1.5rem;
  background: linear-gradient(160deg, #ffffff 0%, var(--c-sand) 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.25rem;
}
.aq-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 1rem; margin-bottom: 1rem;
}
.aq-head h3 { margin: 0 0 .15rem; font-size: 1.05rem; }
.aq-head h3 small { color: var(--c-muted); font-weight: 500; }
.aq-meta { margin: 0; color: var(--c-muted); font-size: .8rem; }
.aq-main {
  display: flex; flex-direction: column; align-items: flex-end;
  text-align: right;
}
.aq-aqi {
  font-family: var(--f-disp); font-weight: 600;
  font-size: 2.6rem; line-height: 1; color: var(--aq-c, var(--c-sea-deep));
  font-feature-settings: 'tnum' 1;
}
.aq-label { font-weight: 700; color: var(--aq-c, var(--c-sea-deep)); margin-top: .15rem; }
.aq-scale { color: var(--c-muted); font-size: .72rem; margin-top: .1rem; }
.aq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .65rem;
  margin-bottom: .8rem;
}
.aq-pollutant {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: .65rem .8rem;
}
.aq-pol-h {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: .4rem; margin-bottom: .25rem;
}
.aq-pol-h b { font-size: .8rem; color: var(--c-ink-soft); font-weight: 600; }
.aq-pol-h span { font-size: .78rem; font-weight: 700; }
.aq-pol-v {
  font-family: var(--f-disp); font-weight: 600;
  font-size: 1.4rem; line-height: 1; color: var(--c-sea-deep);
}
.aq-pol-v small {
  font-family: var(--f-sans); font-weight: 500;
  font-size: .65rem; color: var(--c-muted); margin-left: .15rem;
}
.aq-pol-aqi { margin-top: .25rem; font-size: .72rem; color: var(--c-muted); }
.aq-trend { margin-top: .2rem; }
.aq-trend h4 {
  font-size: .75rem; color: var(--c-muted); margin: 0 0 .35rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
}
.aq-spark { display: block; width: 100%; max-width: 320px; height: 40px; }
.aq-tip {
  margin: .6rem 0 0; padding: .55rem .75rem;
  background: rgba(11, 58, 91, 0.04);
  border-radius: var(--r-sm);
  font-size: .85rem; color: var(--c-ink-soft);
}

.sport-detail { margin-top: 1rem; }
.sd-h {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 .5rem;
  color: var(--c-sea-deep);
}
.sd-lede { color: var(--c-ink-soft); margin: 0 0 1.25rem; max-width: 55ch; }
@media (min-width: 960px) {
  .sd-lede { max-width: none; }
}
.sd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.sd {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem 1.1rem;
  position: relative;
  border-top: 4px solid var(--c-good);
}
.sd--excellent { border-top-color: var(--c-excellent); }
.sd--good      { border-top-color: var(--c-good); }
.sd--moderate  { border-top-color: var(--c-moderate); }
.sd--poor      { border-top-color: var(--c-poor); }

.sd-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .55rem;
}
.sd-name {
  font-family: var(--f-disp); font-weight: 600;
  font-size: 1.15rem; color: var(--c-sea-deep);
  display: inline-flex; align-items: center; gap: .55rem;
}
.sd-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(29, 109, 160, .08);
  color: var(--c-sea-bright);
  flex: 0 0 auto;
}
.sd-icon svg { width: 20px; height: 20px; }
.sd-pill {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .55rem; border-radius: 999px;
  color: #fff;
}
.sd-tip {
  font-size: .9rem; color: var(--c-ink-soft);
  margin: 0 0 .65rem;
}
.sd-levels {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
  font-size: .85rem;
}
.sd-levels li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: .65rem;
  padding-top: .45rem;
  border-top: 1px solid var(--c-line);
}
.sd-levels b {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-muted);
  align-self: start; padding-top: 2px;
}
.sd-morgen {
  display: block;
  margin-top: .35rem;
  font-size: .85em;
  color: var(--c-muted);
}
.hr-w small { font-size: .9em; opacity: .8; margin-left: 1px; }

/* ===== STRAND INTRO ===== */
.sec-strand-intro {
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
}
.strand-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin: 0 0 2rem;
}
@media (max-width: 760px) {
  .strand-photos { grid-template-columns: 1fr; }
}
.strand-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 28px rgba(7, 33, 68, .12);
}
.strand-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .strand-photo img { height: 240px; }
}
.strand-photo figcaption {
  font-size: .85rem;
  color: var(--c-muted);
  padding: .55rem .85rem .7rem;
  background: #fff;
}
.strand-quote {
  margin: 0 0 2rem;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--c-sea);
  background: #fff;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 14px rgba(7, 33, 68, .06);
  max-width: 760px;
}
.strand-quote p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--c-ink);
  font-style: italic;
  margin: 0 0 .6rem;
}
.strand-quote footer {
  font-size: .85rem;
  color: var(--c-muted);
  font-style: normal;
}
.strand-historie {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.4rem;
  background: var(--c-sand);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 760px) {
  .strand-historie { grid-template-columns: 1fr; }
}
.strand-historie .historie-img {
  background: #d8cdb6 url('assets/historie-strand.jpg') center/cover no-repeat;
  min-height: 220px;
}
.strand-historie .historie-body {
  padding: 1.2rem 1.4rem 1.4rem;
}
.strand-historie .historie-body .kicker {
  color: var(--c-sea);
}
.strand-historie h3 {
  font-size: 1.35rem;
  margin: .35rem 0 .7rem;
  color: var(--c-ink);
}
.strand-historie p {
  margin: 0 0 .65rem;
  color: var(--c-ink);
  font-size: .95rem;
  line-height: 1.55;
}
.strand-historie p:last-child { margin-bottom: 0; }
.strand-historie a {
  color: var(--c-sea-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== STRAND ===== */
.sec-strand {
  background: linear-gradient(180deg, var(--c-sea-deep) 0%, var(--c-sea) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sec-strand .sec-h { color: #fff; }
.sec-strand::after {
  content: '';
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 220px;
  background: radial-gradient(60% 80% at 50% 0%, rgba(241, 181, 65, .12), transparent 70%);
  pointer-events: none;
}

.vz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
  margin-top: 1.5rem;
}
.vz {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 1.15rem;
  backdrop-filter: blur(6px);
}
.vz h3 {
  font-family: var(--f-disp); font-weight: 600;
  font-size: 1.15rem; margin: .65rem 0 .35rem;
  color: #fff;
}
.vz p {
  margin: 0;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.vz-i {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(241, 181, 65, .14);
  color: var(--c-sun);
}
.vz-i svg { width: 22px; height: 22px; }

.strand-note {
  margin: 2rem auto 0;
  text-align: center;
  font-family: var(--f-disp);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-sun);
  max-width: 36ch;
}

/* ===== VOORZIENINGEN (deeplinks) ===== */
.sec-vz { background: var(--c-sand); }
.part-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.part {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--c-line);
  transition: transform .25s, box-shadow .25s;
}
.part:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(11, 58, 91, .35);
}
.part-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-sea-deep);
}
.part-titlerow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: .35rem 0 .55rem;
}
.part-titlerow h3 {
  margin: 0;
  flex: 1 1 auto;
}
.part-logo {
  height: 44px; width: auto;
  max-width: 40%;
  flex: 0 0 auto;
}
.part-logo--zm { height: 28px; }
@media (min-width: 960px) {
  .part-logo { height: 56px; }
  .part-logo--zm { height: 36px; }
}
.part-body { padding: 1.1rem 1.25rem 1.4rem; }
.part-tag {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-sea-bright);
}
.part h3 {
  font-family: var(--f-disp); font-weight: 600;
  font-size: 1.45rem; margin: .35rem 0 .55rem;
  color: var(--c-sea-deep);
}
.part p {
  margin: 0 0 .85rem;
  color: var(--c-ink-soft);
  font-size: .95rem;
}
.part-link {
  font-weight: 600;
  color: var(--c-sea);
  font-size: .92rem;
}

/* ===== BEREIKBAARHEID ===== */
.bereik {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}
.bereik-h {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--c-sea-deep);
  margin: 0 0 .35rem;
}
.bereik-lede {
  color: var(--c-ink-soft);
  margin: 0 0 1.5rem;
  max-width: 60ch;
}
.bereik-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.bereik-block {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.15rem 1.25rem 1.3rem;
}
.bereik-block h4 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.05rem;
  margin: .55rem 0 .35rem;
  color: var(--c-sea-deep);
}
.bereik-block p {
  margin: 0;
  color: var(--c-ink-soft);
  font-size: .92rem;
  line-height: 1.55;
}
.bereik-block p a { color: var(--c-sea-bright); font-weight: 600; }
.bereik-i {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(29, 109, 160, .1);
  color: var(--c-sea-bright);
}
.bereik-i svg { width: 20px; height: 20px; }

@media (min-width: 760px) {
  .bereik-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== BESTUUR ===== */
.sec-bestuur { background: #fff; border-top: 1px solid var(--c-line); }
.bestuur {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--c-line);
}
.bestuur li {
  display: flex; flex-direction: column; gap: 2px;
  padding: .85rem 0;
  border-bottom: 1px solid var(--c-line);
}
.bestuur b {
  font-family: var(--f-disp); font-weight: 600;
  font-size: 1.05rem; color: var(--c-sea-deep);
}
.bestuur span { font-size: .85rem; color: var(--c-muted); }
.bestuur .aspirant b::after {
  content: 'aspirant';
  display: inline-block;
  margin-left: .55rem;
  font-family: var(--f-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--c-sand-warm);
  color: var(--c-coral);
  padding: 2px 7px;
  border-radius: 999px;
  vertical-align: middle;
}

/* ===== SPONSORDOELEN ===== */
.sec-sponsor { background: var(--c-sand); }
.sponsor-list {
  list-style: none; padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
.sponsor-list li {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: .9rem 1rem;
  display: flex; flex-direction: column; gap: 2px;
}
.sponsor-list b {
  font-family: var(--f-disp); font-weight: 600;
  font-size: 1.02rem; color: var(--c-sea-deep);
}
.sponsor-list span { color: var(--c-ink-soft); font-size: .9rem; }

/* ===== CONTACT ===== */
.sec-contact {
  background: linear-gradient(180deg, var(--c-sea) 0%, var(--c-sea-deep) 100%);
  color: #fff;
}
.sec-contact .sec-h { margin-bottom: 1.5rem; text-align: center; margin-left: auto; margin-right: auto; }
.sec-contact .sec-h .lede { margin-left: auto; margin-right: auto; }

.form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-md);
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: .9rem;
  backdrop-filter: blur(6px);
  width: 100%;
}
@media (min-width: 760px) {
  .form { max-width: 540px; margin-left: auto; margin-right: auto; }
}
.form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
}
.form input,
.form textarea {
  font: inherit;
  background: rgba(255,255,255,.95);
  color: var(--c-ink);
  border: 0;
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  width: 100%;
  font-size: 1rem;
}
.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--c-sun);
  outline-offset: 2px;
}
.form .btn { margin-top: .25rem; }
.form .btn-primary { background: var(--c-sun); color: var(--c-sea-deep); }
.form .btn-primary:hover { background: #e2a528; }

/* ===== FOOTER ===== */
.ft {
  background: var(--c-sea-deep);
  color: rgba(255,255,255,.75);
  padding: 2.5rem 0 1.5rem;
  font-size: .9rem;
}
.ft a { color: rgba(255,255,255,.85); text-decoration: none; }
.ft a:hover { color: var(--c-sun); }
.ft-cols {
  display: flex; flex-direction: column; gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.ft-logo { height: 36px; width: auto; margin-bottom: .65rem; filter: brightness(0) invert(1); }
.ft-brand p { margin: 0; font-size: .9rem; line-height: 1.55; }
.ft-nav { display: flex; flex-direction: column; gap: .35rem; }
.ft-nav h5,
.ft-cred h5 {
  font-family: var(--f-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 .65rem;
  color: var(--c-sun);
}
.ft-cred p { margin: 0; line-height: 1.7; font-size: .85rem; }
.ft-bottom {
  display: flex; flex-direction: column; gap: .35rem;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* ===== TABLET (>=640px) ===== */
@media (min-width: 640px) {
  .container { padding: 0 1.75rem; }
  .sec { padding: 4rem 0; }

  .hero-cam { aspect-ratio: 16 / 9; }

  .hero-body { padding: 2rem 1.75rem 3rem; }

  .hero-stats { grid-template-columns: repeat(4, 1fr); }

  .hero-jumps { flex-direction: row; }

  .wx-extra { flex-direction: row; }
  .wx-extra .wx-card { flex: 1; }

  .sd-grid { grid-template-columns: 1fr 1fr; }

  .vz-grid { grid-template-columns: 1fr 1fr; }
  .vz--wide { grid-column: 1 / -1; }

  .sponsor-list { grid-template-columns: 1fr 1fr; }

  .ft-cols { flex-direction: row; gap: 3rem; }
  .ft-brand { flex: 1.4; }
  .ft-nav   { flex: 1; }
  .ft-cred  { flex: 1.2; }
  .ft-bottom { flex-direction: row; justify-content: space-between; }

  .bestuur {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: none;
    gap: 0 1.5rem;
  }
}

/* ===== DESKTOP (>=960px) ===== */
@media (min-width: 960px) {
  :root { --hdr-h: 72px; }
  .hdr { padding: 0 2rem; }
  .hdr-burger { display: none; }
  .hdr-menu {
    position: static;
    transform: none; opacity: 1; pointer-events: auto;
    flex-direction: row; align-items: center;
    background: transparent; border: 0; padding: 0;
    gap: .35rem;
  }
  .hdr-menu a {
    border-bottom: 0;
    padding: .55rem .85rem;
    border-radius: var(--r-sm);
    font-size: .92rem;
  }
  .hdr-menu a:hover { background: var(--c-sand); }
  .hdr-menu .cta {
    margin-top: 0;
    background: var(--c-sea); color: #fff;
    padding: .6rem 1.1rem;
  }
  .hdr-menu .cta:hover { background: var(--c-sea-deep); }
  .hdr-logo { height: 38px; }
  .hdr-wordmark b { font-size: .82rem; }
  .hdr-wordmark em { font-size: 1.1rem; }

  .hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
    min-height: calc(100vh - var(--hdr-h));
    max-height: 880px;
  }
  .hero-cam { aspect-ratio: auto; height: 100%; }
  .hero-body {
    display: flex; flex-direction: column; justify-content: center;
    padding: 3rem 3rem 3rem 2.5rem;
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .sec { padding: 5rem 0; }
  .sec-h { margin-bottom: 2.25rem; }

  .cam-deep { aspect-ratio: 16 / 8; }

  .wx {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem 2rem;
    padding: 1.75rem;
  }
  .wx-temp {
    grid-column: 1; grid-row: 1;
    border-bottom: 0; padding-bottom: 0; margin-bottom: 0;
  }
  .wx-stats {
    grid-column: 2; grid-row: 1;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    margin-bottom: 0;
  }
  .wx-surf { grid-column: 1 / -1; }

  .sd-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .vz-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
  .vz--wide { grid-column: span 3; display: flex; align-items: flex-start; gap: 1.5rem; }
  .vz--wide .vz-i { flex: 0 0 auto; }
  .vz--wide h3 { margin-top: 0; }

  .part-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .part-img { height: 240px; }

  .sponsor-list { grid-template-columns: repeat(3, 1fr); }
}

/* ===== WIDE (>=1180px) ===== */
@media (min-width: 1180px) {
  .hero-body { padding: 4rem 4.5rem 4rem 3rem; }
}

/* ===== reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
