:root {
  --ink: #1c1c1c;
  --ink-soft: #333333;
  --navy: #f5c400;
  --navy-mid: #ffe066;
  --navy-bright: #2e9b3a;
  --sky: #fffbeb;
  --sky-deep: #fff3c4;
  --amber: #f5c400;
  --amber-deep: #e0b000;
  --sand: #fffcf5;
  --mist: #fff8e1;
  --white: #ffffff;
  --muted: #5c5c5c;
  --line: rgba(46, 155, 58, 0.18);
  --shadow: 0 18px 48px rgba(245, 196, 0, 0.18);
  --radius: 18px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --nav-h: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 8% -5%, rgba(245, 196, 0, 0.22), transparent 55%),
    radial-gradient(800px 480px at 100% 15%, rgba(46, 155, 58, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--sky) 40%, var(--sand) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-bright);
  margin-bottom: 0.75rem;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__head h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--ink);
}

.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.section__head--light h2 {
  color: var(--ink);
}

.section__head--light .section__sub {
  color: var(--muted);
}

.section__head--light .eyebrow {
  color: var(--amber-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(245, 196, 0, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 14px 34px rgba(232, 163, 23, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--white);
}

.calc__actions .btn--ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy-bright);
}

.btn--block {
  width: 100%;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.nav.is-scrolled {
  box-shadow: 0 10px 32px rgba(245, 196, 0, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
}

.nav__logo {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__logo--footer {
  height: 72px;
}

.nav__mark {
  display: none;
}

.nav__name {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav__links a:hover {
  color: var(--navy-bright);
}

.nav__cta {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep)) !important;
  color: var(--ink) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 4.5rem;
  color: var(--ink);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 251, 235, 0.5) 35%, rgba(255, 255, 255, 0.9) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 251, 235, 0.25) 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  color: var(--ink);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-bright);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  max-width: 14ch;
  margin-bottom: 1rem;
  color: var(--ink);
}

.hero__brand-word {
  display: block;
  color: var(--amber);
  font-size: 1.05em;
}

.hero__brand-word span {
  color: var(--ink);
}

.hero__lead {
  max-width: 38ch;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  color: var(--navy-bright);
}

.hero__actions .btn--ghost:hover {
  background: var(--white);
  border-color: var(--navy-mid);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s ease forwards;
}

.hero .reveal:nth-child(1) { animation-delay: 0.1s; }
.hero .reveal:nth-child(2) { animation-delay: 0.25s; }
.hero .reveal:nth-child(3) { animation-delay: 0.4s; }
.hero .reveal:nth-child(4) { animation-delay: 0.55s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.12); }
}

/* Trust marquee */
.trust {
  overflow: hidden;
  background: var(--sky);
  color: var(--ink-soft);
  border-block: 1px solid var(--line);
  padding: 0.9rem 0;
}

