:root {
  --midnight: #061f2c;
  --navy: #0a3040;
  --emerald: #075b46;
  --lagoon: #008bb6;
  --scarlet: #d82f26;
  --mango: #f4bf2a;
  --leaf: #2b8c4b;
  --ivory: #f5eedc;
  --paper: #fffaf0;
  --gold: #d5a849;
  --ink: #082c38;
  --muted: #586967;
  --line: rgba(8, 44, 56, 0.18);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg,
    var(--scarlet) 0 25%,
    var(--mango) 25% 50%,
    var(--lagoon) 50% 75%,
    var(--leaf) 75%);
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button:disabled { cursor: wait; opacity: .65; }
svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--emerald);
  font-weight: 700;
}

.site-header {
  position: fixed;
  inset: 5px 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 max(5vw, 24px);
  background: rgba(255, 250, 240, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .015em;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--mango);
  background: var(--midnight);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 21px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
  font-weight: 800;
}

.nav a {
  position: relative;
  transition: color 160ms ease;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 3px;
  background: var(--scarlet);
  transition: right 160ms ease;
}

.nav a:not(.nav-cta):hover::after { right: 0; }
.nav a:not(.nav-cta):hover { color: var(--scarlet); }

.nav-cta {
  padding: 14px 20px;
  color: var(--midnight);
  background: var(--mango);
  border: 1px solid #dba713;
  box-shadow: 4px 4px 0 var(--midnight);
}

.nav-cta:hover { background: #ffd34c; }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.menu-button span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  min-height: 820px;
  padding: 158px max(5vw, 24px) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 85%, rgba(244,191,42,.2), transparent 26%),
    radial-gradient(circle at 82% 5%, rgba(0,139,182,.16), transparent 28%),
    var(--ivory);
}

.hero::before {
  content: "BELIZE";
  position: absolute;
  right: -30px;
  bottom: -60px;
  color: rgba(6,31,44,.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(150px, 22vw, 350px);
  font-weight: 700;
  letter-spacing: -.07em;
}

.hero-backdrop { position: absolute; inset: 0; pointer-events: none; }

.sun-disc {
  position: absolute;
  top: 135px;
  right: -170px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(216,47,38,.18);
  border-radius: 50%;
}

.sun-disc::before,
.sun-disc::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.sun-disc::before { inset: 64px; border: 1px solid rgba(0,139,182,.17); }
.sun-disc::after { inset: 130px; border: 1px solid rgba(43,140,75,.18); }

.woven-pattern {
  position: absolute;
  left: -25px;
  bottom: -55px;
  width: 420px;
  height: 215px;
  opacity: .11;
  background:
    linear-gradient(45deg, var(--scarlet) 25%, transparent 25%) 0 0/52px 52px,
    linear-gradient(-45deg, var(--mango) 25%, transparent 25%) 0 0/52px 52px,
    linear-gradient(135deg, var(--lagoon) 25%, transparent 25%) 26px 26px/52px 52px,
    linear-gradient(-135deg, var(--leaf) 25%, transparent 25%) 26px 26px/52px 52px;
}

.hero-copy,
.hero-visual { position: relative; z-index: 2; }

.hero-copy {
  align-self: center;
  max-width: 710px;
  padding-right: 6vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--scarlet);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow > span { width: 32px; height: 3px; background: currentColor; }
.eyebrow.dark { color: var(--scarlet); }
.eyebrow.light { color: var(--mango); }

.hero h1,
.section h2,
.pricing-section h2,
.language-section h2,
.availability h2,
.quote-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 700px;
  color: var(--midnight);
  font-size: clamp(66px, 7vw, 112px);
  line-height: .88;
}

.hero h1 em { color: var(--scarlet); font-weight: 400; }

.hero-intro {
  max-width: 590px;
  margin: 34px 0 0;
  color: #435b59;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 25px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover { transform: translate(-2px,-2px); }
.button-primary {
  color: #fff;
  background: var(--scarlet);
  box-shadow: 6px 6px 0 var(--mango);
}
.button-primary:hover { background: #ef4135; box-shadow: 8px 8px 0 var(--mango); }
.button-light {
  color: var(--midnight);
  background: var(--mango);
  box-shadow: 5px 5px 0 var(--lagoon);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  padding: 14px 0 10px;
  border-bottom: 2px solid var(--midnight);
  font-size: 12px;
  font-weight: 900;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--leaf);
  border-radius: 50%;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--leaf);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { transform: scale(.65); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero-visual {
  align-self: center;
  justify-self: end;
  width: min(100%, 600px);
  padding: 0 20px 22px 0;
}

.visual-card {
  position: relative;
  min-height: 570px;
  padding: 31px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0,139,182,.22), transparent 38%),
    linear-gradient(145deg, var(--emerald), var(--midnight));
  border: 1px solid rgba(213,168,73,.85);
  box-shadow: 18px 18px 0 var(--lagoon), 36px 36px 0 var(--mango);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
}

