/* Book the Falls — design system
   ------------------------------------------------------------------ */
:root {
  --ink: #0c1b1f;
  --ink-2: #3a4c50;
  --ink-3: #6b7c80;
  --line: #e3ded6;
  --line-2: #efeae2;
  --paper: #fbf9f6;
  --sand: #f2ede5;
  --deep: #071316;
  --teal: #10717c;
  --teal-dark: #0a4f57;
  --spray: #6fc7cf;
  --ember: #d9522c;
  --ember-dark: #b83f1e;
  --gold: #c08a2e;
  --r: 14px;
  --r-sm: 9px;
  --shadow: 0 1px 2px rgba(12,27,31,.05), 0 8px 24px -12px rgba(12,27,31,.18);
  --shadow-lg: 0 2px 4px rgba(12,27,31,.06), 0 24px 60px -24px rgba(12,27,31,.35);
  --wrap: 1200px;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -.015em; }
.display { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; line-height: 1.05; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 22px; }
.wrap-narrow { max-width: 760px; }
.stack > * + * { margin-top: 1rem; }
.muted { color: var(--ink-3); }
.center { text-align: center; }

/* ---------- eyebrow / section headers ---------- */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin: 0 0 .6rem;
}
.eyebrow.on-dark { color: var(--spray); }
.section { padding-block: clamp(48px, 7vw, 88px); }
.section-head { max-width: 660px; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { margin-top: .7rem; color: var(--ink-2); font-size: 17px; }
.section-head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; }

/* ---------- header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,249,246,.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.masthead.on-dark {
  background: linear-gradient(180deg, rgba(4,12,14,.62) 0%, rgba(4,12,14,.28) 60%, rgba(4,12,14,0) 100%);
  backdrop-filter: none; border-bottom-color: transparent; color: #fff;
}
.masthead-in { display: flex; align-items: center; gap: 26px; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 600; font-size: 17px; letter-spacing: -.02em; white-space: nowrap; }
.brand svg { flex: none; }
.nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav a { text-decoration: none; font-size: 15px; font-weight: 500; opacity: .82; }
.nav a:hover { opacity: 1; }
.nav a.cta { opacity: 1; }
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  font-family: inherit; font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ember); color: #fff; }
.btn-primary:hover { background: var(--ember-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #17323a; }
.btn-ghost { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-on-dark { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.06); }
.btn-on-dark:hover { background: rgba(255,255,255,.16); }
.btn-sm { padding: 9px 15px; font-size: 14px; }
.btn-block { width: 100%; }

/* the masthead is sticky (so it holds its own space); on hero pages the hero
   slides up underneath it and the hero's own top padding keeps the text clear */
body.has-hero main > .hero:first-child { margin-top: -66px; }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; background: var(--deep); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,12,14,.72) 0%, rgba(4,12,14,.28) 34%, rgba(4,12,14,.55) 68%, rgba(4,12,14,.92) 100%);
}
.hero-in { padding-block: clamp(72px, 14vw, 150px) clamp(36px, 6vw, 64px); }
.hero h1 { font-size: clamp(44px, 8.5vw, 92px); }
.hero .lede { font-size: clamp(17px, 2.2vw, 21px); max-width: 620px; margin-top: 1.1rem; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8rem; }
.hero-credit {
  position: absolute; right: 14px; bottom: 8px; font-size: 10.5px; color: rgba(255,255,255,.5);
  text-decoration: none; max-width: 60%; text-align: right; line-height: 1.3;
}
.hero-credit:hover { color: rgba(255,255,255,.85); }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r); overflow: hidden; margin-top: 2.4rem; }
.stats div { background: rgba(6,17,20,.5); backdrop-filter: blur(6px); padding: 16px 18px; }
.stats b { display: block; font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: -.01em; }
.stats span { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.62); }

