/* ── Tokens ── */
:root {
  --accent: #cc0000;
  --accent-soft: rgba(204,0,0,0.08);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --ink: #1a1a1a;
  --ink-2: #3d3d3d;
  --ink-3: #5c5c5c;
  --ink-4: #969696;
  --bg: #ffffff;
  --bg-card: #ffffff;
  --bg-2: #f7f7f7;
  --rule: #e8e8e8;
  --radius: 0.5rem;
  --shadow-card: none;
  --shadow-hover: none;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { margin: 0; font-family: var(--font-sans); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent-soft); }

/* ── Shell ── */
.shell { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header-bar { position: relative; z-index: 1; }
.mobile-nav { position: relative; z-index: 1; }
.nav-toggle-input { display: none; }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 4.25rem;
  gap: 1.5rem;
}
.site-brand {
  display: inline-flex; align-items: baseline;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800; font-size: 1.6rem;
  letter-spacing: 0.01em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.brand-mark { color: var(--accent); }
.brand-city {
  font-family: var(--font-sans);
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-4);
  margin-left: 0.6rem;
  align-self: center;
}
.header-nav {
  display: flex; align-items: center;
  justify-content: center; gap: 0;
}
.header-nav a {
  display: inline-flex; align-items: center;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink-3); text-decoration: none;
  white-space: nowrap; transition: color 0.15s;
  border-radius: 0;
}
.header-nav a:hover,
.header-nav a.active { color: var(--ink); }
.header-cta {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1.1rem;
  background: var(--accent); color: #fff;
  font-size: 0.83rem; font-weight: 700;
  border-radius: 999px; white-space: nowrap;
  transition: opacity 0.15s;
}
.header-cta:hover { opacity: 0.88; color: #fff; }

/* Mobile nav */
.nav-toggle-btn {
  display: none; flex-direction: column;
  gap: 4.5px; padding: 0.45rem;
  cursor: pointer; background: none; border: none;
}
.nav-toggle-btn span {
  display: block; width: 18px; height: 2px;
  background: var(--ink-3); border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.mobile-nav { display: none; border-top: 1px solid var(--rule); background: var(--bg); }
.mobile-nav-inner { display: flex; flex-direction: column; padding: 0.5rem 0 0.75rem; }
.mobile-nav-inner a {
  display: block; padding: 0.65rem 0.85rem;
  font-size: 0.92rem; font-weight: 500;
  color: var(--ink-3); border-left: 3px solid transparent;
}
.mobile-nav-inner a:hover { color: var(--ink); }
.mobile-nav-inner a.active { color: var(--ink); font-weight: 700; border-left-color: var(--accent); }

.site-main { min-height: 60vh; }

/* ── Footer ── */
.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--rule);
  background: var(--bg-2);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,1fr) minmax(0,1fr);
  gap: 2rem; padding: 2.25rem 0;
  border-bottom: 1px solid var(--rule);
}
.footer-brand {
  display: inline-flex; align-items: baseline;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800; font-size: 1.4rem;
  letter-spacing: 0.01em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
}
.footer-brand-block p {
  margin: 0.6rem 0 0; max-width: 28rem;
  color: var(--ink-3); font-size: 0.9rem; line-height: 1.65;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; align-content: start; justify-content: flex-start; }
.footer-nav-label {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 0.35rem;
}
.footer-nav a { font-size: 0.86rem; font-weight: 500; color: var(--ink-3); transition: color 0.15s; }
.footer-nav a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between;
  gap: 1rem; padding: 0.9rem 0;
  color: var(--ink-4); font-size: 0.8rem;
}
.footer-bottom a { color: var(--ink-3); }
.footer-bottom a:hover { color: var(--ink); }