.visual-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}
.live-dot { color: var(--mango); white-space: nowrap; }

.caribbean-emblem {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 58px auto 38px;
  color: var(--midnight);
  background: var(--mango);
  border: 12px solid var(--scarlet);
  border-radius: 50%;
  outline: 10px solid var(--lagoon);
  box-shadow: 0 0 0 11px rgba(255,255,255,.22);
  text-align: center;
}

.caribbean-emblem > span {
  display: block;
  margin-top: 19px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  line-height: .65;
}

.caribbean-emblem small {
  max-width: 110px;
  color: var(--midnight);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-language-tags {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.hero-language-tags span {
  padding: 10px 7px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  text-align: center;
}

.visual-message {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-top: 29px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.visual-message span {
  color: var(--mango);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.visual-message strong {
  text-align: right;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.12;
}

.caribbean-stripes {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  height: 8px;
}
.caribbean-stripes i:nth-child(1) { background: var(--scarlet); }
.caribbean-stripes i:nth-child(2) { background: var(--mango); }
.caribbean-stripes i:nth-child(3) { background: var(--lagoon); }
.caribbean-stripes i:nth-child(4) { background: var(--leaf); }

.belize-tag {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  min-width: 245px;
  padding: 17px 21px;
  color: #fff;
  background: var(--scarlet);
  border: 1px solid #ff776e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}
.belize-tag span {
  display: block;
  margin-top: 6px;
  color: #ffd9d4;
  font-size: 8px;
  letter-spacing: .11em;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(5vw,24px);
  color: white;
  background: var(--midnight);
  border-top: 5px solid var(--gold);
}
.trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.13);
}
.trust-strip > div:last-child { border-right: 0; }
.trust-strip > div:nth-child(1) svg { color: var(--mango); }
.trust-strip > div:nth-child(2) svg { color: #27c2ee; }
.trust-strip > div:nth-child(3) svg { color: #63d67c; }
.trust-strip svg { width: 28px; height: 28px; }
.trust-strip span { color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.5; }
.trust-strip strong { display: block; color: white; font-size: 13px; }

.section,
.quote-section { padding: 120px max(5vw,24px); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(280px,.55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.pricing-section h2,
.language-section h2,
.availability h2,
.quote-section h2 {
  font-size: clamp(40px,4.5vw,68px);
  line-height: 1.02;
}
.section-heading > p,
.language-copy > p,
.availability > p,
.quote-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--line);
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 34px 28px 28px;
  overflow: hidden;
  background: #fffdf8;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}
.service-card:last-child { border-right: 0; }
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
}
.service-card:nth-child(1)::before { background: var(--scarlet); }
.service-card:nth-child(2)::before { background: var(--mango); }
.service-card:nth-child(3)::before { background: var(--lagoon); }
.service-card:nth-child(4)::before { background: var(--leaf); }
.service-card:hover {
  z-index: 2;
  color: #fff;
  background: var(--midnight);
  transform: translateY(-7px);
}
.service-number {
  color: var(--scarlet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.service-card h3,
.process-grid h3 {
  margin: 70px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}
.service-card p,
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card:hover p { color: rgba(255,255,255,.65); }
.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--scarlet);
  font-size: 11px;
  font-weight: 900;
}

.pricing-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px,.68fr) minmax(0,1.32fr);
  gap: 7vw;
  padding: 120px max(5vw,24px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,139,182,.2), transparent 40%),
    var(--midnight);
  border-top: 8px solid var(--mango);
}
.pricing-section::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 55px solid var(--scarlet);
  border-radius: 50%;
  opacity: .26;
}
.pricing-intro { position: relative; z-index: 2; align-self: center; }
.pricing-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 16px;
  line-height: 1.75;
}
.pricing-intro .button { margin-top: 36px; }

