:root {
  color-scheme: light;
  --ink: oklch(22% 0.045 249);
  --muted: oklch(44% 0.035 245);
  --blue: oklch(30% 0.095 247);
  --blue-strong: oklch(24% 0.105 250);
  --sand: oklch(91% 0.035 82);
  --paper: oklch(98% 0.006 83);
  --warm: oklch(68% 0.15 55);
  --warm-dark: oklch(50% 0.13 48);
  --line: oklch(86% 0.018 86);
  --soft-blue: oklch(94% 0.018 238);
  --shadow: 0 22px 60px oklch(23% 0.07 247 / 12%);
  --radius: 8px;
  --max: 1180px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, oklch(96% 0.012 85) 45%, var(--paper) 100%);
}

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

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 38px);
  background: oklch(98% 0.006 83 / 92%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.78rem;
}

.brand-logo {
  display: block;
  width: clamp(148px, 23vw, 230px);
  max-width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.brand-fallback {
  color: var(--ink);
  font-weight: 850;
  white-space: nowrap;
}

.main-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  flex: 0 0 auto;
  padding: 9px 12px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.92rem;
}

.main-nav a:hover {
  color: var(--ink);
  background: var(--soft-blue);
}

.header-cta {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

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

.hero {
  padding: clamp(24px, 5vw, 54px) 0 clamp(34px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--warm-dark);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 7vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary {
  color: var(--paper);
  background: var(--warm-dark);
  box-shadow: 0 14px 28px oklch(50% 0.13 48 / 18%);
}

.secondary,
.tertiary {
  color: var(--blue);
  background: var(--soft-blue);
}

.tertiary {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.93rem;
}

.hero-video-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(24px, 5vw, 42px);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 18% 12%, oklch(35% 0.08 246 / 60%), transparent 34%),
    linear-gradient(135deg, oklch(14% 0.045 248), oklch(6% 0.028 248) 58%, oklch(18% 0.04 80));
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
}

.hero-video {
  z-index: 1;
}

.hero-fallback {
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, oklch(5% 0.02 248 / 12%) 0%, transparent 36%, oklch(5% 0.02 248 / 34%) 100%),
    linear-gradient(90deg, oklch(5% 0.02 248 / 42%) 0%, transparent 38%, transparent 62%, oklch(5% 0.02 248 / 34%) 100%);
  pointer-events: none;
}

.hero-title-overlay {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 5vw, 58px);
  bottom: clamp(16px, 5vw, 54px);
  left: clamp(16px, 5vw, 58px);
  max-width: 12ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.65rem, 5.5vw, 4.8rem);
  line-height: 0.98;
  text-shadow: 0 18px 48px oklch(5% 0.02 248 / 68%);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-heading.split {
  display: grid;
  max-width: none;
  gap: 16px;
  align-items: end;
}

.destinations,
.process,
.trip-types,
.trust,
.quote-prep,
.quote,
.important-info {
  padding: clamp(44px, 7vw, 82px) 0;
}

.destination-grid,
.packages-grid,
.type-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.destination-card,
.package-card,
.type-grid article,
.testimonial-grid article,
.quote-form,
.steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.004 83);
  box-shadow: 0 14px 34px oklch(23% 0.07 247 / 7%);
}

.destination-card {
  overflow: hidden;
}

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

.destination-card div,
.package-card,
.type-grid article,
.testimonial-grid article,
.steps article {
  padding: 20px;
}

.text-link {
  color: var(--warm-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.destination-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.package-finder {
  padding: clamp(48px, 8vw, 90px) 0;
  background: var(--blue);
}

.package-finder h2,
.package-finder .eyebrow,
.package-finder .section-heading p {
  color: var(--paper);
}

.filters {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--radius);
  background: oklch(98% 0.006 83);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
}

textarea {
  resize: vertical;
}

.package-card {
  display: grid;
  gap: 12px;
}

.package-meta,
.package-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-meta li,
.package-list li,
.trust-signals li,
.ai-list li {
  color: var(--muted);
}

.package-card strong {
  color: var(--ink);
}

.availability-note {
  margin-bottom: 0;
  color: var(--blue);
  font-size: 0.94rem;
}

.legal-note {
  padding: 12px;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.empty-state {
  padding: 18px;
  color: var(--paper);
  border: 1px solid oklch(98% 0.006 83 / 24%);
  border-radius: var(--radius);
}

.ai-section {
  padding: clamp(48px, 7vw, 84px) 0;
}

.ai-panel {
  display: grid;
  max-width: 1080px;
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  margin-inline: auto;
  padding: clamp(24px, 4.5vw, 44px);
  border: 1px solid oklch(85% 0.028 82);
  border-radius: clamp(22px, 4vw, 32px);
  background: linear-gradient(135deg, var(--sand), oklch(96% 0.022 77));
  box-shadow: var(--shadow);
}

.ai-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.ai-copy h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.03;
}

.ai-copy p {
  max-width: 660px;
  margin: 0;
}

.ai-copy .button {
  width: fit-content;
  margin-top: 6px;
}

.required-copy {
  color: var(--blue);
  font-weight: 750;
}

.trust-signals,
.prep-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.ai-list {
  display: grid;
  gap: 12px;
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  color: var(--blue);
  line-height: 1.38;
  border-bottom: 1px solid oklch(80% 0.028 82 / 58%);
}

.ai-list li:last-child {
  border-bottom: 0;
}

.ai-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.56em;
  border-radius: 50%;
  background: var(--warm-dark);
}

.quote-prep {
  padding-bottom: clamp(20px, 4vw, 42px);
}

