/* =========================================================================
   Go Coastal — gold on black, Georgia wordmark, sans body.
   Zero dependencies. Gold on black. No decorative wave over the page.
   ========================================================================= */

:root {
  --bg: #000000;
  --surface: #0b0b0e;
  --surface-2: #141419;
  --text: #f5f2ea;
  --muted: #b5afa1;
  --muted-dim: #7d776b;
  --gold: #f6c453;
  --gold-deep: #e0902b;
  --gold-light: #ffe39a;
  --border: rgba(246, 196, 83, 0.18);
  --border-soft: rgba(246, 196, 83, 0.10);
  --border-strong: rgba(246, 196, 83, 0.38);
  --glow: 0 0 22px rgba(246, 196, 83, 0.32);
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --maxw: 1120px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 3.65rem;
  --step--1: clamp(0.8rem, 0.77rem + 0.15vw, 0.88rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1: clamp(1.12rem, 1.04rem + 0.45vw, 1.3rem);
  --step-2: clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  --step-3: clamp(1.75rem, 1.4rem + 1.6vw, 2.55rem);
  --step-4: clamp(2.15rem, 1.55rem + 2.6vw, 3.75rem);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(55% 45% at 12% -8%, rgba(246, 196, 83, 0.07), transparent 60%),
    radial-gradient(50% 40% at 100% 0%, rgba(224, 144, 43, 0.05), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  line-height: 1.18;
  font-weight: 400;
  color: var(--text);
}
h1 {
  font-family: var(--font-serif);
  font-size: var(--step-4);
  letter-spacing: 0.01em;
}
h2 { font-size: var(--step-3); font-family: var(--font-serif); }
h3 { font-size: var(--step-1); font-weight: 500; }
p { color: var(--muted); }
ul { padding-left: 1.1rem; }
strong { font-weight: 600; color: var(--text); }

:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface-2);
  color: var(--text);
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(3.25rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--listings { padding-block: clamp(2.25rem, 5.5vw, 4rem); }
.stack > * + * { margin-top: 1.1rem; }
.text-center { text-align: center; }
.measure { max-width: 62ch; }
.gold { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.lede {
  font-size: var(--step-1);
  font-weight: 400;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.65;
  margin-top: 1.1rem;
}

/* ---- Wordmark: text only, gold on black -------------------------------- */
.wordmark {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 4.6vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
  padding-right: 0.12em; /* trailing tracking must not clip */
  overflow: visible;
}

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--step-0);
  letter-spacing: 0.02em;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.25s ease, background 0.25s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  color: #111;
  background: var(--gold);
}
.btn-primary:hover { box-shadow: var(--glow); background: var(--gold-light); }
.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(246, 196, 83, 0.08); border-color: var(--gold); }
.btn-sm { padding: 0.55rem 1.05rem; font-size: var(--step--1); }

/* ---- Header / nav ------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding-block: 0.55rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
  text-decoration: none;
}
.nav__brand:hover { text-decoration: none; }
.nav__toggle {
  display: none;
  flex: 0 0 auto;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.4rem 0.75rem;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  cursor: pointer;
}
.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0;
  margin: 0;
}
.nav__links a {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--text);
  text-decoration: none;
}
.nav__links a[aria-current="page"] { color: var(--gold); }
.nav__cta { margin-left: 0.15rem; }

@media (max-width: 1100px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: calc(var(--gutter) * -1);
    right: calc(var(--gutter) * -1);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: #000;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem var(--gutter) 1.25rem;
    display: none;
  }
  .nav__menu.is-open {
    display: flex;
    max-height: min(70dvh, calc(100dvh - var(--header-h)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
  }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links a {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav__cta { margin: 0.85rem 0 0; }
  .nav__cta .btn { width: 100%; }
}
@media (min-width: 1101px) {
  .nav__toggle { display: none; }
  .nav__menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.15rem;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }
  .nav__links {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .nav__links a {
    display: inline;
    padding: 0;
    border-bottom: 0;
    font-size: 0.9rem;
  }
  .nav__cta { margin: 0 0 0 0.15rem; }
  .nav__cta .btn { width: auto; }
}

/* ---- Hero -------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__inner { padding-block: clamp(3rem, 8vw, 6.5rem) 2.5rem; position: relative; z-index: 1; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero__note { margin-top: 1.25rem; font-size: var(--step--1); color: var(--muted-dim); }
#this-week { scroll-margin-top: calc(var(--header-h) + 0.75rem); }

/* ---- Cards / grids ----------------------------------------------------- */
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2.25rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.band { border-block: 1px solid var(--border-soft); }

