:root {
  --ink: #10231d;
  --ink-soft: #31453c;
  --forest: #053f30;
  --forest-2: #002f24;
  --leaf: #6e8d5f;
  --gold: #c99341;
  --sand: #f5efe3;
  --paper: #fffaf1;
  --white: #ffffff;
  --line: rgba(16, 35, 29, 0.16);
  --glass: rgba(9, 39, 30, 0.62);
  --shadow: 0 30px 90px rgba(6, 33, 25, 0.22);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 100;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--paper);
  border: 2px solid var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.86);
  border-bottom: 1px solid rgba(16, 35, 29, 0.1);
  backdrop-filter: blur(18px);
}

.solid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px max(18px, calc((100vw - 1220px) / 2));
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid rgba(16, 35, 29, 0.1);
  backdrop-filter: blur(18px);
}

.solid-header .brand,
.solid-header .nav-menu {
  color: var(--ink);
}

.solid-header .brand-logo {
  filter: none;
}

.nav {
  width: min(1220px, calc(100% - 36px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.is-scrolled .brand,
.nav-open .brand {
  color: var(--ink);
}

.brand svg {
  width: 42px;
  height: 42px;
}

.brand-logo {
  width: 94px;
  max-height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.is-scrolled .brand-logo,
.nav-open .brand-logo {
  filter: none;
}

.brand-logo[src=""],
.brand-logo:not([src]) {
  display: none;
}

.brand-logo:not([src]) + .brand-fallback,
.brand-logo[src=""] + .brand-fallback {
  display: block;
}

.brand-logo + .brand-fallback {
  display: none;
}

.brand path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.is-scrolled .nav-menu,
.nav-open .nav-menu {
  color: var(--ink-soft);
}

.nav-menu a {
  position: relative;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 850;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease);
}

.nav-cta,
.button.primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  box-shadow: 0 18px 44px rgba(1, 31, 23, 0.28);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button.gold {
  color: #1d2116;
  background: linear-gradient(135deg, #e6b35c, var(--gold));
  border-color: rgba(255, 255, 255, 0.28);
}

.button.full {
  width: 100%;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(1, 31, 23, 0.34);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  display: grid;
  align-items: center;
  padding: 112px 0 82px;
  isolation: isolate;
}

.hero-media,
.hero-shade,
.route-canvas {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.06);
}

.route-canvas {
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.24;
  mix-blend-mode: screen;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at calc(74% + var(--mx, 0px)) calc(44% + var(--my, 0px)), rgba(197, 151, 76, 0.22), transparent 24rem),
    linear-gradient(90deg, rgba(2, 22, 17, 0.86) 0%, rgba(3, 35, 25, 0.6) 42%, rgba(3, 35, 25, 0.16) 76%),
    linear-gradient(180deg, rgba(1, 16, 13, 0.34), rgba(1, 16, 13, 0.74));
}

.hero-grid {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
}

.hero-copy h1,
.section-heading h2,
.map-copy h2,
.itinerary-copy h2,
.faq h2,
.inquiry-form h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3rem, 6.2vw, 6.5rem);
  line-height: 0.94;
}

.hero-copy p {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.guest-proof {
  display: grid;
  gap: 3px;
  margin-top: 78px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.86);
}

.guest-proof strong {
  color: var(--paper);
}

.guest-proof::before {
  content: "*****";
  color: #f4c96a;
  letter-spacing: 0.12em;
  font-size: 1.18rem;
}

