:root {
  --navy-950: #04111d;
  --navy-900: #071a2b;
  --navy-800: #0c2940;
  --navy-700: #123b58;
  --ink: #102535;
  --muted: #60717d;
  --cream: #f5f2e9;
  --paper: #ffffff;
  --mint: #54e1bd;
  --mint-dark: #19a985;
  --peach: #ffb56b;
  --coral: #ff735c;
  --sky: #d8f5ff;
  --line: #dfe7e9;
  --shadow-sm: 0 12px 30px rgba(7, 26, 43, 0.08);
  --shadow-lg: 0 30px 80px rgba(3, 15, 26, 0.22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(84, 225, 189, 0.55);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-tinted {
  background: var(--cream);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--navy-900);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--mint);
}

.eyebrow.dark {
  color: var(--navy-700);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-light {
  background: var(--paper);
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.button-dark {
  background: var(--navy-900);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}

.button-accent {
  background: var(--mint);
  color: var(--navy-950);
}

.inline-link,
.service-card > a,
.article-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 800;
}

.inline-link:hover,
.service-card > a:hover,
.article-card a:hover {
  color: var(--mint-dark);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 78px;
  color: var(--paper);
  background: rgba(7, 26, 43, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 26, 43, 0.94);
  box-shadow: 0 12px 30px rgba(3, 15, 26, 0.18);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand img {
  width: 164px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.primary-nav a,
.text-link,
.utility-button {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  font-weight: 680;
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.text-link:hover,
.utility-button:hover {
  color: var(--paper);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--paper);
}

/* Hero */
.hero {
  position: relative;
  min-height: 940px;
  padding: 145px 0 92px;
  color: var(--paper);
  background:
    linear-gradient(132deg, rgba(4, 17, 29, 0.98), rgba(7, 35, 53, 0.94) 56%, rgba(14, 65, 79, 0.92)),
    radial-gradient(circle at 70% 20%, rgba(84, 225, 189, 0.18), transparent 32%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: var(--paper);
  clip-path: polygon(0 75%, 18% 90%, 45% 58%, 74% 88%, 100% 52%, 100% 100%, 0 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 500px;
  height: 500px;
  right: -220px;
  top: -170px;
  border: 1px solid rgba(84, 225, 189, 0.22);
  box-shadow: 0 0 0 70px rgba(84, 225, 189, 0.035), 0 0 0 140px rgba(84, 225, 189, 0.025);
}

.hero-orb-two {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: 120px;
  background: rgba(255, 181, 107, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.84fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 218px;
}

.hero-copy h1 em {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.08rem, 1.5vw, 1.27rem);
}

.hero-proof {
  display: flex;
  gap: 28px;
}

.hero-proof div {
  min-width: 116px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.18rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  align-self: start;
}

.hero-photo-main {
  position: absolute;
  inset: 8px 0 auto 42px;
  height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 46px 46px 46px 140px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.8deg);
}

.hero-photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 17, 29, 0.72), transparent 48%);
}

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

.photo-caption {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 30px;
}

.photo-caption span,
.photo-caption strong {
  display: block;
}

.photo-caption span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.photo-caption strong {
  font-size: 1.18rem;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 17px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 45px rgba(3, 15, 26, 0.24);
  backdrop-filter: blur(12px);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.floating-card strong {
  font-size: 0.88rem;
}

.floating-card-flight {
  right: -26px;
  top: 106px;
}

.floating-card-stay {
  left: 0;
  bottom: 55px;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--mint);
}

.mini-thumbnail {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=120&q=70") center / cover;
}

.route-line {
  position: absolute;
  z-index: 3;
  left: -10px;
  top: 52px;
  width: 100%;
  color: var(--mint);
  opacity: 0.82;
  pointer-events: none;
}

.search-panel {
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  bottom: -50px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(4, 17, 29, 0.32);
  backdrop-filter: blur(18px);
}

.search-tabs {
  display: flex;
  gap: 6px;
  width: max-content;
  margin-bottom: 20px;
  padding: 5px;
  border-radius: 999px;
  background: #edf2f2;
}

.search-tab {
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.search-tab span {
  margin-right: 6px;
}

.search-tab.is-active {
  color: var(--paper);
  background: var(--navy-900);
  box-shadow: 0 9px 20px rgba(7, 26, 43, 0.18);
}

.travel-form {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr auto;
  gap: 12px;
  align-items: end;
}

.travel-form[hidden] {
  display: none;
}

.field {
  min-width: 0;
}

.field > span:first-child {
  display: block;
  margin: 0 0 7px 4px;
  color: #62717b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.input-shell {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid #dbe4e6;
  border-radius: 14px;
  background: #fbfcfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-shell:focus-within {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 4px rgba(84, 225, 189, 0.16);
}

.input-shell svg {
  width: 19px;
  height: 19px;
  margin-right: 9px;
  fill: var(--navy-700);
}

.input-shell input,
.input-shell select {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--navy-900);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
}

.input-shell input[type="date"] {
  min-width: 126px;
}

.button-search {
  min-height: 54px;
  padding-inline: 22px;
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--mint);
  box-shadow: 0 14px 28px rgba(25, 169, 133, 0.2);
  white-space: nowrap;
}

