/* Denali Flight Tours — travel palette
   base  60%: soft white #FFFFFF + warm sand #F7F2E7
   primary 30%: deep alpine blue #10365A (headers, nav, links, brand)
   secondary 10%: muted glacier teal #35786F (icons, tags, secondary buttons)
   accent  <5%: coral #C8391F — booking CTAs ONLY, never anywhere else */
:root {
  --ocean: #10365A;
  --ocean-2: #0A2540;
  --sky: #E6EFF4;
  --teal: #35786F;
  --teal-dark: #275A53;
  --coral: #C8391F;
  --coral-dark: #A72D16;
  --sand: #F7F2E7;
  --white: #FFFFFF;
  --text: #1E2B34;
  --muted: #58676F;
  --border: #E5DFD0;
  --shadow: 0 12px 30px rgba(10, 37, 64, 0.14);
  --radius: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ocean);
  line-height: 1.2;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.1vw, 2.05rem); }
h3 { font-size: 1.12rem; }

p { margin: 0 0 1em; color: var(--text); }

a { color: var(--teal); }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ocean);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  cursor: pointer;
  white-space: nowrap;
  font-size: .98rem;
}
.btn:hover { transform: translateY(-2px); }

/* Coral accent: reserved ONLY for real booking / reservation CTAs */
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(200, 57, 31, 0.32);
}
.btn-primary:hover { background: var(--coral-dark); color: var(--white); }

/* Teal secondary button: internal actions that are not a booking CTA */
.btn-secondary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(53, 120, 111, 0.3);
}
.btn-secondary:hover { background: var(--teal-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--ocean); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--ocean);
  color: var(--ocean);
}
.btn-outline-dark:hover { background: var(--ocean); color: var(--white); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Header */
.header-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ocean);
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: .2px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-link {
  color: #CBDCE6;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-link:hover { color: var(--sand); border-bottom-color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 22px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
}
.nav-close svg { width: 18px; height: 18px; }
.nav-close:hover { background: rgba(255,255,255,0.2); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-2) 100%);
  padding: 56px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 44px;
}
.eyebrow {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: .8rem;
  margin: 0 0 10px;
  opacity: .85;
}
.hero h1 { color: var(--white); margin-bottom: .3em; }
.hero-intro { color: #D8E4EA; font-size: 1.05rem; max-width: 54ch; margin-bottom: 1.7em; }

.panel-card {
  --pf-row-bg: rgba(255,255,255,0.05);
  --pf-icon-bg: rgba(255,255,255,0.16);
  --pf-icon-color: var(--sand);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(2px);
}
.panel-card h2, .panel-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 18px; }
.panel-facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.panel-facts li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 10px;
  background: var(--pf-row-bg);
}
.pf-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pf-icon-bg);
  color: var(--pf-icon-color);
}
.pf-icon svg { width: 22px; height: 22px; }
.pf-text { display: flex; flex-direction: column; font-size: .92rem; color: #C7D3DB; }
.pf-text strong { color: var(--white); font-size: .98rem; margin-bottom: 2px; }

.section { padding: 74px 0; }
.section-alt { background: var(--sand); }
.section-alt-2 { background: var(--sky); }
.section-heading-center { text-align: center; max-width: 780px; margin: 0 auto 44px; }
.section-lede { color: var(--muted); font-size: 1.02rem; }

/* Quick answer / AI-summary panel */
.quick-answer {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 6px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 36px;
}
.quick-answer h2 { margin-bottom: .4em; }
.quick-answer .qa-updated { color: var(--muted); font-size: .85rem; margin: 0 0 20px; }
.qa-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qa-list li {
  padding-left: 30px;
  position: relative;
}
.qa-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--teal);
  font-weight: 700;
}
.qa-list strong { color: var(--ocean); }
.qa-note { margin: 0; color: var(--muted); font-size: .95rem; }

/* Badges & tags */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(62, 124, 116, 0.12);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.badge-ocean {
  background: rgba(18, 58, 92, 0.08);
  color: var(--ocean);
}

/* Best-tour feature section */
.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: start;
}
.feature-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature-media { position: sticky; top: 108px; }
.spec-list {
  list-style: none;
  margin: 18px 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.spec-list li { font-size: .92rem; color: var(--muted); }
.spec-list li strong { display: block; color: var(--ocean); font-size: .82rem; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }

.widget-wrap {
  margin: 26px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.widget-wrap-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .6px; color: var(--teal-dark); font-weight: 700; margin: 0 0 10px; }

/* The mobile copy of the availability widget lives further down the content flow and only shows on small screens */
.widget-wrap-mobile { display: none; }

.check-list, .yes-list, .no-list, .dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li, .yes-list li {
  padding-left: 30px;
  position: relative;
}
.check-list li::before, .yes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.no-list li {
  padding-left: 30px;
  position: relative;
  color: var(--muted);
}
.no-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 700;
}
.dot-list li {
  padding-left: 20px;
  position: relative;
}
.dot-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 10px 0 30px;
}
.includes-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