.planner-card {
  color: var(--paper);
  background: linear-gradient(145deg, rgba(11, 51, 39, 0.78), rgba(13, 32, 25, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.panel-topline,
.split-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-topline h2 {
  margin: 0;
  font-size: 1rem;
}

.panel-topline span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.style-option {
  min-height: 66px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.style-option:last-child {
  border-right: 0;
}

.style-option.is-active {
  color: #fbefcf;
  background: rgba(201, 147, 65, 0.22);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.field {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.field > span,
.inquiry-form label span,
.faq > span,
.inquiry-form > span,
.section-heading span,
.map-copy span,
.itinerary-copy > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.planner-card input,
.planner-card select,
.stepper,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 0 13px;
  outline: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.planner-card select option {
  color: var(--ink);
}

.planner-card input:focus,
.planner-card select:focus,
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 147, 65, 0.18);
}

.stepper {
  width: 148px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  padding: 0;
  overflow: hidden;
}

.stepper button {
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 1.2rem;
}

.stepper output {
  display: grid;
  place-items: center;
  border-inline: 1px solid rgba(255, 255, 255, 0.16);
}

#budget-output {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
}

input[type="range"] {
  accent-color: var(--gold);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 800;
}

.scroll-cue span {
  width: 16px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

.section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2,
.map-copy h2,
.itinerary-copy h2,
.faq h2,
.inquiry-form h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filters button {
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.filters button.is-active {
  color: var(--paper);
  background: var(--forest);
}

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

.escape-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(16, 35, 29, 0.12);
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease),
    opacity 240ms ease;
}

.escape-card.is-hidden {
  display: none;
}

.escape-card:hover {
  transform: translateY(-8px) rotateX(1deg);
  box-shadow: 0 36px 74px rgba(16, 35, 29, 0.22);
}

.escape-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.escape-card:hover img {
  transform: scale(1.08);
}

.escape-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 24%, rgba(2, 25, 19, 0.88));
}

.escape-card div {
  position: absolute;
  inset: auto 18px 18px;
  color: var(--white);
}

.escape-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.escape-card p {
  margin: 4px 0 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.escape-card span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
}

.packages {
  padding-top: 30px;
}

.section-heading p {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--ink-soft);
}

.package-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 300px) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 26px;
}

.package-toolbar label {
  display: grid;
  gap: 8px;
}

.package-toolbar label span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-toolbar input,
.package-toolbar select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.package-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(16, 35, 29, 0.08);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(16, 35, 29, 0.16);
}

.package-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  background: #d8d0bf;
}

.package-card div {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 8px;
  padding: 18px;
}

.package-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.package-card p {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card span {
  color: var(--forest);
  font-weight: 900;
}

.package-card small {
  display: -webkit-box;
  min-height: 4.4em;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.package-media-link {
  display: block;
  overflow: hidden;
}

.package-link {
  justify-self: start;
  margin-top: 4px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-link::after {
  content: " ->";
  color: var(--gold);
}

.package-detail-page {
  background: #fffaf1;
}

.detail-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px max(18px, calc((100vw - 1220px) / 2)) 72px;
  color: var(--paper);
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: detailImageDrift 16s var(--ease) infinite alternate;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 35, 27, 0.82), rgba(5, 35, 27, 0.46), rgba(5, 35, 27, 0.18)),
    linear-gradient(0deg, rgba(5, 35, 27, 0.88), transparent 56%);
}

.detail-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.detail-hero-copy p,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6.2vw, 6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.detail-meta,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-meta span {
  padding: 9px 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 900;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.primary-button {
  color: #172116;
  background: linear-gradient(135deg, #e6b35c, var(--gold));
  box-shadow: 0 18px 44px rgba(1, 31, 23, 0.28);
}

.secondary-button {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

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

.detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: start;
}

.detail-intro h2,
.detail-panel h2,
.inquiry-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  font-weight: 500;
  line-height: 1.05;
}

.detail-intro > p,
.detail-panel p,
.inquiry-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.detail-panel {
  padding: clamp(22px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(16, 35, 29, 0.08);
}

.accent-panel {
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 14%, rgba(201, 147, 65, 0.18), transparent 13rem),
    linear-gradient(135deg, var(--forest-2), var(--forest));
}

.accent-panel p {
  color: rgba(255, 250, 241, 0.78);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.muted-list li::before {
  background: var(--leaf);
}

.detail-timeline {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-timeline li {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(16, 35, 29, 0.06);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.detail-timeline li:hover {
  transform: translateX(4px);
  box-shadow: 0 22px 52px rgba(16, 35, 29, 0.12);
}

.detail-timeline span {
  color: var(--gold);
  font-weight: 900;
}

.detail-timeline h3 {
  margin: 0 0 6px;
}

.detail-timeline p {
  margin: 0;
  color: var(--ink-soft);
}

.package-inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.inquiry-copy {
  position: sticky;
  top: 104px;
  padding: clamp(22px, 4vw, 40px);
}

.detail-form {
  margin: 0;
}

@keyframes detailImageDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.6%, -1.2%, 0);
  }
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  text-align: center;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flights {
  padding-top: 38px;
}

.flight-search-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(16, 35, 29, 0.08);
}

.flight-search-form label,
.flight-filters label {
  display: grid;
  gap: 8px;
}

.flight-search-form label span,
.flight-filters label > span,
.flight-filter-heading span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flight-search-form input,
.flight-search-form select,
.flight-filters input,
.flight-filters select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}