.price-calculator {
  position: relative;
  z-index: 2;
  padding: 34px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--gold);
  box-shadow: 14px 14px 0 var(--lagoon), 28px 28px 0 var(--scarlet);
}
.calculator-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.calculator-title span,
.calculator-group legend,
.calculator-group > div > label,
.calculator-total span {
  color: var(--scarlet);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.calculator-title h3 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px,2.5vw,34px);
  font-weight: 400;
}
.calculator-title > strong {
  padding: 8px 10px;
  color: var(--mango);
  background: var(--midnight);
  font-size: 10px;
  letter-spacing: .12em;
}
.calculator-group {
  margin: 0;
  padding: 25px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.calculator-group legend {
  width: 100%;
  margin: 0 0 13px;
  padding: 0;
  color: var(--muted);
}
.page-selector {
  display: grid;
  grid-template-columns: 1fr auto 105px;
  gap: 18px;
  align-items: center;
}
.page-selector p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }

.page-stepper {
  display: grid;
  grid-template-columns: 42px 62px 42px;
  height: 48px;
  border: 1px solid rgba(8,44,56,.28);
  background: #fff;
}
.page-stepper button {
  padding: 0;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: var(--lagoon);
  font-size: 25px;
  line-height: 1;
}
.page-stepper button:last-child { background: var(--leaf); }
.page-stepper button:active { background: var(--scarlet); }
.page-stepper input {
  width: 62px;
  min-width: 0;
  padding: 0 5px;
  border: 0;
  outline: 0;
  color: var(--midnight);
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
.page-stepper input:focus { box-shadow: inset 0 0 0 2px var(--mango); }
.line-total {
  color: var(--midnight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  text-align: right;
}
.choice-card {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 68px;
  margin-top: 9px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}
.choice-card:hover { border-color: var(--lagoon); transform: translateX(3px); }
.choice-selected { border-color: var(--scarlet); background: #fff4df; }
.choice-card input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--scarlet);
  cursor: pointer;
}
.choice-card span,
.choice-card strong,
.choice-card small { display: block; }
.choice-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.choice-card small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.choice-card b { color: var(--ink); font-size: 13px; }
.calculator-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
}
.calculator-total small { display: block; margin-top: 6px; color: var(--muted); font-size: 10px; }
.calculator-total > strong {
  color: var(--scarlet);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px,4.5vw,60px);
  font-weight: 400;
  line-height: 1;
}

.language-section {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 9vw;
  padding: 120px max(5vw,24px);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, var(--lagoon) 0 38%, var(--emerald) 38% 72%, var(--midnight) 72%);
  border-top: 8px solid var(--scarlet);
}
.language-section::before {
  content: "LANGUAGE";
  position: absolute;
  right: -25px;
  bottom: -45px;
  color: rgba(255,255,255,.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 145px;
  font-weight: 700;
}
.language-copy { position: relative; z-index: 2; }
.language-copy > p { max-width: 600px; margin-top: 28px; color: rgba(255,255,255,.76); }
.language-copy .button { margin-top: 36px; }
.language-list {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 24px;
  background: rgba(6,31,44,.35);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.language-list > div {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.language-list span {
  color: rgba(255,255,255,.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px,1.6vw,23px);
}
.language-list > p { margin: 20px 0 0; color: var(--mango); font-size: 11px; font-weight: 800; }

.process {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0 97%, rgba(43,140,75,.09) 97%),
    var(--ivory);
  background-size: 34px 34px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-grid li {
  position: relative;
  padding: 29px 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--midnight);
}
.process-grid li:nth-child(1) { border-top-color: var(--scarlet); }
.process-grid li:nth-child(2) { border-top-color: var(--mango); }
.process-grid li:nth-child(3) { border-top-color: var(--lagoon); }
.process-grid li:nth-child(4) { border-top-color: var(--leaf); }
.process-grid > li > span { color: var(--scarlet); font-size: 10px; font-weight: 900; }
.process-grid h3 { margin: 37px 0 15px; }

.availability {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 80px;
  align-items: end;
  padding: 100px max(5vw,24px);
  color: white;
  background:
    linear-gradient(100deg, var(--scarlet) 0 67%, #bc201a 67%);
  border-top: 8px solid var(--mango);
}
.availability .eyebrow { color: #ffe173; }
.availability > p { color: rgba(255,255,255,.83); }

.quote-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  background:
    radial-gradient(circle at 5% 95%, rgba(244,191,42,.2), transparent 30%),
    var(--paper);
}
.quote-copy > p { max-width: 490px; margin-top: 28px; }
.contact-card {
  margin-top: 48px;
  padding: 27px 0;
  border-top: 3px solid var(--lagoon);
  border-bottom: 3px solid var(--scarlet);
}
.contact-card span,
.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-card a {
  display: block;
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px,2.4vw,34px);
}
.contact-card .contact-email-label { margin-top: 23px; }
.contact-card .contact-email { color: var(--lagoon); font-size: clamp(19px,1.9vw,27px); }

.quote-form {
  position: relative;
  padding: 42px;
  color: white;
  background: var(--midnight);
  border: 1px solid var(--gold);
  box-shadow: 14px 14px 0 var(--leaf);
}
.quote-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg,var(--scarlet) 25%,var(--mango) 25% 50%,var(--lagoon) 50% 75%,var(--leaf) 75%);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label {
  display: block;
  margin-bottom: 22px;
  color: var(--mango);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.quote-form input,
.quote-form textarea {
  display: block;
  width: 100%;
  margin-top: 9px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,.06);
  font-size: 14px;
  text-transform: none;
}
.quote-form input:focus,
.quote-form textarea:focus { border-color: var(--mango); box-shadow: 0 0 0 2px rgba(244,191,42,.18); }
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255,255,255,.35); }
.quote-form input[type="file"] {
  cursor: pointer;
  padding: 10px;
  color: rgba(255,255,255,.78);
  border-style: dashed;
}
.quote-form input[type="file"]::file-selector-button {
  margin-right: 13px;
  padding: 10px 14px;
  cursor: pointer;
  border: 0;
  color: var(--midnight);
  background: var(--mango);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.file-field > span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}