.card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--border-soft);
  padding: 1.5rem 0 0;
}
.card h3 { margin-bottom: 0.5rem; }
.card__tag {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.split {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 861px) { .split { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }

.check { list-style: none; padding: 0; }
.check li {
  position: relative;
  padding-left: 1.6rem;
  margin-top: 0.65rem;
  color: var(--muted);
}
.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}

.cta-panel {
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(2.1rem, 5vw, 3.75rem);
  background: radial-gradient(70% 130% at 50% 0%, rgba(246, 196, 83, 0.06), transparent 62%);
}
.cta-panel .hero__actions { justify-content: center; }
.cta-panel .lede { margin-inline: auto; }

/* ---- Weekend rail ------------------------------------------------------ */
.rail {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.4rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.rail::-webkit-scrollbar { height: 4px; }
.rail::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }

.rail-day {
  flex: 0 0 min(72vw, 16.5rem);
  scroll-snap-align: start;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem 1.2rem;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
}
.rail-day:hover { text-decoration: none; border-color: var(--border-strong); }
.rail-day__date {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.rail-day h3 { margin: 0.4rem 0 0.45rem; font-size: 1.15rem; }
.rail-day p { font-size: var(--step--1); }

/* ---- Featured + hub tiles ---------------------------------------------- */
.feature {
  display: grid;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
}
.feature:hover { text-decoration: none; border-color: var(--border-strong); }
.feature__media { overflow: hidden; background: var(--surface-2); line-height: 0; }
.feature__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.feature__body { padding: 1.25rem 1.25rem 1.4rem; }
.feature__body h2 { font-size: var(--step-2); margin: 0.35rem 0 0.55rem; }
@media (min-width: 800px) {
  .feature { grid-template-columns: 1.15fr 1fr; align-items: stretch; }
}

.hub-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.hub-tile {
  position: relative;
  display: block;
  min-height: 9rem;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
}
.hub-tile:hover { text-decoration: none; color: var(--text); }
.hub-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.hub-tile__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  z-index: 1;
}
.hub-tile h2 {
  font-size: var(--step-1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
}
.hub-tile p { color: var(--text); font-size: var(--step--1); opacity: 0.85; margin-top: 0.15rem; }
@media (min-width: 720px) {
  .hub-tile { min-height: 13.5rem; }
  .hub-tile h2 { font-size: var(--step-2); }
}

/* ---- Listings ---------------------------------------------------------- */
.listing {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.listing__media,
.headline__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
  line-height: 0;
}
.listing__media img,
.headline__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.listing__body { padding: 1.1rem 1.15rem 1.2rem; }
.listing__meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.listing h3 { margin-bottom: 0.4rem; }
.listing__body p { font-size: var(--step-0); }
.listing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}
.listing.is-cancelled { opacity: 0.85; }
.listing.is-cancelled h3 { text-decoration: line-through; text-decoration-thickness: 1px; }

.listing-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .listing-grid--2 { grid-template-columns: 1fr 1fr; }
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1.15rem;
}
.kicker h2 { margin: 0; font-size: var(--step-2); }
.kicker a { font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; }

.carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.carousel__track::-webkit-scrollbar { height: 4px; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }
.carousel .listing {
  flex: 0 0 min(82vw, 20rem);
  scroll-snap-align: start;
}
@media (min-width: 720px) {
  .carousel .listing { flex-basis: min(42vw, 22rem); }
}

/* ---- Event rows (what's on / archive) ---------------------------------- */
.event {
  display: grid;
  gap: 0.35rem 1.25rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.event:first-of-type { border-top: 1px solid var(--border-soft); }
.event[hidden],
.listing[hidden],
.headline[hidden],
.hub-tile[hidden],
.is-filtered-out {
  display: none !important;
}
.event__when {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.event h3 { font-size: var(--step-1); }
.event__place { color: var(--muted); font-size: var(--step--1); }
.event__note { color: var(--muted); }
.event.is-cancelled .event__when { color: #f0a0a0; }
@media (min-width: 720px) {
  .event {
    grid-template-columns: 11rem 1fr auto;
    align-items: baseline;
  }
  .event__place { grid-column: 2; }
  .event__note { grid-column: 2; }
  .event .btn { grid-column: 3; grid-row: 1 / span 3; align-self: center; }
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0.25rem;
}
.filter-btn {
  font: inherit;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
}
.filter-btn[aria-pressed="true"],
.filter-btn.is-active,
.filter-btn:hover {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
}

.search {
  width: 100%;
  max-width: 28rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
}
.search:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246, 196, 83, 0.18);
}

.empty-filter { color: var(--muted); margin-top: 1.25rem; }

/* ---- Bay status -------------------------------------------------------- */
.status-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 720px) {
  .status-grid { grid-template-columns: repeat(4, 1fr); }
}
.status {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: var(--surface);
}
.status__label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dim);
}
.status strong {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--step-1);
  font-weight: 500;
}
.status p { margin-top: 0.25rem; font-size: var(--step--1); }
.status--alert { border-color: rgba(246, 196, 83, 0.4); }
.status--ok strong { color: var(--gold); }