.flight-search-form input[aria-invalid="true"] {
  border-color: #b44334;
  box-shadow: 0 0 0 3px rgba(180, 67, 52, 0.14);
}

.flight-search-message {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 750;
}

.flight-search-message.is-error {
  color: #9d382d;
}

.flight-search-message.is-success {
  color: var(--forest);
}

.flight-results-panel {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.flight-filters {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #fbf8ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flight-filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.flight-filter-heading strong {
  color: var(--forest);
  white-space: nowrap;
}

.flight-filters output {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.flight-checkbox {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.flight-checkbox input {
  width: 18px;
  min-height: 18px;
}

.flight-checkbox span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.flight-results {
  display: grid;
  gap: 14px;
}

.flight-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.7fr) minmax(170px, auto);
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 35, 29, 0.08);
}

.flight-card-route,
.flight-card-meta,
.flight-card-price {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.flight-card-route span,
.flight-card-meta span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.flight-card-route h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.16rem;
  line-height: 1.2;
}

.flight-card-route p {
  margin: 0;
  color: var(--ink-soft);
}

.flight-card-price {
  justify-items: end;
}

.flight-card-price strong {
  color: var(--forest);
  font-size: 1.2rem;
}

.flight-booking-disabled {
  max-width: 240px;
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.hotel-booking-disabled {
  max-width: 260px;
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.flight-card-price .button.ghost {
  color: var(--forest);
  background: #f7f1e4;
  border-color: rgba(16, 35, 29, 0.14);
  backdrop-filter: none;
}

.flight-empty {
  margin: 0;
  padding: 24px;
  color: var(--ink-soft);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flight-dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 36px));
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.flight-dialog::backdrop {
  background: rgba(7, 27, 22, 0.62);
}

.flight-dialog-shell {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.flight-dialog .dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.flight-dialog .dialog-header span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flight-dialog .dialog-header h2 {
  margin: 4px 0;
  color: var(--forest);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.05;
}

.flight-dialog .dialog-header p {
  margin: 0;
  color: var(--ink-soft);
}

.flight-dialog .dialog-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #f7f1e4;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.flight-dialog-content {
  display: grid;
  gap: 16px;
}

.flight-detail-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.flight-detail-summary strong,
.flight-detail-summary span {
  min-height: 56px;
  padding: 12px;
  color: var(--forest);
  background: #fbf8ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

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

.flight-detail-card {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 12px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flight-detail-card span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flight-detail-card strong {
  color: var(--forest);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

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

.flight-segments li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flight-segments b {
  color: var(--forest);
}

.flight-segments span,
.flight-segments small,
.flight-detail-note {
  color: var(--ink-soft);
}

.flight-detail-note {
  margin: 0;
  padding: 12px;
  background: #f7f1e4;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.hotels {
  padding-top: 38px;
}

.hotel-search-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(270px, 0.9fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(16, 35, 29, 0.08);
}

.hotel-search-form label,
.hotel-filters label {
  display: grid;
  gap: 8px;
}

.hotel-search-form label span,
.hotel-guest-panel > span,
.hotel-stepper-row > span,
.hotel-child-age-fields label span,
.hotel-filters label > span,
.hotel-filter-heading span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hotel-search-form input,
.hotel-search-form select,
.hotel-filters input,
.hotel-filters select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}

.hotel-search-form input[aria-invalid="true"],
.hotel-search-form select[aria-invalid="true"] {
  border-color: #b44334;
  box-shadow: 0 0 0 3px rgba(180, 67, 52, 0.14);
}

.hotel-guest-panel {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: #fbf8ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hotel-stepper-row {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) minmax(122px, auto);
  gap: 10px;
  align-items: center;
}

.stepper.compact {
  min-height: 38px;
}

.stepper.compact button,
.stepper.compact output {
  min-height: 38px;
}

.hotel-child-age-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hotel-search-message {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 750;
}

.hotel-search-message.is-error {
  color: #9d382d;
}

.hotel-search-message.is-success {
  color: var(--forest);
}

.hotel-results-panel {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.hotel-filters {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #fbf8ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hotel-filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.hotel-filter-heading strong {
  color: var(--forest);
  white-space: nowrap;
}

.hotel-filters output {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.hotel-checkbox {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.hotel-checkbox input {
  width: 18px;
  min-height: 18px;
}

.hotel-checkbox span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.hotel-results {
  display: grid;
  gap: 14px;
}

.hotel-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr) minmax(185px, auto);
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 35, 29, 0.08);
}

.hotel-card-main,
.hotel-room-list,
.hotel-card-price {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.hotel-card-main > span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.hotel-card-main h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hotel-card-main p,
.hotel-card-price span {
  margin: 0;
  color: var(--ink-soft);
}

.hotel-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-card-tags span {
  padding: 6px 8px;
  color: var(--forest);
  background: #f7f1e4;
  border: 1px solid rgba(16, 35, 29, 0.08);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 850;
}

.hotel-room-option {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 74px;
  padding: 12px;
  text-align: left;
  color: var(--ink);
  background: #fbf8ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hotel-room-option.is-selected {
  border-color: rgba(5, 63, 48, 0.58);
  box-shadow: 0 0 0 3px rgba(5, 63, 48, 0.12);
}

.hotel-room-option strong {
  color: var(--forest);
  line-height: 1.2;
}

.hotel-room-option span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.hotel-card-price {
  justify-items: end;
}

.hotel-card-price strong {
  color: var(--forest);
  font-size: 1.2rem;
}

.hotel-card-price .button.ghost {
  color: var(--forest);
  background: #f7f1e4;
  border-color: rgba(16, 35, 29, 0.14);
  backdrop-filter: none;
}

.hotel-empty {
  margin: 0;
  padding: 24px;
  color: var(--ink-soft);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hotel-dialog {
  width: min(780px, calc(100% - 28px));
  max-height: min(780px, calc(100vh - 36px));
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hotel-dialog::backdrop {
  background: rgba(7, 27, 22, 0.62);
}

.hotel-dialog-shell {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.hotel-dialog .dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.hotel-dialog .dialog-header span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hotel-dialog .dialog-header h2 {
  margin: 4px 0;
  color: var(--forest);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.05;
}

.hotel-dialog .dialog-header p {
  margin: 0;
  color: var(--ink-soft);
}

.hotel-dialog .dialog-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #f7f1e4;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.hotel-dialog-content {
  display: grid;
  gap: 16px;
}

.hotel-detail-media {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.8fr));
  gap: 8px;
  min-height: 170px;
}

.hotel-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.hotel-detail-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hotel-detail-summary strong,
.hotel-detail-summary span,
.hotel-detail-room {
  min-height: 56px;
  padding: 12px;
  color: var(--forest);
  background: #fbf8ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.hotel-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-detail-tags span {
  padding: 7px 10px;
  color: var(--forest);
  background: #fbf8ef;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.hotel-detail-section {
  display: grid;
  gap: 10px;
  padding: 13px;
  color: var(--ink-soft);
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hotel-detail-section > strong {
  color: var(--forest);
}

.hotel-detail-section p {
  margin: 0;
}

.hotel-detail-room {
  display: grid;
  gap: 4px;
}

.hotel-detail-room span,
.hotel-detail-room p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
}

.hotel-detail-rooms {
  display: grid;
  gap: 10px;
}

.hotel-detail-note {
  margin: 0;
  padding: 12px;
  color: var(--ink-soft);
  background: #f7f1e4;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.hotel-price-breakdown {
  display: grid;
  gap: 8px;
  margin: 0;
}

.hotel-price-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(54, 81, 68, 0.12);
}

.hotel-price-breakdown div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hotel-price-breakdown dt,
.hotel-price-breakdown dd {
  margin: 0;
}

.hotel-price-breakdown dd {
  color: var(--forest);
  font-weight: 900;
}

.hotel-detail-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.map-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1220px) / 2));
  background:
    radial-gradient(circle at 52% 18%, rgba(110, 141, 95, 0.18), transparent 28rem),
    linear-gradient(180deg, #fffaf1, #f1eadc);
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 82px);
}

