:root {
  --ink: #17221f;
  --muted: #60706a;
  --paper: #fffaf3;
  --sand: #f4eadc;
  --blue: #0e5f78;
  --blue-dark: #083746;
  --coral: #e75f3c;
  --gold: #d9a441;
  --mint: #d8f1e7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 34, 31, 0.16);
  --radius: 8px;
}

* {
  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);
  overflow-x: clip;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 55, 70, 0.95);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
}

.logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(172px, 18vw, 250px);
  height: 58px;
  padding: 9px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 850;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

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

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

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.header-cta {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 30, 38, 0.88) 0%, rgba(7, 30, 38, 0.56) 48%, rgba(7, 30, 38, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 48px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd37a;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.1vw, 5.25rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.65;
  overflow-wrap: break-word;
}

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

.hero-contact-note {
  display: inline-flex;
  max-width: 720px;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 211, 122, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.hero-contact-note strong {
  color: #ffd37a;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(231, 95, 60, 0.32);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.btn-dark {
  background: var(--blue-dark);
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(900px, 100%);
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.trust-strip span {
  display: grid;
  gap: 6px;
  min-height: 88px;
  align-content: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip strong {
  color: var(--white);
  font-size: 1.1rem;
}

.section-pad {
  padding: clamp(58px, 6.5vw, 92px) 0;
}

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

.intro-grid,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.58fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: end;
}

.intro h2,
.services .section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.06;
}

.intro-panel,
.services-summary {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 95, 120, 0.13);
  background: #f7fbf9;
}

.intro-panel p,
.services-summary p {
  margin-bottom: 20px;
}

.intro-points {
  display: grid;
  gap: 10px;
}

.intro-points span {
  display: block;
  padding: 12px 14px;
  border-left: 3px solid var(--coral);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

.summary-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.services {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

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

.about-grid,
.assistant-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.about-copy p {
  max-width: 720px;
}

.about-founder {
  display: grid;
  gap: 18px;
}

.founder-profile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(14, 95, 120, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(14, 95, 120, 0.08), rgba(231, 95, 60, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.founder-photo-shell {
  display: grid;
  place-items: end center;
  width: clamp(116px, 15vw, 168px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(14, 95, 120, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.95), rgba(221, 241, 238, 0.88) 58%, rgba(14, 95, 120, 0.12) 100%);
}

.founder-photo-shell img {
  display: block;
  width: 112%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.founder-profile span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-profile strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  line-height: 1.05;
}

.founder-profile p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.about-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(14, 95, 120, 0.14);
  border-radius: var(--radius);
  background: rgba(14, 95, 120, 0.14);
  box-shadow: var(--shadow);
}

.about-card div {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
}

.about-card span,
.contact-methods span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

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

.service-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(14, 95, 120, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(23, 34, 31, 0.06);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.service-grid p {
  margin-bottom: 0;
}

.audiences {
  padding: clamp(46px, 5.5vw, 76px) 0;
  background: var(--sand);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.audience-grid h2 {
  margin-bottom: 0;
}

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

.audience-list article {
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(14, 95, 120, 0.12);
}

.audience-list p {
  margin-bottom: 0;
}

.benefits {
  background: var(--blue-dark);
  color: var(--white);
}

.benefits p {
  color: rgba(255, 255, 255, 0.72);
}

.benefits .section-kicker {
  color: #ffd37a;
}

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

.benefit-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: #ffd37a;
  font-weight: 900;
}

.financing {
  background:
    linear-gradient(135deg, rgba(8, 55, 70, 0.97), rgba(8, 55, 70, 0.86)),
    url("assets/global-travel-hero.png") center/cover;
  color: var(--white);
}

.financing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.financing-copy h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
}

.financing-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
}

.financing-highlights {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.financing-highlights li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.financing-highlights li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffd37a;
  content: "";
}

.financing-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.financing-benefits article {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(255, 211, 122, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.financing-benefits span {
  display: block;
  margin-bottom: 10px;
  color: #ffd37a;
  font-weight: 900;
}

.financing-benefits h3 {
  margin-bottom: 8px;
  color: #ffd37a;
  font-size: 1rem;
}

.financing-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.financing-copy .section-kicker {
  color: #ffd37a;
}

.financing-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 211, 122, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.financing-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(217, 164, 65, 0.34);
}

.financing-head span {
  color: var(--muted);
  font-weight: 800;
}

.financing-head strong {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--blue-dark);
  color: #ffd37a;
  font-size: 1.05rem;
}

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

.financing-grid article {
  min-height: 142px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 95, 120, 0.12);
  background: var(--white);
}

.financing-grid h3 {
  color: var(--blue-dark);
}

.financing-grid p {
  margin-bottom: 0;
}

.financing-embed-card {
  display: grid;
  gap: 18px;
}

.financing-iframe-shell {
  overflow: hidden;
  border: 1px solid rgba(14, 95, 120, 0.18);
  border-radius: var(--radius);
  background: var(--white);
}

.financing-iframe-shell iframe {
  display: block;
  width: 100%;
  max-width: 800px;
  min-height: 820px;
  margin: 0 auto;
  border: 0;
  border-radius: 12px;
}

.financing-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.financing-note a {
  color: #0e5f78;
  font-weight: 900;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 650px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--blue-dark);
  color: var(--white);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(54px, 8vw, 110px);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-copy .section-kicker {
  color: #ffd37a;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
}

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

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

.destination-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 250px);
  gap: 18px;
}

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

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

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 55, 70, 0.08), rgba(8, 55, 70, 0.82));
}

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