/* ---------- search bar ---------- */
.searchbar { position: relative; }
.searchbar input {
  width: 100%; padding: 15px 18px 15px 46px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-family: inherit; font-size: 16px; color: var(--ink); box-shadow: var(--shadow);
}
.searchbar input:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: transparent; }
.searchbar svg { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); opacity: .45; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  text-decoration: none; color: inherit; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-media { aspect-ratio: 4 / 3; background: var(--sand); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 15px 16px 17px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 18px; letter-spacing: -.02em; }
.card-loc { font-size: 13px; color: var(--ink-3); margin-top: 3px; }
.card-blurb { font-size: 14px; color: var(--ink-2); margin-top: .6rem; line-height: 1.5; flex: 1; }
.card-foot { margin-top: .8rem; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }

.tag {
  font-size: 11.5px; font-weight: 600; letter-spacing: .03em; padding: 4px 9px; border-radius: 999px;
  background: var(--sand); color: var(--ink-2); max-width: 100%; overflow-wrap: anywhere;
}
.tag-teal { background: rgba(16,113,124,.1); color: var(--teal-dark); }
.tag-ember { background: rgba(217,82,44,.12); color: var(--ember-dark); }
.tag-gold { background: rgba(192,138,46,.15); color: #8a611b; }

/* feature card (large) */
.feature {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  border-radius: 18px; overflow: hidden; background: var(--deep); color: #fff;
}
.feature-media { position: relative; min-height: 380px; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-body { padding: clamp(26px, 3.4vw, 46px); display: flex; flex-direction: column; justify-content: center; }
.feature-body h2 { font-size: clamp(30px, 3.6vw, 46px); }
.feature-body p { color: rgba(255,255,255,.8); margin-top: .9rem; }
.feature-list { list-style: none; margin: 1.2rem 0 0; display: grid; gap: .5rem; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,.86); }
.feature-list svg { flex: none; margin-top: 4px; color: var(--spray); }

/* ---------- tiles (activities / regions) ---------- */
.tile {
  display: flex; flex-direction: column; gap: 6px; padding: 18px 18px 20px;
  border: 1px solid var(--line); border-radius: var(--r); background: #fff;
  text-decoration: none; color: inherit; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.tile:hover { transform: translateY(-2px); border-color: var(--teal); box-shadow: var(--shadow); }
.tile-icon { width: 34px; height: 34px; border-radius: 9px; background: rgba(16,113,124,.1); display: grid; place-items: center; color: var(--teal); margin-bottom: 6px; }
.tile h3 { font-size: 16.5px; }
.tile p { font-size: 13.5px; color: var(--ink-3); margin: 0; }
.tile b { font-size: 13px; color: var(--teal); font-weight: 600; margin-top: auto; padding-top: 8px; }

/* ---------- destination page ---------- */
.dest-hero { position: relative; color: #fff; isolation: isolate; }
.dest-hero .hero-in { padding-block: clamp(70px, 12vw, 130px) clamp(28px, 4vw, 48px); }
.dest-hero h1 { font-size: clamp(38px, 7vw, 76px); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.layout { display: grid; grid-template-columns: minmax(0,1fr) 344px; gap: 48px; align-items: start; }
.rail { display: grid; gap: 18px; align-self: start; }
.rail > .panel:first-child { position: sticky; top: 84px; }

.panel { border: 1px solid var(--line); border-radius: var(--r); background: #fff; padding: 20px; }
.panel h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); font-weight: 600; }
.panel-dark { background: var(--deep); color: #fff; border-color: transparent; }
.panel-dark h3 { color: var(--spray); }
.book-list { list-style: none; display: grid; gap: 9px; margin-top: 14px; }
.book-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border-radius: var(--r-sm); text-decoration: none; font-size: 14.5px; font-weight: 500;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: #fff;
  transition: background .15s ease;
}
.book-list a:hover { background: rgba(255,255,255,.16); }
.book-list a svg { flex: none; opacity: .6; }
.disclosure { font-size: 11.5px; line-height: 1.5; color: var(--ink-3); margin-top: 12px; }
.panel-dark .disclosure { color: rgba(255,255,255,.5); }

.factlist { list-style: none; display: grid; gap: 0; margin-top: 12px; }
.factlist li { display: grid; grid-template-columns: 104px 1fr; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line-2); font-size: 14.5px; }
.factlist li:first-child { border-top: 0; }
.factlist dt, .factlist .k { color: var(--ink-3); font-size: 13px; }

.prose { font-size: 17.5px; line-height: 1.72; color: var(--ink-2); }
.prose p { margin-bottom: 1.15em; }
.prose strong { color: var(--ink); }
.prose h2 { font-size: clamp(26px, 3.4vw, 34px); color: var(--ink); margin: 2.4rem 0 1rem; }
.prose h3 { font-size: 20px; color: var(--ink); margin: 1.8rem 0 .6rem; }
.lede-para { font-size: 20px; line-height: 1.6; color: var(--ink); }

/* month strip */
.months { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; margin-top: 14px; }
.months div { text-align: center; font-size: 11px; font-weight: 600; padding: 9px 0 8px; border-radius: 6px; background: var(--sand); color: var(--ink-3); }
.months div.on { background: var(--teal); color: #fff; }

/* season bands */
.band { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.band + .band { margin-top: 14px; }
.band-head { padding: 16px 20px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; border-bottom: 1px solid var(--line-2); }
.band-head h3 { font-size: 20px; }
.band-head span { font-size: 14px; color: var(--ink-3); }
.band-body { padding: 16px 20px 20px; font-size: 15.5px; color: var(--ink-2); }
.band-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 14px; }
.band-cols ul { list-style: none; display: grid; gap: 7px; font-size: 14.5px; }
.band-cols li { display: flex; gap: 8px; align-items: flex-start; }
.band-cols svg { flex: none; margin-top: 4px; }
.band-cols h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 8px; }
.tone-peak { border-left: 4px solid var(--teal); }
.tone-good { border-left: 4px solid var(--gold); }
.tone-adventure { border-left: 4px solid var(--ember); }

/* adventure rows */
.adv { border: 1px solid var(--line); border-radius: var(--r); background: #fff; padding: 20px 22px; }
.adv + .adv { margin-top: 14px; }
.adv.is-featured { border-color: rgba(16,113,124,.35); background: linear-gradient(180deg, rgba(16,113,124,.045), #fff 42%); }
.adv-top { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: baseline; justify-content: space-between; }
.adv-top h3 { font-size: 20px; }
.adv-price { font-family: var(--serif); font-size: 24px; text-align: right; max-width: 100%; }
.adv-price small { font-family: var(--sans); font-size: 12.5px; color: var(--ink-3); display: block; font-weight: 500; letter-spacing: 0; overflow-wrap: anywhere; }
.adv p { font-size: 15.5px; color: var(--ink-2); margin: .7rem 0 0; }
.adv-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: .9rem; }
.adv-foot { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* stay rows */
.stay { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); align-items: start; }
.stay h3 { font-size: 17px; }
.stay p { font-size: 14.5px; color: var(--ink-2); margin: .4rem 0 0; }
.stay-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: .6rem; }

/* callout */
.callout { border-radius: var(--r); padding: 22px 24px; background: var(--sand); border: 1px solid var(--line); }
.callout h3 { font-size: 19px; margin-bottom: .5rem; }
.callout p { font-size: 15.5px; color: var(--ink-2); margin: 0; }
.callout-flag { background: rgba(217,82,44,.07); border-color: rgba(217,82,44,.25); }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 17px 34px 17px 0; position: relative;
  font-weight: 600; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 15px; font-size: 22px; font-weight: 400; color: var(--ink-3);
}
.faq details[open] summary::after { content: "\2013"; }
.faq p { font-size: 16px; color: var(--ink-2); padding-bottom: 18px; margin: 0; max-width: 74ch; }

/* itinerary */
.itin { border: 1px solid var(--line); border-radius: var(--r); background: #fff; padding: 20px 22px; }
.itin h3 { font-size: 18px; }
.itin ol { margin: 14px 0 0; padding-left: 0; list-style: none; counter-reset: s; display: grid; gap: 10px; }
.itin li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.itin li::before {
  counter-increment: s; content: counter(s);
  width: 22px; height: 22px; border-radius: 999px; background: var(--sand); color: var(--ink-2);
  display: grid; place-items: center; font-size: 11.5px; font-weight: 700; margin-top: 1px;
}

/* map */
#map, #map-lg { width: 100%; border-radius: var(--r); background: var(--sand); z-index: 1; }
#map { height: 300px; }
#map-lg { height: min(74vh, 720px); }
.leaflet-container { font-family: var(--sans) !important; }
.leaflet-popup-content { margin: 12px 14px; font-size: 14px; }
.leaflet-popup-content b { display: block; font-size: 15px; margin-bottom: 2px; }
.leaflet-popup-content a { color: var(--teal); }

/* filters */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  font-size: 13.5px; font-weight: 500; padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--ink-2); cursor: pointer;
  font-family: inherit; transition: all .13s ease; white-space: nowrap;
}
.chip:hover { border-color: var(--ink-3); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.result-count { font-size: 14px; color: var(--ink-3); margin-top: 18px; }
.empty { padding: 60px 20px; text-align: center; color: var(--ink-3); }

/* dark section */
.dark { background: var(--deep); color: #fff; }
.dark .section-head p, .dark p { color: rgba(255,255,255,.72); }
.dark .tile { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: #fff; }
.dark .tile:hover { border-color: var(--spray); background: rgba(255,255,255,.09); }
.dark .tile p { color: rgba(255,255,255,.62); }
.dark .tile b { color: var(--spray); }
.dark .tile-icon { background: rgba(111,199,207,.14); color: var(--spray); }

/* footer */
.footer { background: var(--deep); color: rgba(255,255,255,.65); padding-block: 56px 34px; font-size: 14.5px; }
.footer a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
.footer h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.45); }

/* tables inside prose */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.4rem 0; }
.table-wrap table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14.5px; }
.table-wrap th { text-align: left; border-bottom: 2px solid var(--line); padding: 8px 12px 8px 0; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); }
.table-wrap td { padding: 12px 12px 12px 0; border-bottom: 1px solid var(--line-2); vertical-align: top; }

