:root {
  --ink: #13373f;
  --ink-deep: #0b2c34;
  --sea: #1f7c83;
  --foam: #e8f3ef;
  --sand: #f4efe4;
  --paper: #fffdf8;
  --coral: #e8694a;
  --yellow: #f1c565;
  --line: rgba(19, 55, 63, 0.16);
  --muted: #5e7275;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(12, 51, 59, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
main, section, article, aside, div, dl, figure { min-width: 0; }
p, li, dd, a, strong { overflow-wrap: anywhere; }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 105px 0; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: white;
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  background: var(--ink-deep);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: -260px;
  left: -180px;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,.025), 0 0 0 200px rgba(255,255,255,.015);
}

.nav {
  position: relative;
  z-index: 5;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand i { color: var(--yellow); font-family: Georgia, serif; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-style: italic;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,255,255,.76); text-decoration: none; font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: white; }

.print-button, .reset-button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.print-button {
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: transparent;
  color: white;
}
.print-button:hover { background: white; color: var(--ink-deep); }

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 65px;
  align-items: center;
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.coral { color: var(--coral); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { text-wrap: balance; }

h1 {
  margin-bottom: 30px;
  font-size: clamp(54px, 6.6vw, 94px);
  line-height: .95;
  letter-spacing: -.065em;
}
h1 em { color: var(--yellow); font-family: Georgia, serif; font-weight: 400; }

h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

h3 { line-height: 1.15; letter-spacing: -.025em; }

.hero-lead { max-width: 550px; color: rgba(255,255,255,.72); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
}
.button.primary { background: var(--coral); color: white; }
.button.primary:hover { background: #f17859; }
.button.ghost { border: 1px solid rgba(255,255,255,.28); color: white; }
.button.ghost:hover { border-color: white; }

.hero-photo {
  position: relative;
  margin: 0;
  height: 540px;
  overflow: hidden;
  border-radius: 240px 240px 28px 28px;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(5,24,28,.75));
}
.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  color: rgba(255,255,255,.8);
  font-size: 11px;
}