/* ── Pills ── */
.pill {
  display: inline-block;
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: var(--accent);
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
.pill--guides { background: transparent; color: #1e5fbe; }
.pill--events { background: transparent; color: #187a4a; }

.card-cat {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.card-meta-sep { color: var(--ink-4); font-size: 0.68rem; }
.card-date {
  font-size: 0.68rem; color: var(--ink-4); font-weight: 500;
}

/* ── Focus visible ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Skip link (accessibility) ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--ink); color: #fff;
  font-size: 0.875rem; font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 200; text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ── Hero fallback (no content yet) ── */
.hero-fallback-section {
  padding: 3rem 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
}
.hero-fallback-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3rem;
  align-items: center;
}
.hero-fallback-inner {
  max-width: 100%;
}
.hero-fallback-img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.hero-fallback-img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4/3; object-fit: cover;
}
.hero-fallback-eyebrow {
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.hero-fallback-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 2rem;
}
.hero-fallback-links {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.hero-fallback-cta {
  display: inline-flex; align-items: center;
  padding: 0.65rem 1.4rem;
  background: var(--accent); color: #fff;
  font-size: 0.9rem; font-weight: 700;
  border-radius: 999px; text-decoration: none;
  transition: opacity 0.15s;
}
.hero-fallback-cta:hover { opacity: 0.88; color: #fff; }
.hero-fallback-cta--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--rule);
}
.hero-fallback-cta--ghost:hover { background: var(--bg-2); color: var(--ink); opacity: 1; }

/* ── Hero (split: text left, image right) ── */
.hero-section {
  padding: 3rem 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
}

.hero-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3rem;
  align-items: center;
}

.hero-img-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.hero-img {
  width: 100%; height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.hero-img-link:hover .hero-img { transform: scale(1.03); }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.hero-eyebrow {
  display: flex; align-items: center;
  gap: 0.6rem; margin-bottom: 1.1rem;
}

.hero-date {
  font-size: 0.78rem; color: var(--ink-4); font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.hero-title a { color: inherit; text-decoration: none; }
.hero-title a:hover { color: var(--accent); }

.hero-excerpt {
  font-size: 1rem; line-height: 1.7;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: inline-flex; align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem; font-weight: 700;
  color: var(--accent); text-decoration: none;
  transition: gap 0.15s;
}
.hero-cta:hover { gap: 0.5rem; }

/* ── Grid sections ── */
.grid-section { padding: 3.5rem 0; }
.grid-section--alt { padding: 3.5rem 0; background: var(--bg-2); }

.section-head {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-left: 2px solid var(--accent);
  padding-left: 0.6rem;
  line-height: 1.3;
}

.section-more {
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent); transition: opacity 0.15s;
  text-decoration: none; white-space: nowrap;
}
.section-more:hover { opacity: 0.75; }

/* ── Card grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}
.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0,1fr));
}

/* ── Card ── */
.card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule);
  text-decoration: none; color: inherit;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.card-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-2);
}
.card-img-wrap--placeholder {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--rule) 100%);
}
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img { transform: scale(1.04); }

.card-body {
  display: flex; flex-direction: column;
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
}

.card-meta {
  display: flex; align-items: center;
  gap: 0.5rem; margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1rem; font-weight: 700;
  line-height: 1.35; letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
  color: var(--ink);
}
.card:hover .card-title { color: var(--accent); }

