:root {
  color-scheme: light;
  --ink: #1c1a17;
  --muted: #6d655f;
  --soft: #f5f0e8;
  --paper: #faf7f2;
  --surface: #fffdf8;
  --line: rgba(47, 91, 79, .16);
  --navy: #081927;
  --forest: #2f5b4f;
  --gold: #d8923c;
  --coral: #c0512f;
  --green: #2f7a54;
  --shadow: 0 24px 70px rgba(28, 26, 23, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  opacity: .48;
  background-image:
    linear-gradient(rgba(28, 26, 23, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 26, 23, .03) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
}

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

.edition-strip {
  position: fixed;
  inset: 0 0 auto;
  z-index: 11;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  padding: 7px max(18px, calc((100vw - 1180px) / 2));
  color: rgba(255, 253, 248, .78);
  background: rgba(6, 18, 29, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.edition-strip span:last-child {
  justify-self: end;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 25, 39, .38);
  backdrop-filter: blur(16px);
  transition: background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(250, 247, 242, .94);
  border-color: rgba(8, 25, 39, .1);
  box-shadow: var(--shadow);
}

.site-header.is-scrolled + * {
  scroll-margin-top: 100px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: currentColor;
  font-size: 14px;
  font-weight: 750;
  opacity: .86;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, .12);
  opacity: 1;
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a:focus-visible {
  background: rgba(8, 25, 39, .06);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  line-height: 1;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.header-action {
  color: #081927;
  background: #fff;
}

.site-header.is-scrolled .header-action {
  color: #fff;
  background: var(--navy);
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #081927;
  background: var(--coral);
  color: #fffdf8;
  border-color: rgba(255, 255, 255, .28);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .24);
}

.button.light.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.button.light.primary {
  background: #fff;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding: 156px max(24px, calc((100vw - 1180px) / 2)) 34px;
}

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

.hero-media {
  z-index: -3;
}

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

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 25, 39, .92) 0%, rgba(8, 25, 39, .68) 46%, rgba(8, 25, 39, .2) 100%),
    linear-gradient(180deg, rgba(8, 25, 39, .08) 0%, rgba(8, 25, 39, .74) 100%);
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 36px;
}

.hero-content::before {
  content: "TV";
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: rgba(255, 255, 255, .74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f2bb73;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 98px);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 850;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.hero-index {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 172px;
  width: 300px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: rgba(255, 255, 255, .86);
  background: rgba(8, 25, 39, .36);
  backdrop-filter: blur(16px);
}

.hero-index p {
  margin-bottom: 14px;
  color: #f2bb73;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-index ol {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-index li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-index span {
  color: rgba(255, 255, 255, .48);
  font-weight: 900;
}

.hero-index b {
  font-weight: 750;
}

.hero-panel div {
  min-height: 116px;
  padding: 22px;
  background: rgba(8, 25, 39, .54);
}

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

.hero-panel strong {
  font-size: 17px;
  margin-bottom: 6px;
}

.hero-panel span {
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.section {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .58fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.booking-strip {
  margin-top: -54px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 4;
}

.quote-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(28, 26, 23, .08);
  border-radius: 18px;
  background: rgba(28, 26, 23, .1);
  box-shadow: var(--shadow);
}

.quote-bar div,
.quote-bar a {
  min-height: 96px;
  padding: 20px 22px;
  background: var(--surface);
}

.quote-bar span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.quote-bar strong {
  display: block;
  margin-top: 7px;
  font-size: 15px;
}

.quote-bar a {
  display: grid;
  place-items: center;
  min-width: 150px;
  color: #fffdf8;
  background: var(--coral);
  font-weight: 900;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: 70px;
  background: var(--paper);
  position: relative;
}

.editorial-kicker {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  top: 46px;
  color: rgba(47, 91, 79, .1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 10vw, 138px);
  line-height: .8;
  pointer-events: none;
  z-index: 0;
}

.intro > *:not(.editorial-kicker) {
  position: relative;
  z-index: 1;
}

.intro .section-head {
  display: block;
  margin: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.services,
.process {
  background: var(--soft);
}

.travel-desk {
  background: var(--surface);
}

.desk-mast {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .54fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 42px;
}

.desk-mast p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.desk-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.desk-card,
.desk-note {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.desk-card {
  display: grid;
  align-content: end;
  color: #fffdf8;
  isolation: isolate;
}

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

.desk-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.desk-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 25, 39, .02), rgba(8, 25, 39, .82));
}

.desk-card:hover img {
  transform: scale(1.035);
}

.desk-card div {
  padding: 26px;
}

.desk-card span,
.desk-note span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f4c27e;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.desk-card h3 {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 500;
}

.desk-card p {
  max-width: 430px;
  color: rgba(255, 253, 248, .78);
}

.desk-note {
  padding: 28px;
  display: grid;
  align-content: end;
}

.desk-note span {
  color: var(--forest);
}

.desk-note strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.02;
}

.desk-note p {
  color: var(--muted);
}

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

.service-grid article,
.destination-list article,
.journey-board,
.process-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(8, 25, 39, .05);
}

.service-grid article {
  min-height: 270px;
  padding: 28px;
}

.packages {
  background: var(--paper);
}

.package-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 26px;
}

.package-tabs button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.package-tabs button.is-active,
.package-tabs button:hover,
.package-tabs button:focus-visible {
  color: #fffdf8;
  background: var(--ink);
  border-color: var(--ink);
}

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