.hero--photo {
  position: relative;
  min-height: 16rem;
  display: flex;
  align-items: flex-end;
}
.hero--photo .hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero--photo .hero__bg img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
/* Real overlay (and ::after fallback). The photo is position:absolute so a
   z-index-less ::after paints under the img and the white H1 disappears on
   the Spanish City dome. */
.hero--photo .hero__scrim,
.hero--photo .hero__bg::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.78) 42%, rgba(0,0,0,0.52) 68%, rgba(0,0,0,0.32) 100%);
}
.hero--photo .hero__bg::after { content: ""; }
.hero--photo .hero__bg:has(.hero__scrim)::after { content: none; }
.hero--photo .hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(4.5rem, 14vw, 8rem) 2.25rem;
}
.hero--photo h1 { max-width: 16ch; }
.hero--photo .lede { color: var(--text); }

/* ---- Archive / article ------------------------------------------------- */
.issue-card {
  display: block;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
}
.issue-card:hover { text-decoration: none; border-color: var(--border-strong); }
.issue-card h2 { font-size: var(--step-2); margin: 0.4rem 0 0.55rem; }

.prose { max-width: 66ch; }
.prose h2 { margin: 2.4rem 0 0.85rem; font-size: var(--step-2); }
.prose h3 { margin: 1.6rem 0 0.45rem; }
.prose p + p { margin-top: 0.9rem; }
.prose ul { margin: 0.7rem 0 0; color: var(--muted); }
.prose li + li { margin-top: 0.45rem; }

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
  max-width: 26rem;
}
.subscribe-form__input {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.subscribe-form__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246, 196, 83, 0.18);
}
.subscribe-form__status { min-height: 1.25rem; font-size: var(--step--1); }
.subscribe-form__status.is-error { color: #f87171; }
.subscribe-form__status.is-success { color: var(--gold); }

/* ---- Footer ------------------------------------------------------------ */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #000;
  padding-block: 3rem 1.75rem;
  margin-top: 2rem;
}
.footer__grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}
.footer__brand .wordmark { margin-bottom: 0.85rem; }
.footer__brand p { font-size: var(--step--1); max-width: 34ch; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; padding: 0; }
.footer li + li { margin-top: 0.55rem; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }
.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: var(--step--1);
  color: var(--muted-dim);
}

/* ---- Homepage headlines (Chronicle / Skiddle style cards) -------------- */
.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.jump a,
.jump .filter-btn {
  font: inherit;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  cursor: pointer;
}
.jump a:hover,
.jump .filter-btn:hover,
.jump .filter-btn.is-active,
.jump .filter-btn[aria-pressed="true"] {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
  text-decoration: none;
}

.headlines {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .headlines { grid-template-columns: 1.2fr 1fr; }
  .headlines > .headline:first-child { grid-row: span 2; }
}
.headline {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.headline:hover { text-decoration: none; border-color: var(--border-strong); }
.headline__body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.headline h2, .headline h3 { font-size: var(--step-1); font-family: var(--font-serif); }
.headlines > .headline:first-child h2 { font-size: var(--step-2); }
.headline__when { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.headline__venue { color: var(--muted); font-size: var(--step--1); }
.headline__cta { margin-top: auto; padding-top: 0.85rem; }

.news-list { list-style: none; padding: 0; }
.news-list li { border-bottom: 1px solid var(--border-soft); }
.news-list a {
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 0;
  text-decoration: none;
  color: inherit;
}
.news-list a:hover { text-decoration: none; }
.news-list time {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.news-list h3 { font-size: var(--step-1); }

/* ---- Listing detail / place hubs -------------------------------------- */
.facts {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 720px) {
  .facts { grid-template-columns: 1fr 1fr; }
}
.facts div {
  border-top: 1px solid var(--border-soft);
  padding-top: 0.85rem;
}
.facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.facts dd { color: var(--muted); }
.source { font-size: var(--step--1); color: var(--muted-dim); margin-bottom: 1.25rem; }
.updated {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dim);
}
.listing-detail { max-width: 46rem; }
.week-strip { margin-top: 0.5rem; }
.week-strip .event:first-of-type { border-top: 1px solid var(--border-soft); }
.week-strip[data-empty="true"] .empty-filter { display: block; }
.place-metro {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  background: var(--surface);
  margin: 1.5rem 0 0;
}
.place-metro h2 { font-size: var(--step-1); margin-bottom: 0.45rem; }
.filters-row { margin-top: 0.35rem; }
.filters-row + .filters { margin-top: 0.55rem; }

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