:root {
  --brand-blue: #003b95;
  --action-blue: #006ce4;
  --deep-blue: #001f4e;
  --soft-blue: #eaf3ff;
  --ink: #102033;
  --muted: #5d6a7c;
  --line: #d9e5f3;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(0, 31, 78, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--brand-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, var(--action-blue), var(--deep-blue));
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
  font-weight: 900;
  font-size: 28px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  font-size: 22px;
  line-height: 1.08;
}

.brand mark,
.site-footer mark {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 2px 9px;
  border-radius: 5px;
  color: var(--deep-blue);
  background: var(--white);
  font: inherit;
}

.site-footer mark {
  margin-left: 4px;
}

.brand small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-menu {
  display: contents;
}

.nav-menu > summary {
  list-style: none;
}

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

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.nav-links a.is-active {
  color: var(--white);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--deep-blue);
  background: linear-gradient(180deg, var(--white), var(--soft-blue));
  border: 1px solid rgba(255, 255, 255, 0.88);
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px 9px 36px;
  border: 0;
  border-radius: 6px;
  color: var(--deep-blue);
  background: linear-gradient(180deg, var(--white), var(--soft-blue));
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle span:nth-child(1) {
  top: 13px;
}

.nav-toggle span:nth-child(2) {
  top: 20px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-blue);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 31, 78, 0.95) 0%, rgba(0, 59, 149, 0.78) 45%, rgba(0, 59, 149, 0.2) 78%),
    linear-gradient(0deg, rgba(0, 31, 78, 0.46), rgba(0, 31, 78, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 86px);
  padding: 72px 0 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--soft-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 58ch;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
}

.trip-planner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1px;
  max-width: 820px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.planner-field {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
}

.planner-field span,
.cta-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.planner-field strong {
  display: block;
  color: var(--deep-blue);
  font-size: 17px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.planner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px 22px;
  color: var(--white);
  background: linear-gradient(180deg, var(--action-blue), var(--brand-blue));
  font-weight: 900;
  white-space: nowrap;
}

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

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 6px;
  color: var(--white);
  background: var(--action-blue);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 108, 228, 0.32);
  white-space: nowrap;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.primary-cta:hover,
.primary-cta:focus-visible,
.secondary-cta:hover,
.secondary-cta:focus-visible,
.planner-button:hover,
.planner-button:focus-visible {
  filter: brightness(1.06);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 108, 228, 0.34);
  font-size: 13px;
  font-weight: 700;
}

.quick-help {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.agency-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.agency-stats div {
  padding: 24px clamp(18px, 4vw, 42px);
  background: var(--white);
}

.agency-stats strong,
.agency-stats span {
  display: block;
}

.agency-stats strong {
  color: var(--deep-blue);
  font-size: 34px;
  line-height: 1;
}

.agency-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.quick-help article {
  min-height: 220px;
  padding: clamp(26px, 4vw, 46px);
  background: var(--white);
}

.quick-help span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--action-blue);
  font-size: 14px;
  font-weight: 900;
}

.quick-help h2,
.service-grid h3 {
  margin-bottom: 10px;
  color: var(--deep-blue);
}

.quick-help p,
.service-grid p,
.destination-card p,
.steps span,
.faq p,
.section-heading p,
.site-footer p {
  color: var(--muted);
}

.destinations,
.service-band,
.steps,
.faq {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.destinations {
  background: var(--white);
}

.service-band {
  background: var(--soft-blue);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: 26px 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
  color: var(--action-blue);
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--deep-blue);
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 17px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.section-heading.narrow .eyebrow {
  margin-bottom: 12px;
}

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

.service-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(0, 59, 149, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 31, 78, 0.08);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.destination-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 31, 78, 0.09);
}

.destination-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft-blue);
}