.destination-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: var(--white);
}

.destination-card p,
.destination-card span {
  color: rgba(255, 255, 255, 0.78);
}

.destination-card p {
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-card h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.05;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

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

.proof-list article {
  min-height: 170px;
  padding: 24px;
  border-left: 4px solid var(--coral);
  background: #f7fbf9;
}

.proof-list p {
  margin-bottom: 0;
}

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

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

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(14, 95, 120, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f8fbf8);
}

.timeline span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--blue-dark);
  font-weight: 900;
}

.quote-band {
  padding: clamp(68px, 9vw, 120px) 0;
  background:
    linear-gradient(90deg, rgba(8, 55, 70, 0.92), rgba(8, 55, 70, 0.62)),
    url("assets/global-travel-hero.png") center/cover;
  color: var(--white);
  text-align: center;
}

.quote-band p {
  margin-bottom: 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.02;
}

.quote-band span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

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

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

details {
  border: 1px solid rgba(14, 95, 120, 0.14);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.assistant-help {
  background: var(--white);
}

.assistant-grid {
  align-items: start;
}

.assistant-grid h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.assistant-grid > div:first-child {
  position: sticky;
  top: 110px;
}

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

.contact-methods article {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 95, 120, 0.13);
  background: #f7fbf9;
}

.contact-methods h3 {
  color: var(--blue-dark);
}

.contact-methods p {
  margin-bottom: 0;
}

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: 38px;
  align-items: center;
  min-width: 0;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel-form {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  align-items: start;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel .section-kicker {
  color: #ffd37a;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.text-link {
  justify-self: start;
  color: #ffe1a1;
  font-weight: 850;
}

.travel-form,
.travel-wizard {
  display: grid;
  gap: 14px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

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

.travel-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.travel-form input,
.travel-form select,
.travel-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(14, 95, 120, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #f9fcfb;
  font: inherit;
  line-height: 1.35;
}

.travel-form textarea {
  min-height: 118px;
  resize: vertical;
}

.travel-form input:focus,
.travel-form select:focus,
.travel-form textarea:focus {
  outline: 3px solid rgba(231, 95, 60, 0.2);
  border-color: rgba(231, 95, 60, 0.6);
  background: var(--white);
}

.travel-form .btn {
  width: 100%;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-status {
  color: var(--blue-dark) !important;
  font-weight: 800;
}

.form-status[data-status="success"] {
  color: #0e5f78 !important;
}

.form-status[data-status="error"] {
  color: #b63d22 !important;
}

.travel-wizard button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.travel-wizard {
  position: relative;
  gap: 18px;
  overflow: hidden;
  isolation: isolate;
}

.travel-wizard::before {
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  background: linear-gradient(135deg, rgba(8, 55, 70, 0.11), rgba(231, 95, 60, 0.1));
  content: "";
  z-index: -1;
}

.wizard-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.request-logo-shell {
  width: min(220px, 56vw);
  height: 62px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
}

.wizard-founder {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 92px;
}

.wizard-founder img {
  width: 68px;
  height: 68px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #eaf5f2;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 12px 26px rgba(8, 55, 70, 0.16);
}

.wizard-founder span {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.wizard-head {
  display: grid;
  gap: 8px;
}

.request-eyebrow {
  margin: 0;
  color: var(--coral) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wizard-head h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.04;
}

.wizard-head p {
  margin: 0;
  color: var(--muted) !important;
  line-height: 1.6;
}

.wizard-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(14, 95, 120, 0.12);
}

.wizard-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), #ffd37a);
  transition: width 0.22s ease;
}

.wizard-step {
  display: grid;
  gap: 14px;
  min-height: 330px;
  margin: 0;
  padding: 0;
  border: 0;
}

.wizard-step[hidden] {
  display: none;
}

.wizard-step legend {
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-size: 1.12rem;
  font-weight: 900;
}

.wizard-step label,
.wizard-choice-group {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.wizard-step input,
.wizard-step textarea {
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  border: 1px solid rgba(14, 95, 120, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f9fcfb;
  font: inherit;
  line-height: 1.35;
}

.wizard-step textarea {
  min-height: 156px;
  resize: vertical;
}

.wizard-step input:focus,
.wizard-step textarea:focus {
  outline: 3px solid rgba(231, 95, 60, 0.2);
  border-color: rgba(231, 95, 60, 0.6);
  background: var(--white);
}

.wizard-choice-group {
  grid-template-columns: 1fr;
}

.wizard-choice-group > span {
  color: var(--blue-dark);
}

.wizard-choice-group label,
.privacy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(14, 95, 120, 0.14);
  border-radius: 8px;
  background: rgba(14, 95, 120, 0.06);
  cursor: pointer;
}

.wizard-choice-group input,
.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--coral);
}