.quote-prep-panel {
  display: grid;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 5vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.004 83);
  box-shadow: 0 14px 34px oklch(23% 0.07 247 / 7%);
}

.prep-list li {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--warm-dark);
  font-size: 1.55rem;
  font-weight: 900;
}

.type-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
}

.testimonial-grid article p {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 750;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote {
  display: grid;
  gap: 24px;
}

.quote-copy {
  max-width: 620px;
}

.quote-form {
  padding: clamp(18px, 4vw, 30px);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.wide {
  grid-column: 1 / -1;
}

.form-error {
  margin: 16px 0;
  color: oklch(43% 0.17 30);
  font-weight: 800;
}

.form-feedback {
  margin: 16px 0;
  color: var(--blue);
  font-weight: 800;
}

.submit-note {
  margin: 18px 0 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.legal-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.important-info {
  padding-top: clamp(34px, 6vw, 72px);
}

.important-info__card {
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(24px, 4.5vw, 44px);
  border: 1px solid var(--line);
  border-radius: clamp(22px, 4vw, 32px);
  background:
    linear-gradient(135deg, oklch(99% 0.004 83), oklch(96% 0.018 84));
  box-shadow: 0 18px 50px oklch(23% 0.07 247 / 8%);
}

.important-info__header {
  max-width: 720px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.important-info__eyebrow {
  margin-bottom: 8px;
}

.important-info__title {
  max-width: 680px;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.important-info__intro {
  max-width: 640px;
  margin: 0;
}

.important-info__grid {
  display: grid;
  gap: 14px;
}

.important-info__item {
  padding: clamp(17px, 3vw, 22px);
  border: 1px solid oklch(86% 0.018 86 / 86%);
  border-radius: var(--radius);
  background: oklch(99% 0.004 83 / 76%);
}

.important-info__item-title {
  margin: 0 0 8px;
  color: var(--blue-strong);
  font-size: 1.02rem;
  line-height: 1.25;
}

.important-info__item-text {
  max-width: 34ch;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.56;
}

.important-info__footer-note {
  margin: clamp(18px, 3vw, 24px) 0 0;
  padding-top: 16px;
  color: var(--blue);
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 34px clamp(16px, 4vw, 38px);
  color: var(--paper);
  background: var(--blue-strong);
}

.site-footer p,
.site-footer a {
  color: oklch(93% 0.014 82);
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-logo {
  width: min(240px, 72vw);
  max-height: 46px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.social-links a {
  color: oklch(83% 0.045 80);
}

.destination-page {
  background:
    linear-gradient(180deg, var(--paper) 0%, oklch(96% 0.014 86) 48%, var(--paper) 100%);
}

.destination-page main {
  padding-bottom: clamp(42px, 7vw, 88px);
}

.destination-hero {
  display: grid;
  gap: clamp(22px, 5vw, 48px);
  align-items: center;
  padding: clamp(28px, 6vw, 76px) 0 clamp(36px, 7vw, 84px);
}

.destination-hero__media {
  position: relative;
  overflow: hidden;
  border-radius: clamp(22px, 5vw, 38px);
  background:
    radial-gradient(circle at 18% 10%, oklch(72% 0.12 54 / 24%), transparent 34%),
    linear-gradient(135deg, var(--blue-strong), oklch(12% 0.04 248));
  box-shadow: var(--shadow);
}

.destination-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.destination-hero__content {
  display: grid;
  gap: 14px;
}

.destination-hero__content h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 8vw, 5rem);
}

.destination-subheadline {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.destination-price {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid oklch(68% 0.15 55 / 34%);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--blue-strong);
  background: oklch(96% 0.035 83);
  font-weight: 900;
}

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

.destination-includes li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.destination-includes li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--warm-dark);
}

.destination-section {
  padding: clamp(30px, 6vw, 68px) 0;
}

.destination-section__grid {
  display: grid;
  gap: 16px;
}

.destination-card-lite,
.destination-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.004 83);
  box-shadow: 0 14px 34px oklch(23% 0.07 247 / 7%);
}

.destination-card-lite {
  padding: clamp(18px, 4vw, 26px);
}

.destination-card-lite h2,
.destination-card-lite h3 {
  margin-bottom: 10px;
}

.destination-card-lite p:last-child {
  margin-bottom: 0;
}

.destination-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.destination-disclaimer {
  margin-bottom: 0;
  padding: 13px 14px;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 14px;
  font-size: 0.93rem;
  line-height: 1.52;
}

.destination-form {
  padding: clamp(18px, 4vw, 30px);
}

.destination-form h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.destination-form .button {
  margin-top: 16px;
}

@media (min-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    grid-column: auto;
    grid-row: 1;
    justify-content: center;
  }

  .header-cta {
    grid-column: 3;
    grid-row: 1;
  }

  .quote {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
  }

  .section-heading.split,
  .quote-prep-panel,
  .site-footer {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .ai-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.82fr);
  }

  .destination-hero {
    grid-template-columns: 1.04fr 0.96fr;
  }

  .destination-hero__media img {
    aspect-ratio: 16 / 13;
  }

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

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

  .important-info__footer-note {
    max-width: 760px;
  }

  .filters {
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    align-items: end;
  }

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

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

@media (max-width: 420px) {
  .header-cta {
    padding-inline: 11px;
    font-size: 0.78rem;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 148px;
    max-height: 34px;
  }

  .button {
    width: 100%;
  }

  .ai-copy .button {
    width: 100%;
  }

  .ai-list {
    gap: 8px;
  }

  .ai-list li {
    padding-block: 8px;
  }

  .destination-actions,
  .destination-cta {
    align-items: stretch;
  }
}