.search-note {
  margin: 14px 0 -2px;
  color: var(--muted);
  font-size: 0.77rem;
}

.search-note span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  border-radius: 50%;
  color: var(--navy-900);
  background: rgba(84, 225, 189, 0.45);
  font-size: 0.7rem;
  font-weight: 900;
}

/* Benefit strip */
.brand-strip {
  padding: 26px 0 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.brand-strip-grid p {
  position: relative;
  margin: 0;
  padding: 0 26px;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.brand-strip-grid p:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 20px;
  background: var(--line);
  transform: translateY(-50%);
}

/* Shared section headings */
.section-heading {
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 790px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: end;
}

.split-heading > p {
  max-width: 440px;
  margin-bottom: 8px;
  color: var(--muted);
}

.centered-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}

.compact-heading {
  margin-bottom: 34px;
}

/* Destinations */
.destination-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.destination-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.destination-card-large {
  grid-row: span 2;
}

.destination-card-wide {
  grid-column: span 2;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.destination-card:hover img {
  transform: scale(1.055);
}

.destination-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 17, 29, 0.86), rgba(4, 17, 29, 0.03) 66%);
}

.destination-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: var(--paper);
}

.destination-content small,
.destination-content strong,
.destination-content em {
  display: block;
}

.destination-content small {
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-content strong {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.destination-content em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-style: normal;
}

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

.service-card {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(7, 26, 43, 0.08);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -80px;
  top: 90px;
  border-radius: 50%;
  opacity: 0.2;
}

.service-card-hotel::after { background: var(--peach); }
.service-card-flight::after { background: var(--mint); }
.service-card-car::after { background: #74b5ff; }

.service-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  border-radius: 22px;
  color: var(--navy-900);
  font-size: 1.8rem;
  background: var(--cream);
}

.service-card h3 {
  max-width: 320px;
  font-size: 1.75rem;
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: var(--navy-700);
  font-size: 0.9rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint-dark);
  font-weight: 900;
}

/* Journey */
.journey-section {
  background: var(--paper);
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: start;
}

.journey-copy {
  position: sticky;
  top: 130px;
}

.journey-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
}

.journey-steps {
  display: grid;
  gap: 18px;
}

.journey-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  min-height: 180px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, #fff, #f9fbfa);
  box-shadow: 0 16px 40px rgba(7, 26, 43, 0.05);
}

.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--navy-900);
  background: var(--mint);
  font-weight: 900;
}

.journey-steps h3 {
  margin: 6px 0 10px;
  font-size: 1.5rem;
}

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

