:root {
  --paper: #f7f3ed;
  --ink: #292a24;
  --muted: #706e66;
  --sand: #b09b90;
  --moss: #536b4f;
  --sea: #3f7e8f;
  --line: rgba(41, 42, 36, 0.16);
  --white: #fffdf8;
  --soft: #e8efee;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(41, 42, 36, 0.74);
  backdrop-filter: blur(10px);
}
.brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 26px); font-size: 14px; }
.nav a { color: var(--white); text-decoration: none; opacity: .92; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}
.button.primary { color: var(--white); background: var(--moss); }
.button.light { color: var(--ink); background: var(--white); }
.button.secondary { color: var(--ink); background: var(--paper); border-color: var(--line); }
.button.dark-secondary { color: var(--white); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); }

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #222;
}
.hero.tall { min-height: 92vh; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.06) 42%, rgba(0,0,0,.72)),
    linear-gradient(to right, rgba(0,0,0,.56), rgba(0,0,0,.08) 58%, rgba(0,0,0,.24));
}
.hero > img { position: absolute; inset: 0; }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 68px;
}
.eyebrow {
  display: inline-flex;
  color: currentColor;
  opacity: .82;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
}
h1 { max-width: 920px; margin-top: 16px; font-size: clamp(44px, 7vw, 92px); }
h2 { font-size: clamp(34px, 4vw, 58px); }
h3 { font-size: 32px; }
.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(18px, 2vw, 22px);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; color: rgba(255,255,255,.8); font-size: 14px; }
.meta span { border-top: 1px solid rgba(255,255,255,.28); padding-top: 8px; }