.map-copy {
  max-width: 480px;
}

.map-copy p,
.itinerary-copy p,
.faq p {
  color: var(--ink-soft);
}

.world-map {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 24% 44%, rgba(6, 63, 48, 0.24) 0 6%, transparent 7%),
    radial-gradient(ellipse at 52% 42%, rgba(6, 63, 48, 0.22) 0 12%, transparent 13%),
    radial-gradient(ellipse at 72% 50%, rgba(6, 63, 48, 0.22) 0 11%, transparent 12%),
    radial-gradient(ellipse at 42% 64%, rgba(6, 63, 48, 0.18) 0 7%, transparent 8%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(244, 236, 218, 0.82));
  border: 1px solid rgba(16, 35, 29, 0.08);
  box-shadow: inset 0 0 70px rgba(6, 63, 48, 0.08);
}

.world-map::before {
  content: "";
  position: absolute;
  inset: 14%;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(16, 35, 29, 0.08) 12% 12.4%, transparent 12.4% 100%),
    repeating-linear-gradient(0deg, rgba(16, 35, 29, 0.05) 0 1px, transparent 1px 60px);
  mask-image: radial-gradient(ellipse, black 48%, transparent 70%);
}

.map-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(6, 63, 48, 0.22);
  animation: orbit 16s linear infinite;
}