/* misc */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.notice { font-size: 13.5px; color: var(--ink-3); border-left: 3px solid var(--line); padding-left: 14px; }
.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; }
.anchor { scroll-margin-top: 90px; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .layout { grid-template-columns: minmax(0,1fr); gap: 34px; }
  .rail { grid-template-columns: repeat(2, 1fr); }
  .rail > .panel:first-child { position: static; }
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; }
  .feature-media { min-height: 250px; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .adv-top { flex-direction: column; align-items: flex-start; }
  .adv-price { text-align: left; }
  .nav { display: none; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 22px 18px; color: var(--ink); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-top: 1px solid var(--line-2); font-size: 16px; opacity: 1; }
  .nav a.cta { margin-top: 12px; border-top: 0; }
  .nav .btn { width: 100%; }
  .nav-toggle {
    display: grid; place-items: center; margin-left: auto; width: 40px; height: 40px;
    border-radius: 9px; border: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer; opacity: .7;
  }
  .rail { grid-template-columns: 1fr; }
  .band-cols { grid-template-columns: 1fr; gap: 16px; }
  .stay { grid-template-columns: 1fr; }
  .stay .btn { width: 100%; }
  .prose { font-size: 16.5px; }
  .lede-para { font-size: 18px; }
  .factlist li { grid-template-columns: 96px 1fr; gap: 10px; font-size: 14px; }
  .adv-top { gap: 4px; }
  .adv-price { font-size: 21px; }
  .itin li { font-size: 14px; }
  #map-lg { height: 62vh; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-in { padding-block: 64px 32px; }
  .stats b { font-size: 22px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .adv, .itin, .panel { padding: 17px; }
  .band-head, .band-body { padding-inline: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