/* Value section */
.value-section {
  padding-top: 30px;
}

.value-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  border-radius: 36px;
  color: var(--paper);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.value-art {
  position: relative;
  min-height: 620px;
  background:
    radial-gradient(circle at 30% 34%, rgba(84, 225, 189, 0.26), transparent 24%),
    radial-gradient(circle at 64% 74%, rgba(255, 181, 107, 0.18), transparent 24%),
    linear-gradient(150deg, #0d334b, #061522);
  overflow: hidden;
}

.value-art::after {
  content: "";
  position: absolute;
  inset: 45px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.ticket {
  position: absolute;
  z-index: 3;
  width: 270px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.ticket-one {
  left: 14%;
  top: 17%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  transform: rotate(-7deg);
}

.ticket-two {
  right: 8%;
  top: 42%;
  transform: rotate(7deg);
}

.ticket-three {
  left: 19%;
  bottom: 11%;
  transform: rotate(-2deg);
}

.ticket small,
.ticket strong,
.ticket span {
  display: block;
}

.ticket small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.ticket-two strong,
.ticket-three strong {
  margin: 6px 0 3px;
  font-size: 1.1rem;
}

.ticket-two span,
.ticket-three span {
  color: var(--muted);
  font-size: 0.8rem;
}

.value-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--mint);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 28px rgba(84, 225, 189, 0.1);
}

.value-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px;
}

.value-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.value-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.value-points {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.value-points div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.value-points strong,
.value-points span {
  display: block;
}

.value-points strong {
  margin-bottom: 4px;
}

.value-points span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

/* Articles */
.article-section {
  padding-bottom: 70px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
}

.article-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  overflow: hidden;
}