.map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 0 0 8px rgba(6, 63, 48, 0.12);
}

.map-pin span {
  position: absolute;
  left: 26px;
  top: 50%;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
  transform: translateY(-50%);
}

.map-pin.is-active {
  background: var(--gold);
  transform: scale(1.16);
}

.pin-costa {
  left: 22%;
  top: 48%;
}

.pin-bali {
  left: 72%;
  top: 58%;
}

.pin-seychelles {
  left: 58%;
  top: 62%;
}

.pin-patagonia {
  left: 31%;
  top: 73%;
}

.map-card {
  position: absolute;
  left: 42%;
  top: 35%;
  width: min(260px, 44vw);
  padding: 18px;
  color: var(--paper);
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card p {
  margin: 8px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.88rem;
}

.concierge-band {
  padding: clamp(70px, 10vw, 112px) max(18px, calc((100vw - 1220px) / 2));
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 22%, rgba(201, 147, 65, 0.16), transparent 18rem),
    linear-gradient(135deg, var(--forest-2), var(--forest));
}

.section-heading.light span,
.section-heading.light h2 {
  color: var(--paper);
}

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

.process-row article {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.process-row b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.process-row h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
}

.process-row p {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
}

.itinerary {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: start;
  gap: clamp(36px, 6vw, 86px);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 103px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(16, 35, 29, 0.18);
}