.destination-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-image span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.destination-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.destination-region {
  margin-bottom: 4px;
  color: var(--action-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-body h3 {
  margin-bottom: 0;
  color: var(--deep-blue);
  font-size: 22px;
  line-height: 1.14;
}

.destination-body > p {
  margin-bottom: 0;
  font-size: 15px;
}

.destination-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.destination-meta strong {
  color: var(--deep-blue);
  font-size: 20px;
  white-space: nowrap;
}

.destination-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--action-blue);
  background: rgba(0, 108, 228, 0.1);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.price-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 31, 78, 0.94), rgba(0, 59, 149, 0.82)),
    var(--brand-blue);
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: 62px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.legal-hero h1 {
  max-width: 16ch;
}

.content-page {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.content-page h2 {
  margin-bottom: 12px;
  color: var(--deep-blue);
  font-size: 28px;
  line-height: 1.15;
}

.content-page p {
  max-width: 900px;
  color: var(--muted);
}

.content-page a {
  color: var(--action-blue);
  font-weight: 800;
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.two-column article,
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 31, 78, 0.08);
}

.contact-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card p {
  margin-bottom: 8px;
  color: var(--deep-blue);
  font-size: 20px;
  font-weight: 800;
}

.contact-card span {
  color: var(--muted);
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h2:not(:first-child) {
  margin-top: 32px;
}

.page-section {
  padding-top: 0;
}

.steps {
  background: var(--white);
}

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

.step-list li {
  position: relative;
  min-height: 190px;
  padding: 68px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, var(--action-blue), var(--brand-blue));
  font-weight: 900;
}

.step-list strong,
.step-list span {
  display: block;
}

.step-list strong {
  margin-bottom: 8px;
  color: var(--deep-blue);
  font-size: 20px;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(40px, 6vw, 68px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--brand-blue);
}

.callout h2 {
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 1.08;
}

.callout p:not(.eyebrow) {
  max-width: 62ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.primary-cta.dark {
  color: var(--deep-blue);
  background: linear-gradient(180deg, var(--white), var(--soft-blue));
  box-shadow: none;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--deep-blue);
  font-weight: 800;
}

details p {
  padding: 0 22px 22px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--deep-blue);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
  max-width: 620px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 760px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.compact-footer {
  align-items: center;
}

.mobile-call {
  display: none;
}

.popup-backdrop {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(234, 243, 255, 0.34), transparent 28%),
    rgba(0, 31, 78, 0.54);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.popup-backdrop.is-visible {
  opacity: 1;
}

.contact-popup {
  position: relative;
  overflow: hidden;
  width: min(680px, calc(100vw - 32px));
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 243, 255, 0.98)),
    var(--white);
  box-shadow: 0 34px 90px rgba(0, 31, 78, 0.42);
  text-align: center;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transition: transform 240ms ease;
}

.contact-popup::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--white), var(--action-blue), var(--brand-blue));
}

.contact-popup::after {
  content: "";
  position: absolute;
  top: -86px;
  right: -86px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(0, 108, 228, 0.1);
}

.popup-backdrop.is-visible .contact-popup {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  color: var(--deep-blue);
  background: rgba(0, 108, 228, 0.1);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.popup-topline {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 7px 14px 7px 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 108, 228, 0.14);
  border-radius: 999px;
  color: var(--deep-blue);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.popup-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, var(--action-blue), var(--brand-blue));
  font-size: 15px;
}

.contact-popup h2 {
  position: relative;
  z-index: 1;
  margin: 0 28px 12px;
  color: var(--deep-blue);
  font-size: 52px;
  line-height: 1.04;
}

.contact-popup p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 50ch;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 18px;
}

.popup-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.popup-points span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--deep-blue);
  background: rgba(0, 108, 228, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.popup-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
}

.popup-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  overflow-wrap: anywhere;
  pointer-events: auto;
}