.article-card:not(.article-card-featured) {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.article-card:nth-child(3) {
  grid-column: 2;
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card > div {
  padding: 24px;
}

.article-card-featured {
  grid-row: span 2;
}

.article-card-featured img {
  height: 370px;
}

.article-card-featured > div {
  padding: 30px;
}

.article-card h3 {
  font-size: 1.32rem;
}

.article-card-featured h3 {
  max-width: 700px;
  font-size: 2rem;
}

.article-card p {
  color: var(--muted);
}

.article-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--mint-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* FAQ */
.faq-section {
  background: #f7f9f7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p:not(.eyebrow) {
  color: var(--muted);
}

.accordion {
  border-top: 1px solid #ccd7da;
}

.accordion-item {
  border-bottom: 1px solid #ccd7da;
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 26px 0;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  font-size: 1.08rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-item button span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper);
}

.accordion-panel {
  padding: 0 58px 26px 0;
}

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

/* Newsletter */
.newsletter-section {
  padding: 0 0 92px;
  background: #f7f9f7;
}

.newsletter-shell {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
  padding: 50px 56px;
  border-radius: 30px;
  color: var(--paper);
  background: linear-gradient(125deg, var(--navy-900), #15465d);
  overflow: hidden;
}

.newsletter-shell h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  border: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

/* Footer */
.site-footer {
  padding: 74px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 0.7fr);
  gap: 42px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 18px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.76rem;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a {
  font-size: 0.87rem;
}

.footer-grid a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 2000;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 16px;
  color: var(--paper);
  background: rgba(7, 26, 43, 0.96);
  box-shadow: var(--shadow-lg);
}

.toast strong,
.toast span {
  display: block;
}

.toast span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.8rem;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .search-panel {
    animation: rise-in 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .hero-visual {
    animation-delay: 0.08s;
  }

  .search-panel {
    animation-delay: 0.16s;
  }

  @keyframes rise-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .primary-nav {
    gap: 18px;
  }

  .nav-actions .utility-button,
  .nav-actions .text-link {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 38px;
  }

  .travel-form {
    grid-template-columns: 1.45fr 1fr 1fr;
  }

  .travel-form .field:nth-of-type(4) {
    grid-column: span 2;
  }

  .button-search {
    grid-column: 3;
  }

  .hero {
    min-height: 1010px;
  }

  .hero-copy {
    padding-bottom: 300px;
  }

  .value-copy {
    padding: 54px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .site-header {
    height: 70px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mobile-nav-toggle {
    display: block;
    grid-column: 2;
  }

  .primary-nav,
  .nav-actions {
    display: none;
  }

  .site-header.nav-expanded {
    height: 100vh;
    background: rgba(7, 26, 43, 0.985);
  }

  .site-header.nav-expanded .nav-shell {
    align-content: start;
    padding-top: 13px;
  }

  .site-header.nav-expanded .primary-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding-top: 54px;
  }

  .site-header.nav-expanded .primary-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.5rem;
  }

  .site-header.nav-expanded .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    margin-top: 30px;
  }

  .site-header.nav-expanded .nav-actions .utility-button,
  .site-header.nav-expanded .nav-actions .text-link {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 130px;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    max-width: 730px;
    padding-bottom: 52px;
  }

  .hero-visual {
    min-height: 560px;
    max-width: 590px;
    margin: 0 auto 48px;
  }

  .search-panel {
    position: relative;
    bottom: auto;
  }

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

  .travel-form .field:nth-of-type(4) {
    grid-column: auto;
  }

  .button-search {
    grid-column: 1 / -1;
  }

  .brand-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }

  .brand-strip-grid p:nth-child(2)::after {
    display: none;
  }

  .split-heading,
  .journey-grid,
  .faq-grid,
  .newsletter-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .destination-card-large {
    grid-row: span 2;
  }

  .destination-card-wide {
    grid-column: span 1;
  }

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

  .service-card {
    min-height: auto;
  }

  .journey-copy,
  .faq-intro {
    position: static;
  }

  .value-shell {
    grid-template-columns: 1fr;
  }

  .value-art {
    min-height: 520px;
  }

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

  .article-card-featured,
  .article-card:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .nav-actions {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 96px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-proof {
    gap: 10px;
  }

  .hero-proof div {
    min-width: 0;
    flex: 1;
    padding-left: 10px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .hero-proof span {
    font-size: 0.7rem;
  }

  .hero-visual {
    min-height: 420px;
    margin-bottom: 28px;
  }

  .hero-photo-main {
    left: 18px;
    height: 390px;
    border-radius: 34px 34px 34px 90px;
  }

  .floating-card-flight {
    right: -8px;
    top: 70px;
  }

  .floating-card-stay {
    left: 0;
    bottom: 10px;
  }

  .route-line {
    top: 24px;
  }

  .search-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .search-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .search-tab {
    flex: 1 0 auto;
    padding-inline: 13px;
  }

  .travel-form {
    grid-template-columns: 1fr;
  }

  .button-search,
  .travel-form .field:nth-of-type(4) {
    grid-column: auto;
  }

  .brand-strip-grid {
    grid-template-columns: 1fr;
  }

  .brand-strip-grid p::after {
    display: none !important;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .destination-card-large {
    grid-row: auto;
  }

  .journey-steps article {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .value-shell {
    border-radius: 24px;
  }

  .value-art {
    min-height: 450px;
  }

  .ticket {
    width: 235px;
  }

  .ticket-one {
    left: 8%;
  }

  .ticket-two {
    right: 4%;
  }

  .ticket-three {
    left: 10%;
  }

  .value-copy {
    padding: 34px 26px 42px;
  }

  .article-card:not(.article-card-featured) {
    grid-template-columns: 1fr;
  }

  .article-card:not(.article-card-featured) img {
    height: 220px;
  }

  .article-card-featured img {
    height: 280px;
  }

  .article-card-featured h3 {
    font-size: 1.55rem;
  }

  .newsletter-shell {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .newsletter-form {
    flex-direction: column;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .newsletter-form input {
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 44px;
  }

  .toast {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
