:root {
  --ink: #151a20;
  --ink-2: #232a31;
  --paper: #f2efe8;
  --surface: #fbfaf6;
  --accent: #a64a29;
  --accent-strong: #7f321d;
  --accent-soft: #efd9cf;
  --muted: #64696c;
  --muted-light: #94999c;
  --line: rgba(21, 26, 32, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --radius: 4px;
  --shadow: 0 28px 70px rgba(23, 29, 34, 0.09);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

svg[aria-hidden="true"] {
  pointer-events: none;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -90px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 239, 232, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.page-home .site-header {
  position: absolute;
  inset: 0 0 auto;
  color: var(--ink);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--accent);
  transition: right 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

.header-actions {
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--accent-strong);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.menu-label {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -5px;
  left: 0;
}

.menu-icon::after {
  position: absolute;
  top: 5px;
  left: 0;
}

.mobile-nav[open] .menu-icon {
  background: transparent;
}

.mobile-nav[open] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav[open] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(340px, calc(100vw - 28px));
  padding: 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  padding: 12px 13px;
  border-radius: 2px;
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 72px;
  padding: 112px 0 60px;
}

.hero-copy {
  max-width: 640px;
}

@media (min-width: 981px) {
  .page-home .route-panel.route-panel--booking {
    width: 76%;
    aspect-ratio: 747 / 1406;
    justify-self: end;
    margin-right: calc(24px - (100vw - min(1200px, calc(100vw - 48px))) / 2);
  }
}

@media (min-width: 981px) and (max-width: 1179px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 150px;
    padding-bottom: 84px;
  }

  .page-home .route-panel.route-panel--booking {
    width: min(100%, 480px);
    justify-self: center;
    margin-right: 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 6.4vw, 86px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy > p,
.page-hero-grid > div > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 750;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.button-secondary:hover {
  border-color: var(--ink);
}

.hero-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.route-panel {
  position: relative;
  min-height: 470px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.route-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
}

.route-panel.route-panel--booking {
  position: relative;
  display: grid;
  place-items: stretch;
  width: 100%;
  min-height: 0;
  /* iPhone Air body: 156.2 mm H × 74.7 mm W */
  aspect-ratio: 747 / 1562;
  padding: 16px 6px 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.03) 42%, rgba(0, 0, 0, 0.12)),
    #d6d8dc;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 42px;
  box-shadow:
    inset 0 0 0 1px rgba(21, 26, 32, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.72),
    0 18px 44px rgba(23, 29, 34, 0.16),
    0 3px 10px rgba(23, 29, 34, 0.08);
  overflow: visible;
}

.route-panel.route-panel--booking::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 52px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12px 50%, #171b20 0 2px, transparent 2.5px),
    linear-gradient(90deg, transparent 0 21px, #171b20 21px 31px, transparent 31px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
  z-index: 3;
}

.route-panel.route-panel--booking::after {
  content: "";
  position: absolute;
  left: auto;
  right: -1px;
  top: 152px;
  width: 2px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5f6f8, #aeb2b8 45%, #c9ccd1);
  box-shadow:
    0 62px 0 0 #c4c7cc,
    0 124px 0 0 #c4c7cc;
  z-index: 4;
}

.route-panel-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 34px;
  background: #fff;
  overflow: hidden;
}

.route-panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.route-panel-head strong {
  display: block;
  max-width: 260px;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.route-panel-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.route-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.route-manifest {
  display: grid;
  gap: 0;
  margin: 22px 0;
}

.route-stop {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: baseline;
  gap: 0 14px;
}

.route-stop-index {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.route-stop strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.route-stop small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
}

.route-track {
  display: flex;
  align-items: center;
  height: 44px;
  margin-left: 5px;
}

.route-track span {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--line);
}

.route-track::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -2px;
  background: var(--accent);
  border: 2px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--accent);
}