.submit-button { width: 100%; }
.form-note,
.form-status { margin: 15px 0 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.5; }
.form-status { color: var(--mango); }

.modal-open { overflow: hidden; }
.order-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}
.order-modal[hidden] { display: none; }
.order-modal-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(0,139,182,.24), transparent 34%),
    rgba(6,31,44,.82);
  backdrop-filter: blur(10px);
  transition: opacity .22s ease;
}
.order-modal-card {
  position: relative;
  width: min(100%, 480px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 42px 40px 36px;
  opacity: 0;
  outline: none;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(245,238,220,.98)),
    var(--paper);
  border: 1px solid rgba(213,168,73,.8);
  box-shadow:
    12px 12px 0 var(--mango),
    0 30px 90px rgba(0,0,0,.34);
  transform: translateY(20px) scale(.97);
  transition: opacity .22s ease, transform .22s ease;
}
.order-modal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg,var(--scarlet) 25%,var(--mango) 25% 50%,var(--lagoon) 50% 75%,var(--leaf) 75%);
}
.order-modal.is-open .order-modal-backdrop { opacity: 1; }
.order-modal.is-open .order-modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.order-modal-close {
  position: absolute;
  top: 15px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  cursor: pointer;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
}
.order-modal-close:hover,
.order-modal-close:focus-visible { color: var(--scarlet); outline: 2px solid var(--mango); outline-offset: 2px; }
.order-modal-seal {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 7px 7px 0 var(--mango);
}
.order-modal-seal svg { width: 32px; height: 32px; stroke-width: 2.3; }
.order-modal-kicker {
  margin: 0 0 10px;
  color: var(--scarlet);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.order-modal-card h2 {
  margin: 0 38px 13px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px,4vw,36px);
  line-height: 1.08;
}
.order-modal-intro,
.order-modal-next {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.order-modal-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.order-modal-summary > div { padding: 17px 12px 17px 0; }
.order-modal-summary > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.order-modal-summary span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.order-modal-summary strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}
.order-modal-button {
  width: 100%;
  margin-top: 24px;
  color: #fff;
  background: var(--midnight);
}
.order-modal-button:hover,
.order-modal-button:focus-visible { color: var(--midnight); background: var(--mango); }

footer {
  padding: 58px max(5vw,24px) 28px;
  color: #fff;
  background: var(--midnight);
  border-top: 8px solid var(--lagoon);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 45px;
}
.footer-brand .brand-mark { color: var(--midnight); background: var(--mango); }
.footer-brand small,
.footer-top p,
.footer-bottom { color: rgba(255,255,255,.52); }
.footer-top p { font-family: Georgia, "Times New Roman", serif; font-size: 19px; }
.footer-contact {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
  color: var(--mango);
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 440px; }
  .hero-copy { padding-right: 38px; }
  .nav { gap: 18px; }
  .service-grid,
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card { min-height: 335px; border-bottom: 1px solid var(--line); }
}

