@font-face {
  font-family: "FCC Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "FCC Playfair Display";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/playfair-display-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #17324a;
  --ink-deep: #063b70;
  --ink-soft: #07569d;
  --paper: #fcfdff;
  --white: #ffffff;
  --sand: #edf5fa;
  --sand-deep: #c9ddeb;
  --gold: #f2c000;
  --gold-light: #ffe37a;
  --action: #c94432;
  --action-dark: #a83326;
  --sky: #00a8e8;
  --sage: #8ba9bc;
  --muted: #587083;
  --line: rgba(6, 59, 112, 0.15);
  --line-light: rgba(255, 255, 255, 0.14);
  --success: #2e8a61;
  --danger: #a14235;
  --shadow-sm: 0 10px 32px rgba(8, 38, 58, 0.08);
  --shadow-lg: 0 30px 90px rgba(8, 38, 58, 0.2);
  --serif: "FCC Playfair Display", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "FCC Inter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-conversion-bar,
body.nav-open .whatsapp-float {
  display: none;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h3 {
  line-height: 1.18;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid #2b9fca;
  outline-offset: 4px;
}

.eyebrow,
.kicker {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

.eyebrow--light {
  color: var(--gold-light);
}

.kicker {
  margin-bottom: 7px;
  letter-spacing: 0.14em;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
  box-shadow: none;
}

.button--gold {
  color: var(--white);
  background: var(--action);
  border-color: var(--action);
}

.button--gold:hover {
  background: var(--action-dark);
  border-color: var(--action-dark);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.button--large {
  min-height: 58px;
  padding-inline: 29px;
}

.topbar {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
}

.topbar p,
.topbar__inner > div {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar a {
  text-decoration: none;
}

.topbar a:hover {
  color: var(--white);
}

.topbar__dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: #5ec590;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(94, 197, 144, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 3px solid var(--gold);
  backdrop-filter: blur(12px);
}

.header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand__logo {
  width: 190px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.brand__logo--footer {
  width: 190px;
}

.brand__mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--ink-deep);
  background: var(--gold);
  border-radius: 50%;
  overflow: hidden;
}

.brand__mark b {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-2px);
}

.brand__mark i {
  position: absolute;
  right: 9px;
  bottom: 10px;
  width: 12px;
  height: 1px;
  background: currentColor;
  transform: rotate(-45deg);
}

.brand__name strong,
.brand__name small {
  display: block;
}

.brand__name strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.brand__name small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav > a {
  position: relative;
  color: rgba(6, 59, 112, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

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

.primary-nav > a:hover {
  color: var(--ink-deep);
}

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

.primary-nav .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  color: var(--white);
  background: var(--action);
  border-radius: 2px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 11px;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  width: 100%;
  height: 1px;
  display: block;
  margin: 5px 0;
  background: var(--ink-deep);
  transition: transform 160ms ease, opacity 160ms ease;
}

.home-hero {
  position: relative;
  min-height: 750px;
  color: var(--white);
  background: var(--ink-deep);
  overflow: hidden;
}

.home-hero__image,
.home-hero__overlay {
  position: absolute;
  inset: 0;
}

.home-hero__image {
  background-image:
    url("../images/real/airplane-header-original.webp"),
    url("../images/real/el-arco-original-site.webp");
  background-position: center top, center center;
  background-size: 100% auto, cover;
  background-repeat: no-repeat;
}

.home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 39, 75, 0.98) 0%, rgba(5, 57, 105, 0.9) 40%, rgba(5, 57, 105, 0.4) 72%, rgba(5, 57, 105, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 45, 84, 0.78), transparent 52%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  min-height: 750px;
  padding-block: 78px 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(510px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  margin-bottom: 27px;
  font-size: clamp(50px, 5.25vw, 67px);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

.hero-points {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points span {
  color: var(--gold-light);
}

.quick-book {
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-lg);
}

.quick-book__head {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.quick-book__head h2 {
  margin: 0;
  font-size: 31px;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
}

.secure-note i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 138, 97, 0.1);
}

.segment-control {
  padding: 4px;
  margin: 0 0 21px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e5f0f7;
  border: 0;
}

.segment-control legend:not(.sr-only) {
  width: 100%;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 750;
}

.segment-control label {
  position: relative;
  cursor: pointer;
}

.segment-control input {
  position: absolute;
  opacity: 0;
}

.segment-control label span {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.segment-control input:checked + span {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 3px 14px rgba(8, 22, 16, 0.08);
}

.segment-control input:focus-visible + span {
  outline: 3px solid #65d4a3;
  outline-offset: 2px;
}

.segment-control--wide {
  max-width: 440px;
  margin-bottom: 28px;
}

.form-grid,
.field-grid {
  display: grid;
  gap: 15px;
}

.form-grid--route {
  position: relative;
  grid-template-columns: 1fr 1fr;
}

.form-grid--schedule {
  margin-top: 15px;
  grid-template-columns: 1.25fr 0.9fr 1.25fr 0.9fr 0.75fr;
}

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

.field-grid--three {
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-arrow {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: 2;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold-light);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 12px;
  transform: translate(-50%, -50%);
}

.field {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.field > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.field > span small {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field select {
  padding-right: 34px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #68736e 50%), linear-gradient(135deg, #68736e 50%, transparent 50%);
  background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field textarea {
  min-height: 126px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sky);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.16);
}

.quick-book .field > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quick-book .field input,
.quick-book .field select {
  height: 45px;
  font-size: 12px;
}

.quick-book .field input[type="date"] {
  padding-inline: 7px 4px;
  font-size: 11px;
}

.field--passengers {
  grid-column: auto;
}

[hidden] {
  display: none !important;
}

.quick-book__foot {
  margin-top: 23px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.quick-book__foot p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.confidence-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.confidence-grid {
  min-height: 114px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.confidence-grid > div {
  padding: 23px 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.confidence-grid > div:first-child {
  padding-left: 0;
}

.confidence-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.mini-icon {
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  background: var(--sand);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
}

.confidence-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.confidence-grid strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.section {
  padding-block: 112px;
}

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

.section--ink {
  color: var(--white);
  background: var(--ink-deep);
}

.section--sand {
  background: var(--sand);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-heading h2,
.journey-copy h2,
.faq-intro h2 {
  margin-bottom: 23px;
  font-size: clamp(43px, 5.3vw, 66px);
}

.section-heading > p:not(.eyebrow),
.split-heading > p,
.journey-copy > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.section-heading--light > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.58);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 18px;
}

.service-card {
  min-height: 350px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card--featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 48, 91, 0.96), rgba(6, 83, 148, 0.88)),
    url("../images/real/suburban-resort-arrival.webp") center / cover;
  border-color: transparent;
}

.service-card__number {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 13px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.service-card p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-card--featured p:not(.kicker) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.7);
}

.service-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.care-section {
  padding: 0;
  background: var(--paper);
}

.care-section__inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  padding: 0;
  color: var(--white);
  background: var(--ink-deep);
  border-top: 4px solid var(--gold);
  overflow: hidden;
}

.care-section__copy {
  position: relative;
  z-index: 1;
  padding: 58px 54px 52px;
  background: linear-gradient(120deg, rgba(3, 56, 105, 0.99), rgba(6, 86, 157, 0.88));
}

.care-section__copy h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 66px);
}