.timeline-day {
  position: relative;
  display: grid;
  grid-template-columns: 82px 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.timeline-day > i {
  z-index: 1;
  display: block;
  width: 14px;
  height: 14px;
  margin: 3px auto 0;
  border: 2px solid var(--forest);
  border-radius: 999px;
  background: var(--paper);
}

.timeline-day b {
  color: var(--gold);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: right;
}

.timeline-day span {
  display: block;
  font-weight: 900;
  line-height: 1.28;
}

.timeline-day small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

.timeline-break {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  margin: 4px 0;
  padding: 14px 16px;
  color: var(--paper);
  background: var(--forest);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.timeline-break strong {
  color: #f1c979;
}

.timeline-break span {
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.9rem;
}

.itinerary.is-previewing {
  animation: itineraryArrival 620ms var(--ease);
}

@keyframes itineraryArrival {
  from {
    opacity: 0.35;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.villa-preview {
  position: sticky;
  top: 96px;
}

.villa-preview > img,
.feature-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 68px rgba(16, 35, 29, 0.18);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.mini-gallery img {
  aspect-ratio: 1.6;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-credit {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-align: right;
}

.media-credit a {
  color: var(--forest);
  text-decoration: underline;
}

.highlight-panel {
  margin-top: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.highlight-panel h3 {
  margin: 0 0 12px;
}

.highlight-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.highlight-panel li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.feature-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
}

.feature-card div {
  width: calc(100% - 44px);
  margin: -52px auto 0;
  position: relative;
  padding: 20px;
  background: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(16, 35, 29, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.feature-card h3 {
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

.highlight-panel .button {
  margin-top: 18px;
}

.itinerary-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.brief-summary {
  position: sticky;
  top: 104px;
  padding: 28px 0;
}

.brief-summary > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brief-summary h2 {
  margin: 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.brief-summary p {
  color: var(--ink-soft);
}

.brief-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.brief-facts span {
  padding: 8px 10px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(6, 63, 48, 0.08);
  border: 1px solid rgba(6, 63, 48, 0.14);
  border-radius: var(--radius);
}

.faq-section {
  display: block;
  max-width: 900px;
}

.feature-card a {
  color: var(--forest);
  font-weight: 900;
}

.proof {
  padding-top: 20px;
}

.quote-shell {
  display: grid;
  grid-template-columns: 46px minmax(0, 660px) 46px;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.quote-nav {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  background: var(--white);
  font-size: 1.6rem;
}

#quote-card {
  margin: 0;
  padding: 34px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(16, 35, 29, 0.08);
  transition:
    transform 220ms var(--ease),
    opacity 220ms ease;
}

#quote-card.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

#quote-card blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.35;
}

#quote-card blockquote::after {
  content: "*****";
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

#quote-card figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-weight: 800;
}

.inquiry {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 900;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin-top: 0;
}

.inquiry-form {
  padding: clamp(24px, 4vw, 42px);
  color: var(--paper);
  background:
    radial-gradient(circle at 92% 6%, rgba(201, 147, 65, 0.18), transparent 12rem),
    linear-gradient(135deg, var(--forest-2), var(--forest));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  color: var(--paper);
  resize: vertical;
}

.inquiry-form select option {
  color: var(--ink);
}

.inquiry-form textarea {
  padding-top: 12px;
}

.inquiry-form button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
}

.form-note.is-success {
  color: #f5d27b;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
}

.contact-strip span {
  color: rgba(255, 250, 241, 0.74);
  font-size: 0.9rem;
}

.contact-strip a {
  padding: 8px 10px;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  padding: 28px max(18px, calc((100vw - 1220px) / 2));
  color: rgba(255, 250, 241, 0.74);
  background: #08281f;
}

.site-footer p {
  margin: 0;
}

.site-footer [data-brand-name-footer] {
  color: var(--paper);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  max-width: 620px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.9rem;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact a:not(:last-child)::after,
.footer-contact span::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 14px;
  vertical-align: middle;
  background: var(--gold);
  border-radius: 50%;
}

.reveal {
  opacity: 1;
  transform: translateY(28px);
  transition:
    transform 700ms var(--ease);
}

.reveal.is-visible {
  transform: translateY(0);
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35%,
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 9px);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .map-section,
  .itinerary,
  .itinerary-inquiry,
  .detail-intro,
  .detail-grid,
  .package-inquiry-section {
    grid-template-columns: 1fr;
  }

  .planner-card,
  .villa-preview {
    position: relative;
    top: auto;
  }

  .hero-copy h1 {
    max-width: 760px;
  }

  .escape-grid,
  .package-grid,
  .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .package-toolbar .button {
    grid-column: 1 / -1;
  }

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

  .flight-search-form .button,
  .hotel-search-form .button {
    grid-column: 1 / -1;
  }

  .flight-results-panel,
  .hotel-results-panel {
    grid-template-columns: 1fr;
  }

  .flight-filters,
  .hotel-filters {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flight-filter-heading,
  .hotel-filter-heading {
    grid-column: 1 / -1;
  }

  .flight-offer-card,
  .hotel-offer-card {
    grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  }

  .flight-card-meta,
  .hotel-room-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-child-age-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-map {
    min-height: 430px;
  }

  .inquiry-copy {
    position: static;
    padding: 0;
  }

  .brief-summary {
    position: static;
    padding-bottom: 0;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(100% - 28px, 1220px);
    height: 68px;
  }

  .brand {
    max-width: 210px;
    letter-spacing: 0.16em;
    font-size: 0.66rem;
  }

  .brand-logo {
    width: 78px;
    max-height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 68px 14px auto;
    z-index: 80;
    display: grid;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(16, 35, 29, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-open .hero-copy,
  .nav-open .planner-card,
  .nav-open .detail-hero-copy,
  .nav-open .scroll-cue {
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 8px;
    color: var(--paper);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .solid-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .detail-hero {
    min-height: 720px;
    padding: 116px 14px 42px;
  }

  .detail-hero h1 {
    font-size: clamp(2.55rem, 10vw, 3.65rem);
    line-height: 0.98;
  }

  .detail-actions,
  .detail-actions a {
    width: 100%;
  }

  .hero-grid,
  .section {
    width: min(100% - 28px, 1220px);
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .guest-proof {
    margin-top: 38px;
  }

  .planner-card {
    padding: 16px;
  }

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

  .escape-grid,
  .package-grid,
  .feature-duo,
  .form-grid,
  .highlight-panel ul {
    grid-template-columns: 1fr;
  }

  .package-toolbar {
    grid-template-columns: 1fr;
  }

  .flight-search-form,
  .hotel-search-form,
  .flight-filters,
  .hotel-filters,
  .flight-offer-card,
  .hotel-offer-card,
  .flight-card-meta,
  .hotel-room-list,
  .flight-detail-summary,
  .flight-detail-grid,
  .hotel-detail-summary,
  .hotel-detail-media,
  .hotel-child-age-fields {
    grid-template-columns: 1fr;
  }

  .flight-search-form,
  .hotel-search-form {
    padding: 14px;
  }

  .flight-card-price,
  .hotel-card-price {
    justify-items: stretch;
  }

  .flight-card-price .button,
  .hotel-card-price .button {
    width: 100%;
  }

  .flight-dialog .dialog-header,
  .hotel-dialog .dialog-header {
    align-items: start;
  }

  .hotel-stepper-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .escape-card {
    min-height: 360px;
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .map-section,
  .concierge-band {
    padding-inline: 14px;
  }

  .map-card {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 18px;
    width: auto;
  }

  .map-pin span {
    display: none;
  }

  .timeline-day {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
  }

  .timeline::before {
    left: 7px;
  }

  .timeline-day > i {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-inline: 0;
  }

  .timeline-day b {
    grid-column: 2;
    text-align: left;
  }

  .timeline-day > div {
    grid-column: 2;
  }

  .timeline-break {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .quote-nav {
    display: none;
  }

  .detail-timeline li {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .footer-contact {
    justify-content: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .route-canvas {
    display: none;
  }
}

/* ---------- Mock checkout ---------- */

.flight-card-actions,
.hotel-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.checkout {
  background: linear-gradient(160deg, rgba(20, 30, 56, 0.7), rgba(20, 30, 56, 0.92));
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  counter-reset: checkout-step;
}

.checkout-steps li {
  counter-increment: checkout-step;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 220, 154, 0.35);
  font-size: 13px;
  color: rgba(255, 245, 220, 0.78);
}

.checkout-steps li::before {
  content: counter(checkout-step) ". ";
  font-weight: 600;
  color: rgba(245, 220, 154, 0.95);
}

.checkout-steps li.is-active {
  background: rgba(245, 220, 154, 0.18);
  color: rgba(255, 245, 220, 1);
}

.checkout-steps li.is-current {
  background: rgba(245, 220, 154, 0.32);
  border-color: rgba(245, 220, 154, 0.8);
}

.checkout-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: start;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkout-panel {
  background: rgba(8, 16, 36, 0.78);
  border: 1px solid rgba(245, 220, 154, 0.18);
  border-radius: 18px;
  padding: 22px 22px 18px;
  color: rgba(255, 245, 220, 0.92);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-panel[hidden] {
  display: none;
}

.checkout-panel h3 {
  margin: 0;
  font-size: 20px;
}

.checkout-hint {
  margin: 0;
  color: rgba(255, 245, 220, 0.7);
  font-size: 13px;
}

.checkout-traveller-list {
  display: grid;
  gap: 14px;
}

.checkout-traveller {
  border: 1px solid rgba(245, 220, 154, 0.18);
  border-radius: 12px;
  padding: 12px 14px 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 0;
}

.checkout-traveller legend {
  padding: 0 6px;
  font-size: 13px;
  color: rgba(245, 220, 154, 0.85);
  grid-column: 1 / -1;
}

.checkout-traveller label,
.checkout-contact label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.checkout-traveller input,
.checkout-traveller textarea,
.checkout-contact input {
  background: rgba(255, 245, 220, 0.08);
  border: 1px solid rgba(245, 220, 154, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  color: inherit;
  font: inherit;
}

.checkout-contact {
  border: 1px solid rgba(245, 220, 154, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 0;
}

.checkout-contact legend {
  padding: 0 6px;
  font-size: 13px;
  color: rgba(245, 220, 154, 0.85);
  grid-column: 1 / -1;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.checkout-error {
  color: #ffb4b4;
  font-size: 13px;
  min-height: 1.2em;
  margin: 0;
}

.checkout-review-summary {
  display: grid;
  gap: 14px;
}

.checkout-review-summary h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: rgba(245, 220, 154, 0.9);
}

.checkout-review-summary ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
}

.checkout-policy {
  border-top: 1px solid rgba(245, 220, 154, 0.15);
  padding-top: 12px;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.checkout-policy small {
  color: rgba(255, 245, 220, 0.6);
}

.checkout-payment-summary {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.checkout-pay-button {
  align-self: flex-start;
}

.checkout-payment-note {
  color: rgba(255, 245, 220, 0.7);
}

.checkout-status-shell {
  display: grid;
  gap: 10px;
}

.checkout-status-shell[data-state="pending"] {
  color: rgba(255, 245, 220, 0.85);
}

.checkout-status-shell[data-state="confirmed"] h3 {
  color: #9af2c2;
}

.checkout-status-shell[data-state="failed"] h3,
.checkout-status-shell[data-state="manual_review"] h3 {
  color: #ffd58a;
}

.checkout-status-meta {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: rgba(255, 245, 220, 0.78);
}

.checkout-side {
  position: sticky;
  top: 90px;
}

.checkout-summary-card {
  background: rgba(8, 16, 36, 0.78);
  border: 1px solid rgba(245, 220, 154, 0.18);
  border-radius: 18px;
  padding: 22px;
  color: rgba(255, 245, 220, 0.92);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-summary-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 220, 154, 0.85);
}

.checkout-summary-card h3 {
  margin: 0;
  font-size: 20px;
}

.checkout-breakdown {
  margin: 6px 0 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.checkout-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkout-breakdown dt,
.checkout-breakdown dd {
  margin: 0;
}

.checkout-breakdown-total {
  border-top: 1px solid rgba(245, 220, 154, 0.25);
  padding-top: 8px;
  font-weight: 600;
}

.checkout-currency-note {
  font-size: 12px;
  color: rgba(255, 245, 220, 0.6);
  margin: 0;
}

@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .checkout {
    padding-left: 16px;
    padding-right: 16px;
  }
  .checkout-panel {
    padding: 18px 16px;
  }
  .checkout-traveller,
  .checkout-contact {
    grid-template-columns: 1fr;
  }
  .checkout-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .checkout-actions .button {
    width: 100%;
  }
  .checkout-steps {
    gap: 6px;
  }
  .checkout-steps li {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    font-size: 12px;
  }
  .flight-card-actions,
  .hotel-card-actions {
    width: 100%;
    justify-content: stretch;
  }
  .flight-card-actions .button,
  .hotel-card-actions .button {
    flex: 1 1 auto;
  }
}