.card-excerpt {
  font-size: 0.875rem; color: var(--ink-3);
  line-height: 1.6; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Listing pages ── */
.page-shell {
  padding: 2.5rem 0 4rem;
  background: var(--bg-card);
}

.listing-head { margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 2px solid var(--ink); }
.listing-title { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 0.4rem; }
.listing-desc { color: var(--ink-3); font-size: 1rem; }

/* ── Featured / hero card on listing pages ── */
.card--hero {
  flex-direction: row;
  gap: 0;
  margin-bottom: 2rem;
  min-height: 18rem;
}
.card--hero .card-img-wrap {
  aspect-ratio: unset;
  width: 55%;
  flex-shrink: 0;
}
.card--hero .card-body {
  padding: 1.5rem 1.75rem;
  justify-content: center;
}
.card--hero .card-title {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.card--hero .card-excerpt {
  -webkit-line-clamp: 3;
  font-size: 0.925rem;
}
@media (max-width: 640px) {
  .card--hero { flex-direction: column; }
  .card--hero .card-img-wrap { width: 100%; aspect-ratio: 16/9; }
}

/* ── Load more button ── */
.load-more-wrap { text-align: center; margin: 2.5rem 0 0; }
.btn-load-more {
  display: inline-block; padding: 0.7rem 2.2rem;
  border: 1.5px solid var(--ink); background: transparent;
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  color: var(--ink); border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.btn-load-more:hover { background: var(--ink); color: #fff; }
.btn-load-more:disabled { opacity: 0.4; cursor: default; }

/* ── Article page ── */
.art-page {
  padding-bottom: 5rem;
  background: var(--bg-card);
}

/* Narrow centred column — header, prose */
.art-narrow {
  max-width: 38rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.art-header {
  padding: 4rem 0 2.5rem;
}

.art-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  color: var(--ink);
}

.standfirst {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

/* Featured image — wide, not clipped */
.art-hero {
  max-width: 56rem;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.art-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.art-hero-caption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--ink-4);
  text-align: center;
  font-style: italic;
}

/* Prose body */
.prose {
  padding-top: 2rem;
  padding-bottom: 4rem;
  font-size: 1.15rem;
  line-height: 1.72;
  color: var(--ink-2);
}
.prose h2 {
  font-size: 1.65rem;
  margin: 2.75rem 0 0.9rem;
  color: var(--ink);
  line-height: 1.25;
}
.prose h3 {
  font-size: 1.25rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--ink);
}
.prose p, .prose ul, .prose ol { margin: 0 0 1.6rem; }
.prose ul, .prose ol { padding-left: 1.6rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote {
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-left: 3px solid var(--accent);
  color: var(--ink-3);
  font-style: italic;
  margin: 0 0 1.6rem;
  font-size: 1.15rem;
}
.prose a { color: var(--accent); text-underline-offset: 3px; text-decoration: underline; }
.prose > img { border-radius: var(--radius); margin: 2rem 0; max-width: 100%; }
.prose figcaption { margin-top: 0.6rem; font-size: 0.82rem; color: var(--ink-4); text-align: center; font-style: italic; }
.prose figure { margin: 2.5rem 0; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose hr { border: 0; border-top: 1px solid var(--rule); margin: 3rem 0; }

/* ── Article byline ── */
.art-byline {
  display: flex; align-items: center;
  gap: 0.6rem; margin-top: 1.5rem;
  font-size: 0.875rem;
}
.art-byline-author {
  display: flex; align-items: center;
  gap: 0.55rem; text-decoration: none; color: inherit;
}
.art-byline-author:hover .art-byline-name { color: var(--accent); }
.art-byline-avatar {
  width: 2rem; height: 2rem;
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
}
.art-byline-avatar--placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.8rem; font-weight: 800;
}
.art-byline-name { font-weight: 600; color: var(--ink); }
.art-byline-sep { color: var(--rule); }
.art-byline-read { color: var(--ink-4); }

/* ── Admin edit button ── */
.admin-edit-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 200;
  align-items: center; gap: 0.45rem;
  padding: 0.6rem 1rem;
  background: var(--ink); color: #fff;
  font-size: 0.82rem; font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background 0.15s, transform 0.15s;
}
.admin-edit-btn--visible { display: inline-flex; }
.admin-edit-btn:hover { background: var(--accent); transform: translateY(-2px); color: #fff; }

/* ── Reading progress bar ── */
.reading-progress {
  position: fixed; top: 0; left: 0; z-index: 45;
  height: 2px; width: 0;
  background: var(--accent);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Koenig editor cards ── */
.kg-image-card { margin: 2.5rem 0; }
.kg-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.kg-image-card figcaption { margin-top: 0.6rem; font-size: 0.82rem; color: var(--ink-4); text-align: center; font-style: italic; }

.kg-width-wide {
  position: relative;
  width: 85vw;
  max-width: 1200px;
  margin-left: calc(50% - 42.5vw);
}
.kg-width-full {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.kg-width-wide img,
.kg-width-full img { border-radius: 0; width: 100%; }

.kg-gallery-card { margin: 1.5rem 0; }
.kg-gallery-container { display: flex; flex-direction: column; gap: 0.5rem; }
.kg-gallery-row { display: flex; gap: 0.5rem; }
.kg-gallery-image { flex: 1; min-width: 0; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 0.35rem; }

.kg-bookmark-card { margin: 1.5rem 0; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 1rem; flex: 1; }
.kg-bookmark-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
.kg-bookmark-description { font-size: 0.85rem; color: var(--ink-3); }
.kg-bookmark-thumbnail { width: 8rem; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.kg-callout-card {
  display: flex; gap: 1rem; margin: 1.5rem 0;
  padding: 1.1rem 1.25rem;
  background: var(--bg-2); border-radius: var(--radius);
}
.kg-callout-emoji { font-size: 1.25rem; flex-shrink: 0; }
.kg-callout-text { font-size: 0.95rem; line-height: 1.6; }

.kg-toggle-card { margin: 1.5rem 0; border: 1px solid var(--rule); border-radius: var(--radius); }
.kg-toggle-heading { padding: 0.85rem 1rem; font-weight: 700; cursor: pointer; }
.kg-toggle-content { padding: 0 1rem 0.85rem; font-size: 0.95rem; }

.kg-video-card { margin: 1.5rem 0; }
.kg-video-card video { width: 100%; border-radius: var(--radius); }

.kg-embed-card { margin: 1.5rem 0; }
.kg-embed-card iframe { width: 100%; border-radius: var(--radius); }

.kg-code-card { margin: 1.5rem 0; }
.kg-code-card pre {
  padding: 1rem 1.25rem; background: #1a1a1a; color: #f0f0f0;
  border-radius: var(--radius); overflow-x: auto;
  font-size: 0.88rem; line-height: 1.6;
}

/* ── Pagination ── */
.pagination {
  display: flex; justify-content: center;
  align-items: center; gap: 1rem;
  padding: 2.5rem 0 1rem;
  font-size: 0.9rem;
}
.pagination a {
  color: var(--accent); font-weight: 600;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--rule);
  border-radius: 999px; transition: background 0.15s;
}
.pagination a:hover { background: var(--accent-soft); border-color: rgba(204,0,0,0.2); }
.pagination .page-number { color: var(--ink-4); }

/* ── Error ── */
.error-page {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 60vh; text-align: center; padding: 3rem 1.5rem;
}
.error-code { font-size: 5rem; font-weight: 700; color: var(--rule); letter-spacing: -0.06em; line-height: 1; margin-bottom: 1rem; }
.error-title { font-size: 1.6rem; margin-bottom: 0.75rem; }
.error-message { color: var(--ink-3); margin-bottom: 2rem; }
.btn-primary {
  display: inline-block; padding: 0.75rem 1.75rem;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.9rem;
  border-radius: 999px; transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; color: #fff; }

/* ── Article meta row ── */
.meta-row {
  display: flex; align-items: center;
  gap: 0.5rem; margin-bottom: 1rem;
  font-size: 0.82rem;
}
.meta-cat {
  color: var(--accent); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.07em;
  text-transform: uppercase; text-decoration: none;
}
.meta-cat:hover { opacity: 0.8; }
.meta-sep { color: var(--rule); }
.meta-date { color: var(--ink-4); }

/* ── Breadcrumb ── */
.breadcrumb { margin-bottom: 1.25rem; padding-top: 1.5rem; }
.breadcrumb-list {
  display: flex; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 0;
  gap: 0.25rem; font-size: 0.78rem; color: var(--ink-4);
}
.breadcrumb-item a { color: var(--ink-3); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--ink); }
.breadcrumb-current { color: var(--ink-4); }
.breadcrumb-sep { color: var(--rule); }
@media (max-width: 600px) {
  .breadcrumb-list > li:last-child,
  .breadcrumb-list > li:nth-last-child(2) { display: none; }
}

/* ── Intent grid (browse by interest) ── */
.intent-section { padding: 3.5rem 0; border-top: 1px solid var(--rule); }
.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.intent-tile {
  display: flex; flex-direction: column;
  padding: 1.4rem 1.5rem 1.6rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  text-decoration: none; color: inherit;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.intent-tile:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.intent-icon {
  display: block;
  width: 1.75rem; height: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.intent-kicker {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.intent-title {
  font-size: 1rem; font-weight: 700;
  color: var(--ink); line-height: 1.3;
  margin-bottom: 0.4rem;
}
.intent-desc {
  font-size: 0.85rem; color: var(--ink-3);
  line-height: 1.6;
}

/* ── Area strip ── */
.area-section { padding: 3.5rem 0; }
.area-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-chip {
  display: inline-flex;
  padding: 0.5rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink-2); text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.area-chip:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: none;
}

/* ── Category nav (What's On page) ── */
.cat-nav {
  display: flex; flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.cat-nav-item {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--ink-3); text-decoration: none;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cat-nav-item:hover,
.cat-nav-item.active {
  background: var(--ink); border-color: var(--ink); color: #fff;
}
.cat-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.35rem;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── Skiddle live events ── */
.events-loading, .events-empty {
  grid-column: 1 / -1;
  color: var(--ink-3);
  font-size: 0.95rem;
  padding: 2rem 0;
}
.btn-load-more {
  padding: 0.6rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
  font-family: inherit;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-3);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-load-more:hover {
  background: var(--ink); border-color: var(--ink); color: #fff;
}

/* ── Subsection (within listing pages) ── */
.subsection { margin-bottom: 3.5rem; }
.subsection-head {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}
.subsection-title {
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.015em;
}

/* ── Recirculation (end of articles) ── */
.recirculation {
  padding-top: 2.25rem;
  padding-bottom: 3rem;
  margin-top: 3.5rem;
  border-top: 1px solid var(--rule);
  background: var(--bg-card);
}
.recirculation-head {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.recirculation-label {
  font-size: 1.2rem; font-weight: 800;
  letter-spacing: -0.02em; margin: 0;
}
.recirculation-more {
  font-size: 0.83rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
}
.recirculation-more:hover { opacity: 0.75; }

/* ── Guides promo section ── */
.guides-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.guides-featured {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--rule);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color 0.15s;
}
.guides-featured:hover { border-color: var(--ink-3); }
.guides-featured-img {
  aspect-ratio: 16/9; overflow: hidden;
}
.guides-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.guides-featured:hover .guides-featured-img img { transform: scale(1.04); }
.guides-featured-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; }
.guides-featured-title {
  font-size: 1.25rem; font-weight: 700;
  line-height: 1.3; letter-spacing: -0.015em;
  margin: 0.4rem 0 0.5rem; color: var(--ink);
  transition: color 0.15s;
}
.guides-featured:hover .guides-featured-title { color: var(--accent); }
.guides-stack {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.guides-stack .card { flex: 1; }
@media (max-width: 768px) {
  .guides-promo { grid-template-columns: 1fr; }
}

/* ── What's On promo strip ── */
.whats-on-promo { padding: 2rem 0; }
.whats-on-strip {
  display: flex; align-items: center;
  padding: 1.75rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  text-decoration: none; color: var(--ink);
  transition: border-color 0.15s;
}
.whats-on-strip:hover { border-color: var(--ink-3); }
.whats-on-strip::after {
  content: '→';
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--ink-4);
  transition: transform 0.15s, color 0.15s;
  flex-shrink: 0;
}
.whats-on-strip:hover::after { transform: translateX(4px); color: var(--ink); }
.whats-on-strip-inner {
  display: flex; align-items: baseline;
  flex-wrap: wrap; gap: 0.5rem 1.25rem;
}
.whats-on-kicker {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); flex-shrink: 0;
}
.whats-on-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--ink); flex-shrink: 0;
}
.whats-on-desc {
  font-size: 0.9rem; color: var(--ink-3);
  line-height: 1.5;
}

/* ── Happening today section ── */
.happening-section { background: var(--bg-2); }
.card-grid--today .card-img-wrap { aspect-ratio: 3/2; }
.card-grid--today .card-title { font-size: 0.95rem; }
@media (max-width: 600px) {
  .card-grid--today { grid-template-columns: repeat(2, 1fr); }
}

/* ── Area chip variant ── */
.area-chip--more {
  font-weight: 700; color: var(--ink);
  border-color: var(--ink-3);
}
.area-chip--more:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-fallback-split { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .intent-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .hero-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-fallback-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-section { padding: 2rem 0; }
  .hero-fallback-section { padding: 2rem 0; }
  .hero-img { aspect-ratio: 16/9; }
}

@media (max-width: 800px) {
  .nav-toggle-btn { display: flex; }
  .header-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .nav-toggle-input:checked ~ .mobile-nav { display: block; }
  .nav-toggle-input:checked ~ .header-bar .nav-toggle-btn span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle-input:checked ~ .header-bar .nav-toggle-btn span:nth-child(2) { opacity: 0; }
  .nav-toggle-input:checked ~ .header-bar .nav-toggle-btn span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.35rem; }
}

@media (max-width: 560px) {
  .card-grid, .card-grid--4 { grid-template-columns: 1fr; }
  .intent-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .intent-grid { grid-template-columns: 1fr; }
}
