:root {
  --ink: #10212a;
  --ink-soft: #233943;
  --muted: #5d6b73;
  --paper: #f5f2ea;
  --paper-deep: #ece7dc;
  --white: #ffffff;
  --accent: #a63f20;
  --accent-dark: #7f2d16;
  --line: #d7d2c7;
  --success-soft: #e7efe9;
  --radius-lg: 24px;
  --radius-md: 17px;
  --shadow: 0 18px 48px rgba(16, 33, 42, .09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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.55;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
a:hover { color: var(--accent-dark); }
a:focus-visible, .button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.preview-banner {
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  text-align: center;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 234, .96);
}

.nav, main, footer { max-width: 1160px; margin: 0 auto; }

.nav {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 18px 28px;
}

.nav nav { display: flex; gap: 24px; margin-left: auto; }
.nav nav a { color: var(--ink-soft); font-size: .92rem; font-weight: 700; text-decoration: none; }

.brand-lockup { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-lockup:hover { color: var(--ink); }
.brand-lockup img { border-radius: 10px; flex: 0 0 auto; }
.brand-lockup > span { display: grid; gap: 0; }
.brand { font-weight: 850; letter-spacing: -.025em; }
.brand-lockup small { color: var(--muted); font-size: .7rem; }

.hero { padding: 104px 28px 78px; max-width: 960px; }

.eyebrow {
  margin: 0 0 12px;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .14em;
  color: var(--accent-dark);
  text-transform: uppercase;
}

h1 {
  max-width: 960px;
  margin: 18px 0 26px;
  font-size: clamp(2.9rem, 7vw, 5.85rem);
  line-height: .96;
  letter-spacing: -.062em;
}

h2 {
  margin: 12px 0 22px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -.047em;
}

h3 { margin: 10px 0 10px; font-size: 1.2rem; line-height: 1.25; }
p { margin: 0 0 1em; }

.lead { max-width: 790px; font-size: 1.28rem; color: var(--muted); }
.microcopy { max-width: 700px; margin-top: 22px; color: var(--muted); font-size: .9rem; }
.section-intro { max-width: 680px; color: var(--muted); font-size: 1.12rem; }

.actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 32px; }

.button {
  display: inline-block;
  border: 0;
  background: var(--ink);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 780;
  text-decoration: none;
  text-align: center;
}
.button:hover { background: var(--accent-dark); color: var(--white); }
.button.small { padding: 9px 15px; font-size: .87rem; }
.button.full-width { display: block; width: 100%; }
.button.disabled { opacity: .62; cursor: not-allowed; }
.button.disabled:hover { background: var(--ink); }
.secondary { font-weight: 780; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.proof-strip div { min-height: 122px; padding: 28px; border-right: 1px solid rgba(255, 255, 255, .18); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { font-size: 1.08rem; }
.proof-strip span { margin-top: 5px; color: rgba(255, 255, 255, .72); font-size: .88rem; }

.section { padding: 94px 28px; border-bottom: 1px solid var(--line); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); gap: 72px; align-items: start; }
.body-copy { padding-top: 34px; }
.body-copy p, .section > p { color: var(--muted); font-size: 1.08rem; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.cards article, .fit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 24px;
}
.cards p { color: var(--muted); margin-bottom: 0; }
.step { color: var(--accent-dark); font-size: .76rem; font-weight: 850; letter-spacing: .12em; }

.pilot { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(330px, 1fr); gap: 50px; }
.check-list, .fit-grid ul { padding-left: 1.2rem; }
.check-list li, .fit-grid li { margin: 10px 0; }
.check-list li::marker { color: var(--accent); }

.pricing-card {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow);
}
.country-price + .country-price { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.country-price h3 { margin: 0 0 8px; }
.country-price p:last-child { color: var(--muted); }
.price { margin: 0; font-size: 2.7rem; font-weight: 880; letter-spacing: -.055em; }
.price-label { margin: -4px 0 10px; color: var(--accent-dark); font-size: .82rem; font-weight: 780; text-transform: uppercase; }
.terms-note { margin: 28px 0 22px; padding: 18px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px; }
.fit-grid article:first-child { background: var(--success-soft); }
.fit-grid li { color: var(--ink-soft); }

.control-section { background: var(--paper-deep); }

.booking { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(320px, .8fr); gap: 50px; align-items: center; }
.booking-card { border-radius: var(--radius-lg); background: var(--ink); color: var(--white); padding: 30px; box-shadow: var(--shadow); }
.booking-card p { color: rgba(255, 255, 255, .74); }
.booking-card a:not(.button) { color: var(--white); }
.booking-card .button { background: var(--white); color: var(--ink); }
.booking-card .button:hover { background: var(--white); color: var(--ink); }
.status-label { margin-bottom: 0; font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-fallback { margin: 22px 0 0; font-size: .9rem; }

footer { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 28px; padding: 46px 28px 68px; color: var(--muted); font-size: .88rem; }
.footer-brand { display: grid; align-content: start; }
.footer-brand strong { color: var(--ink); }
.footer-links { text-align: right; }
.disclaimer { grid-column: 1 / -1; margin: 0; padding-top: 18px; border-top: 1px solid var(--line); }
address { font-style: normal; }

.legal-page { max-width: 820px; padding: 80px 28px 100px; }
.legal-page h1 { font-size: clamp(2.8rem, 6vw, 4.7rem); }
.legal-page h2 { margin-top: 46px; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page li { margin: 8px 0; }
.legal-page .effective-date { color: var(--muted); font-size: .9rem; }
.legal-page address { margin-top: 20px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }

@media (max-width: 900px) {
  .nav nav { display: none; }
  .proof-strip, .cards { grid-template-columns: repeat(2, 1fr); }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .split, .pilot, .booking { grid-template-columns: 1fr; gap: 34px; }
  .body-copy { padding-top: 0; }
}

@media (max-width: 620px) {
  .nav { min-height: 76px; padding: 14px 20px; }
  .nav > .button { display: none; }
  .brand-lockup small { max-width: 170px; }
  .hero { padding: 72px 20px 58px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.25rem); }
  .proof-strip { grid-template-columns: 1fr; margin: 0 20px; }
  .proof-strip div { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .proof-strip div:nth-child(3) { border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .proof-strip div:last-child { border-bottom: 0; }
  .section { padding: 70px 20px; }
  .cards, .fit-grid { grid-template-columns: 1fr; }
  .pricing-card, .booking-card { padding: 24px; }
  footer { grid-template-columns: 1fr; padding: 38px 20px 54px; }
  .footer-links { text-align: left; }
  .disclaimer { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
