@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: block;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --ink: #252525;
  --muted: #646464;
  --line: #e7e7e7;
  --soft: #f8f8f7;
  --accent: #235a63;
  --accent-dark: #19454c;
  --white: #fff;
  --content: 800px;
  --wide: 1120px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, select, input { border-radius: 0; }
figure, blockquote { margin: 0; }
:focus-visible { outline: 3px solid #c96542; outline-offset: 3px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(calc(100% - 48px), 1240px);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(12px, 1.55vw, 22px); }
.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #444;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--accent); }
.main-nav .nav-book {
  padding: 9px 14px;
  color: var(--white);
  background: var(--accent);
}
.main-nav .nav-book:hover, .main-nav .nav-book:focus-visible { color: var(--white); background: var(--accent-dark); }
.menu-toggle { min-width: 44px; min-height: 44px; display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 5px 0; background: var(--ink); }
.mobile-header-actions, .mobile-nav { display: none; }
.header-book { min-height: 38px; padding: 9px 12px; display: inline-flex; align-items: center; color: var(--white); background: var(--accent); font-size: 11px; font-weight: 700; line-height: 1; text-decoration: none; white-space: nowrap; }
.header-book:hover, .header-book:focus-visible { background: var(--accent-dark); }

.hero {
  position: relative;
  height: min(540px, 67vh);
  min-height: 440px;
  overflow: hidden;
  color: var(--white);
  background: #3b484a;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 650ms ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide picture { width: 100%; height: 100%; display: block; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide:nth-child(4) img, .hero-slide:nth-child(5) img { object-position: center 52%; }
.hero-shade { position: absolute; inset: 0; background: rgba(8, 23, 26, .47); }
.hero-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(calc(100% - 48px), 760px);
  text-align: center;
  transform: translate(-50%, -46%);
}
.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.4;
}
.hero .kicker { color: rgba(255,255,255,.82); }
.hero h1 {
  max-width: 720px;
  margin: 0 auto 15px;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.hero-copy > p:not(.kicker) { max-width: 630px; margin: 0 auto 26px; color: rgba(255,255,255,.92); font-size: clamp(16px, 2vw, 19px); }
.button {
  min-height: 48px;
  padding: 12px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  color: var(--white);
  background: var(--accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.button:hover, .button:focus-visible { background: var(--accent-dark); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover, .button-light:focus-visible { color: var(--white); background: var(--accent); }
.button-dark { background: var(--ink); }
.button-dark:hover, .button-dark:focus-visible { background: #000; }
.button-outline { color: var(--accent); background: transparent; border-color: var(--accent); }
.button-outline:hover, .button-outline:focus-visible { color: var(--white); background: var(--accent); }
.hero-controls {
  position: absolute;
  right: max(24px, calc((100vw - var(--wide)) / 2));
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.hero-arrow { width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.55); color: white; background: rgba(0,0,0,.12); cursor: pointer; }
.hero-arrow:hover, .hero-arrow:focus-visible { background: white; color: var(--ink); }
.hero-count { min-width: 42px; text-align: center; }

.ticket-search { padding: 42px 24px; border-bottom: 1px solid var(--line); background: var(--soft); }
.ticket-search-inner {
  width: min(100%, 960px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: end;
}
.ticket-search h2 { margin: 0 0 6px; font-size: 25px; line-height: 1.25; letter-spacing: -.035em; }
.ticket-search p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.route-form label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; letter-spacing: .01em; }
.route-form-row { display: grid; grid-template-columns: 1fr auto; }
.route-form select { min-width: 0; min-height: 50px; padding: 0 42px 0 14px; border: 1px solid #cfcfcd; border-right: 0; color: var(--ink); background: white; }
.route-form small { display: block; margin-top: 8px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.travel-guide { overflow: hidden; }
.article-header, .article-section, .article-end { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.article-header { padding: 104px 0 72px; }
.article-header h2 {
  margin: 0 0 28px;
  font-size: clamp(35px, 5vw, 56px);
  line-height: 1.09;
  letter-spacing: -.052em;
}
.standfirst { margin: 0 0 30px; color: #464646; font-size: 20px; line-height: 1.65; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.chapter-index {
  margin-top: 34px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 22px;
  border-top: 1px solid var(--line);
}
.chapter-index a { padding: 7px 0; color: var(--muted); font-size: 12px; text-decoration: none; }
.chapter-index a:hover, .chapter-index a:focus-visible { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-section { padding: 80px 0; border-top: 1px solid var(--line); scroll-margin-top: 92px; }
.section-number { margin: 0 0 22px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.article-section h2, .article-end h2 { margin: 0 0 26px; font-size: clamp(30px, 4.5vw, 44px); line-height: 1.14; letter-spacing: -.045em; }
.article-section h3 { margin: 36px 0 12px; font-size: 20px; line-height: 1.3; letter-spacing: -.025em; }
.article-section > p:not(.section-number):not(.fine-print) { margin: 0 0 24px; }
.article-section > p:not(.section-number):not(.fine-print):first-of-type { font-size: 18px; }
.margin-note { margin: 40px 0; padding: 22px 0; display: grid; grid-template-columns: 150px 1fr; gap: 25px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.margin-note strong { font-size: 14px; }
.margin-note span { color: var(--muted); font-size: 15px; }
.breakout-image { width: min(calc(100vw - 48px), 1040px); margin: 54px 50% 0; transform: translateX(-50%); }
.wide-image { margin: 44px 0 36px; }
.breakout-image img, .wide-image img { width: 100%; max-height: 620px; object-fit: cover; }
figcaption { margin-top: 9px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.prose-list { margin: 36px 0; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.prose-list h3 { margin-top: 0; }
.prose-list ol, .prose-list ul { margin: 0; padding-left: 24px; }
.prose-list li { padding: 7px 0 7px 8px; }

.table-scroll { margin: 36px 0 14px; overflow-x: auto; }
.table-scroll:not(.compact-table) table { min-width: 660px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; text-align: left; }
caption { padding-bottom: 12px; color: var(--muted); font-size: 11px; text-align: left; }
th, td { padding: 15px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { border-top: 1px solid var(--ink); color: var(--muted); font-size: 11px; letter-spacing: .02em; }
tbody th { font-weight: 600; }
.compact-table { margin-top: 34px; }
.compact-table th { width: 33%; }
.fine-print { margin: 15px 0 32px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.route-action { margin: 18px 0 42px; }
.route-action .button { min-height: 44px; padding: 10px 15px; }
blockquote { margin: 42px 0 0; padding: 8px 0 8px 30px; border-left: 2px solid var(--accent); font-size: 24px; font-weight: 500; line-height: 1.45; letter-spacing: -.025em; }

.source-stamp { margin: 34px 0; padding: 20px 0; display: grid; grid-template-columns: 180px 1fr; gap: 28px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.source-stamp strong { font-size: 14px; }
.source-stamp p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.terminal-grid { margin: 34px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.terminal-grid > div { padding-top: 18px; border-top: 1px solid var(--line); }
.terminal-grid h3 { margin-top: 0; }
.terminal-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.map-frame { width: min(calc(100vw - 48px), 960px); margin: 46px 50% 24px; transform: translateX(-50%); }
.map-frame iframe { width: 100%; height: 430px; display: block; border: 0; filter: grayscale(.12); }
.map-frame p { margin: 9px 0 0; color: var(--muted); font-size: 11px; }
.map-frame a { color: var(--accent); font-weight: 700; text-underline-offset: 3px; }
.official-links { margin: 34px 0 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.official-links a { padding: 22px; display: flex; flex-direction: column; gap: 5px; background: var(--white); text-decoration: none; }
.official-links a:hover, .official-links a:focus-visible { background: var(--soft); }
.official-links strong { font-size: 15px; }
.official-links span { color: var(--muted); font-size: 11px; }
.itinerary { margin: 38px 0 46px; padding: 28px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.itinerary h3 { margin-top: 0; }
.itinerary ol { margin: 24px 0; padding: 0; list-style: none; }
.itinerary li { padding: 12px 0; display: grid; grid-template-columns: 80px 1fr; gap: 22px; border-top: 1px solid var(--line); }
.itinerary time { color: var(--accent); font-size: 13px; font-weight: 700; }
.itinerary li span, .itinerary > p:last-child { color: var(--muted); font-size: 14px; }
.itinerary > p:last-child { margin: 0; }
.planning-grid { margin: 38px 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 34px 42px; }
.planning-grid > div { padding-top: 18px; border-top: 1px solid var(--line); }
.planning-grid h3 { margin-top: 0; }
.planning-grid p { margin: 0; color: var(--muted); font-size: 15px; }

.calculator { width: min(calc(100vw - 48px), 960px); margin: 46px 50% 18px; padding: 38px 44px; transform: translateX(-50%); background: var(--soft); border-top: 2px solid var(--accent); }
.calculator-intro { display: grid; grid-template-columns: .7fr 1.3fr; column-gap: 40px; align-items: start; }
.calculator-intro .kicker { grid-row: 1 / span 2; }
.calculator h3 { margin: 0 0 7px; font-size: 24px; }
.calculator-intro > p:last-child { margin: 0 0 28px; color: var(--muted); font-size: 13px; }
.calculator form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.calculator label { color: #555; font-size: 11px; font-weight: 700; letter-spacing: .01em; }
.calculator select, .calculator input { width: 100%; min-height: 46px; margin-top: 6px; padding: 0 12px; border: 1px solid #d1d1cf; color: var(--ink); background: white; font-size: 14px; }
.calculator button { align-self: end; }
.calculator output { margin-top: 18px; padding: 14px 0 0; display: block; border-top: 1px solid var(--line); color: #494949; font-size: 13px; line-height: 1.55; }
.calculator output[data-level="good"] { color: #205746; }
.calculator output[data-level="warn"] { color: #765710; }
.calculator output[data-level="bad"] { color: #8a3530; }

.checklist { margin-top: 38px; border-top: 1px solid var(--ink); }
.checklist-head { padding: 18px 0; display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: center; color: var(--muted); font-size: 12px; }
.check-progress { height: 3px; background: var(--line); }
.check-progress i { display: block; width: 0; height: 100%; background: var(--accent); transition: width 200ms ease; }
.checklist label { padding: 15px 0; display: flex; align-items: flex-start; gap: 12px; border-top: 1px solid var(--line); cursor: pointer; }
.checklist input { width: 18px; height: 18px; margin: 5px 0 0; accent-color: var(--accent); }
.checklist label:has(input:checked) span { color: var(--muted); text-decoration: line-through; }

.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 20px 40px 20px 0; position: relative; font-size: 16px; font-weight: 600; line-height: 1.45; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 18px; color: var(--accent); font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 48px 22px 0; color: var(--muted); font-size: 15px; }
.faq-section { padding-top: 72px; scroll-margin-top: 92px; }
.faq-section > .section-number { margin-bottom: 18px; }
.faq-section > h2 { margin-bottom: 40px; }
.article-section .faq-group-title { margin: 42px 0 12px; color: var(--muted); font-size: 12px; letter-spacing: .03em; text-transform: uppercase; }

.activity-section { width: min(calc(100% - 48px), var(--wide)); }
.activity-heading { width: min(100%, var(--content)); margin: 0 auto 48px; }
.activity-heading > p:not(.section-number) { margin: 0 0 22px; }
.affiliate-disclosure { padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.6; }
.gyg-widget-slot { min-width: 0; }

.operator-page { min-height: 70vh; }
.operator-hero, .operator-article { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.operator-hero { padding: 100px 0 66px; }
.operator-hero h1 { margin: 0 0 24px; font-size: clamp(40px, 6vw, 64px); line-height: 1.04; letter-spacing: -.055em; }
.operator-hero .standfirst { margin-bottom: 28px; }
.operator-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.operator-article { padding-bottom: 100px; }
.operator-section { padding: 64px 0; border-top: 1px solid var(--line); }
.operator-section h2 { margin: 0 0 22px; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; letter-spacing: -.04em; }
.operator-section h3 { margin: 32px 0 10px; font-size: 20px; }
.operator-section p { margin: 0 0 22px; }
.operator-note { padding: 20px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.operator-related { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.operator-related a { color: var(--accent); font-size: 14px; font-weight: 700; text-underline-offset: 3px; }
.article-end { padding: 88px 0 110px; border-top: 1px solid var(--ink); text-align: center; }
.article-end h2 { max-width: 690px; margin-inline: auto; }
.article-end > p:not(.kicker) { max-width: 610px; margin: 0 auto 28px; color: var(--muted); }

.site-footer { padding: 60px 24px 30px; border-top: 1px solid var(--line); background: var(--soft); }
.footer-inner, .footer-bottom { width: min(100%, var(--wide)); margin-inline: auto; }
.footer-inner { display: flex; justify-content: space-between; gap: 60px; }
.footer-brand { margin-bottom: 15px; }
.footer-inner p { max-width: 390px; margin: 0; color: var(--muted); font-size: 13px; }
.footer-inner nav { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 34px; align-content: start; }
.footer-inner nav a { color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-inner nav a:hover { color: var(--accent); }
.image-credits { width: min(100%, var(--wide)); margin: 34px auto 0; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.image-credits summary { width: fit-content; color: #555; font-weight: 700; cursor: pointer; }
.image-credits p { max-width: 920px; margin: 12px 0 0; line-height: 1.7; }
.image-credits a { text-underline-offset: 2px; }
.footer-bottom { margin-top: 52px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: #777; font-size: 11px; }
.mobile-booking { display: none; }

.not-found {
  width: min(calc(100% - 48px), 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
}
.not-found h1 { margin: 0 0 22px; font-size: clamp(42px, 7vw, 72px); line-height: 1.02; letter-spacing: -.055em; }
.not-found div > p:not(.kicker) { max-width: 540px; margin: 0 0 30px; color: var(--muted); font-size: 18px; }

@media (max-width: 1100px) {
  html { scroll-padding-top: calc(82px + env(safe-area-inset-top)); }
  .site-header { padding-top: env(safe-area-inset-top); }
  .header-inner { height: 64px; }
  .main-nav { display: none; }
  .mobile-header-actions { display: flex; align-items: center; gap: 5px; }
  .header-book { min-height: 44px; }
  .menu-toggle { display: block; }
  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 11px 0; color: #444; font-size: 14px; font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--line); }
  .mobile-nav a:last-child { border-bottom: 0; }
  .mobile-nav a:hover, .mobile-nav a:focus-visible { color: var(--accent); }
  .article-section, .faq-section, .ticket-search { scroll-margin-top: calc(82px + env(safe-area-inset-top)); }
  .ticket-search-inner { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 768px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .mobile-booking {
    position: fixed;
    z-index: 46;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
    display: block;
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--line);
    transform: translateY(110%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }
  .mobile-booking.is-visible { transform: translateY(0); visibility: visible; }
  .mobile-booking .button { width: 100%; min-height: 48px; }
  body.mobile-booking-active .header-book { display: none; }
  .table-scroll:not(.compact-table) { margin-right: -19px; padding-right: 19px; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; }
  .table-scroll:not(.compact-table) thead th:first-child,
  .table-scroll:not(.compact-table) tbody th:first-child { position: sticky; left: 0; z-index: 2; background: var(--white); box-shadow: 1px 0 var(--line); }
  .route-action .button { width: 100%; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .header-inner { width: min(calc(100% - 32px), var(--wide)); }
  .brand { font-size: 14px; }
  .brand img { width: 34px; height: 34px; }
  .hero { min-height: 500px; height: 68vh; }
  .hero-copy { width: calc(100% - 38px); }
  .hero h1 { font-size: clamp(35px, 10.5vw, 43px); overflow-wrap: normal; }
  .hero-controls { right: 18px; bottom: 16px; }
  .ticket-search { padding: 36px 20px; }
  .route-form-row { grid-template-columns: 1fr; gap: 10px; }
  .route-form select { border-right: 1px solid #cfcfcd; }
  .article-header, .article-section, .article-end, .operator-hero, .operator-article { width: calc(100% - 38px); }
  .article-header { padding: 72px 0 54px; }
  .article-header h2 { font-size: clamp(32px, 9.2vw, 37px); }
  .standfirst { font-size: 18px; }
  .chapter-index { grid-template-columns: repeat(2, 1fr); }
  .article-section { padding: 62px 0; }
  .article-section h2, .article-end h2 { font-size: clamp(28px, 8vw, 31px); }
  .margin-note { grid-template-columns: 1fr; gap: 8px; }
  .source-stamp, .terminal-grid { grid-template-columns: 1fr; gap: 10px; }
  .source-stamp { gap: 8px; }
  .map-frame { width: 100vw; }
  .map-frame iframe { height: 340px; }
  .map-frame p { padding-inline: 19px; }
  .official-links { grid-template-columns: 1fr; }
  .planning-grid { grid-template-columns: 1fr; gap: 12px; }
  .breakout-image { width: 100vw; }
  .breakout-image figcaption { padding-inline: 19px; }
  blockquote { padding-left: 20px; font-size: 21px; }
  .calculator { width: calc(100vw - 24px); padding: 28px 20px; }
  .calculator-intro { display: block; }
  .calculator form { grid-template-columns: 1fr; }
  .checklist-head { grid-template-columns: 95px 1fr; }
  .article-end { padding: 70px 0 80px; }
  .activity-heading { margin-bottom: 38px; }
  .operator-hero { padding: 72px 0 52px; }
  .operator-section { padding: 52px 0; }
  .operator-actions .button { width: 100%; }
  .footer-inner, .footer-bottom { display: block; }
  .footer-inner nav { margin-top: 34px; grid-template-columns: 1fr; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

@media (max-width: 360px) {
  .header-inner { width: calc(100% - 24px); }
  .site-header .brand span { display: none; }
  .hero-copy { width: calc(100% - 30px); }
  .article-header, .article-section, .article-end { width: calc(100% - 32px); }
  .chapter-index { gap: 0 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .check-progress i, .mobile-booking { transition: none; }
}