/* Route timeline reused for itinerary */
.timeline {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  padding-left: 4px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 32px;
  bottom: -4px;
  width: 3px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
}
.timeline-highlight .timeline-dot { background: var(--ocean); }
.timeline-item div strong { color: var(--ocean); display: block; margin-bottom: 2px; font-size: .96rem; }
.timeline-item div p { margin: 0; color: var(--muted); font-size: .92rem; }

/* Fjord guide info section */
.content-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: start;
}
.content-grid .panel-card {
  --pf-row-bg: rgba(18,58,92,0.045);
  --pf-icon-bg: rgba(62,124,116,0.14);
  --pf-icon-color: var(--teal);
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
}
.content-grid .panel-card h2, .content-grid .panel-card h3 { color: var(--ocean); }
.content-grid .pf-text { color: var(--muted); }
.content-grid .pf-text strong { color: var(--ocean); }

.city-widget-wrap { margin-top: 44px; }

/* Tour grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tour-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.tour-card.is-best { border: 2px solid var(--teal); }
.tour-card-media { position: relative; }
.tour-card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.tour-card-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal);
  color: var(--white);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 6px 12px;
  border-radius: 999px;
}
.tour-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tour-card-body h3 { margin: 0; font-size: 1.12rem; }
.tour-card-tagline { color: var(--teal-dark); font-weight: 700; font-size: .84rem; text-transform: uppercase; letter-spacing: .4px; margin: -6px 0 0; }
.tour-card-desc { color: var(--muted); font-size: .93rem; margin: 0; }
.tour-card-facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; font-size: .88rem; color: var(--muted); }
.tour-card-facts strong { color: var(--ocean); }
.tour-card-note { font-size: .82rem; color: var(--muted); font-style: italic; margin: 0; }
.tour-card-cta { margin-top: auto; padding-top: 6px; display: flex; }
.tour-card-cta .btn { width: 100%; }

.aff-disclaimer { text-align: center; color: var(--muted); font-size: .78rem; margin: 30px 0 0; }

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}
table.compare {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--white);
}
.compare th, .compare td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  vertical-align: top;
}
.compare thead th {
  background: var(--ocean);
  color: var(--white);
  font-family: Georgia, serif;
  font-weight: 700;
  white-space: nowrap;
}
.compare tbody tr:nth-child(odd) { background-color: var(--white); }
.compare tbody tr:nth-child(even) { background-color: var(--sand); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td:first-child, .compare th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 2px 0 6px rgba(0,0,0,0.08);
  font-weight: 700;
  color: var(--ocean);
  min-width: 200px;
  transform: translateZ(0);
}
.compare tbody tr:nth-child(odd) td:first-child,
.compare tbody tr:nth-child(odd) th:first-child { background-color: var(--white); }
.compare tbody tr:nth-child(even) td:first-child,
.compare tbody tr:nth-child(even) th:first-child { background-color: var(--sand); }
.compare thead th:first-child { background-color: var(--ocean); }
.compare .cell-muted { color: var(--muted); }
.compare tbody th { text-align: left; }
.compare td:last-child { text-align: center; }
.compare .btn { width: auto; padding: 9px 18px; font-size: .84rem; white-space: nowrap; }
.table-scroll-hint { display: none; text-align: center; color: var(--muted); font-size: .82rem; margin: 10px 0 0; }

/* CTA banners */
.cta-banner {
  background: linear-gradient(120deg, var(--ocean) 0%, var(--ocean-2) 100%);
  padding: 58px 0;
  text-align: center;
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { color: #CBDCE6; max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { justify-content: center; }

.two-col-cta {
  background: var(--sky);
  padding: 58px 0;
}
.two-col-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 34px;
  align-items: center;
}
.two-col-action { display: flex; justify-content: center; }
.two-col-action .btn { box-shadow: 0 8px 20px rgba(0,0,0,.16); }
.two-col-text p { margin: 0; color: var(--muted); max-width: 60ch; }

/* Reviews */
.reviews-intro {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: -20px auto 40px;
}
.reviews-grid {
  columns: 3;
  column-gap: 24px;
}
.review-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--teal); letter-spacing: 2px; font-size: 1.02rem; margin-bottom: 8px; }
.review-name { font-weight: 700; color: var(--ocean); margin-bottom: 8px; }
.review-loc { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; margin-top: 2px; }
.review-text { color: var(--text); font-size: .94rem; }