.quick-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.quick-facts div { padding: 25px 28px; border-right: 1px solid rgba(255,255,255,.14); }
.quick-facts div:first-child { padding-left: 0; }
.quick-facts div:last-child { border-right: 0; }
.quick-facts span { display: block; color: rgba(255,255,255,.5); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.quick-facts strong { display: block; margin-top: 3px; color: white; font-size: 21px; }

.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.intro-copy { max-width: 670px; font-size: 23px; line-height: 1.55; }
.fineprint { padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; }

.route-section { background: var(--sand); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 68px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 400px; margin-bottom: 8px; color: var(--muted); }

.timeline { margin: 0; padding: 0; list-style: none; }
.timeline > li { display: grid; grid-template-columns: 80px 34px 1fr; gap: 22px; align-items: start; }
.timeline > li:not(:last-child) .timeline-dot::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: -1000px;
  left: 50%;
  width: 1px;
  background: var(--line);
}
.timeline > li:not(:last-child) { overflow: hidden; }
.time { padding-top: 25px; color: var(--ink); font-size: 14px; font-weight: 900; }
.timeline-dot { position: relative; height: 100%; min-height: 105px; }
.timeline-dot::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border: 5px solid var(--sand);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
}
.timeline-dot.optional::before { background: var(--yellow); box-shadow: 0 0 0 1px #ca9937; }

.timeline-card { margin-bottom: 34px; background: var(--paper); border-radius: var(--radius); box-shadow: 0 8px 28px rgba(16,53,61,.06); }
.timeline-card.compact { padding: 25px 30px; }
.timeline-card.compact h3 { margin-bottom: 7px; font-size: 22px; }
.timeline-card.compact p:not(.tag) { margin-bottom: 0; color: var(--muted); }
.tag { margin-bottom: 8px; color: var(--coral); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.feature-card { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; }
.card-copy { padding: 45px; }
.card-copy > h3 { margin-bottom: 18px; font-size: 38px; }
.card-copy > p:not(.tag) { color: var(--muted); }
.details { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin: 30px 0; }
.details div { padding-top: 12px; border-top: 1px solid var(--line); }
.details dt { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.details dd { margin: 3px 0 0; font-size: 14px; font-weight: 800; line-height: 1.45; }
.card-actions { display: flex; flex-wrap: wrap; gap: 18px; }
.card-actions a, .text-link { color: var(--sea); font-size: 13px; font-weight: 900; text-underline-offset: 4px; }
.card-media { position: relative; min-height: 410px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media span { position: absolute; right: 13px; bottom: 11px; padding: 4px 8px; border-radius: 999px; background: rgba(8,34,40,.76); color: white; font-size: 9px; }
.dalby-media { background: #e9dd9f; }
.dalby-media img { object-fit: contain; padding: 35px 15px; }

.safety-section { background: var(--ink-deep); color: white; }
.safety-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.safety-intro > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.67); }
.weather-card { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin-top: 42px; padding: 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(255,255,255,.06); }
.weather-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 28px; }
.weather-card small { display: block; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }
.weather-card strong { display: block; font-size: 28px; }
.weather-card p { grid-column: 2; margin: -12px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.weather-card a { grid-column: 2; color: var(--yellow); font-size: 12px; font-weight: 900; }
.safety-rules article { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.14); }
.safety-rules article:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.safety-rules article > span { color: var(--yellow); font-family: Georgia, serif; font-size: 24px; font-style: italic; }
.safety-rules h3 { margin-bottom: 6px; font-size: 20px; }
.safety-rules p { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: 14px; }

.prepare-section { background: var(--foam); }
.prepare-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: start; }
.prepare-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.reset-button { padding: 8px 0; background: transparent; color: var(--sea); text-decoration: underline; text-underline-offset: 4px; font-size: 13px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checklist label { display: flex; align-items: center; gap: 15px; min-height: 66px; padding: 14px 17px; border: 1px solid rgba(31,124,131,.16); border-radius: 14px; background: rgba(255,255,255,.7); cursor: pointer; font-weight: 750; }
.checklist label:hover { border-color: var(--sea); }
.checklist input { width: 22px; height: 22px; accent-color: var(--sea); }
.checklist input:checked + span { color: var(--muted); text-decoration: line-through; }

.alternatives-section { background: var(--paper); }
.alternative-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.alternative-grid article { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); }
.alternative-grid article:first-child { background: var(--ink); color: white; }
.alternative-grid article p:not(.tag) { color: var(--muted); }
.alternative-grid article:first-child p:not(.tag) { color: rgba(255,255,255,.65); }
.alternative-grid h3 { margin-bottom: 16px; font-size: 30px; }
.alternative-grid a { color: var(--coral); font-size: 13px; font-weight: 900; }

.facts-section { padding-top: 20px; }
.checked-badge { padding: 8px 14px; border-radius: 999px; background: var(--foam); color: var(--sea); font-size: 12px; font-weight: 900; }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-grid article { padding: 35px 25px; border-right: 1px solid var(--line); }
.fact-grid article:first-child { padding-left: 0; }
.fact-grid article:last-child { border-right: 0; }
.fact-grid article > span { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 24px; border-radius: 50%; background: var(--sand); color: var(--coral); font-size: 14px; font-weight: 900; }
.fact-grid h3 { font-size: 18px; }
.fact-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.sources-section { background: var(--sand); }
.sources-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.sources-grid ol { margin: 0; padding: 0; list-style: none; }
.sources-grid li { border-top: 1px solid var(--line); }
.sources-grid li:last-child { border-bottom: 1px solid var(--line); }
.sources-grid a { display: flex; align-items: center; gap: 22px; padding: 20px 4px; text-decoration: none; font-weight: 850; }
.sources-grid a:hover { color: var(--coral); }
.sources-grid a span { color: var(--coral); font-family: Georgia, serif; font-style: italic; }

/* Charmouth multi-day chapter */
.charmouth-hero-photo img { object-position: center center; }
.stay-overview { background: var(--foam); }
.stay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.stay-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(31,124,131,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.stay-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--sea);
  box-shadow: 0 14px 35px rgba(12,51,59,.08);
}
.stay-grid time {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stay-grid strong { font-size: 19px; line-height: 1.15; }
.stay-grid span { color: var(--muted); font-size: 11px; font-weight: 800; }
.stay-timeline > li { scroll-margin-top: 24px; }
.day-plan { border: 1px solid transparent; }
.day-plan > h3 { margin-bottom: 10px; font-size: 29px; }
.day-plan > p:not(.tag):not(.day-warning) { color: var(--muted); }
.recommended-day { border-color: rgba(232,105,74,.45); box-shadow: 0 16px 42px rgba(12,51,59,.1); }
.recovery-day { background: #fff8e8; }
.water-day { border-color: rgba(31,124,131,.3); }
.day-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 25px 0;
}
.day-specs div { padding-top: 10px; border-top: 1px solid var(--line); }
.day-specs dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.day-specs dd { margin: 3px 0 0; font-size: 13px; font-weight: 800; line-height: 1.45; }
.day-warning {
  margin: 0;
  padding: 15px 18px;
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  background: var(--sand);
  color: var(--ink);
  font-size: 13px;
}
.day-actions { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 18px; }
.day-actions a { color: var(--sea); font-size: 12px; font-weight: 900; text-underline-offset: 4px; }
.street-art-route-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(31,124,131,.2);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--foam), rgba(255,255,255,.78));
}
.street-art-route-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}
.street-art-route-heading h4 { margin: 2px 0 0; font-size: 24px; line-height: 1.15; }
.street-art-route-heading > div:last-child > p { margin: 0; color: var(--muted); font-size: 13px; }
.street-art-route-key { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.street-art-route-key span { display: inline-flex; gap: 6px; align-items: center; color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.street-art-route-key i { width: 22px; height: 5px; border-radius: 999px; background: var(--coral); }
.street-art-route-key .return-key { background: var(--sea); }
.street-art-route-key .programme-key { background: #c18a18; }
.street-art-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(235px, .75fr);
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}
.street-art-map { min-height: 490px; background: #dce9e5; }
.bristol-map-tools {
  display: grid;
  width: 132px;
  overflow: hidden;
  border: 0 !important;
  border-radius: 11px !important;
  box-shadow: 0 3px 14px rgba(11,44,52,.25) !important;
}
.bristol-map-tool {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 0;
  border-bottom: 1px solid rgba(11,44,52,.12);
  background: rgba(255,255,255,.97);
  color: var(--ink-deep);
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.bristol-map-tool:hover, .bristol-map-tool:focus-visible { background: var(--foam); outline: 3px solid var(--coral); outline-offset: -3px; }
.bristol-map-tool.is-active { background: #1769d2; color: white; }
.bristol-map-tool span { width: 20px; font-size: 19px; line-height: 1; text-align: center; }
.bristol-map-tool b { font-size: 11px; line-height: 1.15; }
.bristol-map-status {
  display: none;
  margin: 0;
  padding: 8px 10px;
  background: rgba(255,255,255,.97);
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.35;
}
.bristol-map-status:not(:empty) { display: block; }
.street-art-map:fullscreen,
.street-art-map.is-map-fullscreen {
  width: 100vw !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  border-radius: 0 !important;
  background: #dce9e5;
}
body.bristol-map-fullscreen-fallback { overflow: hidden; }
body.bristol-map-fullscreen-fallback .street-art-map.is-map-fullscreen {
  position: fixed !important;
  z-index: 9999;
  inset: 0;
}
.bristol-user-location { filter: drop-shadow(0 1px 5px rgba(23,105,210,.7)); }

/* Eigenständige mobile Bristol-Karte */
body.bristol-map-page {
  min-width: 0;
  min-height: 100dvh;
  overflow: hidden;
  background: #dce9e5;
}
body.bristol-map-page::before { display: none; }
.mobile-map-shell {
  display: grid;
  width: 100%;
  height: 100dvh;
  grid-template-rows: auto minmax(0, 1fr);
}
.mobile-map-header {
  position: relative;
  z-index: 1100;
  display: grid;
  min-height: 64px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: max(9px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) 9px max(12px, env(safe-area-inset-left));
  background: var(--ink-deep);
  color: white;
  box-shadow: 0 3px 18px rgba(11,44,52,.24);
}
.mobile-map-header a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.mobile-map-header a:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
.mobile-map-title { min-width: 0; text-align: center; }
.mobile-map-title strong, .mobile-map-title small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-map-title strong { font-size: 14px; }
.mobile-map-title small { margin-top: 2px; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 800; }
.mobile-map-stage { position: relative; min-height: 0; }
.bristol-map-page .street-art-map {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
}
.mobile-map-drawer {
  position: absolute;
  z-index: 1000;
  right: max(10px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  left: max(10px, env(safe-area-inset-left));
  max-height: min(58dvh, 470px);
  overflow: hidden;
  border: 1px solid rgba(11,44,52,.13);
  border-radius: 16px;
  background: rgba(255,253,248,.97);
  box-shadow: 0 8px 28px rgba(11,44,52,.27);
}
.mobile-map-drawer summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 15px;
  color: var(--ink-deep);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  list-style: none;
}
.mobile-map-drawer summary::-webkit-details-marker { display: none; }
.mobile-map-drawer summary::after { content: "▲"; color: var(--sea); font-size: 11px; }
.mobile-map-drawer[open] summary::after { content: "▼"; }
.mobile-map-drawer-content {
  max-height: calc(min(58dvh, 470px) - 48px);
  padding: 0 10px 12px;
  overflow: auto;
  overscroll-behavior: contain;
  border-top: 1px solid var(--line);
}
.mobile-map-drawer .street-art-stop-list { gap: 4px; padding-top: 9px; }
.mobile-map-drawer .street-art-stop-list button { padding: 7px; }
.mobile-map-help { margin: 10px 4px 2px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.bristol-map-page .leaflet-control-attribution { font-size: 8px; }
.bristol-map-page .leaflet-bottom { bottom: 58px; }
.street-art-map .map-loading,
.street-art-map.map-unavailable {
  display: grid;
  min-height: 490px;
  place-items: center;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}
.street-art-map.map-unavailable p { margin: 5px 0 0; font-size: 13px; }
.street-art-sidebar { padding: 16px; overflow: auto; background: rgba(255,253,248,.94); }
.street-art-sidebar > p { margin: 16px 4px 2px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.street-art-stop-list { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.street-art-stop-list button {
  display: grid;
  width: 100%;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.street-art-stop-list button:hover,
.street-art-stop-list button:focus-visible { border-color: rgba(31,124,131,.25); background: var(--foam); outline: none; }
.street-art-stop-list button > span:first-child {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-size: 11px;
  font-weight: 900;
}
.street-art-stop-list button.return-stop > span:first-child { background: var(--sea); }
.street-art-stop-list button.start-stop > span:first-child { background: var(--ink-deep); }
.street-art-stop-list button.programme-stop > span:first-child { background: #c18a18; color: var(--ink-deep); }
.street-art-stop-list button > span:last-child { display: grid; min-width: 0; }
.street-art-stop-list strong { font-size: 11px; line-height: 1.25; }
.street-art-stop-list small { overflow: hidden; color: var(--muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.street-art-popup { display: grid; width: 250px; max-width: 100%; gap: 6px; }
.street-art-popup small { color: var(--coral); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.street-art-popup strong { font-size: 14px; line-height: 1.25; }
.street-art-popup p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
.street-art-popup a { color: var(--sea); font-size: 10px; font-weight: 900; }
.street-art-popup-photo { margin: 2px 0 3px; }
.street-art-popup-photo img { display: block; width: 100%; height: 140px; border-radius: 10px; background: var(--foam); object-fit: cover; }
.street-art-popup-photo figcaption { margin-top: 4px; font-size: 8px; line-height: 1.25; }
.street-art-popup-photo figcaption a { font-size: inherit; }
.route-downloads { align-items: center; }
.day-actions .route-download {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--sea);
  color: white;
  text-decoration: none;
}
.street-art-route-card .fineprint { margin: 14px 0 0; color: var(--muted); font-size: 10px; }
.day-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.day-photo-grid--single { grid-template-columns: 1fr; }
.day-photo-grid figure {
  position: relative;
  min-width: 0;
  height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 17px;
  background: var(--foam);
}
.day-photo-grid--single figure { height: 300px; }
.day-photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.day-photo-grid figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(11,44,52,.84);
  color: rgba(255,255,255,.82);
  font-size: 8px;
  line-height: 1.35;
}
.day-photo-grid figcaption a { color: inherit; }
.day-schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 22px;
  margin: 25px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.day-schedule li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.day-schedule time { color: var(--coral); font-weight: 950; }
.day-schedule span { color: var(--ink); font-weight: 750; line-height: 1.4; }

/* Charmouth overview map */
.trip-map-section { background: var(--sand); }
.trip-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
  gap: 22px;
  align-items: stretch;
}
.trip-map {
  z-index: 1;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(31,124,131,.18);
  border-radius: var(--radius);
  background: #dbe9e4;
  box-shadow: var(--shadow);
}
.trip-map:focus-visible { outline: 4px solid rgba(232,105,74,.55); outline-offset: 4px; }
.map-loading {
  display: grid;
  place-items: center;
  min-height: 650px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.map-unavailable {
  display: grid;
  place-items: center;
  padding: 35px;
  text-align: center;
}
.map-unavailable div { max-width: 500px; }
.map-unavailable strong { display: block; font-size: 24px; }
.map-unavailable p { color: var(--muted); }
.map-unavailable a { color: var(--sea); font-size: 13px; font-weight: 900; }
.map-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
}
.map-key {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.map-key span { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; font-weight: 900; line-height: 1.35; }
.map-key-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}
.map-key-dot.hike { background: var(--sea); }
.map-key-dot.water { background: #2c6fb0; }
.map-key-dot.optional { background: #c18a18; }
.map-spot-list {
  display: grid;
  gap: 1px;
  max-height: 510px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--line);
}
.map-spot-button {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 13px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 8px 13px 8px 8px;
  border: 0;
  background: #fffdf9;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.map-spot-button:hover { background: var(--foam); }
.map-spot-button:focus-visible { position: relative; z-index: 2; outline: 3px solid var(--coral); outline-offset: -3px; }
.map-spot-thumb {
  position: relative;
  display: block;
  width: 78px;
  height: 60px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--foam);
}
.map-spot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-spot-thumb i {
  position: absolute;
  left: 5px;
  bottom: 5px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  box-shadow: 0 3px 10px rgba(11,44,52,.35);
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
}
.map-spot-button--hike .map-spot-thumb i { background: var(--sea); }
.map-spot-button--water .map-spot-thumb i { background: #2c6fb0; }
.map-spot-button--optional .map-spot-thumb i { background: #c18a18; color: var(--ink-deep); }
.map-spot-button strong { display: block; font-size: 12px; line-height: 1.35; }
.map-spot-button small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.map-photo-credits {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: white;
}
.map-photo-credits summary { color: var(--sea); cursor: pointer; font-size: 10px; font-weight: 900; }
.map-photo-credits ul { max-height: 180px; margin: 12px 0 2px; padding-left: 18px; overflow-y: auto; }
.map-photo-credits li { margin-bottom: 7px; color: var(--muted); font-size: 9px; line-height: 1.4; }
.map-photo-credits a { text-underline-offset: 2px; }
.map-fallback { margin: 18px; color: var(--muted); font-size: 12px; }
.map-note { margin: 24px 0 0; }
.trip-marker-shell { border: 0; background: transparent; }
.trip-marker {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 3px solid white;
  border-radius: 50% 50% 50% 12px;
  transform: rotate(-45deg);
  background: var(--coral);
  color: white;
  box-shadow: 0 5px 16px rgba(11,44,52,.34);
  font-size: 11px;
  font-weight: 950;
}
.trip-marker b { transform: rotate(45deg); }
.trip-marker.return-marker { background: var(--sea); }
.trip-marker.start-marker { background: var(--ink-deep); }
.trip-marker.programme-marker { background: #c18a18; color: var(--ink-deep); }
.trip-marker--hike { background: var(--sea); }
.trip-marker--water { background: #2c6fb0; }
.trip-marker--optional { background: #c18a18; color: var(--ink-deep); }
.trip-map .leaflet-popup-content-wrapper { border-radius: 16px; color: var(--ink); box-shadow: 0 14px 36px rgba(11,44,52,.2); }
.trip-map .leaflet-popup-content { margin: 17px 19px; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.trip-map-popup figure {
  margin: -17px -19px 14px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: var(--foam);
}
.trip-map-popup figure img { width: 100%; height: 170px; object-fit: cover; }
.trip-map-popup figcaption { padding: 5px 10px; background: var(--ink-deep); color: rgba(255,255,255,.72); font-size: 8px; line-height: 1.35; }
.trip-map-popup figcaption a { color: inherit; font-size: inherit; font-weight: 700; }
.trip-map-popup small { display: block; margin-bottom: 3px; color: var(--coral); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.trip-map-popup strong { display: block; font-size: 15px; line-height: 1.3; }
.trip-map-popup p { margin: 8px 0 10px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.trip-map-popup a { color: var(--sea); font-size: 11px; font-weight: 900; }
.trip-map .leaflet-control-attribution { font-size: 9px; }

/* Grain Tower tide calendar */
.grain-hero-photo img { object-position: center center; }
.tide-section { background: var(--foam); }
.tide-section > .shell > .fineprint { margin-top: 32px; }
.tide-alert {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 1.3fr;
  gap: 35px;
  align-items: center;
  margin-bottom: 34px;
  padding: 26px 30px;
  border: 1px solid rgba(232,105,74,.35);
  border-left: 7px solid var(--coral);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}
.tide-alert strong { font-size: 19px; line-height: 1.35; }
.tide-alert p { margin: 0; color: var(--muted); font-size: 14px; }
.tide-calendar { display: grid; gap: 10px; }
.tide-calendar article {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 20px 25px;
  border: 1px solid rgba(31,124,131,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
}
.tide-calendar article.recommended { border-color: rgba(232,105,74,.45); box-shadow: 0 12px 32px rgba(12,51,59,.07); }
.tide-date { display: grid; grid-template-columns: 42px 1fr; align-items: center; column-gap: 14px; }
.tide-date > span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink-deep);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}
.tide-date strong { font-size: 20px; }
.tide-date em { color: var(--coral); font-size: 11px; font-style: normal; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.tide-low, .tide-window { display: flex; flex-wrap: wrap; align-items: baseline; gap: 7px; }
.tide-low small, .tide-window small { flex-basis: 100%; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.tide-low strong, .tide-window strong { font-size: 25px; line-height: 1; }
.tide-low span { color: var(--muted); font-size: 13px; font-weight: 800; }
.tide-window { padding-left: 22px; border-left: 1px solid var(--line); }
.tide-window strong { color: var(--sea); }
.window-rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.window-rules article { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 24px; border-radius: 18px; background: var(--ink-deep); color: white; }
.window-rules article > span { color: var(--yellow); font-family: Georgia, serif; font-size: 23px; font-style: italic; }
.window-rules h3 { margin-bottom: 7px; font-size: 17px; }
.window-rules p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.live-tide-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: center; margin-top: 34px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.live-tide-card h3 { margin-bottom: 12px; font-size: 30px; }
.live-tide-card p:not(.tag) { color: var(--muted); font-size: 14px; }
.live-tide-card > a { padding: 12px; border-radius: 14px; background: white; }
.live-tide-card img { width: 100%; max-height: 330px; object-fit: contain; }

footer { padding: 55px 0; background: var(--ink-deep); color: rgba(255,255,255,.6); }
.fx-rate-banner { padding: 20px 0; border-top: 1px solid #d9cfb9; background: #f3eee1; color: var(--ink); }
.fx-rate-inner { display: flex; align-items: center; gap: 12px 22px; width: min(100% - 40px, 1180px); margin: 0 auto; font-size: 12px; }
.fx-rate-inner strong { color: var(--rust); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.fx-rate-inner span { flex: 1; }
.fx-rate-inner a { color: var(--blue); font-weight: 850; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.footer-brand { margin-bottom: 15px; }
.footer-grid p { margin-bottom: 0; font-size: 12px; }
.credits strong { display: block; margin-bottom: 8px; color: white; font-size: 13px; }
.credits a { color: var(--yellow); }

.toast { position: fixed; right: 20px; bottom: 20px; z-index: 50; transform: translateY(140%); padding: 12px 18px; border-radius: 999px; background: var(--ink); color: white; box-shadow: var(--shadow); font-size: 13px; transition: transform .25s ease; }
.toast.visible { transform: translateY(0); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-photo { height: 480px; }
  .quick-facts { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
  .quick-facts div:nth-child(2) { border-right: 0; }
  .quick-facts div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .intro-grid, .safety-grid, .prepare-grid, .sources-grid { grid-template-columns: 1fr; gap: 45px; }
  .feature-card { grid-template-columns: 1fr; }
  .card-media { min-height: 330px; }
  .alternative-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact-grid article:nth-child(2) { border-right: 0; }
  .fact-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .fact-grid article:first-child { padding-left: 25px; }
  .window-rules { grid-template-columns: 1fr; }
  .live-tide-card { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-map-layout { grid-template-columns: 1fr; }
  .trip-map { min-height: 560px; }
  .map-spot-list { max-height: 500px; }
  .street-art-route-heading, .street-art-map-layout { grid-template-columns: 1fr; }
  .street-art-map, .street-art-map .map-loading, .street-art-map.map-unavailable { min-height: 450px; }
  .street-art-sidebar { overflow: visible; }
  .street-art-stop-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 15px; line-height: 1.55; }
  .shell { width: min(100% - 24px, 1180px); }
  .section { padding: 54px 0; }
  .nav {
    min-height: 70px;
    flex-wrap: wrap;
    gap: 0 10px;
    padding: 10px 0 8px;
  }
  .brand { font-size: 14px; }
  .brand-mark { width: 33px; height: 33px; }
  .print-button { display: none; }
  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    gap: 7px;
    margin-top: 9px;
    padding: 8px 0 1px;
    overflow-x: auto;
    border-top: 1px solid rgba(255,255,255,.12);
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    font-size: 11px;
  }
  .hero-layout { gap: 28px; padding-top: 38px; }
  h1 { margin-bottom: 22px; font-size: clamp(40px, 13vw, 56px); line-height: 1; letter-spacing: -.052em; }
  h2 { font-size: clamp(33px, 10.5vw, 46px); letter-spacing: -.045em; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; gap: 9px; margin-top: 25px; }
  .hero-actions .button { width: 100%; min-height: 48px; }
  .hero-photo { height: 270px; border-radius: 120px 120px 18px 18px; }
  .hero-photo figcaption { right: 12px; bottom: 10px; left: 12px; font-size: 8px; text-align: right; }
  .quick-facts { margin-top: 42px; }
  .quick-facts div { min-width: 0; padding: 16px 10px; }
  .quick-facts div:first-child { padding-left: 14px; }
  .quick-facts span { font-size: 9px; }
  .quick-facts strong { font-size: 15px; line-height: 1.3; }
  .intro-grid, .safety-grid, .prepare-grid, .sources-grid { gap: 30px; }
  .intro-copy { font-size: 18px; }
  .section-heading { align-items: start; flex-direction: column; gap: 14px; margin-bottom: 34px; }
  .timeline > li { display: block; overflow: visible !important; }
  .timeline > li:not(:last-child) { margin-bottom: 20px; }
  .timeline-dot { display: none; }
  .time {
    display: inline-flex;
    margin: 0 0 7px 5px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--ink-deep);
    color: white;
    font-size: 10px;
    line-height: 1.25;
  }
  .timeline-card { margin-bottom: 0; border-radius: 18px; }
  .timeline-card.compact, .card-copy { padding: 20px 16px; }
  .timeline-card.compact h3 { font-size: 20px; }
  .card-copy > h3 { font-size: 27px; }
  .details { grid-template-columns: 1fr; gap: 9px; }
  .details dd, .day-specs dd { font-size: 13px; }
  .card-actions, .day-actions { display: grid; width: 100%; gap: 8px; }
  .card-actions a, .day-actions a, .text-link {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 9px 12px;
    border: 1px solid rgba(31,124,131,.2);
    border-radius: 12px;
    background: rgba(255,255,255,.62);
    line-height: 1.35;
    text-decoration: none;
  }
  .day-actions .route-download { border-radius: 12px; }
  .card-media { min-height: 230px; }
  .dalby-media { min-height: 190px; }
  .weather-card { grid-template-columns: auto 1fr; }
  .weather-card { padding: 18px 15px; }
  .weather-card strong { font-size: 23px; }
  .safety-rules article { grid-template-columns: 34px 1fr; gap: 10px; padding: 20px 0; }
  .checklist { grid-template-columns: 1fr; }
  .checklist label { min-height: 58px; padding: 12px 14px; }
  .alternative-grid article { padding: 25px 18px; border-radius: 18px; }
  .alternative-grid h3 { font-size: 25px; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-grid article { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 5px; }
  .fact-grid article:first-child { padding-left: 5px; }
  .fact-grid article:last-child { border-bottom: 0; }
  .sources-grid a { gap: 12px; padding: 17px 2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .fx-rate-inner { align-items: flex-start; flex-direction: column; gap: 5px; width: min(100% - 28px, 1180px); }
  .tide-alert { grid-template-columns: 1fr; gap: 10px; padding: 22px 20px; }
  .tide-calendar article { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 14px; }
  .tide-date { grid-column: 1 / -1; }
  .tide-window { padding-left: 14px; }
  .tide-low strong, .tide-window strong { font-size: 21px; }
  .window-rules article { padding: 21px 18px; }
  .live-tide-card { padding: 23px 18px; }
  .stay-grid { grid-template-columns: 1fr; }
  .stay-grid a { min-height: 105px; padding: 17px; }
  .trip-map { min-height: 420px; border-radius: 17px; }
  .map-loading { min-height: 420px; }
  .map-key { grid-template-columns: 1fr; }
  .map-sidebar { max-height: 410px; }
  .map-spot-list { max-height: 300px; }
  .map-spot-button { grid-template-columns: 68px 1fr; min-height: 70px; }
  .map-spot-thumb { width: 68px; height: 54px; }
  .day-plan > h3 { font-size: 22px; }
  .day-specs { grid-template-columns: 1fr; }
  .day-photo-grid, .day-schedule { grid-template-columns: 1fr; }
  .day-schedule li { grid-template-columns: 46px 1fr; gap: 8px; font-size: 11px; }
  .day-photo-grid figure, .day-photo-grid--single figure { height: 185px; }
  .day-warning { padding: 13px 14px; font-size: 12px; }
  .street-art-route-card { margin-inline: -4px; padding: 13px; border-radius: 16px; }
  .street-art-route-heading { gap: 12px; }
  .street-art-route-heading h4 { font-size: 19px; }
  .street-art-map, .street-art-map .map-loading, .street-art-map.map-unavailable { min-height: 390px; }
  .street-art-map.is-map-fullscreen, .street-art-map:fullscreen { min-height: 100dvh; }
  .street-art-sidebar { max-height: 310px; overflow: auto; }
  .bristol-map-tools { width: 124px; }
  .bristol-map-tool { min-height: 46px; }
  .street-art-stop-list { grid-template-columns: 1fr; }
  .bristol-map-page .bristol-map-tools { width: 118px; }
  .bristol-map-page .bristol-map-tool { min-height: 43px; padding: 7px 9px; }
  .bristol-map-page .bristol-map-tool b { font-size: 10px; }
  .toast { right: 12px; bottom: 12px; left: 12px; text-align: center; }
}

@media (max-width: 370px) {
  .shell { width: min(100% - 18px, 1180px); }
  .brand > span:last-child { font-size: 12px; }
  h1 { font-size: 38px; }
  h2 { font-size: 32px; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .quick-facts div:last-child { border-bottom: 0; }
  .tide-calendar article { grid-template-columns: 1fr; }
  .tide-date { grid-column: auto; }
  .tide-window { padding-left: 0; border-left: 0; }
}

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

@media print {
  :root { --paper: white; --sand: white; --foam: white; }
  body { font-size: 11pt; }
  body::before, .nav-links, .print-button, .hero-actions, .reset-button, .toast, .trip-map, .street-art-map { display: none !important; }
  .hero { min-height: auto; background: white; color: var(--ink); }
  .nav { min-height: 60px; border-bottom: 1px solid var(--line); }
  .brand { color: var(--ink); }
  .hero-layout { grid-template-columns: 1fr 1fr; padding-top: 30px; }
  .hero-photo { height: 300px; box-shadow: none; }
  .hero-lead { color: var(--muted); }
  h1 { font-size: 44pt; }
  .quick-facts { margin-top: 30px; border-color: var(--line); }
  .quick-facts div { border-color: var(--line); }
  .quick-facts span { color: var(--muted); }
  .quick-facts strong { color: var(--ink); }
  .section { padding: 35px 0; }
  .intro-grid, .safety-grid, .prepare-grid, .sources-grid { gap: 35px; }
  .timeline-card, .alternative-grid article, .tide-calendar article, .window-rules article { break-inside: avoid; box-shadow: none; border: 1px solid var(--line); }
  .trip-map-layout { grid-template-columns: 1fr; }
  .map-sidebar { border-radius: 12px; }
  .map-spot-list { grid-template-columns: 1fr 1fr; max-height: none; }
  .map-spot-button { break-inside: avoid; }
  .street-art-route-card { break-inside: avoid; box-shadow: none; }
  .street-art-map-layout { display: block; min-height: 0; border: 0; }
  .street-art-stop-list { grid-template-columns: 1fr 1fr; }
  .safety-section { background: white; color: var(--ink); }
  .safety-intro > p:not(.eyebrow), .safety-rules p { color: var(--muted); }
  .safety-rules article { border-color: var(--line); }
  .weather-card { border-color: var(--line); }
  .weather-card p { color: var(--muted); }
  footer { background: white; color: var(--muted); border-top: 1px solid var(--line); }
  .footer-brand, .credits strong { color: var(--ink); }
  a { text-decoration: none; }
}