.popup-call {
  color: var(--white);
  background: linear-gradient(180deg, #0078ff, var(--action-blue));
  box-shadow: 0 14px 30px rgba(0, 108, 228, 0.28);
  font-size: 24px;
  line-height: 1.1;
}

.popup-mail {
  color: var(--deep-blue);
  background: linear-gradient(180deg, var(--white), var(--soft-blue));
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0, 108, 228, 0.16);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: block;
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    right: clamp(18px, 5vw, 72px);
    left: clamp(18px, 5vw, 72px);
    z-index: 25;
    width: auto;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 31, 78, 0.98);
    box-shadow: 0 18px 42px rgba(0, 31, 78, 0.28);
  }

  .nav-menu:not([open]) .nav-links {
    display: none;
  }

  .nav-menu[open] .nav-links {
    display: grid;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 31, 78, 0.97) 0%, rgba(0, 59, 149, 0.76) 68%, rgba(0, 59, 149, 0.34));
  }

  .quick-help,
  .agency-stats,
  .destination-grid,
  .service-grid,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 58px;
  }

  .section-heading h2,
  .callout h2 {
    font-size: 40px;
  }

  .trip-planner {
    grid-template-columns: 1fr 1fr;
  }

  .planner-button {
    grid-column: 1 / -1;
    min-height: 58px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 12px;
  }

  .callout,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand mark {
    min-height: 25px;
    padding: 1px 7px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 23px;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .nav-links {
    right: 16px;
    left: 16px;
  }

  .nav-links a {
    justify-content: flex-start;
    padding: 10px 12px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 54px 0 64px;
  }

  h1 {
    max-width: 10ch;
    font-size: 44px;
    line-height: 1.02;
  }

  .page-hero h1 {
    max-width: 12ch;
    font-size: 40px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .trip-planner {
    grid-template-columns: 1fr;
  }

  .planner-field {
    padding: 14px 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .quick-help,
  .agency-stats,
  .destination-grid,
  .service-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .quick-help article,
  .destination-card,
  .service-grid article,
  .step-list li {
    min-height: auto;
  }

  .section-heading h2,
  .callout h2 {
    font-size: 34px;
  }

  .agency-stats div {
    padding: 20px 16px;
  }

  .agency-stats strong {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .destination-body {
    padding: 16px;
  }

  .destination-image {
    aspect-ratio: 16 / 10;
  }

  .destination-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .destination-meta strong {
    white-space: normal;
  }

  .destination-meta a {
    width: 100%;
  }

  .price-note {
    font-size: 12px;
  }

  .destinations,
  .content-page,
  .service-band,
  .steps,
  .faq {
    padding: 52px 16px;
  }

  .callout {
    padding: 44px 16px;
  }

  .site-footer {
    gap: 18px;
    padding: 28px 16px 92px;
  }

  .site-footer > div:first-child,
  .compact-footer > strong {
    width: 100%;
  }

  .site-footer strong {
    display: block;
    margin-bottom: 4px;
  }

  .site-footer p {
    max-width: 34ch;
    font-size: 13px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: none;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
    line-height: 1.2;
  }

  .compact-footer {
    align-items: flex-start;
  }

  .page-hero {
    padding: 52px 16px;
  }

  .two-column article,
  .contact-card {
    padding: 18px;
  }

  .content-page h2 {
    font-size: 24px;
  }

  .mobile-call {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--deep-blue);
    background: linear-gradient(180deg, var(--white), var(--soft-blue));
    border: 1px solid rgba(0, 108, 228, 0.18);
    box-shadow: 0 16px 34px rgba(0, 31, 78, 0.22);
  }

  .mobile-call span {
    font-weight: 800;
  }

  .mobile-call strong {
    font-size: 16px;
    white-space: nowrap;
  }

  .popup-backdrop {
    padding: 14px;
  }

  .contact-popup {
    width: calc(100vw - 24px);
    padding: 28px 18px 20px;
  }

  .contact-popup h2 {
    margin-right: 26px;
    margin-left: 26px;
    font-size: 34px;
  }

  .contact-popup p:not(.eyebrow) {
    font-size: 16px;
  }

  .popup-actions {
    grid-template-columns: 1fr;
  }

  .popup-call {
    font-size: 22px;
  }
}