/* FAQ */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 26px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 34px 20px 0;
  font-weight: 700;
  color: var(--ocean);
  font-size: 1.01rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--teal);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p { color: var(--muted); padding: 0 0 22px; margin: 0; }

/* Footer */
.site-footer { background: var(--ocean); color: #C7D3DB; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: #9FB0BC; margin-top: 14px; }
.footer-nav h3, .footer-contact h3 { color: var(--white); font-family: Georgia, serif; margin-bottom: 16px; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #C7D3DB; text-decoration: none; }
.footer-nav a:hover { color: var(--sand); }
.footer-contact p { margin-bottom: 6px; }
.footer-contact a { color: var(--sand); text-decoration: none; }
address { font-style: normal; color: #C7D3DB; margin-bottom: 20px; line-height: 1.5; }
.footer-contact .btn { margin-top: 8px; }
.footer-lang {
  padding-top: 26px;
  text-align: center;
}
.footer-lang-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #8DA0AD;
  margin: 0 0 12px;
}
.footer-lang-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
}
.footer-lang-list a, .footer-lang-list .is-current {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem;
  text-decoration: none;
}
.footer-lang-list a {
  color: #C7D3DB;
  border: 1px solid rgba(255,255,255,.18);
}
.footer-lang-list a:hover { color: var(--white); border-color: var(--sand); }
.footer-lang-list .is-current {
  color: var(--ocean);
  background: var(--sand);
  font-weight: 700;
}

.footer-disclaimer {
  font-size: .8rem;
  color: #B7C6D0;
  max-width: 980px;
  margin: 26px auto 0;
  padding-bottom: 26px;
  line-height: 1.6;
}
.footer-bottom { padding: 22px 24px; text-align: center; font-size: .85rem; color: var(--white); border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { color: inherit; margin: 0; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ocean);
  color: var(--sand);
  border: 1px solid rgba(247, 241, 228, 0.35);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(12, 42, 68, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .15s ease;
  z-index: 90;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--ocean-2); }

@media (max-width: 980px) {
  .hero-grid, .content-grid, .feature-grid, .two-col-grid { grid-template-columns: 1fr; }
  .content-grid .panel-card, .feature-media { position: static; }
  .tour-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .feature-media { order: -1; }
  .two-col-text { order: 1; }
  .two-col-action { order: 2; margin-top: 6px; }
}

@media (max-width: 760px) {
  :root { --btn-mobile: min(72vw, 285px); }

  .hero { padding-top: 36px; text-align: center; }
  .hero-grid { gap: 30px; }
  .eyebrow, .hero-intro { margin-left: auto; margin-right: auto; }
  .hero-intro { max-width: 52ch; }
  .btn-row { justify-content: center; }

  .hamburger { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(82vw, 340px);
    background: var(--ocean);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 90px 28px 40px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; gap: 18px; }
  .nav-link { font-size: 1.05rem; display: block; }
  .nav-close { display: flex; }

  .section { padding: 52px 0; }

  .quick-answer { padding: 26px 22px; }

  .spec-list { grid-template-columns: 1fr 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .reviews-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-nav ul, .panel-facts, .footer-contact { align-items: center; }
  .footer-nav ul { align-items: center; }

  .table-scroll-hint { display: block; }

  /* One button size everywhere on mobile: 74vw fits inside the tour-card padding
     even on a 320px screen, so every standalone CTA renders identically wide. */
  .btn {
    width: var(--btn-mobile);
    max-width: 100%;
    padding: 15px 20px;
  }
  .two-col-action .btn,
  .footer-contact .btn,
  .tour-card-cta .btn { width: var(--btn-mobile); }
  .tour-card-cta { justify-content: center; }
  .tour-card-body { padding: 24px 16px; }
  .footer-contact { display: flex; flex-direction: column; align-items: center; }

  /* Best-tour section: swap the sidebar availability widget for the in-flow mobile copy */
  .widget-wrap:not(.widget-wrap-mobile) { display: none; }
  .widget-wrap-mobile { display: block; }

  /* Comparison table: keep the sticky column compact and the book button from stretching */
  .compare td:first-child, .compare th:first-child { min-width: 148px; font-size: .86rem; }
  .compare th, .compare td { padding: 13px 14px; }
  .compare .btn { padding: 8px 14px; font-size: .8rem; }

  .panel-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .panel-facts li { flex-direction: column; text-align: center; gap: 8px; padding: 16px 10px; }
  .pf-text { align-items: center; }
}