.package-card {
  min-height: 430px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
  color: #fff;
  background: #111;
}

.package-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, .74) 100%);
}

.package-card:hover img {
  transform: scale(1.04);
}

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

.package-card div {
  padding: 26px;
}

.package-card p {
  margin-bottom: 8px;
  color: #f4c27e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.package-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
}

.package-card span {
  display: block;
  max-width: 420px;
  color: rgba(255, 255, 255, .78);
}

.featured-escape {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(0, .9fr);
  gap: 72px;
  align-items: center;
  background: #102a2b;
  color: #fffdf8;
}

.escape-media {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
}

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

.escape-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 248, .76);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #f4c27e;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(244, 194, 126, .42);
  text-underline-offset: 5px;
}

.concierge {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, .9fr);
  gap: 70px;
  align-items: start;
  background: var(--surface);
}

.concierge-copy {
  position: sticky;
  top: 110px;
}

.concierge-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.concierge-board div {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.concierge-board span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
}

.concierge-board strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.02;
}

.concierge-board p {
  color: var(--muted);
}

.service-grid p,
.destination-list p,
.journey-line b,
.process-list p,
.check-list {
  color: var(--muted);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--navy);
}

.service-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: #fff;
  clip-path: polygon(48% 0, 60% 0, 64% 42%, 100% 56%, 100% 68%, 63% 62%, 58% 100%, 48% 100%, 43% 62%, 6% 68%, 6% 56%, 42% 42%);
}

.service-icon.visa { background: var(--forest); }
.service-icon.stay { background: var(--gold); }
.service-icon.suitcase { background: var(--coral); }
.service-icon.corporate { background: var(--green); }
.service-icon.document { background: #4f6478; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, .7fr) minmax(0, .9fr);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.metrics div {
  padding: 20px;
  background: var(--paper);
}

.metrics strong {
  display: block;
  color: var(--forest);
  font-size: 34px;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-size: 13px;
}

.journey-board {
  padding: 18px;
}

.journey-line {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
}

.journey-line:last-child { border-bottom: 0; }

.journey-line span {
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.journey-line b {
  font-weight: 700;
}

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

.destination-list article {
  padding: 26px;
}

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

.process-list li {
  min-height: 250px;
  padding: 26px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.itinerary-studio {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(380px, .92fr);
  gap: 68px;
  align-items: center;
  color: #fffdf8;
  background: #102a2b;
}

.studio-copy p:not(.eyebrow) {
  color: rgba(255, 253, 248, .74);
  font-size: 18px;
}

.studio-shell {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.studio-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.studio-tabs button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  color: rgba(255, 253, 248, .72);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.studio-tabs button.is-active,
.studio-tabs button:hover,
.studio-tabs button:focus-visible {
  color: #102a2b;
  background: #fffdf8;
}

.plan-board {
  display: none;
  gap: 10px;
}

.plan-board.is-active {
  display: grid;
}

.plan-board div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
}

.plan-board span {
  color: #f4c27e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.plan-board strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.testimonials {
  background: var(--surface);
}

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

.testimonial-grid article {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.testimonial-grid p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.12;
}

.testimonial-grid span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.faq {
  background: var(--surface);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
}

.faq-list p {
  max-width: 820px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

[data-reveal] {
  transform: translateY(18px);
  opacity: 0;
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

.proof-visual {
  min-height: 300px;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #102a2b;
}

.proof-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: inset 0 0 0 5px #dff3f0;
}

.contact {
  color: #fff;
  background: var(--navy);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .8fr);
  gap: 58px;
  align-items: start;
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: 240px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
}

.quote-form label,
.quote-form .wide {
  display: grid;
  gap: 8px;
}

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

.quote-form span {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, .5);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(244, 194, 126, .62);
  outline-offset: 2px;
}

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

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  color: #dfe7ef;
  background: #06121d;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 14px;
  font-size: 14px;
  font-weight: 750;
}

.mobile-quote {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 12;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fffdf8;
  background: var(--coral);
  box-shadow: 0 16px 42px rgba(28, 26, 23, .24);
  font-weight: 900;
}

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

  .nav {
    display: none;
  }

  .hero-panel,
  .service-grid,
  .destination-list,
  .process-list,
  .package-grid,
  .quote-bar,
  .featured-escape,
  .concierge,
  .concierge-board,
  .intro,
  .desk-mast,
  .desk-layout,
  .itinerary-studio,
  .testimonial-grid,
  .split,
  .split.reverse,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .edition-strip {
    display: none;
  }

  .site-header {
    margin-top: 10px;
  }

  .hero-index {
    position: static;
    width: 100%;
    margin-bottom: 18px;
  }

  .desk-layout {
    grid-template-rows: auto;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer {
    align-items: start;
    width: 100%;
  }

  .concierge-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    font-size: 15px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
    padding: 118px 18px 22px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 66px 18px;
  }

  .booking-strip {
    margin-top: -22px;
  }

  .service-grid article,
  .destination-list article,
  .process-list li,
  .concierge-board div {
    min-height: auto;
    padding: 22px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .studio-tabs {
    grid-template-columns: 1fr;
  }

  .plan-board div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .desk-card,
  .desk-note,
  .testimonial-grid article {
    min-height: 260px;
  }

  .mobile-quote {
    display: flex;
  }

  .site-footer {
    padding-bottom: 86px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

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

  .journey-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