.trust__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust__track span::before {
  content: "◆";
  color: var(--navy-bright);
  margin-right: 0.85rem;
  font-size: 0.65em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Calculator */
.calculator {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.5rem 1.25rem 4rem;
}

.calc {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.calc__form,
.calc__result {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.calc__result {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  background: linear-gradient(160deg, #ffffff 0%, var(--sky) 100%);
  color: var(--ink);
  border: 1px solid var(--line);
}

.field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}

.field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  border-color: var(--navy-bright);
  box-shadow: 0 0 0 4px rgba(46, 155, 58, 0.15);
}

.field-hint {
  margin: -0.35rem 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  min-height: 1.2em;
}

.field-hint--error {
  color: #b42318;
}

.route-map {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--mist);
}

.pac-container {
  z-index: 1200 !important;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-family: var(--font-body);
  margin-top: 4px;
}

.pac-item {
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

.pac-item:hover,
.pac-item-selected {
  background: var(--sky);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.35rem;
  background: var(--mist);
  border-radius: 14px;
}

.segmented__btn {
  border: 0;
  background: transparent;
  padding: 0.7rem;
  border-radius: 10px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.segmented__btn.is-active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(245, 196, 0, 0.18);
}

.vehicles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.vehicle {
  text-align: left;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.vehicle:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 155, 58, 0.45);
}

.vehicle.is-active {
  border-color: var(--navy-bright);
  background: linear-gradient(135deg, rgba(245, 196, 0, 0.18), rgba(46, 155, 58, 0.1));
}

.vehicle__name {
  display: block;
  font-weight: 750;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.05rem;
}

.vehicle__rate {
  display: none;
}

.calc__label {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.calc__price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  margin: 0.2rem 0 0.5rem;
  letter-spacing: -0.03em;
  color: var(--navy-bright);
  animation: farePop 0.35s ease;
}

.calc__price--empty {
  color: var(--muted);
  opacity: 0.55;
}

.calc__hint {
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@keyframes farePop {
  from { transform: scale(0.96); opacity: 0.5; }
  to { transform: none; opacity: 1; }
}

.calc__meta {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.calc__meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line);
}

.calc__actions {
  display: grid;
  gap: 0.65rem;
}

.calc__submit-status {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.calc__submit-status.is-success {
  color: var(--navy-bright);
  font-weight: 700;
}

.calc__submit-status.is-error {
  color: #b42318;
  font-weight: 600;
}

.calc__note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.rates {
  margin-top: 2.5rem;
}

.rates h3 {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.rates__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.rate-pill {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.rate-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.rate-pill span {
  color: var(--navy-bright);
  font-weight: 700;
}

/* Features */
.features,
.how,
.faq,
.reviews,
.about {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.5rem 1.25rem;
  border-top: 2px solid var(--amber);
}

.feature__icon {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-bright);
  opacity: 0.45;
  font-size: 1.1rem;
}

.feature h3 {
  margin-top: 0.75rem;
  font-size: 1.2rem;
}

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

.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.how__steps li {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.how__steps span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber-deep);
  display: block;
  margin-bottom: 0.5rem;
}

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

/* Special religious routes */
.special {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 2rem;
}

.special__panel {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 2.25rem 1.5rem 2.5rem;
  background:
    radial-gradient(600px 280px at 50% 0%, rgba(245, 196, 0, 0.2), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, var(--sky) 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.special__label {
  margin: 0 0 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--navy-bright);
}

.special__routes {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.special__routes a {
  display: block;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--line);
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.08rem;
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.special__routes a:hover {
  transform: translateY(-2px);
  border-color: var(--navy-bright);
  background: linear-gradient(135deg, rgba(245, 196, 0, 0.12), rgba(46, 155, 58, 0.08));
}

/* Destinations */
.destinations {
  padding: 4.5rem 1.25rem 5rem;
  background: linear-gradient(180deg, var(--sky) 0%, #fffdf5 100%);
  color: var(--ink);
}

.destinations__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.dest {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--white);
  background:
    linear-gradient(180deg, transparent 25%, rgba(36, 48, 68, 0.72) 100%),
    var(--img) center / cover no-repeat;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: var(--shadow);
}

.dest:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(245, 196, 0, 0.28);
}

.dest__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.dest__price {
  color: var(--amber);
  font-weight: 700;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about__copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.checks {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.checks li {
  font-weight: 650;
  padding-left: 1.6rem;
  position: relative;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber-deep);
  font-weight: 800;
}

.about__visual {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

/* FAQ */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.35rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 0.9rem 0;
  list-style: none;
}

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

.faq__item p {
  color: var(--muted);
  padding-bottom: 0.9rem;
  margin: 0;
}

/* Reviews */
.reviews__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.review {
  margin: 0;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.review blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.review figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #fffdf5 0%, var(--sky-deep) 100%);
  color: var(--ink-soft);
  padding: 4rem 1.25rem 2rem;
  border-top: 1px solid var(--line);
}

.footer__grid {
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer__brand {
  margin-bottom: 1rem;
}

.footer h4 {
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.footer a:hover {
  color: var(--navy-bright);
}

.footer__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer__bottom > div {
  display: flex;
  gap: 1.25rem;
}

.footer__bottom a {
  display: inline;
  margin: 0;
}

/* Float */
.float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.float__wa,
.float__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(11, 28, 51, 0.25);
}

.float__wa {
  width: 54px;
  height: 54px;
  background: #25d366;
  color: white;
}

.float__call {
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  padding: 0.7rem 1.1rem;
}

/* Scroll reveal for below-fold */
.feature.reveal,
.how__steps .reveal {
  animation: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.feature.reveal.is-in,
.how__steps .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .calc,
  .features__grid,
  .how__steps,
  .destinations__grid,
  .reviews__rail,
  .about,
  .footer__grid,
  .rates__grid {
    grid-template-columns: 1fr 1fr;
  }

  .features__grid,
  .how__steps {
    grid-template-columns: 1fr 1fr;
  }

  .calc__result {
    position: static;
  }

  .rates__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section__head {
    margin-bottom: 1.75rem;
  }

  .calculator,
  .features,
  .how,
  .faq,
  .reviews,
  .about,
  .special {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-h: 64px;
  }

  html {
    scroll-padding-top: calc(var(--nav-h) + 8px);
  }

  body {
    padding-bottom: 5.5rem;
  }

  .btn {
    padding: 0.85rem 1.2rem;
    min-height: 48px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }

  .btn:active {
    transform: scale(0.97);
  }

  .nav__inner {
    padding: 0 0.85rem;
  }

  .nav__logo {
    height: 46px;
  }

  .nav__toggle {
    display: flex;
    width: 44px;
    height: 44px;
  }

  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(245, 196, 0, 0.16);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0.85rem 0.85rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav__links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    padding: 0.85rem 0.65rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav__links a:active {
    background: var(--mist);
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.45rem;
    justify-content: center;
  }

  .hero {
    align-items: flex-end;
    min-height: 70vh;
    min-height: 70dvh;
    padding: calc(var(--nav-h) + 1rem) 0.9rem 2rem;
  }

  .hero__eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
  }

  .hero__title {
    max-width: 11ch;
    font-size: clamp(2rem, 9vw, 2.6rem);
    margin-bottom: 0.55rem;
  }

  .hero__lead {
    font-size: 0.98rem;
    margin-bottom: 1rem;
    max-width: 32ch;
  }

  .hero__actions {
    gap: 0.55rem;
    width: 100%;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
  }

  .trust {
    padding: 0.55rem 0;
  }

  .trust__track {
    gap: 1.5rem;
    font-size: 0.78rem;
  }

  .section__head {
    margin: 0 auto 1.25rem;
    padding: 0 0.25rem;
  }

  .section__head h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .section__sub {
    font-size: 0.95rem;
  }

  .eyebrow {
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
  }

  .calculator,
  .features,
  .how,
  .faq,
  .reviews,
  .about,
  .special,
  .destinations {
    padding: 2.25rem 0.9rem;
  }

  .calculator {
    padding-top: 2rem;
    padding-bottom: 1.75rem;
  }

  .calc,
  .features__grid,
  .how__steps,
  .destinations__grid,
  .reviews__rail,
  .about,
  .footer__grid,
  .field-row,
  .rates__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .vehicles {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .vehicle {
    padding: 0.95rem 0.7rem;
    min-height: 52px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
  }

  .vehicle:active {
    transform: scale(0.97);
  }

  .vehicle.is-active {
    box-shadow: 0 0 0 2px var(--navy-bright);
  }

  .calc__form,
  .calc__result {
    padding: 1rem;
    border-radius: 16px;
  }

  .field {
    margin-bottom: 0.75rem;
  }

  .field input {
    padding: 0.8rem 0.85rem;
    min-height: 48px;
    font-size: 16px; /* prevents iOS zoom */
  }

  .segmented {
    gap: 0.3rem;
    padding: 0.28rem;
  }

  .segmented__btn {
    padding: 0.75rem 0.4rem;
    min-height: 44px;
  }

  .segmented__btn:active {
    transform: scale(0.98);
  }

  .route-map {
    height: 180px;
    margin-bottom: 0.65rem;
  }

  .field-hint {
    margin: -0.15rem 0 0.65rem;
    font-size: 0.82rem;
  }

  .calc__price {
    font-size: 2.35rem;
    margin: 0.1rem 0 0.35rem;
  }

  .calc__meta {
    margin-bottom: 0.9rem;
    gap: 0.35rem;
    font-size: 0.88rem;
  }

  .calc__actions {
    gap: 0.5rem;
  }

  .calc__note {
    margin-top: 0.65rem;
    font-size: 0.75rem;
  }

  .special__panel {
    padding: 1.15rem 1rem 1.35rem;
  }

  .special__routes {
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .special__routes a {
    padding: 0.8rem 0.9rem;
    min-height: 48px;
  }

  .special__routes a:active {
    transform: scale(0.98);
    background: var(--mist);
  }

  .features__grid {
    gap: 0.35rem;
  }

  .feature {
    padding: 0.85rem 0.35rem 1rem;
  }

  .feature h3 {
    margin-top: 0.35rem;
    font-size: 1.05rem;
  }

  .how__steps {
    gap: 0.55rem;
  }

  .how__steps li {
    padding: 1rem;
  }

  .how__steps span {
    font-size: 1.45rem;
    margin-bottom: 0.25rem;
  }

  .destinations {
    padding-bottom: 2.5rem;
  }

  .destinations__grid {
    gap: 0.55rem;
  }

  .dest {
    min-height: 160px;
    padding: 1rem;
  }

  .dest:active {
    transform: scale(0.98);
  }

  .dest__name {
    font-size: 1.25rem;
  }

  .about {
    gap: 1.1rem;
  }

  .about__visual,
  .about__visual img {
    min-height: 220px;
  }

  .checks {
    margin-top: 0.9rem;
    gap: 0.4rem;
  }

  .faq__list {
    gap: 0.5rem;
  }

  .faq__item {
    padding: 0.15rem 0.75rem;
  }

  .faq__item summary {
    padding: 0.75rem 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .reviews__rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.65rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }

  .review {
    flex: 0 0 82%;
    scroll-snap-align: start;
    padding: 1rem;
  }

  .footer {
    padding: 2.25rem 0.9rem 5.5rem;
  }

  .footer__grid {
    gap: 1.15rem;
    margin-bottom: 1.25rem;
  }

  .footer__bottom {
    padding-top: 1rem;
    gap: 0.5rem;
  }

  .float {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.45rem;
  }

  .float__wa {
    width: 50px;
    height: 50px;
  }

  .float__call {
    padding: 0.65rem 0.95rem;
  }

  .float__wa:active,
  .float__call:active {
    transform: scale(0.94);
  }

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