@media (max-width: 840px) {
  .site-header { height: 76px; }
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 27px;
    background: var(--paper);
    border-bottom: 4px solid var(--mango);
    box-shadow: 0 18px 30px rgba(6,31,44,.14);
  }
  .nav-open { display: flex; }
  .nav a { padding: 15px 0; }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 8px; padding: 16px 18px !important; text-align: center; box-shadow: 4px 4px 0 var(--midnight); }
  .menu-button { display: block; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 130px;
  }
  .hero-copy { padding: 0; }
  .hero-visual { justify-self: stretch; width: 100%; margin-top: 62px; }
  .visual-card { min-height: 530px; }

  .trust-strip { grid-template-columns: 1fr; padding: 0; }
  .trust-strip > div {
    justify-content: flex-start;
    min-height: 90px;
    padding-left: max(8vw,28px);
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .section-heading,
  .pricing-section,
  .language-section,
  .availability,
  .quote-section { grid-template-columns: 1fr; }
  .section-heading { gap: 28px; }
  .pricing-section,
  .language-section,
  .availability,
  .quote-section { gap: 58px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact { align-items: flex-start; }
}

@media (max-width: 560px) {
  .site-header { padding: 0 18px; }
  .brand { gap: 10px; font-size: 18px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand small { font-size: 7px; letter-spacing: .16em; }

  .hero { padding: 122px 18px 58px; }
  .hero h1 { font-size: clamp(57px,18vw,78px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .text-link { align-self: flex-start; }
  .hero-visual { margin-top: 52px; padding: 0; }
  .visual-card {
    min-height: auto;
    padding: 25px 20px 29px;
    box-shadow: 8px 8px 0 var(--lagoon), 16px 16px 0 var(--mango);
  }
  .visual-topline { align-items: flex-start; font-size: 7px; line-height: 1.4; }
  .caribbean-emblem {
    width: 142px;
    height: 142px;
    margin: 45px auto 32px;
    border-width: 9px;
    outline-width: 7px;
  }
  .caribbean-emblem > span { margin-top: 13px; font-size: 50px; }
  .caribbean-emblem small { max-width: 88px; font-size: 6px; }
  .hero-language-tags { grid-template-columns: repeat(3,1fr); gap: 5px; }
  .hero-language-tags span { padding: 8px 3px; font-size: 11px; }
  .visual-message { align-items: flex-start; flex-direction: column; gap: 13px; margin-top: 22px; padding-top: 17px; }
  .visual-message strong { font-size: 21px; text-align: left; }
  .belize-tag {
    position: relative;
    right: auto;
    bottom: auto;
    min-width: 0;
    width: calc(100% - 16px);
    margin: 8px 0 0 16px;
    padding: 13px 16px;
  }

  .section,
  .pricing-section,
  .language-section,
  .availability,
  .quote-section { padding: 82px 18px; }

  .service-grid,
  .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; border-right: 0; }
  .language-list { padding: 16px; }
  .language-list > div { gap: 7px; }
  .language-list span { font-size: 14px; }

  .price-calculator {
    padding: 24px 15px;
    box-shadow: 7px 7px 0 var(--lagoon), 14px 14px 0 var(--scarlet);
  }
  .page-selector { grid-template-columns: 1fr; gap: 14px; }
  .page-stepper {
    grid-template-columns: 52px minmax(82px,1fr) 52px;
    width: 100%;
    height: 54px;
  }
  .page-stepper input { width: 100%; font-size: 20px; }
  .line-total { text-align: left; }
  .choice-card { grid-template-columns: 22px 1fr auto; gap: 9px; padding: 12px 9px; }
  .choice-card strong { font-size: 16px; }
  .choice-card b { font-size: 11px; }
  .calculator-total { align-items: flex-start; flex-direction: column; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 31px 19px; box-shadow: 8px 8px 0 var(--leaf); }
  .order-modal { padding: 16px; }
  .order-modal-card {
    max-height: calc(100vh - 32px);
    padding: 36px 22px 27px;
    box-shadow: 7px 7px 0 var(--mango), 0 24px 65px rgba(0,0,0,.34);
  }
  .order-modal-seal { width: 55px; height: 55px; margin-bottom: 19px; }
  .order-modal-summary { grid-template-columns: 1fr; }
  .order-modal-summary > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  footer { padding-left: 18px; padding-right: 18px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

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