.care-section__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.75;
}

.care-services {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 28px;
  list-style: none;
}

.care-services li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.45;
}

.care-services li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--gold);
}

.care-section__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.care-section__actions > a:not(.button) {
  padding-bottom: 4px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.care-section__vehicles {
  min-width: 0;
  padding: 60px 46px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(237, 245, 250, 0.98)),
    var(--sand);
}

.care-section__vehicles h3 {
  max-width: 500px;
  margin: 8px 0 42px;
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 43px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.care-section__vehicles picture,
.care-section__vehicles img {
  width: 100%;
  display: block;
}

.care-section__vehicles img {
  height: auto;
  object-fit: contain;
}

.care-section__vehicles > p {
  max-width: 470px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 12px;
}

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

.fleet-card {
  color: var(--ink);
  background: var(--white);
  overflow: hidden;
}

.fleet-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dceaf3;
}

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

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

.fleet-card__image > span {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 9px;
  color: var(--ink-deep);
  background: rgba(255, 253, 248, 0.9);
  border-radius: 2px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fleet-card__body {
  padding: 26px;
}

.fleet-card__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.fleet-card__title h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.fleet-card__title span {
  color: #82663c;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.fleet-card__body > p {
  min-height: 65px;
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 13px;
}

.fleet-card__body ul {
  padding: 16px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 10px;
  font-weight: 750;
}

.journey-section {
  background: var(--white);
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.journey-copy > p:not(.eyebrow) {
  margin-bottom: 31px;
}

.journey-steps {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: journey;
}

.journey-steps li {
  position: relative;
  min-height: 112px;
  padding: 21px 0 21px 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.journey-steps li:first-child {
  border-top: 1px solid var(--line);
}

.journey-steps li > span {
  position: absolute;
  left: 7px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #8a6a3d;
  background: var(--sand);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 14px;
}

.journey-steps h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.journey-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.route-card {
  padding: 31px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(16, 32, 27, 0.12);
}

.route-card__line {
  margin-bottom: 33px;
  display: grid;
  grid-template-columns: 8px 1fr 8px;
  align-items: center;
}

.route-card__line span {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
}

.route-card__line i {
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 5px, transparent 5px 10px);
}

.route-card h3 {
  min-height: 66px;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.route-card h3 span {
  color: #977745;
}

.route-card > div:not(.route-card__line) {
  padding-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.route-card > div p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.route-card > div strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.route-card form {
  margin-top: 25px;
}

.route-card button {
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 850;
}

.rate-note {
  max-width: 750px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 11px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(70px, 10vw, 150px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro a {
  display: inline-flex;
  margin-top: 27px;
  color: #806039;
  font-size: 12px;
  font-weight: 850;
  text-underline-offset: 5px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 27px 55px 27px 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 14px;
  height: 1px;
  background: var(--ink);
}

.faq-list summary::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 55px 26px 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.closing-cta {
  padding-block: 82px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 41, 78, 0.98), rgba(6, 68, 122, 0.88)),
    url("../images/real/el-arco-original-site.webp") 68% center / cover;
}

.closing-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.closing-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(39px, 4.5vw, 58px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: var(--ink-deep);
  border-top: 8px solid var(--gold);
}

.footer-grid {
  padding-block: 76px 64px;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1.1fr;
  gap: 58px;
}

.brand--footer {
  color: var(--white);
}

.footer-brand .brand--footer {
  width: fit-content;
  padding: 9px 12px;
  background: var(--white);
  border-radius: 2px;
}

.footer-brand > p {
  max-width: 300px;
  margin: 19px 0 0;
  font-size: 13px;
}

.footer-grid h2 {
  margin-bottom: 19px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-grid > div:not(.footer-brand) > span {
  width: fit-content;
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-decoration: none;
}

.footer-grid > div > a:hover {
  color: var(--white);
}

.footer-grid > div > p {
  margin-bottom: 18px;
  font-size: 12px;
}

.footer-grid .footer-button {
  display: inline-flex !important;
  padding-bottom: 4px;
  color: var(--gold-light) !important;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-light);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 50px;
  padding: 7px 16px 7px 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: #1f8f5f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(8, 22, 16, 0.25);
  font-size: 11px;
  text-decoration: none;
}

.whatsapp-float span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.whatsapp-float strong {
  font-weight: 800;
}

/* Booking */
#booking-step,
.error-summary {
  scroll-margin-top: 104px;
}

.panel-heading h2[tabindex="-1"]:focus {
  outline: none;
}

.booking-hero,
.simple-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 0, rgba(201, 163, 106, 0.12), transparent 30%),
    var(--ink-deep);
}

.booking-hero__inner {
  min-height: 194px;
  padding-block: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.booking-hero h1,
.simple-hero h1 {
  margin: 0;
  font-size: clamp(43px, 5vw, 60px);
}

.booking-hero__inner > p,
.simple-hero .shell > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.booking-progress-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.booking-progress {
  min-height: 76px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.booking-progress li {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-progress li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  left: 52px;
  height: 1px;
  background: var(--line);
}

.booking-progress li > a,
.booking-progress li > span {
  position: relative;
  z-index: 1;
  min-width: 115px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  text-decoration: none;
}

.booking-progress b {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #edebe4;
  border-radius: 50%;
  font-size: 10px;
}

.booking-progress em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-progress .is-current b,
.booking-progress .is-complete b {
  color: var(--ink-deep);
  background: var(--gold);
}

.booking-progress .is-current em,
.booking-progress .is-complete em {
  color: var(--ink);
}

.booking-progress .is-complete:not(:last-child)::after {
  background: var(--gold);
}

.booking-section {
  padding-block: 52px 92px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 34px;
}

.booking-panel,
.booking-summary,
.lookup-form,
.managed-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.booking-panel {
  padding: clamp(28px, 5vw, 52px);
}

.panel-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.panel-heading h2 {
  margin-bottom: 15px;
  font-size: clamp(34px, 4.2vw, 49px);
}

.panel-heading > p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.booking-form .field {
  font-size: 12px;
}

.booking-form .field input,
.booking-form .field select {
  height: 54px;
}

.return-fields {
  margin-top: 18px;
}

.form-divider {
  position: relative;
  margin: 34px 0 27px;
  border-top: 1px solid var(--line);
}

.form-divider span {
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 14px;
  color: #80623a;
  background: var(--white);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.form-actions {
  margin-top: 35px;
  padding-top: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.form-actions--end {
  justify-content: flex-end;
}

.back-link,
.text-button {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.error-summary,
.notice {
  margin-bottom: 28px;
  padding: 17px 20px;
  border-left: 3px solid var(--danger);
  background: #fbefec;
  font-size: 13px;
}

.error-summary strong {
  display: block;
  margin-bottom: 6px;
}

.error-summary ul {
  padding-left: 18px;
  margin: 0;
}

.notice {
  border-color: var(--success);
  background: #edf8f2;
}

.booking-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
}

.booking-summary__top {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.booking-summary__top p {
  margin: 0;
}

.booking-summary__top > span {
  padding: 5px 8px;
  color: #725833;
  background: var(--sand);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.summary-route {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.summary-route span:last-child {
  text-align: right;
}

.summary-route i {
  color: #967447;
  font-style: normal;
}

.summary-details {
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.summary-details > div {
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
}

.summary-details dt {
  color: var(--muted);
}

.summary-details dd {
  max-width: 190px;
  margin: 0;
  text-align: right;
  font-weight: 750;
}

.summary-pricing {
  padding-top: 16px;
}

.summary-pricing > div {
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
}

.summary-pricing strong {
  color: var(--ink);
}

.summary-pricing .summary-total {
  margin-top: 9px;
  padding-top: 15px;
  align-items: flex-end;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.summary-total span {
  font-weight: 800;
}

.summary-total small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.summary-total strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.summary-placeholder {
  min-height: 155px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  text-align: center;
}

.summary-placeholder span {
  width: 42px;
  height: 42px;
  display: block;
  background: var(--sand);
  border-radius: 50%;
}

.summary-placeholder p,
.summary-disclaimer {
  color: var(--muted);
  font-size: 10px;
}

.summary-placeholder p {
  max-width: 220px;
  margin: 0;
}

.summary-disclaimer {
  padding-top: 16px;
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
}

.summary-help {
  margin-top: 17px;
  padding-top: 16px;
  display: block;
  color: var(--ink-deep);
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 850;
  text-underline-offset: 4px;
}

.vehicle-options,
.extra-options {
  display: grid;
  gap: 16px;
}

.vehicle-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.vehicle-option {
  position: relative;
  cursor: pointer;
}

.vehicle-option--wide {
  grid-column: 1 / -1;
}

.vehicle-option--wide .vehicle-option__card {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.vehicle-option > input {
  position: absolute;
  opacity: 0;
}

.vehicle-option__card {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.vehicle-option:hover .vehicle-option__card {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.vehicle-option > input:checked + .vehicle-option__card {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 163, 106, 0.22);
}

.vehicle-option > input:focus-visible + .vehicle-option__card {
  outline: 3px solid #65d4a3;
  outline-offset: 3px;
}

.vehicle-option__image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: var(--sand);
}

.vehicle-option__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-option__content {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.vehicle-option__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.vehicle-option__top small,
.vehicle-option__top strong {
  display: block;
}

.vehicle-option__top small {
  margin-bottom: 4px;
  color: #80623a;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-option__top strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
}

.vehicle-option__top > b {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.vehicle-option__meta {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vehicle-option__meta span {
  padding: 4px 7px;
  color: var(--muted);
  background: #f0eee8;
  font-size: 8px;
  font-weight: 700;
}

.vehicle-option__description {
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
}

.vehicle-option__choose {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.vehicle-option__choose i {
  width: 13px;
  height: 13px;
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.vehicle-option > input:checked + .vehicle-option__card .vehicle-option__choose i {
  background: var(--gold);
  border: 4px solid var(--ink);
}

.extra-option {
  position: relative;
  min-height: 112px;
  padding: 14px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto 68px;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.extra-group {
  background: var(--white);
  border: 1px solid var(--line);
}

.extra-group > summary {
  min-height: 68px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-deep);
  background: #f8f4ed;
  cursor: pointer;
  list-style: none;
}

.extra-group > summary::-webkit-details-marker {
  display: none;
}

.extra-group > summary span,
.extra-group > summary strong,
.extra-group > summary small {
  display: block;
}

.extra-group > summary strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.extra-group > summary small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.extra-group > summary i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.extra-group > summary i::before,
.extra-group > summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: var(--ink-deep);
  transform: translate(-50%, -50%);
}

.extra-group > summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 150ms ease;
}

.extra-group[open] > summary {
  border-bottom: 1px solid var(--line);
}

.extra-group[open] > summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.extra-group__items {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.extra-group-title {
  margin: 16px 0 0;
  padding-top: 10px;
  color: #80623a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.extra-group-title:first-child {
  margin-top: 0;
  padding-top: 0;
}

.extra-option__image {
  width: 104px;
  height: 78px;
  object-fit: cover;
  background: var(--sand);
}

.extra-option__copy strong,
.extra-option__copy small {
  display: block;
}

.extra-option__copy strong {
  font-size: 13px;
}

.extra-option__copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.extra-option__copy a {
  margin-top: 7px;
  display: inline-block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  text-underline-offset: 3px;
}

.extra-option__price {
  color: #80623a;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
  text-align: right;
  white-space: nowrap;
}

.extra-option__quantity {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.extra-option__quantity select {
  width: 64px;
  height: 42px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 750;
}

.extra-option.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 163, 106, 0.16);
}

.extra-option--unavailable {
  background: #f8f7f3;
}

.extra-option--unavailable select {
  color: var(--muted);
  background: #efede7;
  cursor: not-allowed;
}

.extras-total {
  margin-top: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--sand);
  font-size: 11px;
  font-weight: 750;
}

.extras-total strong {
  font-family: var(--serif);
  font-size: 23px;
}

.review-sections {
  display: grid;
  gap: 18px;
}

.review-sections > section {
  padding: 23px;
  border: 1px solid var(--line);
}

.review-section__head {
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.review-section__head h3 {
  margin: 0;
  font-size: 14px;
}

.review-section__head a {
  color: #7b6039;
  font-size: 10px;
  font-weight: 800;
}

.review-grid {
  padding-top: 16px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 28px;
}

.review-grid dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.review-grid dd {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
}

.review-grid__wide {
  grid-column: 1 / -1;
}

.completion-form {
  margin-top: 25px;
}

.terms-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}

.terms-check input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--ink);
}

.terms-check a {
  color: var(--ink);
}

.no-charge-note {
  margin-top: 19px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #edf8f2;
}

.no-charge-note > span {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  font-size: 11px;
}

.no-charge-note p {
  margin: 0;
  color: #4e6960;
  font-size: 10px;
}

.no-charge-note strong {
  display: block;
  color: var(--ink);
}

/* Confirmation, manage and legal */
.confirmation-section {
  padding-block: 90px 110px;
  background: var(--paper);
}

.confirmation-shell {
  max-width: 1040px;
  text-align: center;
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  color: var(--ink-deep);
  background: var(--gold);
  border-radius: 50%;
  font-size: 24px;
}

.confirmation-shell > h1 {
  margin-bottom: 22px;
  font-size: clamp(49px, 6vw, 73px);
}

.confirmation-lede {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}

.reference-card {
  max-width: 560px;
  margin: 42px auto 48px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.reference-card span,
.reference-card strong,
.reference-card small {
  display: block;
}

.reference-card span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-card strong {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: 0.02em;
}

.reference-card small {
  color: var(--muted);
  font-size: 10px;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  text-align: left;
}

.confirmation-grid > section,
.confirmation-grid > aside {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.confirmation-grid > aside {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.confirmation-section__head,
.managed-card__head {
  padding-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.confirmation-section__head p {
  margin: 0;
}

.confirmation-section__head > span,
.managed-card__head > span {
  padding: 5px 8px;
  color: #795d34;
  background: var(--sand);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.confirmation-details {
  margin: 0;
}

.confirmation-details > div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.confirmation-details > div:last-child {
  border-bottom: 0;
}

.confirmation-details dt {
  color: var(--muted);
}

.confirmation-details dd {
  margin: 0;
  font-weight: 750;
}

.confirmation-details dd small {
  color: var(--muted);
  font-size: 9px;
}

.next-steps {
  padding: 0;
  margin: 17px 0 0;
  list-style: none;
}

.next-steps li {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line-light);
}

.next-steps li > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 11px;
}

.next-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.next-steps strong {
  display: block;
  color: var(--white);
  font-size: 11px;
}

.confirmation-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.simple-hero .shell {
  min-height: 310px;
  padding-block: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.simple-hero .shell > p:not(.eyebrow) {
  margin-top: 23px;
}

.manage-section,
.legal-section {
  padding-block: 80px 105px;
}

.manage-shell {
  max-width: 820px;
}

.lookup-form,
.managed-card {
  padding: clamp(28px, 5vw, 46px);
}

.lookup-form .button {
  margin-top: 24px;
}

.lookup-form .field + .field {
  margin-top: 18px;
}

.managed-card {
  margin-top: 28px;
}

.managed-card__head h2 {
  margin: 0;
  font-size: 34px;
}

.managed-card .confirmation-details {
  margin: 18px 0 25px;
}

.legal-content {
  max-width: 760px;
  color: var(--muted);
}

.legal-content h2 {
  margin: 40px 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.03em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 14px;
}

.error-section {
  min-height: 65vh;
  display: grid;
  place-items: center;
  background: var(--paper);
}

.error-content {
  max-width: 760px;
  padding-block: 90px;
}

.error-content h1 {
  margin-bottom: 22px;
  font-size: clamp(49px, 7vw, 78px);
}

.error-content > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 19px;
  }

  .home-hero__content {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
  }

  .quick-book {
    padding: 24px;
  }

  .form-grid--schedule {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-grid--schedule .field--passengers {
    grid-column: 3;
    grid-row: 1;
  }

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

  .confidence-grid > div:nth-child(2) {
    border-right: 0;
  }

  .confidence-grid > div:first-child,
  .confidence-grid > div {
    padding: 20px;
  }

  .confidence-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid var(--line-light);
  }
}

@media (max-width: 900px) {
  .site-header {
    backdrop-filter: none;
  }

  .topbar__inner > div {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: var(--mobile-nav-top, 112px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    padding: 36px 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: var(--white);
    background: var(--ink-deep);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
  }

  .primary-nav .nav-cta {
    min-height: 56px;
    margin-top: 24px;
    justify-content: center;
    font-family: var(--sans);
    font-size: 13px;
  }

  .home-hero,
  .home-hero__content {
    min-height: auto;
  }

  .home-hero__content {
    padding-block: 75px 80px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .home-hero__image {
    background-position: 60% top, 62% center;
    background-size: auto 44%, cover;
  }

  .home-hero__overlay {
    background: linear-gradient(180deg, rgba(5, 15, 11, 0.93) 0%, rgba(5, 15, 11, 0.74) 43%, rgba(5, 15, 11, 0.9) 100%);
  }

  .hero-copy {
    max-width: 700px;
  }

  .quick-book {
    max-width: 720px;
  }

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

  .service-card--featured {
    grid-column: 1 / -1;
  }

  .care-section__inner {
    grid-template-columns: 1fr;
  }

  .care-section__vehicles {
    min-height: 380px;
  }

  .fleet-grid,
  .route-card-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .fleet-card__image {
    aspect-ratio: 16 / 9;
    align-self: center;
  }

  .journey-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-intro {
    position: static;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .booking-hero__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .booking-progress li:not(:last-child)::after {
    right: 8px;
    left: 38px;
  }

  .booking-progress li > a,
  .booking-progress li > span {
    min-width: 44px;
  }

  .booking-progress em {
    display: none;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .section {
    padding-block: 78px;
  }

  .header__inner {
    min-height: 72px;
  }

  .primary-nav {
    top: 108px;
  }

  .hero-copy h1 {
    font-size: clamp(49px, 14.6vw, 68px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-points {
    flex-direction: column;
  }

  .quick-book {
    padding: 22px 18px;
  }

  .quick-book__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .form-grid--route,
  .form-grid--schedule,
  .field-grid--two,
  .field-grid--three {
    grid-template-columns: 1fr;
  }

  .form-grid--schedule .field--passengers {
    grid-column: auto;
    grid-row: auto;
  }

  .route-arrow {
    display: none;
  }

  .quick-book__foot {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-book__foot p {
    max-width: none;
  }

  .quick-book__foot .button {
    width: 100%;
  }

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

  .confidence-grid > div,
  .confidence-grid > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .confidence-grid > div:last-child {
    border-bottom: 0;
  }

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

  .service-card--featured {
    grid-column: auto;
  }

  .service-card {
    min-height: 310px;
  }

  .care-section__copy,
  .care-section__vehicles {
    padding: 42px 24px;
  }

  .care-section__copy h2 {
    font-size: 49px;
  }

  .care-services {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .care-section__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .care-section__actions .button,
  .care-section__actions > a:not(.button) {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .care-section__vehicles {
    min-height: 0;
  }

  .care-section__vehicles h3 {
    margin-bottom: 28px;
  }

  .care-section__vehicles > p {
    margin-top: 26px;
  }

  .fleet-card {
    display: block;
  }

  .fleet-card__image {
    aspect-ratio: 16 / 9;
  }

  .closing-cta__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-block: 24px;
    justify-content: center;
    gap: 8px;
  }

  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    padding: 7px;
  }

  .booking-progress {
    min-height: 62px;
  }

  .booking-progress li {
    justify-content: center;
  }

  .booking-progress li:not(:last-child)::after {
    right: -10px;
    left: 33px;
  }

  .booking-progress li > a,
  .booking-progress li > span {
    min-width: 29px;
  }

  .booking-panel {
    padding: 26px 19px;
  }

  .booking-section {
    padding-block: 30px 70px;
  }

  .booking-hero__inner {
    min-height: 166px;
    padding-block: 30px;
    gap: 14px;
  }

  .booking-hero__inner > p {
    font-size: 12px;
  }

  .booking-summary--placeholder {
    display: none;
  }

  .vehicle-option__card {
    grid-template-columns: 1fr;
  }

  .vehicle-options {
    grid-template-columns: 1fr;
  }

  .vehicle-option--wide {
    grid-column: auto;
  }

  .vehicle-option--wide .vehicle-option__card {
    grid-template-columns: 1fr;
  }

  .vehicle-option__image {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .extra-option {
    grid-template-columns: 78px minmax(0, 1fr) 64px;
    gap: 11px;
  }

  .extra-group > summary {
    min-height: 62px;
    padding: 13px 14px;
  }

  .extra-group__items {
    padding: 10px;
    gap: 10px;
  }

  .extra-option__image {
    width: 78px;
    height: 66px;
  }

  .extra-option__price {
    grid-column: 2;
    text-align: left;
    white-space: normal;
  }

  .extra-option__quantity {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .form-actions,
  .confirmation-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .button,
  .confirmation-actions .button {
    width: 100%;
  }

  .review-grid,
  .confirmation-grid {
    grid-template-columns: 1fr;
  }

  .confirmation-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 440px) {
  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__name strong {
    font-size: 18px;
  }

  .quick-book__head h2 {
    font-size: 27px;
  }

  .section-heading h2,
  .journey-copy h2,
  .faq-intro h2 {
    font-size: 42px;
  }

  .route-card,
  .fleet-card__body {
    padding: 22px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .booking-summary {
    padding: 22px;
  }

  .booking-section {
    padding-top: 28px;
  }
}

/* Guided booking flow */
.trip-choice-grid,
.route-builder {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
}

.trip-choice-grid .segment-control {
  margin: 0;
}

.route-builder {
  align-items: start;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
}

.booking-form .field > small,
.location-picker > small {
  margin-top: 7px;
  display: block;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.passenger-stepper {
  height: 54px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  border: 1px solid var(--line);
  background: var(--white);
}

.passenger-stepper button {
  color: var(--ink-deep);
  background: var(--sand);
  border: 0;
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
}

.passenger-stepper input {
  width: 100%;
  height: 52px !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: center;
  -moz-appearance: textfield;
}

.passenger-stepper input::-webkit-inner-spin-button,
.passenger-stepper input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.location-picker {
  position: relative;
}

.location-picker__enhanced {
  position: relative;
}

.location-picker__enhanced > input {
  width: 100%;
  padding-right: 94px;
}

.location-picker__clear {
  position: absolute;
  top: 50%;
  right: 12px;
  padding: 6px;
  color: var(--ink-soft);
  background: var(--white);
  border: 0;
  font-size: 9px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: translateY(-50%);
  cursor: pointer;
}

.location-picker__results {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 40;
  max-height: 330px;
  padding: 7px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(8, 38, 58, 0.18);
}

.location-picker__results button {
  width: 100%;
  min-height: 52px;
  padding: 10px 12px;
  display: block;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.location-picker__results button:last-child {
  border-bottom: 0;
}

.location-picker__results button:hover,
.location-picker__results button:focus-visible {
  background: var(--sand);
  outline: 0;
}

.location-picker__results strong,
.location-picker__results small {
  display: block;
  overflow-wrap: anywhere;
}

.location-picker__results strong {
  font-size: 11px;
}

.location-picker__results small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.location-picker__empty {
  margin: 0;
  padding: 18px 14px;
  color: var(--muted);
  font-size: 10px;
}

.route-preview,
.booking-notes {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: #f8fafb;
}

.route-preview > summary,
.booking-notes > summary {
  min-height: 62px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

.route-preview > summary::-webkit-details-marker,
.booking-notes > summary::-webkit-details-marker {
  display: none;
}

.route-preview > summary span,
.route-preview > summary small,
.route-preview > summary strong {
  display: block;
}

.route-preview > summary small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-preview > summary strong {
  font-size: 11px;
}

.route-preview > summary i {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
}

.route-preview[open] > summary i {
  transform: rotate(225deg);
}

.route-preview dl {
  margin: 0;
  padding: 14px 16px;
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.route-preview dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 9px;
}

.route-preview dt {
  color: var(--muted);
}

.route-preview dd {
  max-width: 70%;
  margin: 0;
  font-weight: 750;
  text-align: right;
  overflow-wrap: anywhere;
}

.vehicle-option__image {
  position: relative;
}

.vehicle-option__recommended {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 9px;
  color: var(--ink-deep);
  background: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roundtrip-upsell {
  margin-top: 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 28px;
  background: var(--ink-deep);
  color: var(--white);
  border-top: 3px solid var(--gold);
}

.roundtrip-upsell__copy h3 {
  margin: 4px 0 8px;
  color: var(--white);
  font-size: 28px;
}

.roundtrip-upsell__copy > p:last-child {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.roundtrip-upsell__prices {
  min-width: 190px;
  display: grid;
  align-content: center;
  gap: 7px;
  font-size: 9px;
}

.roundtrip-upsell__prices span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.roundtrip-upsell__prices strong,
.roundtrip-upsell__prices del {
  color: var(--white);
  font-size: 14px;
}

.roundtrip-upsell__prices b {
  color: var(--gold-light);
  text-align: right;
}

.roundtrip-upsell .field-grid,
.roundtrip-upsell > .button {
  grid-column: 1 / -1;
}

.roundtrip-upsell .field > span {
  color: rgba(255, 255, 255, 0.78);
}

.roundtrip-upsell > .button {
  justify-self: end;
}

.contact-method {
  padding: 15px;
  background: #f8fafb;
  border: 1px solid var(--line);
}

.contact-method > span small {
  float: right;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 850;
}

.field-help--contact {
  margin-top: 9px;
}

.booking-notes {
  margin-top: 26px;
  background: var(--white);
}

.booking-notes > summary span {
  font-size: 11px;
  font-weight: 800;
}

.booking-notes > summary small {
  color: var(--muted);
  font-size: 9px;
}

.booking-notes > .field {
  padding: 0 16px 16px;
}

.booking-mobile-action {
  display: none;
}

@media (max-width: 700px) {
  .trip-choice-grid,
  .route-builder {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-progress em {
    display: block;
    font-size: 8px;
  }

  .booking-progress li > a,
  .booking-progress li > span {
    min-width: 80px;
  }

  .booking-progress li:not(:last-child)::after {
    right: -4px;
    left: 74px;
  }

  .roundtrip-upsell {
    padding: 20px 17px;
    grid-template-columns: 1fr;
  }

  .roundtrip-upsell__prices {
    min-width: 0;
  }

  .roundtrip-upsell > .button {
    width: 100%;
  }

  .booking-page {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .booking-mobile-action {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    min-height: calc(74px + env(safe-area-inset-bottom));
    padding: 8px 15px calc(8px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    background: rgba(255, 253, 249, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(8, 38, 58, 0.14);
    transition: transform 160ms ease;
  }

  .booking-mobile-action .button {
    min-height: 49px;
  }

  .booking-mobile-action small {
    max-width: 120px;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.35;
  }

  .booking-mobile-action.is-primary-visible,
  .booking-field-focused .booking-mobile-action {
    transform: translateY(110%);
  }
}

@media (max-width: 440px) {
  .booking-progress em {
    max-width: 64px;
    line-height: 1.2;
  }

  .booking-progress li > a,
  .booking-progress li > span {
    min-width: 67px;
    gap: 5px;
  }

  .booking-progress li:not(:last-child)::after {
    left: 61px;
  }

  .booking-mobile-action {
    grid-template-columns: 1fr;
  }

  .booking-mobile-action small {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Conversion-focused refinements */
.button--action {
  color: var(--white);
  background: var(--action);
  border-color: var(--action);
  box-shadow: 0 9px 22px rgba(201, 68, 50, 0.22);
}

.button--action:hover {
  background: var(--action-dark);
  border-color: var(--action-dark);
}

.button--navy {
  color: var(--white);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.button--navy:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.button--outline-light {
  color: var(--white);
  background: rgba(8, 38, 58, 0.18);
  border-color: rgba(255, 255, 255, 0.64);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.eyebrow,
.kicker,
.service-card__number,
.fleet-card__title span,
.extra-group-title,
.form-divider span,
.vehicle-option__top small {
  color: var(--ink-soft);
}

.eyebrow--light,
.section--navy .kicker {
  color: var(--gold-light);
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 9px 28px rgba(6, 59, 112, 0.08);
}

.quick-book {
  border-top: 5px solid var(--gold);
}

.route-card {
  border-top: 3px solid var(--sky);
}

.brand__mark {
  color: var(--white);
  background: var(--gold);
}

.brand__name small {
  color: var(--gold-light);
}

.hero-actions {
  margin: 0 0 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-actions .button {
  min-height: 55px;
}

.quick-book .form-grid--schedule {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-check {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink-soft);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.route-card > div:not(.route-card__line) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.route-card > div:not(.route-card__line) small {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.route-card button {
  color: var(--ink-deep);
}

.section--navy {
  color: var(--white);
  background: var(--ink-deep);
}

.service-card--featured {
  background:
    linear-gradient(135deg, rgba(4, 48, 91, 0.96), rgba(6, 83, 148, 0.88)),
    url("../images/real/suburban-resort-arrival.webp") center / cover;
}

.section--navy .section-heading h2 {
  color: var(--white);
}

.section--navy .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.fleet-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fleet-card__body > p {
  min-height: 58px;
}

.fleet-card__conversion {
  margin-top: 21px;
  padding-top: 19px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.fleet-card__conversion p,
.fleet-card__conversion small {
  margin: 0;
  display: block;
}

.fleet-card__conversion p {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.fleet-card__conversion strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  text-transform: none;
}

.fleet-card__conversion small {
  font-size: 8px;
  font-weight: 500;
  text-transform: none;
}

.fleet-card__conversion a {
  flex: 0 0 auto;
  padding-bottom: 3px;
  color: var(--ink-deep);
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
}

.included-section {
  color: var(--white);
  background: var(--ink-soft);
}

.included-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 110px);
}

.included-layout h2 {
  max-width: 440px;
  margin: 0;
  font-size: clamp(40px, 4.6vw, 58px);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
  border-top: 1px solid var(--line-light);
}

.included-grid > div {
  min-height: 116px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  border-bottom: 1px solid var(--line-light);
}

.included-grid span {
  color: var(--gold-light);
  font-weight: 900;
}

.included-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.included-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 13px;
}

.closing-cta {
  background:
    linear-gradient(90deg, rgba(4, 41, 78, 0.99), rgba(6, 68, 122, 0.87)),
    url("../images/real/el-arco-original-site.webp") 68% center / cover;
}

.closing-cta__inner > div:first-child > p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.closing-cta__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.closing-cta__actions > a:not(.button) {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.booking-hero,
.simple-hero {
  background:
    radial-gradient(circle at 75% 0, rgba(0, 168, 232, 0.18), transparent 30%),
    var(--ink-deep);
}

.booking-progress .is-current b,
.booking-progress .is-complete b,
.confirmation-icon,
.next-steps li > span {
  color: var(--ink-deep);
}

.form-assurance,
.selected-route-card {
  margin-top: 25px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #f3f7f8;
  border-left: 3px solid var(--ink-soft);
}

.form-assurance > span,
.selected-route-card > span {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink-soft);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.form-assurance p,
.selected-route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.form-assurance strong,
.selected-route-card strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
}

.selected-route-card a {
  margin-left: auto;
  color: var(--ink-deep);
  font-size: 10px;
  font-weight: 800;
}

.field-help {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 10px;
}

.vehicle-group-title {
  grid-column: 1 / -1;
  margin: 22px 0 4px;
  color: var(--ink-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vehicle-group-title:first-child {
  margin-top: 0;
}

.vehicle-option__price {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  text-align: right;
}

.vehicle-option__price b {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.review-trust-grid {
  margin-top: 20px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  color: var(--ink-soft);
  background: #f3f7f8;
  font-size: 10px;
  font-weight: 750;
}

.summary-trust {
  padding: 15px 0 0;
  margin: 0;
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  list-style: none;
  font-size: 9px;
  font-weight: 700;
}

.summary-trust li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--success);
  font-weight: 900;
}

.booking-panel,
.booking-summary,
.review-sections,
.review-sections > section,
.review-grid,
.review-grid > div,
.confirmation-shell,
.confirmation-grid,
.confirmation-grid > section,
.confirmation-grid > aside,
.vehicle-option__top > span:first-child {
  min-width: 0;
}

.review-grid dd,
.confirmation-lede,
.confirmation-lede strong,
.confirmation-details dd,
.summary-route span,
.summary-details dd,
.summary-pricing span,
.managed-card__head h2,
.reference-card strong {
  overflow-wrap: anywhere;
}

.vehicle-option__price {
  flex: 0 0 auto;
}

.mobile-conversion-bar {
  display: none;
}

.booking-page .whatsapp-float,
.confirmation-page .whatsapp-float {
  display: none;
}

.is-layout-capture .skip-link,
.is-layout-capture .mobile-conversion-bar,
.is-layout-capture .whatsapp-float {
  display: none !important;
}

.is-layout-capture .site-header,
.is-layout-capture .booking-summary {
  position: relative;
  top: auto;
}

@media (max-width: 900px) {
  .home-hero__overlay {
    background: linear-gradient(180deg, rgba(8, 38, 58, 0.96) 0%, rgba(8, 38, 58, 0.76) 43%, rgba(8, 38, 58, 0.94) 100%);
  }

  .primary-nav > a {
    color: rgba(255, 255, 255, 0.82);
  }

  .primary-nav > a:hover {
    color: var(--white);
  }

  .included-layout {
    grid-template-columns: 1fr;
  }

  .closing-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .home-hero__image {
    background-position: 66% top, 58% center;
    background-size: auto 34%, cover;
    background-repeat: no-repeat;
  }

  .home-hero__overlay {
    background: linear-gradient(180deg, rgba(4, 39, 75, 0.76) 0%, rgba(5, 57, 105, 0.7) 40%, rgba(3, 45, 84, 0.92) 100%);
  }

  .topbar__inner {
    min-height: 32px;
    font-size: 9px;
  }

  .primary-nav {
    top: var(--mobile-nav-top, 104px);
  }

  .home-hero__content {
    padding-block: 56px 58px;
    gap: 44px;
  }

  .brand__logo {
    width: 158px;
  }

  .brand__logo--footer {
    width: 170px;
  }

  .hero-copy h1 {
    margin-bottom: 20px;
    font-size: clamp(43px, 12.8vw, 54px);
  }

  .hero-actions,
  .closing-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .closing-cta__actions .button {
    width: 100%;
  }

  .hero-actions .button--outline-light {
    min-height: 48px;
  }

  .confidence-grid > div {
    min-height: 82px;
  }

  .section-heading h2,
  .journey-copy h2,
  .faq-intro h2 {
    font-size: 40px;
  }

  .included-grid,
  .review-trust-grid {
    grid-template-columns: 1fr;
  }

  .included-grid > div {
    min-height: 96px;
  }

  .closing-cta {
    padding-block: 68px;
  }

  .closing-cta__actions {
    width: 100%;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-conversion-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    min-height: calc(68px + env(safe-area-inset-bottom));
    padding: 9px 15px calc(9px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 9px;
    background: rgba(255, 253, 249, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(8, 38, 58, 0.12);
  }

  .mobile-conversion-bar a {
    min-height: 49px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink-deep);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-help {
    color: var(--ink-deep);
    background: transparent;
  }

  .mobile-book {
    color: var(--white);
    background: var(--action);
    border-color: var(--action) !important;
  }

  .booking-page .mobile-conversion-bar,
  .confirmation-page .mobile-conversion-bar {
    display: none;
  }

  .booking-page,
  .confirmation-page {
    padding-bottom: 0;
  }

  .selected-route-card {
    align-items: flex-start;
  }

  .vehicle-option__top {
    gap: 10px;
  }

  .booking-hero h1,
  .simple-hero h1 {
    font-size: 44px;
  }

  .booking-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 440px) {
  .hero-copy h1 {
    font-size: 42px;
  }

  .fleet-card__conversion {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-trust-grid {
    padding-inline: 15px;
  }
}

@media (max-width: 700px) {
  .booking-page {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .booking-progress em {
    display: block;
  }
}
