/* whatsontoday.co.uk — 2026-09-17 */

:root {
  --navy: #101C3D;
  --navy-2: #1B2A56;
  --blue: #1F6FE5;
  --blue-d: #1553B8;
  --pink: #F4356A;
  --pink-d: #D51F52;
  --yellow: #FFD84D;
  --ink: #101828;
  --muted: #5A6785;
  --line: #E4E9F2;
  --soft: #F5F8FC;
  --white: #fff;
  --radius: 18px;
  --radius-s: 12px;
  --shadow: 0 2px 4px rgba(16,28,61,.05), 0 12px 28px rgba(16,28,61,.08);
  --shadow-lg: 0 8px 20px rgba(16,28,61,.10), 0 28px 60px rgba(16,28,61,.14);
  --wrap: 1180px;

  --c-pink: #F4356A;
  --c-yellow: #F5B800;
  --c-blue: #2C7BE5;
  --c-teal: #12A594;
  --c-violet: #7C5CF0;
  --c-coral: #F0603C;
  --c-mint: #16A97A;
  --c-amber: #E08700;
  --c-magenta: #C93C99;
  --c-sky: #1E92D8;
}

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

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: var(--blue); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); font-weight: 800; }
h3 { font-size: 1.05rem; font-weight: 800; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.pad { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.mt { margin-top: 3rem; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 6px;
}

.hand { font-family: Caveat, ui-rounded, cursive; font-weight: 700; line-height: 1.12; }

/* ---------- preview bar ---------- */
.preview-bar {
  background: var(--yellow); color: #3D2B00;
  font-size: .86rem; line-height: 1.45;
  border-bottom: 1px solid rgba(0,0,0,.10);
}
.preview-bar .wrap { display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem .55rem; padding: .55rem 0; }
.preview-bar strong { font-weight: 800; }
.preview-bar b { font-weight: 800; }
.preview-bar a { color: #3D2B00; font-weight: 700; white-space: nowrap; }

/* ---------- nav ---------- */
.nav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.nav .wrap { display: flex; align-items: center; gap: 1.25rem; min-height: 68px; }

.logo { text-decoration: none; color: var(--navy); display: block; flex: 0 0 auto; }
.logo b { display: block; font-size: 1.28rem; font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.logo b span { color: var(--pink); }
.logo b i { font-style: normal; color: var(--muted); font-weight: 700; font-size: .78em; }
.logo small {
  display: block; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-top: .2rem;
}

.nav nav { margin-left: auto; }
.nav nav ul { list-style: none; display: flex; gap: 1.35rem; margin: 0; padding: 0; }
.nav nav a {
  color: var(--navy); text-decoration: none; font-weight: 600; font-size: .92rem;
  padding: .4rem 0; display: block; border-bottom: 2px solid transparent;
}
.nav nav a:hover { border-bottom-color: var(--pink); }
.nav .cta { flex: 0 0 auto; }

.burger { display: none; background: none; border: 0; padding: .55rem; cursor: pointer; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.burger span + span { margin-top: 5px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-weight: 700; font-size: .92rem; text-decoration: none; cursor: pointer;
  padding: .68rem 1.15rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn.pink { background: var(--pink); color: #fff; box-shadow: 0 6px 16px rgba(244,53,106,.28); }
.btn.pink:hover { background: var(--pink-d); }
.btn.blue { background: var(--blue); color: #fff; }
.btn.white { background: #fff; color: var(--navy); }
.btn.ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--navy); }
.btn.lg { padding: .85rem 1.5rem; font-size: 1rem; }
.btn.block { display: flex; width: 100%; margin-top: .85rem; }
.btn .ar { transition: transform .12s ease; }
.btn:hover .ar { transform: translateX(3px); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.linkbtn {
  background: none; border: 0; color: var(--blue); font: inherit; font-size: .88rem;
  font-weight: 700; cursor: pointer; padding: 0; text-decoration: underline;
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); isolation: isolate; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(10,16,38,.86) 0%, rgba(10,16,38,.62) 46%, rgba(10,16,38,.18) 74%);
}
.hero-in { position: relative; padding: clamp(2.8rem, 7vw, 5.2rem) 0 clamp(1.6rem, 3vw, 2.2rem); color: #fff; }
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 2px 22px rgba(0,0,0,.3); }
.hero h1 span { color: #8FC0FF; }
.hero .lede { font-size: clamp(1rem, 2vw, 1.22rem); font-weight: 600; max-width: 42ch; margin: 0 0 1.8rem; }

.splat {
  position: absolute; top: .5rem; left: 0; width: 148px; height: 128px;
  display: grid; place-items: center; transform: rotate(-14deg);
  background: var(--yellow); color: #3D2B00;
  clip-path: polygon(8% 14%, 32% 2%, 58% 12%, 84% 0, 96% 26%, 88% 52%, 100% 76%, 72% 88%, 46% 100%, 20% 90%, 4% 68%, 12% 42%);
}
.splat i {
  font-family: Caveat, cursive; font-style: normal; font-weight: 700;
  font-size: 1.12rem; line-height: 1.05; text-align: center; text-transform: uppercase;
}

@media (min-width: 1100px) { .hero-in { padding-left: 162px; } }

.scrib { position: absolute; color: #FFE9A3; font-size: 1.32rem; margin: 0; text-align: center; }
.scrib-a { top: 2.2rem; right: 1rem; transform: rotate(6deg); }
.scrib-b { top: 13rem; right: 2.2rem; transform: rotate(-5deg); }
.scrib-c { color: #FFE9A3; font-size: 1.4rem; margin: 0; }
.scrib-d { color: var(--yellow); font-size: 1.35rem; margin: 0 0 .5rem; transform: rotate(-3deg); }

/* search */
.search {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: stretch;
  background: #fff; border-radius: 999px; padding: .5rem; box-shadow: var(--shadow-lg);
  max-width: 880px;
}
.s-field { display: flex; flex-direction: column; justify-content: center; padding: .2rem 1rem; min-width: 150px; border-radius: 999px; }
.s-field.grow { flex: 1 1 200px; }
.s-field + .s-field { border-left: 1px solid var(--line); }
.s-field label { font-size: .7rem; font-weight: 800; color: var(--navy); letter-spacing: .01em; }
.s-field input, .s-field select {
  border: 0; padding: .1rem 0; font: inherit; font-size: .92rem; color: var(--ink);
  background: none; width: 100%; min-width: 0;
}
.s-field select { appearance: none; cursor: pointer; }
.s-field input::placeholder { color: #93A0BA; }
.search .btn { flex: 0 0 auto; }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.1rem; }
.chip {
  background: rgba(255,255,255,.92); border: 0; color: var(--navy);
  font: inherit; font-size: .84rem; font-weight: 700; padding: .45rem 1rem;
  border-radius: 999px; cursor: pointer;
}
.chip:hover { background: #fff; }
.chip[aria-pressed="true"] { background: var(--blue); color: #fff; }

/* ---------- results ---------- */
.results { padding: clamp(2rem, 5vw, 3.2rem) 0; }
.res-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1rem; }
.res-head h2 { margin: 0; }
.star { color: var(--pink); }
.sq { display: inline-block; width: 1rem; height: 1rem; border-radius: 4px; background: var(--blue); vertical-align: -1px; }
.moon { color: var(--yellow); }
.res-count { margin: 0; color: var(--muted); font-size: .9rem; font-weight: 600; }
.res-head .linkbtn { margin-left: auto; }
.res-note {
  margin: .6rem 0 1.6rem; color: var(--muted); font-size: .9rem; max-width: 68ch;
  border-left: 3px solid var(--yellow); padding-left: .85rem;
}
.sub { color: var(--muted); margin: -.2rem 0 1.5rem; }
.empty { text-align: center; color: var(--muted); padding: 2.5rem 1rem; }

.grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
}
.grid-cell[hidden] { display: none; }

.card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .14s ease, box-shadow .14s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-art { position: relative; aspect-ratio: 16 / 11; background: var(--soft); }
.poster { display: block; width: 100%; height: 100%; }
.badge {
  position: absolute; top: .6rem; right: .6rem; color: #fff;
  font-size: .68rem; font-weight: 800; padding: .25rem .6rem; border-radius: 999px;
  background: var(--navy); letter-spacing: .01em;
}
.sample {
  position: absolute; top: .6rem; left: .6rem;
  background: rgba(255,255,255,.94); color: #3D2B00;
  font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: .22rem .5rem; border-radius: 5px; border: 1px solid rgba(0,0,0,.08);
}
.card-body { padding: .85rem .95rem 1rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1rem; margin-bottom: .5rem; }
.meta { margin: 0 0 .28rem; font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: .42rem; }
.note { margin: .5rem 0 0; font-size: .81rem; color: var(--muted); }
.card-body .btn { margin-top: auto; }

.pin, .clock, .tag {
  flex: 0 0 auto; width: 13px; height: 13px; display: inline-block;
  background: currentColor; opacity: .75;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.pin { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.clock { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }
.tag { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12V4h8l10 10-8 8z'/%3E%3Ccircle cx='7.5' cy='7.5' r='1.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12V4h8l10 10-8 8z'/%3E%3Ccircle cx='7.5' cy='7.5' r='1.5'/%3E%3C/svg%3E"); }
.pin.big { width: 1.1rem; height: 1.1rem; color: var(--pink); opacity: 1; vertical-align: -2px; }

/* ---------- categories ---------- */
.cats { background: var(--soft); padding: clamp(2.5rem, 6vw, 4rem) 0; }
.cat-grid { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.cat {
  display: flex; flex-direction: column; gap: .55rem; justify-content: space-between;
  min-height: 108px; padding: .9rem; border-radius: var(--radius-s);
  color: #fff; text-decoration: none; font-weight: 800;
  transition: transform .14s ease, box-shadow .14s ease;
}
.cat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat .ic-wrap { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.22); }
.ic { width: 20px; height: 20px; display: block; }
.ic-wrap.big { display: inline-grid; width: 46px; height: 46px; vertical-align: -.6rem; }
.ic-wrap.big .ic { width: 27px; height: 27px; }

.c-pink { background: var(--c-pink); } .c-yellow { background: var(--c-yellow); }
.c-blue { background: var(--c-blue); } .c-teal { background: var(--c-teal); }
.c-violet { background: var(--c-violet); } .c-coral { background: var(--c-coral); }
.c-mint { background: var(--c-mint); } .c-amber { background: var(--c-amber); }
.c-magenta { background: var(--c-magenta); } .c-sky { background: var(--c-sky); }

/* ---------- tonight ---------- */
.tonight { background: var(--navy); color: #fff; padding: clamp(2.5rem, 6vw, 3.8rem) 0; }
.tonight h2 { color: #fff; margin: 0; }
.ton-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1.1rem; margin-bottom: 1.6rem; }
.ton-head .sub { margin: 0; color: #A8B6D6; }
.tonight .ton-head .sub a { color: #fff; }
.ton-head .scrib-c { margin-left: auto; transform: rotate(-4deg); }

.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.timeline li {
  position: relative; padding-top: 1.5rem;
  border-top: 2px solid rgba(255,255,255,.18);
  display: grid; grid-template-columns: 46px 1fr; gap: .65rem; align-items: center;
}
.timeline .dot { position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--pink); }
.timeline .t-time { grid-column: 1 / -1; color: var(--yellow); font-weight: 800; font-size: .88rem; margin-top: -.35rem; }
.timeline .t-art { width: 46px; height: 46px; border-radius: 10px; overflow: hidden; }
.timeline .t-body { min-width: 0; }
.timeline .t-body b { display: block; font-size: .92rem; }
.timeline .t-body span { display: block; color: #A8B6D6; font-size: .8rem; }

/* ---------- cities ---------- */
.cities-strip { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.city-grid { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fill, minmax(216px, 1fr)); }
.city {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: #fff; min-height: 132px; box-shadow: var(--shadow);
  transition: transform .14s ease, box-shadow .14s ease;
}
.city:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.skyline { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.city-body {
  position: relative; display: block; padding: 1rem;
  background: linear-gradient(to top, rgba(8,14,34,.82), rgba(8,14,34,0));
  margin-top: 62px;
}
.city-body b { display: block; font-size: 1.12rem; font-weight: 800; }
.city-body span { display: block; font-size: .78rem; opacity: .85; }
.city .go {
  position: absolute; right: .8rem; bottom: .9rem; width: 30px; height: 30px;
  border-radius: 50%; background: #fff; color: var(--navy);
  display: grid; place-items: center; font-weight: 800;
}

/* ---------- signup ---------- */
.signup { background: var(--soft); padding: clamp(2.5rem, 6vw, 4rem) 0; }
.signup-grid { display: grid; gap: 1.2rem; grid-template-columns: 1.15fr .85fr; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 1.9rem); box-shadow: var(--shadow); }
.form-card.yellow { background: var(--yellow); border-color: rgba(0,0,0,.08); }
.form-card.yellow .small, .form-card.yellow p { color: #4A3600; }
.form-card.yellow a { color: #3D2B00; }
.form-card.navy { background: var(--navy); color: #fff; border-color: transparent; position: relative; }
.form-card.navy h2 { color: #fff; }
.form-card.navy p { color: #C3CEE6; }
.form-card h2 { margin-top: 0; }

form div { margin-bottom: .8rem; }
.f-row { display: grid; gap: .8rem; grid-template-columns: 1fr 1fr; margin-bottom: 0; }
label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .25rem; }
label em { font-style: normal; font-weight: 500; opacity: .7; }
input[type=text], input[type=email], input[type=search], select, textarea {
  width: 100%; font: inherit; font-size: .95rem; padding: .62rem .8rem;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); }

.checks { border: 0; padding: 0; margin: 0 0 .9rem; }
.checks legend { font-size: .82rem; font-weight: 700; padding: 0; margin-bottom: .4rem; }
.checks legend em { font-style: normal; font-weight: 500; opacity: .7; }
.check { display: inline-flex; align-items: center; gap: .35rem; margin: 0 .8rem .35rem 0; font-weight: 600; font-size: .85rem; }
.check input { width: auto; margin: 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.status { margin: .7rem 0 0; font-size: .88rem; font-weight: 600; min-height: 1.2em; }
.status.bad { color: #B4174B; }
.small { font-size: .78rem; color: var(--muted); margin: .7rem 0 0; }
.bad-field input, .bad-field select, .bad-field textarea { border-color: #D5325F; }
.err { display: block; color: #B4174B; font-size: .78rem; font-weight: 600; margin-top: .25rem; }
.done { text-align: center; padding: 1.4rem 0; }
.tickbig {
  width: 52px; height: 52px; border-radius: 50%; background: var(--c-mint); color: #fff;
  display: grid; place-items: center; font-size: 1.6rem; margin: 0 auto .8rem;
}

.ticks { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.ticks li { position: relative; padding-left: 1.6rem; margin-bottom: .45rem; font-size: .92rem; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -.05rem;
  color: var(--yellow); font-weight: 800;
}

/* ---------- inner pages ---------- */
.page-head { background: var(--soft); padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(1.6rem, 4vw, 2.6rem); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-head .lede { font-size: 1.06rem; color: var(--muted); max-width: 62ch; margin: 0; }
.kick { font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--pink); margin: 0 0 .5rem; }
.kick a { color: var(--pink); }

.city-head { background: var(--navy); border-bottom: 0; color: #fff; }
.city-head .lede { color: #C3CEE6; }
.city-head h1 { color: #fff; }
.city-head .kick, .city-head .kick a { color: var(--yellow); }
.city-head-art { position: absolute; inset: 0; opacity: .34; }
.city-head .wrap { position: relative; }

/* Navy, not the category colour: white on --c-yellow / --c-amber failed contrast. */
.cat-head { background: var(--navy); border-bottom: 0; color: #fff; }
.cat-head h1 { color: #fff; }
.cat-head .lede { color: #C3CEE6; }
.cat-head .kick { color: var(--yellow); }

.two-col { display: grid; gap: 1.4rem; grid-template-columns: 1.2fr .8fr; align-items: start; }
.side h2 { margin-top: 0; }
.steps { padding-left: 1.2rem; margin: 0 0 1.4rem; }
.steps li { margin-bottom: .7rem; }
.side-note { background: var(--soft); border-radius: var(--radius-s); padding: 1rem 1.1rem; margin-bottom: .9rem; }
.side-note h3 { margin-bottom: .35rem; }
.side-note p { margin: 0; font-size: .9rem; color: var(--muted); }

.prose { max-width: 70ch; }
.prose h2 { margin-top: 2.2rem; font-size: 1.35rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.prose code { background: var(--soft); padding: .1rem .35rem; border-radius: 5px; font-size: .9em; }
.callout { background: #FFF8E1; border: 1px solid #F3DFA0; border-left: 4px solid var(--yellow); border-radius: var(--radius-s); padding: 1.1rem 1.25rem; }
.callout h2 { margin-top: 0; font-size: 1.15rem; }
.callout p:last-child { margin-bottom: 0; }

.cta-band {
  margin-top: 2.6rem; background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2rem); display: flex; flex-wrap: wrap; gap: 1rem 1.6rem;
  align-items: center; justify-content: space-between;
}
.cta-band h2 { color: #fff; margin: 0 0 .3rem; font-size: 1.3rem; }
.cta-band p { margin: 0; color: #C3CEE6; max-width: 56ch; font-size: .94rem; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: .6rem; }
.cta-band .btn.ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn.ghost:hover { border-color: #fff; }

/* ---------- footer ---------- */
.foot { background: var(--navy); color: #C3CEE6; padding: clamp(2.2rem, 5vw, 3.2rem) 0 1.4rem; }
.foot .logo { color: #fff; }
.foot .logo b i { color: #8494B8; }
.foot .logo small { color: #8494B8; }
.foot-top { display: grid; gap: 1.8rem; grid-template-columns: 1fr 1.4fr; padding-bottom: 1.8rem; }
.foot-note { color: var(--yellow); font-size: 1.3rem; margin: 1rem 0 0; position: relative; display: inline-block; }
.u-line { display: block; width: 110px; height: 8px; fill: none; stroke: var(--pink); stroke-width: 2.2; stroke-linecap: round; }
.foot-cols { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
.foot-cols h2 { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: #fff; margin-bottom: .7rem; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-cols li { margin-bottom: .35rem; }
.foot-cols a { color: #C3CEE6; text-decoration: none; font-size: .9rem; }
.foot-cols a:hover { color: #fff; text-decoration: underline; }
.foot-bot {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.1rem;
  display: flex; flex-wrap: wrap; gap: .3rem 1.4rem; justify-content: space-between;
  font-size: .8rem;
}
.foot-bot p { margin: 0; }
.foot-bot .mid { color: #8494B8; }

/* ---------- responsive ---------- */
@media (max-width: 1099px) {
  .scrib-a, .scrib-b { display: none; }
  /* No room in the margin — park it in the empty sky on the right instead. */
  .splat { left: auto; right: 0; top: .5rem; width: 118px; height: 102px; }
  .splat i { font-size: .94rem; }
}
@media (max-width: 620px) {
  .splat { display: none; }
}
@media (max-width: 900px) {
  .burger { display: block; }
  .nav nav { display: none; order: 3; width: 100%; margin: 0; }
  .nav nav[data-open] { display: block; padding-bottom: .8rem; }
  .nav nav ul { flex-direction: column; gap: 0; }
  .nav nav a { padding: .6rem 0; border-bottom: 1px solid var(--line); }
  .nav .wrap { flex-wrap: wrap; gap: .6rem; }
  /* CTA and burger share the logo's row — both had margin-left:auto, which
     pushed the CTA onto a line of its own. */
  .nav .cta { order: 1; margin-left: auto; }
  .burger { order: 2; margin-left: 0; margin-right: -.4rem; }
  .signup-grid, .two-col, .foot-top { grid-template-columns: 1fr; }
  .search { border-radius: var(--radius); }
  .s-field + .s-field { border-left: 0; border-top: 1px solid var(--line); }
  .s-field { width: 100%; }
  .search .btn { width: 100%; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
  .f-row { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .nav .cta .btn { padding: .55rem .9rem; font-size: .84rem; }
  .logo b { font-size: 1.14rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