.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
section.band { padding: 88px 0; border-top: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 34px;
}
.section-copy { margin: 6px 0 0; color: var(--muted); font-size: 18px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.card.dark { background: var(--ink); color: var(--white); }
.card.featured { background: var(--moss); color: var(--white); border-color: var(--moss); }
.card strong { display: block; color: var(--moss); margin-bottom: 10px; }
.card.dark strong, .card.featured strong { color: var(--sand); }
.card p { margin: 0; color: var(--muted); }
.card.dark p, .card.featured p { color: rgba(255,255,255,.74); }
.sos-panel {
  background: #7d2926;
  color: var(--white);
  border-radius: 8px;
  padding: 34px;
}
.sos-panel h2 { margin: 8px 0 10px; color: var(--white); }
.sos-panel > p { max-width: 860px; color: rgba(255,255,255,.82); }
.sos-panel .eyebrow { color: #f2d2b6; }
.sos-number-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 24px 0 16px;
}
.sos-number-grid a {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  text-decoration: none;
}
.sos-number-grid strong {
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1;
}
.sos-number-grid span { font-size: 13px; line-height: 1.35; }
.sos-note { margin: 0; font-size: 13px; }
.safety-scenarios {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 28px;
}
.safety-scenario {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.safety-scenario:first-child { border-top: 0; }
.safety-scenario > span { color: var(--moss); font-weight: 850; }
.safety-scenario h3 { margin: 0 0 8px; font-size: 22px; }
.safety-scenario p { max-width: 900px; margin: 8px 0 0; color: var(--muted); }
.safety-contact-box {
  max-width: 900px;
  margin-top: 18px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.safety-contact-box > strong { display: block; margin-bottom: 10px; color: var(--moss); }
.safety-contact-box a { color: var(--moss); font-weight: 800; }
.safety-contact-box .inline-map-link { display: inline-block; margin-top: 14px; }
.phrase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.phrase-grid article {
  display: flex;
  flex-direction: column;
  min-height: 112px;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.phrase-grid article:nth-child(even) { border-right: 0; }
.phrase-grid strong { font-size: 18px; }
.phrase-grid em {
  margin-top: 7px;
  color: var(--moss);
  font-style: normal;
  font-weight: 750;
}
.phrase-grid small {
  margin-top: 8px;
  color: var(--ink);
  font-size: 14px;
}
.phrase-grid span { margin-top: 3px; color: var(--muted); font-size: 14px; }
.souvenir-media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.souvenir-media-strip video,
.souvenir-feature video,
.souvenir-video-grid video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  background: var(--ink);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.souvenir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.souvenir-card {
  min-height: 300px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.souvenir-card.featured { background: var(--moss); color: var(--white); border-color: var(--moss); }
.souvenir-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--moss);
  font-weight: 850;
}
.souvenir-card.featured span { background: rgba(255,255,255,.16); color: var(--sand); }
.souvenir-card h3 { margin: 0 0 10px; font-size: 24px; }
.souvenir-card p { margin: 0; color: var(--muted); }
.souvenir-card.featured p { color: rgba(255,255,255,.76); }
.souvenir-card small { display: block; margin-top: 18px; color: var(--moss); font-weight: 800; }
.souvenir-card.featured small { color: var(--sand); }
.souvenir-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.souvenir-list { display: grid; gap: 14px; margin: 18px 0 0; padding: 0; list-style: none; }
.souvenir-list li {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}
.souvenir-list strong { color: var(--ink); }
.souvenir-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.souvenir-video-grid figure { margin: 0; }
.souvenir-video-grid figcaption { margin-top: 10px; color: var(--muted); font-size: 14px; }
.phrase-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.phrase-shortcuts a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}
.travel-phrase-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.travel-phrase-list article {
  display: grid;
  gap: 6px;
  min-height: 164px;
  align-content: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.travel-phrase-list strong { font-size: 18px; color: var(--ink); }
.travel-phrase-list em { color: var(--moss); font-style: normal; font-weight: 800; }
.travel-phrase-list small { color: var(--ink); font-size: 14px; }
.travel-phrase-list span { color: var(--muted); font-size: 14px; }

.prep-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}
.prep-dashboard > div:first-child,
.prep-progress,
.prep-custom {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.prep-dashboard h2 { margin: 8px 0 10px; }
.prep-dashboard p { margin: 0; color: var(--muted); }
.prep-progress {
  display: grid;
  align-content: center;
  gap: 10px;
}
.prep-progress strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1;
  color: var(--moss);
}
.prep-progress span { color: var(--muted); }
.prep-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.prep-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.prep-group h3 { margin: 0 0 16px; font-size: 24px; }
.prep-group label,
.prep-custom-item {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.prep-group label:first-of-type { border-top: 0; }
.prep-group input[type="checkbox"],
.prep-custom-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--moss);
}
.prep-group label:has(input:checked),
.prep-custom-item:has(input:checked) {
  color: var(--moss);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.prep-notes textarea {
  width: 100%;
  min-height: 260px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}
.prep-custom {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, 1.2fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}
.prep-custom h3 { margin: 0 0 8px; font-size: 24px; }
.prep-custom p { margin: 0; color: var(--muted); }
.prep-custom form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.prep-custom input[type="text"] {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}
.prep-custom-list {
  grid-column: 2;
  display: grid;
}
.prep-custom-item button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
}

.photo-card { min-height: 420px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: #ddd; }
.timeline { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 8px 24px; }
.stop { display: grid; grid-template-columns: 78px 1fr auto; gap: 16px; align-items: start; border-top: 1px solid var(--line); padding: 18px 0; }
.stop:first-child { border-top: 0; }
.time { color: var(--moss); font-weight: 850; }
.stop-title { display: block; font-weight: 800; margin-bottom: 4px; }
.stop-desc { color: var(--muted); font-size: 14px; }

.footer-cta { padding: 92px 0; background: var(--ink); color: var(--white); text-align: center; }
.footer-cta p { max-width: 720px; margin: 18px auto 0; color: rgba(255,255,255,.74); font-size: 18px; }
.footer-cta .actions { justify-content: center; }

.affiliate-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.card.dark .affiliate-note,
.card.featured .affiliate-note {
  color: rgba(255,255,255,.62);
}
.booking-panel {
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  padding: 24px;
  margin-top: 18px;
}
.booking-panel p {
  color: rgba(255,255,255,.74);
}
.booking-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.booking-action {
  display: grid;
  min-height: 96px;
  align-content: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 14px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}
.booking-action span {
  color: rgba(255,255,255,.66);
  font-size: 13px;
  font-weight: 500;
}

/* Driving routes */
.drive-nav {
  position: sticky;
  top: 70px;
  z-index: 25;
  background: rgba(247,243,237,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.drive-nav-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 54px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.drive-nav-inner::-webkit-scrollbar { display: none; }
.drive-nav a {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}
.drive-nav a:hover, .drive-nav a.active { background: var(--moss); color: var(--white); }
.drive-facts { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.drive-fact {
  min-height: 140px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 19px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.drive-fact b { color: var(--moss); font-size: 12px; text-transform: uppercase; }
.drive-fact strong { font-family: Georgia,"Times New Roman",serif; font-size: 25px; font-weight: 500; }
.drive-fact span { color: var(--muted); font-size: 14px; }
.drive-day { padding: 8px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.drive-row { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 17px 0; border-top: 1px solid var(--line); }
.drive-row:first-child { border-top: 0; }
.drive-row time { color: var(--moss); font-weight: 900; }
.drive-row strong { display: block; margin-bottom: 4px; }
.drive-row span { color: var(--muted); }
.drive-alert { padding: 24px; border-left: 5px solid #a7644a; border-radius: 0 8px 8px 0; background: #fff7f1; }
.drive-alert strong { display: block; margin-bottom: 7px; }
.drive-alert p { margin: 0; color: var(--muted); }
.drive-map { height: min(64vh,570px); min-height: 440px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #dfe9e7; }
.drive-map.compact { height: 390px; min-height: 320px; }
.drive-marker { width: 30px; height: 30px; display: grid; place-items: center; border: 3px solid var(--white); border-radius: 50%; color: var(--white); background: var(--moss); font-size: 13px; font-weight: 900; box-shadow: 0 3px 12px rgba(41,42,36,.34); }
.drive-marker.food { background: #a7644a; }
.drive-marker.city { background: var(--sea); }
.drive-map-label { padding: 4px 7px; border: 0; border-radius: 4px; background: rgba(255,253,248,.96); box-shadow: 0 2px 8px rgba(41,42,36,.18); color: var(--ink); font-size: 12px; font-weight: 800; white-space: nowrap; }
.drive-map-label::before { display: none; }
.drive-map-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 14px; }
.drive-map-link { min-height: 108px; display: grid; align-content: start; gap: 7px; padding: 15px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; color: var(--ink); text-decoration: none; }
.drive-map-link strong { color: var(--moss); }
.drive-map-link span { color: var(--muted); font-size: 13px; }
@media(max-width:940px) {
  .drive-nav { top: 62px; }
  .drive-nav-inner { width: 100%; padding: 8px 14px; }
  .drive-facts, .drive-map-links { grid-template-columns: 1fr; }
  .drive-row { grid-template-columns: 1fr; gap: 5px; }
}

/* Planner */
.planner-wrap { display: grid; grid-template-columns: 1fr 390px; gap: 22px; align-items: start; padding: 44px 0 96px; }
.quiz { background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 22px 60px rgba(41,42,36,.08); }
.quiz-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 24px; border-bottom: 1px solid var(--line); background: #fffaf3; }
.progress { width: 170px; height: 8px; border-radius: 999px; background: rgba(83,107,79,.12); overflow: hidden; }
.progress span { display: block; width: 14%; height: 100%; background: var(--moss); transition: width .2s ease; }
.step { display: none; padding: 30px; }
.step.active { display: block; }
.step p { color: var(--muted); font-size: 17px; margin: 10px 0 24px; }
.options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option {
  min-height: 112px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font: inherit;
}
.option:hover, .option.selected { border-color: var(--moss); background: rgba(83,107,79,.08); }
.option strong { font-size: 18px; }
.option span { color: var(--muted); font-size: 14px; }
.quiz-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 30px 30px; }
.quiz-actions button:disabled { opacity: .45; cursor: not-allowed; }
.result { position: sticky; top: 92px; background: var(--ink); color: var(--white); border-radius: 8px; padding: 26px; min-height: 560px; display: flex; flex-direction: column; justify-content: space-between; }
.result-label { display: inline-flex; color: var(--sand); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.result h2 { font-size: 38px; margin-bottom: 14px; }
.result p { color: rgba(255,255,255,.74); margin: 0; }
.result-list { display: grid; gap: 10px; margin: 22px 0; }
.result-item { border-top: 1px solid rgba(255,255,255,.14); padding-top: 10px; color: rgba(255,255,255,.82); font-size: 14px; }
.result-cta { display: grid; gap: 10px; }
.mini-note { margin-top: 12px; color: rgba(255,255,255,.58); font-size: 12px; }

/* Guide app */
.guide-app { min-height: 100vh; display: grid; grid-template-columns: 290px 1fr; }
.sidebar { position: sticky; top: 0; height: 100vh; overflow-y: auto; background: var(--ink); color: var(--white); padding: 24px; display: flex; flex-direction: column; gap: 22px; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.22) transparent; }
.guide-title { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.16); }
.guide-title h1 { font-size: 34px; }
.guide-title p { margin: 10px 0 0; color: rgba(255,255,255,.68); font-size: 14px; }
.side-nav { display: grid; gap: 6px; }
.side-nav a { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; min-height: 42px; border-radius: 6px; padding: 8px 10px; color: rgba(255,255,255,.76); font-weight: 650; font-size: 14px; text-decoration: none; }
.side-nav a:hover, .side-nav a.active { background: rgba(255,255,255,.1); color: var(--white); }
.side-nav span { color: var(--sand); font-size: 12px; font-weight: 850; }
.side-group { border-radius: 6px; }
.side-group summary {
  min-height: 42px;
  display: grid;
  grid-template-columns: 30px 1fr 16px;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255,255,255,.76);
  cursor: pointer;
  list-style: none;
  font-size: 14px;
}
.side-group summary::-webkit-details-marker { display: none; }
.side-group summary::after {
  content: "+";
  color: var(--sand);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.side-group[open] summary {
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.side-group[open] summary::after { content: "−"; }
.side-group summary b { font-weight: 700; }
.side-subnav {
  display: grid;
  gap: 2px;
  padding: 5px 0 5px 40px;
}
.side-subnav a {
  min-height: 34px;
  display: flex;
  padding: 7px 10px;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  font-weight: 600;
}
.side-subnav a.side-subnav-label {
  min-height: 30px;
  margin-top: 5px;
  padding: 7px 10px 4px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.side-nav a.side-seasonal {
  grid-template-columns: 30px 1fr;
  margin: 8px 0;
  border: 1px solid rgba(216, 195, 147, .38);
  background: rgba(216, 195, 147, .08);
  color: var(--white);
}
.side-seasonal > span:last-child { display: grid; gap: 2px; color: var(--white); }
.side-seasonal small {
  color: var(--sand);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-menu-card { align-content: start; }
.seasonal-callout {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(83, 107, 79, .28);
  border-left: 5px solid var(--moss);
  border-radius: 8px;
  background: rgba(83, 107, 79, .07);
  color: var(--ink);
  text-decoration: none;
}
.seasonal-callout strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}
.seasonal-callout p { margin: 0; color: var(--muted); }
.seasonal-label {
  color: var(--moss);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.seasonal-action { margin-top: 4px; color: var(--moss); font-size: 13px; font-weight: 850; }
.guide-main { min-width: 0; }
.guide-content { width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 42px 0 120px; }
.guide-section { padding: 44px 0; border-top: 1px solid var(--line); }
.guide-section:first-child { border-top: 0; }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; max-width: 840px; }
.mode-card { display: grid; gap: 14px; align-content: start; min-height: 210px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 20px; background: rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.mode-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 500; line-height: 1.08; }
.mode-card p { margin: 0; color: rgba(255,255,255,.78); font-size: 15px; }
.mode-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.mode-link { display: inline-flex; align-items: center; min-height: 34px; padding: 7px 10px; border-radius: 4px; background: rgba(255,255,255,.9); color: var(--ink); font-size: 13px; font-weight: 800; text-decoration: none; }
.mode-link.dark { background: var(--moss); color: var(--white); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.menu-tile { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; min-height: 66px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 12px; color: var(--ink); font-weight: 750; text-decoration: none; }
.menu-tile span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(83,107,79,.1); color: var(--moss); font-size: 12px; font-weight: 850; }
.map-box { min-height: 430px; border-radius: 8px; border: 1px solid var(--line); background: radial-gradient(circle at 72% 28%, var(--moss) 0 7px, transparent 8px), radial-gradient(circle at 42% 52%, var(--sea) 0 8px, transparent 9px), radial-gradient(circle at 24% 72%, var(--sand) 0 7px, transparent 8px), linear-gradient(135deg, #dde8e6, #f2eadc 58%, #e6ece5); position: relative; overflow: hidden; }
.map-box::before { content:""; position:absolute; inset:44px 36px; border:2px dashed rgba(41,42,36,.28); border-radius:45% 55% 50% 50%; transform:rotate(-13deg); }
.bottom-tabs { display: none; }

/* Discover Mont-Saint-Michel */
.guide-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.guide-media-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.guide-media-card.audio { border-top: 4px solid var(--moss); }
.audio-guide {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.audio-guide > span {
  display: block;
  margin-bottom: 7px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.audio-guide > strong { display: block; margin-bottom: 10px; color: var(--ink); }
.audio-guide audio { display: block; width: 100%; height: 42px; }
.audio-transcript {
  margin-top: 12px;
  border-top: 1px solid var(--line);
}
.audio-transcript summary {
  padding: 12px 0 0;
  color: var(--moss);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.audio-transcript summary::-webkit-details-marker { display: none; }
.audio-transcript summary::after { content: " +"; }
.audio-transcript[open] summary::after { content: " −"; }
.audio-transcript div { padding-top: 12px; color: var(--muted); font-size: 15px; }
.audio-transcript p { margin: 0 0 12px; }
.audio-transcript p:last-child { margin-bottom: 0; }
.audio-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.guide-media-card.video { border-top: 4px solid #a7644a; }
.guide-media-card.wide { min-height: 0; margin-top: 18px; }
.guide-media-card strong { margin: 8px 0; font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.guide-media-card p { margin: 0 0 20px; color: var(--muted); }
.visit-start { padding-top: 34px; }
.visit-start-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.visit-start-card {
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  column-gap: 12px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.visit-start-card:hover { transform: translateY(-2px); border-color: var(--moss); box-shadow: 0 10px 24px rgba(38,38,32,.08); }
.visit-start-card.featured { background: var(--moss); color: var(--white); border-color: var(--moss); }
.visit-start-card span { grid-row: 1 / 3; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--soft); color: var(--moss); font-weight: 800; font-size: 12px; }
.visit-start-card.featured span { background: rgba(255,255,255,.16); color: var(--white); }
.visit-start-card strong { align-self: end; font-size: 18px; }
.visit-start-card small { align-self: start; margin-top: 5px; color: var(--muted); line-height: 1.4; }
.visit-start-card.featured small { color: rgba(255,255,255,.76); }
.guide-status { margin-top: 14px; padding: 14px 18px; border-left: 3px solid var(--moss); background: var(--soft); display: flex; gap: 18px; align-items: baseline; }
.guide-status span { font-weight: 800; white-space: nowrap; }
.guide-status p { margin: 0; color: var(--muted); font-size: 14px; }
.abbey-decision { display: grid; grid-template-columns: 1.35fr 1fr; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-bottom: 18px; background: var(--white); }
.abbey-decision > div { padding: 24px; }
.abbey-decision > div:last-child { background: var(--soft); }
.abbey-decision h3 { margin: 7px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; }
.abbey-decision p { margin: 0; color: var(--muted); }
.abbey-practical { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); margin-top: 24px; }
.abbey-practical article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 22px 18px 22px 0; border-bottom: 1px solid var(--line); }
.abbey-practical article:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
.abbey-practical article:nth-child(even) { padding-left: 24px; }
.abbey-practical span { width: 34px; height: 34px; border-radius: 50%; background: var(--soft); color: var(--moss); display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.abbey-practical h3 { margin: 2px 0 7px; font-size: 18px; }
.abbey-practical p { margin: 0; color: var(--muted); }
.media-type { color: var(--moss); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.media-button {
  min-height: 40px;
  margin-top: auto;
  padding: 9px 13px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}
.media-button:disabled { opacity: .65; }
.route-tip { display: block; margin-top: 9px; color: var(--moss); font-size: 12px; font-weight: 750; }
.story-layout { display: grid; gap: 0; border-top: 1px solid var(--line); }
.story-chapter {
  display: grid;
  grid-template-columns: 120px minmax(260px, .85fr) minmax(420px, 1.35fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line);
}
.story-chapter > span {
  padding-top: 4px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.story-chapter h3 {
  max-width: 310px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.3vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}
.story-copy { max-width: 650px; }
.story-copy p { margin: 0 0 14px; color: #464842; font-size: 17px; line-height: 1.68; }
.story-copy p:last-child { margin-bottom: 0; }
@media (max-width: 980px) and (min-width: 701px) {
  .story-chapter {
    grid-template-columns: 100px 1fr;
    gap: 10px 30px;
  }
  .story-chapter > span { grid-row: 1 / span 2; }
  .story-chapter h3 { max-width: 620px; }
  .story-copy { grid-column: 2; max-width: 680px; }
}
.abbey-room-head { margin-top: 54px; }
.abbey-room-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.abbey-room {
  min-height: 250px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.abbey-room > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(83,107,79,.1); color: var(--moss); font-size: 12px; font-weight: 900; }
.abbey-room h3 { margin-bottom: 9px; font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.abbey-room-photo {
  position: relative;
  margin: 0 0 17px;
  overflow: hidden;
  border-radius: 6px;
  background: #e7e3da;
  aspect-ratio: 16 / 10;
}
.abbey-room-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.abbey-room-photo figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(36, 37, 31, .82);
  color: #fff;
  font-size: 11px;
  line-height: 1.25;
}
.abbey-room p { color: var(--muted); }
.abbey-room p + p { margin-top: 12px; }
.abbey-room p strong { color: var(--ink); }
.abbey-room small { display: block; margin-top: 14px; color: var(--moss); font-weight: 750; }
.field-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.field-shot {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d8d8d1;
}
.field-shot-wide { grid-column: span 2; }
.field-shot img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.field-shot-wide img { object-position: 50% 56%; }
.field-shot figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 3px;
  padding: 36px 18px 17px;
  background: linear-gradient(transparent, rgba(20,22,18,.84));
  color: var(--white);
}
.field-shot figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}
.field-shot figcaption span { color: rgba(255,255,255,.78); font-size: 13px; }
.approach-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.approach-option {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--moss);
  border-radius: 8px;
  background: var(--white);
}
.approach-option.shuttle { border-top-color: #a7644a; }
.approach-option.classic { border-top-color: #3f5968; }
.approach-option > span { color: var(--moss); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.approach-option h3, .approach-map-head h3, .approach-steps h3 {
  margin: 9px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
}
.approach-option p { color: var(--muted); }
.approach-option dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 9px;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.approach-option dt { color: var(--muted); }
.approach-option dd { margin: 0; font-weight: 750; }
.meander-jump {
  width: fit-content;
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 15px;
  border-radius: 4px;
  background: var(--moss);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.meander-explainer {
  scroll-margin-top: 130px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 0;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.meander-intro, .meander-rules { padding: clamp(24px, 4vw, 38px); }
.meander-intro { background: var(--white); }
.meander-rules { background: var(--moss); color: var(--white); }
.meander-explainer h3 {
  margin: 8px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.08;
}
.meander-explainer p { color: var(--muted); }
.meander-rules h3 { margin-top: 0; }
.meander-rules ul { display: grid; gap: 13px; margin: 0; padding-left: 20px; }
.meander-rules li { color: rgba(255,255,255,.82); }
.approach-map-wrap { margin-top: 22px; }
.approach-map-head {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) 1.2fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 16px;
}
.approach-map-head p { margin: 0; color: var(--muted); }
.approach-map { min-height: 570px; }
.route-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 12px; color: var(--muted); font-size: 13px; font-weight: 750; }
.route-legend span { display: inline-flex; align-items: center; gap: 8px; }
.route-line { width: 32px; height: 5px; display: block; border-radius: 2px; background: var(--moss); }
.route-line.shuttle { background: repeating-linear-gradient(90deg, #a7644a 0 8px, transparent 8px 13px); }
.route-line.classic { background: #3f5968; }
.approach-steps { display: grid; margin-top: 26px; border-top: 1px solid var(--line); }
.approach-steps article { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.approach-steps article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--moss); color: var(--white); font-size: 13px; font-weight: 900; }
.approach-steps h3 { margin-top: 0; }
.approach-steps p { max-width: 850px; margin: 0 0 8px; color: var(--muted); }
.approach-steps a { color: var(--moss); font-size: 13px; font-weight: 850; }
.photo-etiquette {
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 4px solid #a7644a;
  border-radius: 0 8px 8px 0;
  background: #f2e9e2;
}
.photo-etiquette strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 500; }
.photo-etiquette p { margin: 7px 0 0; color: var(--muted); }
.route-media-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 28px auto; }

.colorama-photo-section {
  background: #171d19;
  color: #f5f1e8;
}
.colorama-photo-section .section-copy {
  color: rgba(245, 241, 232, 0.76);
}
.colorama-photo-section .eyebrow {
  color: #c6a468;
}
.colorama-photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
}
.colorama-photo {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: #252b27;
}
.colorama-photo-wide {
  grid-row: span 2;
  min-height: 574px;
}
.colorama-photo-grid .colorama-photo:nth-child(n+4) {
  min-height: 320px;
}
.colorama-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.colorama-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 20px 18px;
  color: #fff;
  font-size: 15px;
  background: linear-gradient(transparent, rgba(8, 12, 9, 0.86));
}
.colorama-photo-credit {
  margin-top: 12px;
  color: rgba(245, 241, 232, 0.58);
  font-size: 13px;
}
.route-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.route-media img, .route-media video { width: 100%; aspect-ratio: 9 / 14; display: block; object-fit: cover; background: #222; }
.route-media figcaption { display: grid; gap: 4px; min-height: 92px; padding: 14px; }
.route-media figcaption strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }
.route-media figcaption span { color: var(--muted); font-size: 13px; }

.shuttle-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 22px;
  align-items: stretch;
}
.shuttle-facts {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.shuttle-facts h2 { margin: 8px 0 18px; font-size: clamp(34px, 5vw, 56px); }
.clean-list { display: grid; gap: 14px; margin: 0; padding-left: 20px; color: var(--muted); }
.clean-list strong { color: var(--ink); }
.shuttle-video-card { margin: 0; }
.shuttle-video-card video { aspect-ratio: 9 / 14; min-height: 420px; }
.shuttle-schedule {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 18px;
  align-items: stretch;
}
.shuttle-schedule-main,
.soft-note,
.personal-tip,
.source-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.shuttle-schedule-main { padding: clamp(20px, 4vw, 34px); }
.shuttle-schedule-main h3 { margin-top: 0; font-size: 28px; }
.timeline.compact { margin-top: 18px; padding: 0; overflow: hidden; }
.timeline-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.timeline-row:last-child { border-bottom: 0; }
.timeline-row span { color: var(--moss); font-weight: 900; }
.timeline-row p { margin: 0; color: var(--muted); }
.soft-note {
  padding: clamp(20px, 4vw, 34px);
  color: var(--white);
  background: var(--moss);
}
.soft-note .eyebrow,
.soft-note p { color: rgba(255,255,255,.84); }
.soft-note p { margin-bottom: 0; font-size: 18px; }
.personal-tip { margin-top: 22px; padding: 24px; }
.personal-tip strong { display: block; font-size: 22px; }
.personal-tip p { margin-bottom: 0; color: var(--muted); }
.checklist-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.source-box { padding: clamp(22px, 4vw, 38px); }
.source-box h2 { margin-top: 0; font-size: clamp(32px, 5vw, 52px); }
.source-box p { max-width: 820px; color: var(--muted); }

.parking-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.parking-summary article { min-height: 210px; padding: 24px; border-right: 1px solid var(--line); }
.parking-summary article:last-child { border-right: 0; }
.parking-summary span { color: var(--moss); font-size: 13px; font-weight: 900; }
.parking-summary strong { display: block; margin: 18px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; }
.parking-summary p { margin: 0; color: var(--muted); }
.parking-zones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.parking-zones .card { min-height: 220px; }
.parking-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.parking-process article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.parking-process b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--moss);
}
.parking-process strong { display: block; margin-bottom: 5px; font-size: 19px; }
.parking-process p { margin: 0; color: var(--muted); }
.parking-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.parking-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.parking-table th, .parking-table td { padding: 18px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; }
.parking-table th:last-child, .parking-table td:last-child { border-right: 0; }
.parking-table tbody tr:last-child td { border-bottom: 0; }
.parking-table th { color: var(--white); background: var(--moss); }
.parking-table td:not(:first-child) { font-size: 20px; font-weight: 850; }
.parking-table td span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; font-weight: 400; }
.photo-spots-head { margin-top: 52px; }
.tide-reading { display: grid; margin-top: 22px; border-top: 1px solid var(--line); }
.tide-reading article { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.tide-reading article > span, .tide-spot > span, .bay-checklist article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(83,107,79,.1); color: var(--moss); font-size: 12px; font-weight: 900; }
.tide-reading h3, .tide-spot h3, .bay-option h3 { margin-bottom: 6px; font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.tide-reading p, .tide-spot p, .bay-option p, .bay-checklist p { margin: 0; color: var(--muted); }
.tide-subhead { margin-top: 52px; }
.tide-spots { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.tide-spot { min-height: 220px; display: grid; grid-template-columns: 46px 1fr; gap: 12px; padding: 21px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.tide-spot small { display: block; margin-top: 14px; color: var(--moss); font-weight: 750; }
.tide-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  margin-top: 28px;
}
.tide-story-main,
.tide-fact-card,
.tide-restoration-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.tide-story-main h2 { margin: 8px 0 12px; max-width: 760px; }
.tide-story-main p { color: var(--muted); }
.tide-fact-card strong { display: block; margin-bottom: 12px; color: var(--moss); }
.tide-fact-card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.tide-fact-card li + li { margin-top: 8px; }
.tide-basics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tide-basics article {
  min-height: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.tide-basics span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--moss);
  font-weight: 900;
  font-size: 13px;
}
.tide-basics h3 { margin: 0 0 10px; font-size: 23px; }
.tide-basics p { margin: 0; color: var(--muted); }
.tide-official-panel {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: 18px;
  align-items: stretch;
}
.tide-official-panel > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}
.tide-official-panel h3 { margin: 8px 0 12px; font-size: 28px; }
.tide-official-panel p { color: var(--muted); }
.tide-official-panel ul { margin: 0 0 18px; padding-left: 18px; color: var(--muted); }
.tide-official-panel li + li { margin-top: 8px; }
.tide-official-embed {
  display: grid;
  gap: 12px;
}
.tide-official-embed .button {
  justify-self: start;
}
.tide-official-panel iframe {
  width: 100%;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.tide-planning-guide {
  margin-top: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.tide-planning-intro {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.tide-planning-intro h2 {
  margin: 8px 0 12px;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 54px);
}
.tide-planning-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}
.tide-planning-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
}
.tide-planning-steps ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tide-planning-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  min-width: 0;
  min-height: 132px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: tide-step;
}
.tide-planning-steps li::before {
  content: counter(tide-step);
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sage);
  color: var(--moss);
  font-weight: 900;
}
.tide-planning-steps li strong {
  display: block;
  color: var(--ink);
}
.tide-planning-steps li span {
  display: block;
  grid-column: 2;
  min-width: 0;
  color: var(--muted);
}
.tide-planning-steps aside {
  max-width: 860px;
  padding: 22px 24px;
  background: var(--sage);
  border-radius: 8px;
  color: var(--ink);
}
.tide-planning-steps aside span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tide-planning-steps aside h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 25px;
}
.tide-planning-steps aside p {
  margin: 0 0 12px;
  color: var(--muted);
}
.tide-planning-steps aside p:last-child { margin-bottom: 0; }
.tide-restoration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tide-restoration-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tide-restoration-grid h3 { margin: 0 0 10px; font-size: 24px; }
.tide-restoration-grid p { margin: 0; color: var(--muted); }
.tide-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.tide-image-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.tide-image-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}
.tide-image-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.tide-image-grid figcaption strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 16px;
}
.tide-image-grid a { color: var(--moss); font-weight: 850; }
.tide-calendar-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.tide-calendar {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.tide-calendar th,
.tide-calendar td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.tide-calendar th {
  color: var(--moss);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tide-calendar tr.strong td:first-child { color: var(--moss); font-weight: 900; }
.tide-calendar td { color: var(--muted); }
.tide-calendar td:first-child { color: var(--ink); font-weight: 850; white-space: nowrap; }
.tide-calendar-note { margin: 0; padding: 16px 18px 20px; color: var(--muted); font-size: 14px; }
.tide-personal-note {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.tide-personal-note h3 { margin: 8px 0 10px; font-size: 28px; }
.tide-personal-note p { margin: 0; color: var(--muted); }
.tide-video-grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px);
  gap: 12px;
  justify-content: end;
}
.tide-video-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.tide-video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 360px;
  object-fit: cover;
  background: #111;
}
.tide-video-grid figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 13px;
}
.bay-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.bay-option { min-height: 380px; display: flex; flex-direction: column; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.bay-option.featured { background: var(--moss); color: var(--white); }
.bay-option > span { color: var(--moss); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.bay-option.featured > span, .bay-option.featured p { color: rgba(255,255,255,.72); }
.bay-option dl { display: grid; grid-template-columns: 90px 1fr; gap: 8px; margin: auto 0 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; }
.bay-option.featured dl { border-color: rgba(255,255,255,.2); }
.bay-option dt { color: var(--muted); }
.bay-option.featured dt { color: rgba(255,255,255,.62); }
.bay-option dd { margin: 0; font-weight: 750; }
.bay-checklist { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.bay-checklist article { display: grid; grid-template-columns: 44px 1fr; gap: 10px; min-height: 130px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }

/* Knowledge base pages */
.knowledge-page { padding-top: 68px; }
.knowledge-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 68px;
  padding: 10px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(41,42,36,.97);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.knowledge-actions { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 750; }
.knowledge-actions > a { color: var(--white); text-decoration: none; opacity: .82; }
.knowledge-dropdown { position: relative; }
.knowledge-dropdown summary {
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.knowledge-dropdown summary::-webkit-details-marker { display: none; }
.knowledge-dropdown[open] summary { background: var(--white); color: var(--ink); }
.knowledge-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, calc(100vw - 28px));
  max-height: calc(100vh - 92px);
  overflow-y: auto;
  padding: 8px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(20,20,18,.22);
}
.knowledge-dropdown-menu a {
  min-height: 48px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  align-items: center;
  border-radius: 5px;
  text-decoration: none;
}
.knowledge-dropdown-menu a:hover, .knowledge-dropdown-menu a.active { background: var(--soft); color: var(--moss); }
.knowledge-dropdown-menu a span { color: var(--moss); font-size: 11px; font-weight: 900; }
.knowledge-dropdown-menu .knowledge-home { margin-bottom: 5px; border-bottom: 1px solid var(--line); border-radius: 5px 5px 0 0; }
.knowledge-crumbs {
  width: min(1120px, calc(100% - 40px));
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
.knowledge-crumbs a { color: var(--moss); text-decoration: none; }
.knowledge-crumbs strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink); }
.knowledge-page-head { padding: 56px 0 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.knowledge-page-head h1 { max-width: 900px; margin-top: 8px; color: var(--ink); font-size: clamp(42px, 6vw, 72px); }
.knowledge-page-head p { max-width: 760px; margin: 14px 0 0; color: var(--muted); font-size: 18px; }
.knowledge-page-head + .band { padding-top: 54px; }
.knowledge-page-head + .band > .section-head:first-child { display: none; }
.knowledge-hub-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.knowledge-hub-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,18,.8), rgba(20,20,18,.12)), linear-gradient(0deg, rgba(20,20,18,.58), transparent 65%); }
.knowledge-hub-hero img { position: absolute; inset: 0; }
.knowledge-hub-hero .shell { position: relative; z-index: 1; padding-bottom: 58px; }
.knowledge-hub-hero h1 { max-width: 760px; }
.knowledge-hub-hero p { max-width: 680px; margin: 15px 0 24px; font-size: 19px; }
.knowledge-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.knowledge-card {
  min-height: 170px;
  padding: 22px;
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.knowledge-card:hover { transform: translateY(-2px); border-color: var(--moss); box-shadow: 0 10px 24px rgba(38,38,32,.08); }
.knowledge-card > span { color: var(--moss); font-size: 12px; font-weight: 900; }
.knowledge-card strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.knowledge-card p { margin: 8px 0 0; color: var(--muted); }
.knowledge-card > b { color: var(--moss); font-size: 20px; }
.knowledge-pager {
  margin: 30px 0 76px;
  display: grid;
  grid-template-columns: 1fr .8fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.knowledge-pager a { min-height: 94px; padding: 17px; display: flex; flex-direction: column; justify-content: center; text-decoration: none; }
.knowledge-pager a + a { border-left: 1px solid var(--line); }
.knowledge-pager span { color: var(--muted); font-size: 12px; }
.knowledge-pager strong { margin-top: 4px; }
.knowledge-pager .next { text-align: right; }
.knowledge-pager-all { text-align: center; background: var(--soft); }
.knowledge-mobile-nav { display: none; }
.page-toc {
  position: sticky;
  top: 68px;
  z-index: 40;
  min-height: 58px;
  margin-top: 18px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  background: rgba(247,243,237,.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}
.page-toc::-webkit-scrollbar { display: none; }
.page-toc strong { padding: 0 10px; white-space: nowrap; font-size: 13px; }
.page-toc a {
  min-height: 38px;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.page-toc a:hover { background: var(--moss); color: var(--white); }
.map-tool { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white); }
.map-toolbar {
  min-height: 66px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.map-filters { min-width: 0; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.map-filters::-webkit-scrollbar { display: none; }
.map-filter, .map-locate {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}
.map-filter { display: inline-flex; align-items: center; gap: 7px; }
.map-filter b { min-width: 22px; height: 22px; padding: 0 5px; display: grid; place-items: center; border-radius: 11px; background: var(--soft); color: var(--moss); font-size: 11px; }
.map-filter.active { border-color: var(--moss); background: var(--moss); color: var(--white); }
.map-filter.active b { background: rgba(255,255,255,.17); color: var(--white); }
.map-locate { display: inline-flex; align-items: center; gap: 7px; color: var(--moss); }
.map-locate span { font-size: 18px; }
.map-locate.loading { opacity: .68; }
.map-dot { width: 10px; height: 10px; flex: 0 0 10px; display: inline-block; border-radius: 50%; background: var(--moss); }
.map-dot.route { background: #536b4f; }
.map-dot.transport { background: #3f7e8f; }
.map-dot.photo { background: #a7644a; }
.map-dot.tide { background: #2f6f75; }
.map-dot.food { background: #9a6b36; }
.map-dot.service { background: #5b6470; }
.map-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr); min-height: 590px; }
.map-canvas-wrap { min-width: 0; position: relative; border-right: 1px solid var(--line); }
.guide-master-map { height: 100%; min-height: 590px; border: 0; border-radius: 0; }
.map-hint {
  position: absolute;
  z-index: 500;
  left: 12px;
  bottom: 12px;
  max-width: 320px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(41,42,36,.88);
  color: var(--white);
  font-size: 11px;
  pointer-events: none;
}
.map-side-panel { min-width: 0; display: flex; flex-direction: column; background: var(--white); }
.map-side-head { min-height: 54px; padding: 14px 15px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.map-side-head span { min-width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--soft); color: var(--moss); font-size: 12px; font-weight: 850; }
.map-point-list { max-height: 535px; overflow-y: auto; }
.map-point-card {
  width: 100%;
  min-height: 66px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 12px 1fr 12px;
  gap: 10px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.map-point-card:hover, .map-point-card.active { background: var(--soft); }
.map-point-card span { min-width: 0; display: grid; }
.map-point-card small { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.map-point-card strong { overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.map-point-card > b { color: var(--moss); font-size: 18px; }
.guide-map-marker {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #536b4f;
  color: var(--white);
  box-shadow: 0 3px 9px rgba(20,20,18,.28);
  font-size: 11px;
  font-weight: 900;
}
.guide-map-marker.transport { background: #3f7e8f; }
.guide-map-marker.photo { background: #a7644a; }
.guide-map-marker.tide { background: #2f6f75; }
.guide-map-marker.food { background: #9a6b36; }
.guide-map-marker.service { background: #5b6470; }
.guide-map-popup { width: 225px; padding: 2px; }
.guide-map-popup img { width: calc(100% + 4px); height: 125px; margin: -2px -2px 9px; border-radius: 5px 5px 0 0; object-fit: cover; object-position: center 43%; }
.guide-map-popup > span { display: block; margin-bottom: 3px; color: var(--moss); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.guide-map-popup strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 19px; line-height: 1.2; }
.guide-map-popup p { margin: 8px 0 10px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.guide-map-popup a { color: var(--moss); font-size: 12px; font-weight: 850; text-decoration: none; }
.map-route-note {
  margin-top: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-left: 4px solid var(--moss);
  background: var(--soft);
}
.map-route-note p { margin: 3px 0 0; color: var(--muted); }
.map-route-note a { color: var(--moss); font-weight: 850; text-decoration: none; white-space: nowrap; }

/* Article */
.article-layout { width: min(1120px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 34px; padding: 52px 0 96px; align-items: start; }
.article-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: clamp(24px, 4vw, 44px); }
.article-card h2 { margin-top: 42px; }
.article-card p, .article-card li { color: #464842; font-size: 18px; }
.answer-box, .note { background: var(--soft); border: 1px solid var(--line); border-radius: 8px; padding: 24px; margin-bottom: 28px; }
.route-row { display: grid; grid-template-columns: .7fr 1fr .8fr; gap: 12px; padding: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; margin-top: 10px; }
.sticky-col { position: sticky; top: 94px; display: grid; gap: 16px; }

@media (max-width: 940px) {
  .topbar { min-height: 62px; }
  .nav { display: none; }
  .hero { min-height: 560px; }
  .hero-content, .shell, .guide-content, .article-layout { width: min(100% - 28px, 680px); }
  h1 { font-size: 43px; }
  .actions, .hero-actions { display: grid; }
  .button { width: 100%; }
  section.band { padding: 58px 0; }
  .section-head, .grid-2, .grid-3, .planner-wrap, .options, .mode-grid, .menu-grid, .article-layout, .booking-actions, .booking-grid, .guide-media-grid, .audio-guide-grid, .abbey-room-list, .tide-spots, .tide-story, .tide-basics, .tide-official-panel, .tide-planning-intro, .tide-planning-steps, .tide-restoration-grid, .tide-image-grid, .tide-personal-note, .tide-video-grid, .bay-options, .bay-checklist, .visit-start-grid, .abbey-decision, .abbey-practical, .sos-number-grid, .phrase-grid, .souvenir-media-strip, .souvenir-grid, .souvenir-feature, .souvenir-video-grid, .travel-phrase-list, .prep-dashboard, .prep-checklist, .prep-custom, .shuttle-hero-grid, .shuttle-schedule, .checklist-cards, .parking-summary, .parking-zones, .parking-process { grid-template-columns: 1fr; }
  .prep-custom-list { grid-column: auto; }
  .prep-custom form { grid-template-columns: 1fr; }
  .tide-planning-steps ol { grid-template-columns: 1fr; }
  .tide-planning-steps { padding: 16px; }
  .tide-official-panel iframe { min-height: 420px; }
  .sos-panel { padding: 24px 18px; }
  .sos-number-grid a { min-height: 96px; }
  .safety-scenarios { padding: 0 18px; }
  .safety-scenario { grid-template-columns: 34px 1fr; gap: 10px; }
  .phrase-grid article { border-right: 0; }
  .visit-start-card { min-height: 104px; }
  .guide-status { display: block; }
  .guide-status span { white-space: normal; }
  .guide-status p { margin-top: 5px; }
  .abbey-practical article, .abbey-practical article:nth-child(odd), .abbey-practical article:nth-child(even) { border-right: 0; padding: 18px 0; }
  .field-gallery { grid-template-columns: 1fr; }
  .field-shot-wide { grid-column: auto; }
  .field-shot, .field-shot img { min-height: 470px; }
  .approach-options, .meander-explainer, .approach-map-head, .route-media-grid, .colorama-photo-grid { grid-template-columns: 1fr; }
  .colorama-photo,
  .colorama-photo-wide {
    grid-row: auto;
    min-height: 300px;
  }
  .approach-option { min-height: 0; }
  .approach-map { min-height: 500px; }
  .route-media img, .route-media video { aspect-ratio: 9 / 13; }
  .shuttle-video-card video { min-height: 0; }
  .timeline-row { grid-template-columns: 1fr; gap: 5px; }
  .parking-summary article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .parking-summary article:last-child { border-bottom: 0; }
  .parking-zones .card { min-height: 0; }
  .story-chapter { grid-template-columns: 1fr; gap: 8px; }
  .planner-wrap { padding-top: 26px; }
  .result, .sticky-col { position: static; min-height: 0; }
  .quiz-head { display: grid; }
  .progress { width: 100%; }
  .guide-app { display: block; }
  .sidebar { display: none; }
  .guide-content { padding-bottom: 94px; }
  .stop { grid-template-columns: 68px 1fr; }
  .stop .button { grid-column: 2; width: fit-content; }
  .route-row { grid-template-columns: 1fr; }
  .bottom-tabs { position: sticky; bottom: 0; z-index: 35; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,253,248,.97); border-top: 1px solid var(--line); backdrop-filter: blur(16px); }
  .bottom-tabs a { min-height: 62px; display: grid; place-items: center; align-content: center; gap: 1px; color: var(--muted); font-size: 11px; font-weight: 800; text-decoration: none; }
  .bottom-tabs a span { color: var(--moss); font-size: 17px; line-height: 1; }
  .knowledge-page { padding-top: 62px; }
  .knowledge-topbar { min-height: 62px; padding: 8px 14px; }
  .knowledge-actions > a { display: none; }
  .knowledge-dropdown summary { min-height: 40px; padding: 0 10px; font-size: 12px; }
  .knowledge-dropdown-menu { position: fixed; top: 68px; right: 14px; left: 14px; width: auto; }
  .knowledge-crumbs { width: calc(100% - 28px); overflow: hidden; }
  .knowledge-page-head { padding: 38px 0 28px; }
  .knowledge-page-head h1 { font-size: 40px; }
  .knowledge-page-head p { font-size: 16px; }
  .knowledge-hub-hero { min-height: 540px; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-card { min-height: 0; }
  .knowledge-pager { grid-template-columns: 1fr 1fr; }
  .knowledge-pager-all { display: none !important; }
  .knowledge-pager a + a { border-left: 1px solid var(--line); }
  .knowledge-page { padding-bottom: 66px; }
  .knowledge-mobile-nav {
    position: fixed;
    inset: auto 0 0;
    z-index: 1001;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,253,248,.98);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }
  .knowledge-mobile-nav a {
    min-height: 62px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
  }
  .knowledge-mobile-nav a span { color: var(--moss); font-size: 17px; line-height: 1; }
  .page-toc { top: 62px; width: 100%; margin-top: 0; border-right: 0; border-left: 0; border-radius: 0; }
  .page-toc strong { display: none; }
  .map-toolbar { display: block; padding: 9px; }
  .map-filters { padding-bottom: 8px; }
  .map-locate { width: 100%; justify-content: center; }
  .map-layout { grid-template-columns: 1fr; min-height: 0; }
  .map-canvas-wrap { border-right: 0; border-bottom: 1px solid var(--line); }
  .guide-master-map { height: 58vh; min-height: 420px; }
  .map-hint { right: 10px; left: 10px; max-width: none; text-align: center; }
  .map-side-panel { max-height: none; }
  .map-point-list { max-height: none; }
  .map-point-card { min-height: 62px; }
  .map-route-note { display: block; }
  .map-route-note a { display: inline-block; margin-top: 10px; white-space: normal; }
}