.route-facts {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.route-facts div {
  min-width: 0;
}

.route-facts dt {
  margin: 0;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 0;
}

.trust-grid strong {
  display: block;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.trust-grid span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

.section--muted {
  background: #e9e4da;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 46px;
}

.section-head--center {
  justify-content: center;
  text-align: center;
}

.section-head h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker--dark {
  color: var(--accent-soft);
}

.section-lead {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.service-index {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-row-index {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.service-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-row h3 a {
  transition: color 0.2s ease;
}

.service-row h3 a:hover {
  color: var(--accent);
}

.service-row p {
  max-width: 680px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.service-row-arrow {
  align-self: end;
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.split-copy h2 {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.split-copy p {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
}

.why-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.why-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.why-list li > span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.why-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.why-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--ink);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journey-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 32px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}

.journey-card--featured {
  color: #f7f4ee;
  background: var(--ink);
}

.journey-card:nth-child(2) {
  background: var(--accent-soft);
}

.journey-card:nth-child(2) span {
  color: var(--accent-strong);
}

.journey-card:nth-child(2) small {
  color: var(--ink-2);
}

.journey-card span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journey-card--featured span,
.journey-card--featured small {
  color: rgba(247, 244, 238, 0.72);
}

.journey-card strong {
  max-width: 400px;
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 43px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.journey-card small {
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.booking-widget-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-widget-section h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.booking-widget-shell {
  min-height: 470px;
  margin-top: 34px;
  padding: 12px;
  background: #ece8df;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-widget {
  min-height: 444px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.booking-widget-placeholder {
  min-height: 444px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 36px;
  text-align: center;
}

.booking-widget-badge {
  display: inline-flex;
  padding: 7px 11px;
  color: #fff;
  background: var(--ink);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-widget-placeholder strong {
  max-width: 560px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.booking-widget-placeholder p {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--muted);
}

.booking-widget--embed {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.booking-widget-iframe {
  display: block;
  width: 100%;
  height: 780px;
  border: 0;
  background: #fff;
}

.narrow {
  max-width: 860px;
}

.faq-list {
  margin-top: 36px;
}

.faq-list details,
.faq-group details {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.faq-list details:first-of-type,
.faq-group details:first-of-type {
  border-top: 0;
}

.faq-list details:last-of-type,
.faq-group details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq-list summary,
.faq-group summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  font-size: 17px;
  font-weight: 750;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker,
.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after,
.faq-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 24px;
  font-weight: 500;
}

.faq-list details[open] summary::after,
.faq-group details[open] summary::after {
  content: "–";
}

.faq-list p,
.faq-group p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-panel-shell {
  padding: 0 0 104px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding: 50px;
  color: #f7f4ee;
  background: var(--ink);
  border-radius: var(--radius);
}

.cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.cta-panel p {
  max-width: 580px;
  margin: 14px 0 0;
  color: rgba(247, 244, 238, 0.68);
}

.cta-panel .button {
  flex: 0 0 auto;
}

.page-hero {
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 52px;
  padding: 92px 0;
}

.page-hero-grid .eyebrow {
  margin-bottom: 18px;
}

.page-hero-grid h1 {
  max-width: 900px;
  font-size: clamp(42px, 5.2vw, 68px);
}

.page-hero-grid .button {
  white-space: nowrap;
}

.page-about .page-hero,
.page-contact .page-hero,
.page-faq .page-hero,
.page-booking .page-hero,
.page-legal .page-hero,
.page-404 .page-hero {
  color: #f7f4ee;
  background: var(--ink);
  border-bottom: 0;
}

.page-about .page-hero .eyebrow,
.page-contact .page-hero .eyebrow,
.page-faq .page-hero .eyebrow,
.page-booking .page-hero .eyebrow,
.page-legal .page-hero .eyebrow,
.page-404 .page-hero .eyebrow {
  color: var(--accent-soft);
}

.page-about .page-hero-grid > div > p,
.page-contact .page-hero-grid > div > p,
.page-faq .page-hero-grid > div > p,
.page-booking .page-hero-grid > div > p,
.page-legal .page-hero-grid > div > p,
.page-404 .page-hero-grid > div > p {
  color: rgba(247, 244, 238, 0.7);
}

.breadcrumbs {
  padding-top: 26px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted-light);
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 750;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 76px;
  align-items: start;
}

.prose {
  max-width: 730px;
  font-size: 17px;
}

.prose .lead {
  margin: 0 0 30px;
  color: #454c51;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.prose h2 {
  margin: 40px 0 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.prose p {
  margin: 0 0 18px;
  color: #42484d;
}

.prose ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 22px;
  color: #42484d;
}

.prose li::marker {
  color: var(--accent);
}

.prose a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--ink);
}

.info-stack {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 112px;
}

.info-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
}

.info-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.info-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.link-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  color: var(--accent-strong);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-list a:hover {
  color: var(--ink);
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #42484d;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.area-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.area-card span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-card strong {
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.area-card small {
  margin-top: auto;
  padding-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.destination-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.destination-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.destination-list a::after {
  content: "→";
  color: var(--accent);
}

.destination-list a:hover {
  border-color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
}

.contact-main .lead {
  max-width: 730px;
  margin: 0 0 30px;
  color: #454c51;
  font-family: var(--font-display);
  font-size: 23px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.placeholder-value {
  color: #a54b33;
  font-weight: 700;
}

.contact-placeholder {
  color: rgba(247, 244, 238, 0.62);
}

.faq-group {
  margin-top: 34px;
}

.faq-group:first-child {
  margin-top: 0;
}

.faq-group h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.booking-preparation {
  padding-top: 84px;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.booking-steps article {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
}

.booking-steps article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 2px;
  font-weight: 850;
}

.booking-steps h2 {
  margin: 28px 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.booking-steps p {
  margin: 0;
  color: var(--muted);
}

.booking-notes {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-notes h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 72px 0 26px;
  color: rgba(247, 244, 238, 0.67);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: 48px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  font-size: 14px;
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  font-size: 13px;
}

.footer-contact p {
  margin: 0;
}

.footer-contact a {
  color: var(--accent-soft);
}

.footer-col h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  font-size: 11px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 150px;
    padding-bottom: 84px;
  }

  .route-panel.route-panel--booking {
    width: min(100%, 460px);
    justify-self: center;
  }

  .route-panel {
    min-height: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div {
    border-left: 0;
  }

  .trust-grid > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-panel,
  .article-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-stack {
    position: static;
  }

  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 76px 0;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-grid {
    gap: 42px;
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 45px;
  }

  .hero-copy > p,
  .page-hero-grid > div > p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .route-panel {
    padding: 22px;
  }

  .route-panel-iframe {
    height: 720px;
  }

  .route-panel.route-panel--booking {
    display: block;
    width: 100%;
    aspect-ratio: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .route-panel.route-panel--booking::before,
  .route-panel.route-panel--booking::after {
    display: none;
  }

  .route-panel.route-panel--booking .route-panel-iframe {
    height: 720px;
    border-radius: 0;
  }

  .route-panel-head strong {
    font-size: 25px;
  }

  .route-stop strong {
    font-size: 18px;
  }

  .route-facts {
    gap: 8px;
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    display: block;
  }

  .section-head > p {
    margin-top: 18px;
  }

  .service-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }

  .service-row-arrow {
    display: none;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 250px;
    padding: 26px;
  }

  .booking-widget-section {
    padding: 72px 0;
  }

  .booking-widget-shell {
    min-height: 400px;
    padding: 5px;
  }

  .booking-widget,
  .booking-widget-placeholder {
    min-height: 390px;
  }

  .booking-widget-iframe {
    height: 720px;
  }

  .cta-panel-shell {
    padding-bottom: 76px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .page-hero-grid {
    gap: 34px;
  }

  .breadcrumbs {
    padding-top: 18px;
  }

  .article-layout,
  .contact-grid {
    gap: 44px;
  }

  .prose {
    font-size: 16px;
  }

  .prose .lead,
  .contact-main .lead {
    font-size: 20px;
  }

  .prose h2 {
    font-size: 24px;
  }

  .booking-steps,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* TaxiFlow expands into a two-screen fold after address interaction. */
@media (min-width: 981px) {
  .page-home .hero-grid,
  .page-home .route-panel.route-panel--booking {
    transition:
      grid-template-columns .46s cubic-bezier(.22, 1, .36, 1),
      gap .46s cubic-bezier(.22, 1, .36, 1),
      width .46s cubic-bezier(.22, 1, .36, 1),
      aspect-ratio .46s cubic-bezier(.22, 1, .36, 1);
  }

  .page-home.booking-fold-open .route-panel.route-panel--booking {
    width: min(100%, 820px);
    aspect-ratio: 1494 / 1562;
    justify-self: end;
    margin-right: 0;
  }

  .page-home.booking-fold-open .route-panel.route-panel--booking::before {
    left: 75%;
  }
}

@media (min-width: 1180px) {
  .page-home.booking-fold-open .hero-grid {
    grid-template-columns: minmax(340px, .72fr) minmax(720px, 1.45fr);
    gap: 40px;
  }

  .page-home.booking-fold-open .hero-copy {
    max-width: 430px;
  }

  .page-home.booking-fold-open .route-panel.route-panel--booking {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   LUND HOME — Booking surface is a full-width product panel,
   not a phone mockup. The iframe is wide enough to load the
   desktop booking experience on laptop/desktop screens.
========================================================= */
@media (min-width: 981px) {
  .page-home .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
    padding-top: 130px;
    padding-bottom: 72px;
  }

  .page-home .hero-copy {
    max-width: 780px;
  }

  .page-home .route-panel.route-panel--booking {
    display: block;
    width: 100%;
    min-height: 760px;
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(21, 26, 32, 0.10);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(23, 29, 34, 0.10);
    overflow: hidden;
  }

  .page-home .route-panel.route-panel--booking::before,
  .page-home .route-panel.route-panel--booking::after {
    display: none;
  }

  .page-home .route-panel.route-panel--booking .route-panel-iframe {
    width: 100%;
    height: 760px;
    border-radius: 20px;
    background: #ffffff;
  }

  .page-home.booking-fold-open .hero-grid,
  .page-home.booking-fold-open .route-panel.route-panel--booking {
    grid-template-columns: 1fr;
    width: 100%;
    aspect-ratio: auto;
    margin-right: 0;
    justify-self: auto;
  }

  .page-home.booking-fold-open .hero-copy {
    max-width: 780px;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .page-home .route-panel.route-panel--booking {
    display: block;
    width: min(100%, 680px);
    min-height: 720px;
    aspect-ratio: auto;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(21, 26, 32, 0.10);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(23, 29, 34, 0.10);
    overflow: hidden;
  }

  .page-home .route-panel.route-panel--booking::before,
  .page-home .route-panel.route-panel--booking::after {
    display: none;
  }

  .page-home .route-panel.route-panel--booking .route-panel-iframe {
    width: 100%;
    height: 720px;
    border-radius: 20px;
    background: #ffffff;
  }
}

@media (max-width: 680px) {
  .page-home .route-panel.route-panel--booking {
    border-radius: 18px;
    overflow: hidden;
  }

  .page-home .route-panel.route-panel--booking .route-panel-iframe {
    height: 720px;
    border-radius: 18px;
  }
}

/* Lund booking: one stable workspace, with the site's established identity. */
.page-home .hero-grid,.page-home.booking-fold-open .hero-grid{display:grid;grid-template-columns:1fr;gap:30px;padding-top:42px;padding-bottom:48px}
.page-home .hero-copy,.page-home.booking-fold-open .hero-copy{max-width:none;display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:8px 56px;align-items:center}
.page-home .hero-copy .eyebrow{grid-column:1/-1;margin:0 0 8px}
.page-home .hero h1{font-size:clamp(36px,3.9vw,54px);max-width:750px}
.page-home .hero-copy>p{margin:0;font-size:15px;max-width:440px}
.page-home .hero-actions,.page-home .hero-copy .hero-note{display:none}
.page-home .route-panel.route-panel--booking,.page-home.booking-fold-open .route-panel.route-panel--booking{display:block;width:100%;min-height:0;aspect-ratio:auto;margin:0;padding:0;border:1px solid #dce0da;border-radius:14px;overflow:hidden;background:#fff;box-shadow:0 16px 48px #2027250b;scroll-margin-top:100px;transition:none}
.page-home .route-panel.route-panel--booking::before,.page-home .route-panel.route-panel--booking::after{display:none}
.page-home .route-panel.route-panel--booking .route-panel-iframe{display:block;height:850px;width:100%;border:0;border-radius:0;background:#fff}
.page-booking .booking-widget-iframe{height:850px}
@media(max-width:980px){.page-home .hero-copy,.page-home.booking-fold-open .hero-copy{grid-template-columns:1fr;gap:12px}.page-home .hero-copy>p{max-width:650px}.page-home .hero-grid{padding-top:32px}.page-home .hero h1{font-size:40px}}
@media(max-width:799px){.page-home .hero-grid,.page-home.booking-fold-open .hero-grid{padding-top:24px;gap:22px}.page-home .hero h1{font-size:34px;max-width:540px}.page-home .hero-copy>p{font-size:14px;line-height:1.55}.page-home .hero-copy .eyebrow{font-size:10px;margin-bottom:0}.page-home .route-panel.route-panel--booking .route-panel-iframe,.page-booking .booking-widget-iframe{height:420px}.page-home .route-panel.route-panel--booking{border-radius:12px}}

/* =========================================================
   LUND DESKTOP BOOKING — 600PX FRAME
========================================================= */
@media (min-width: 981px) {
  .page-home .route-panel.route-panel--booking .route-panel-iframe,
  .page-booking .booking-widget-iframe {
    height: 600px;
  }
}


/* =========================================================
   LUND HOME — BOOKING FIRST
   Remove competing hero copy above booking workspace.
========================================================= */
@media (min-width: 981px) {
  .page-home .hero-copy,
  .page-home.booking-fold-open .hero-copy {
    display: none;
  }

  .page-home .hero-grid,
  .page-home.booking-fold-open .hero-grid {
    gap: 0;
    padding-top: 112px;
    padding-bottom: 48px;
  }
}

/* Mobile booking lives in a persistent bottom drawer above the site. */
@media (max-width: 799px) {
  .page-home .route-panel.route-panel--booking {
    position: fixed;
    z-index: 2000;
    left: 50%;
    right: auto;
    bottom: max(8px, env(safe-area-inset-bottom));
    width: min(calc(100% - 16px), 560px);
    max-height: calc(100dvh - 16px);
    margin: 0;
    transform: translateX(-50%);
    border: 0;
    border-radius: 26px;
    background: transparent;
    box-shadow: 0 18px 54px rgba(19, 28, 42, .24);
    overflow: hidden;
  }

  .page-home .route-panel.route-panel--booking .route-panel-iframe {
    width: 100%;
    max-height: calc(100dvh - 16px);
    border: 0;
    border-radius: 26px;
    background: transparent;
  }

  .page-home .route-panel.route-panel--booking.is-booking-minimized {
    box-shadow: none;
  }
}

/* Lund home — restore hero copy and move it slightly downward */
@media (min-width: 981px) {
  .page-home .hero-copy,
  .page-home.booking-fold-open .hero-copy {
    display: grid !important;
    margin-top: 24px;
  }

  .page-home .hero-grid,
  .page-home.booking-fold-open .hero-grid {
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 48px;
  }
}

@media (min-width: 981px) {
  .page-home .hero-copy,
  .page-home.booking-fold-open .hero-copy {
    margin-top: 40px;
  }
}

@media (min-width: 981px) {
  .page-home .hero-copy,
  .page-home.booking-fold-open .hero-copy {
    margin-top: 80px;
  }
}

/* Keep the mobile homepage header in normal flow, matching inner pages. */
@media (max-width: 799px) {
  .page-home .site-header {
    position: sticky;
    inset: auto;
    top: 0;
    background: rgba(242, 239, 232, 0.93);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }
}