.privacy-check span {
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.wizard-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 10px;
}

.wizard-actions [hidden],
.wizard-actions .is-hidden {
  display: none !important;
}

.wizard-actions .btn {
  width: 100%;
}

.wizard-actions.is-final {
  grid-template-columns: 1fr;
}

.site-footer {
  padding: 70px 0 28px;
  background: #111c19;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, minmax(0, 0.68fr));
  gap: 34px;
}

.footer-grid p,
.footer-grid span,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid h3 {
  color: #77d2dc;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 12px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
}

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

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

.footer-logo-shell {
  width: min(280px, 100%);
  height: 76px;
  padding: 10px 16px;
  background: var(--white);
  box-shadow: none;
}

.footer-quote {
  margin-top: 16px;
  color: #ffd37a !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

@media (max-width: 980px) {
  h1 {
    font-size: clamp(2.35rem, 9vw, 4.4rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 620px;
    font-size: 1rem;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

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

  .site-header.is-open .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(8, 55, 70, 0.98);
  }

  .site-header.is-open .main-nav a {
    padding: 15px 10px;
  }

  .trust-strip,
  .intro-grid,
  .process-grid,
  .faq-grid,
    .contact-panel,
    .about-grid,
    .assistant-grid,
    .section-heading.split,
    .audience-grid,
    .financing-layout,
  .proof-grid,
  .feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
  }

  .feature-image {
    min-height: 360px;
  }

  .process-copy {
    position: static;
  }

  .assistant-grid > div:first-child {
    position: static;
  }

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

  .service-grid,
    .audience-list,
    .financing-grid,
    .contact-methods,
    .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .destination-card,
  .destination-card.large {
    min-height: 340px;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .container,
  .hero-content,
  .footer-bottom {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 14px;
    gap: 12px;
  }

  .brand strong {
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .logo-shell {
    width: 154px;
    height: 48px;
    padding: 8px 10px;
  }

  .footer-logo-shell {
    width: 214px;
    height: 58px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  h1 {
    max-width: min(100%, 340px);
    font-size: clamp(1.62rem, 7.2vw, 2rem);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: min(100%, 348px);
    font-size: 0.96rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .hero-contact-note {
    display: grid;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

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

    .service-grid,
    .audience-list,
    .financing-grid,
    .about-card,
    .contact-methods,
    .form-row,
    .proof-list {
    grid-template-columns: 1fr;
  }

  .founder-profile {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .founder-photo-shell {
    width: min(164px, 52vw);
  }

  .intro-panel,
  .services-summary,
  .financing-card,
  .travel-wizard {
    padding: 20px;
  }

  .wizard-brand {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 12px;
  }

  .request-logo-shell {
    width: min(210px, 100%);
    height: 56px;
  }

  .wizard-founder {
    min-width: 0;
  }

  .wizard-founder img {
    width: 58px;
    height: 58px;
  }

  .wizard-head h3 {
    font-size: 1.48rem;
  }

  .wizard-step {
    min-height: 0;
  }

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

  .financing-benefits {
    grid-template-columns: 1fr;
  }

  .financing-iframe-shell iframe {
    min-height: 760px;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .timeline article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 20px;
  }

  .timeline span {
    width: 42px;
    height: 42px;
  }

  .contact-panel {
    width: 100%;
    padding: 24px 14px;
    overflow: hidden;
  }
}

@media (max-width: 380px) {
  .container,
  .hero-content,
  .footer-bottom {
    width: min(100% - 20px, 1160px);
  }

  .travel-wizard {
    padding: 16px;
  }

  .wizard-step input,
  .wizard-step textarea,
  .wizard-choice-group label,
  .privacy-check {
    padding-right: 12px;
    padding-left: 12px;
  }

  .financing-iframe-shell iframe {
    min-height: 720px;
  }
}
