@font-face {
  font-display: swap;
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  src: url("fonts/inter-tight-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-display: swap;
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  src: url("fonts/inter-tight-latin.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;
}

.cabo-home {
  --cabo-home-black: var(--cabo-site-black, #050505);
  --cabo-home-ink: var(--cabo-site-ink, #111318);
  --cabo-home-orange: var(--cabo-site-orange, #cb5535);
  --cabo-home-white: var(--cabo-site-white, #ffffff);
  --cabo-home-warm: var(--cabo-site-warm, #f7f7f5);
  --cabo-home-line: var(--cabo-site-line, #d8d9dc);
  --cabo-home-muted: #555b64;
  --cabo-home-muted: color-mix(in srgb, var(--cabo-site-muted, #6f7682) 76%, #000000);
  --cabo-home-orange-text: #863823;
  --cabo-home-orange-text: color-mix(in srgb, var(--cabo-site-orange, #cb5535) 66%, #000000);
  --cabo-home-content: 1240px;
  background: var(--cabo-home-white);
  color: var(--cabo-home-ink);
  font-family: "Inter Tight", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow: clip;
}

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

.cabo-home :where(h1, h2, h3, p, ul, ol, figure) {
  margin-block-start: 0;
}

.cabo-home :where(h1, h2, h3, p) {
  text-wrap: pretty;
}

.cabo-home :where(a, button, summary):focus-visible {
  outline: 3px solid var(--cabo-home-orange);
  outline-offset: 4px;
}

.cabo-home__inner {
  margin-inline: auto;
  max-width: var(--cabo-home-content);
  padding-inline: 24px;
  width: 100%;
}

/* Background image + overlay are handled by the Cover block itself
   (adjustable in the block editor sidebar: dim ratio, overlay color,
   fixed/scroll) — this class now only carries the section's own spacing. */
.cabo-home__hero {
  color: var(--cabo-home-white);
  padding: 0;
}

.cabo-home__hero .wp-block-cover__inner-container {
  /* Extra top clearance so the fixed, transparent-over-hero header
     (below) doesn't sit on top of the H1/booking form. */
  padding: 140px 0 72px;
}

.cabo-home__hero-bg--mobile {
  display: none;
}

/* Transparent header over the hero: this stylesheet only loads on the
   front page (see inc/setup.php), so this never touches other pages.
   Starts blended with the hero photo; assets/header-scroll.js toggles
   .is-scrolled once the visitor scrolls past it, restoring the solid
   white pill + dark text for legibility over non-hero content. */
/* Making .cabo-site-header fixed removes it from flow. Its wrapper
   <header class="wp-block-template-part"> then has no in-flow content,
   so its own top margin (inherited from default block spacing) collapses
   straight through .wp-site-blocks/body and renders as a white gap above
   the fixed, transparent header. display:flow-root stops that collapse
   without affecting position:fixed descendants (only transform/filter/
   will-change do that, per spec). */
.wp-site-blocks {
  display: flow-root;
}

header.wp-block-template-part {
  line-height: 0;
  margin: 0;
}

/* The real remaining gap: <main class="cabo-site-main"> still carries
   its normal margin-top (spacing meant to sit below the in-flow header),
   which now shows as a bare-white sliver above the hero since the header
   is fixed/overlaid instead of pushing main down. The hero should start
   flush at the very top of the viewport. */
.cabo-site-main {
  margin-top: 0;
}

.cabo-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  --cabo-site-header-text: #ffffff;
  transition: background-color .25s ease;
}

.cabo-site-header__inner {
  background: transparent;
  border-color: transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.cabo-site-header.is-scrolled {
  --cabo-site-header-text: #111318;
  background: transparent;
}

.cabo-site-header.is-scrolled .cabo-site-header__inner {
  background: var(--cabo-site-white);
  border-color: var(--cabo-site-line);
  box-shadow: 0 10px 24px rgba(11, 23, 29, .08);
}

/* While resting transparently over the hero, swap to the white-on-dark
   logo; scrolling (solid white pill) restores the default dark-on-white
   one from site-shell.css. */
.cabo-site-header:not(.is-scrolled) .cabo-site-brand .cabo-site-brand__logo--transparent {
  display: block;
}

.cabo-site-header:not(.is-scrolled) .cabo-site-brand .cabo-site-brand__logo--solid {
  display: none;
}

.cabo-home__hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
}

.cabo-home__hero-grid > .cabo-home__hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.cabo-home__hero-grid > .cabo-home__hero-media {
  grid-column: 1 / -1;
  grid-row: 2;
}

.cabo-home__hero-grid > .cabo-home__booking-shell {
  grid-column: 2;
  grid-row: 1;
}

.cabo-home__eyebrow {
  color: var(--cabo-home-orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .055em;
  line-height: 1.3;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.cabo-home__hero h1 {
  color: var(--cabo-home-white);
  font-family: inherit;
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: .98;
  margin-bottom: 28px;
  max-width: 720px;
}

.cabo-home__hero-copy > p:not(.cabo-home__eyebrow) {
  color: #c5c8ce;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 650px;
}

.cabo-home__actions,
.cabo-home .wp-block-buttons.cabo-home__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.cabo-home__button,
.cabo-home .wp-block-button__link.cabo-home__button,
.cabo-home .cabo-home__button-wrap .wp-block-button__link {
  align-items: center;
  background: var(--cabo-home-orange);
  border: 1px solid var(--cabo-home-orange);
  border-radius: 999px;
  color: var(--cabo-home-black);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  justify-content: center;
  line-height: 1;
  min-height: 50px;
  padding: 16px 24px;
  text-decoration: none;
}

.cabo-home__button:hover,
.cabo-home .wp-block-button__link.cabo-home__button:hover,
.cabo-home .cabo-home__button-wrap .wp-block-button__link:hover {
  background: #b74c30;
  border-color: #b74c30;
  color: var(--cabo-home-black);
}

.cabo-home__button--outline,
.cabo-home .wp-block-button__link.cabo-home__button--outline,
.cabo-home .cabo-home__button-wrap--outline .wp-block-button__link {
  background: transparent;
  border-color: #6b7078;
  color: var(--cabo-home-white);
}

.cabo-home__button--outline:hover,
.cabo-home .wp-block-button__link.cabo-home__button--outline:hover,
.cabo-home .cabo-home__button-wrap--outline .wp-block-button__link:hover {
  background: var(--cabo-home-white);
  border-color: var(--cabo-home-white);
  color: var(--cabo-home-black);
}

.cabo-home__button--dark,
.cabo-home .wp-block-button__link.cabo-home__button--dark,
.cabo-home .cabo-home__button-wrap--dark .wp-block-button__link {
  background: var(--cabo-home-black);
  border-color: var(--cabo-home-black);
  color: var(--cabo-home-white);
}

.cabo-home .cabo-home__button-wrap--link .wp-block-button__link {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #c5c8ce;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 0;
}

.cabo-home .cabo-home__button-wrap--link .wp-block-button__link:hover {
  background: transparent;
  color: var(--cabo-home-white);
}

.cabo-home__hero-media,
.cabo-home .wp-block-image.cabo-home__hero-media {
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.cabo-home__hero-media img,
.cabo-home__service-media img,
.cabo-home__event-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cabo-home__price-badge {
  background: var(--cabo-home-orange);
  border-radius: 999px;
  bottom: 20px;
  color: var(--cabo-home-black);
  font-size: 13px;
  font-weight: 850;
  margin: 0;
  padding: 12px 17px;
  position: absolute;
  right: 20px;
}

.cabo-home__hero-media .wp-element-caption {
  background: var(--cabo-home-orange);
  border-radius: 999px;
  bottom: 20px;
  color: var(--cabo-home-black);
  font-size: 13px;
  font-weight: 850;
  margin: 0;
  padding: 12px 17px;
  position: absolute;
  right: 20px;
}

.cabo-home__booking-shell {
  margin-top: 0;
  scroll-margin-top: 100px;
}

/* Booking widget's own min-width:781px rules (3-col services, combined
   route+trip row, side-by-side airport/hotel) assume a full-width card;
   here it sits in a ~550px hero column, so fall back to its stacked layout. */
.cabo-home__booking-shell .cabo-booking__choices--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Big Groups should span the full second row of the 2-col services grid on
   desktop, where Private+Shared already share row 1 (booking.css's own
   min-width:781px rule resets Private's grid-column back to auto, which is
   correct for its 3-col desktop layout — but this card is only 2-col, so
   without this Big Groups auto-places into row 2 col 1 only, leaving row 2
   col 2 empty). Scoped to the same breakpoint so mobile's stacked layout
   (Private full row, Shared + Big Groups sharing row 2) is untouched. */
@media (min-width: 781px) {
  .cabo-home__booking-shell .cabo-booking__choice--service-big_groups {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

.cabo-home__booking-shell .cabo-booking__row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Special Requests: booking.css's own min-width:781px rule lays the three
   extras groups out as 3 columns, assuming a full-width card — at ~566px
   that squeezes each group to ~140px, wrapping every button label onto
   several lines. Fall back to the stacked (1-col) layout here too. */
.cabo-home__booking-shell .cabo-booking__extras {
  grid-template-columns: 1fr;
}

.cabo-home__booking-shell .cabo-booking__location-flow {
  display: grid;
}

.cabo-home__booking-shell .cabo-booking__row-item {
  display: block;
}

.cabo-home__booking-shell > .cabo-booking,
.cabo-home__booking-fixture {
  background: var(--cabo-home-white);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgb(0 0 0 / 28%);
  color: var(--cabo-home-ink);
  margin-inline: auto;
  max-width: 1240px;
}

.cabo-home__booking-fixture {
  padding: 32px;
}

.cabo-home__booking-fixture h2 {
  font-family: inherit;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.cabo-home__booking-fixture > p {
  color: var(--cabo-home-muted);
  margin-bottom: 24px;
}

.cabo-home__booking-services,
.cabo-home__booking-options,
.cabo-home__booking-fields {
  display: grid;
  gap: 12px;
}

.cabo-home__booking-services {
  grid-template-columns: 1.3fr 1fr 1fr;
  margin-bottom: 18px;
}

.cabo-home__booking-options {
  border-top: 1px solid var(--cabo-home-line);
  grid-template-columns: repeat(4, 1fr);
  padding-top: 18px;
}

.cabo-home__booking-fields {
  grid-template-columns: 1.35fr 1.35fr .8fr .9fr;
  margin-top: 18px;
}

.cabo-home__booking-choice,
.cabo-home__booking-field {
  align-items: center;
  background: #eceef0;
  border: 0;
  border-radius: 15px;
  color: var(--cabo-home-ink);
  display: flex;
  font: 750 14px/1.2 inherit;
  justify-content: center;
  min-height: 58px;
  padding: 14px;
  text-align: center;
}

.cabo-home__booking-choice[aria-pressed="true"] {
  background: var(--cabo-home-orange);
  color: var(--cabo-home-black);
}

.cabo-home__booking-field {
  align-items: flex-start;
  background: var(--cabo-home-warm);
  flex-direction: column;
  text-align: left;
}

.cabo-home__booking-field small {
  color: var(--cabo-home-muted);
  font-size: 10px;
  letter-spacing: .04em;
}

.cabo-home__booking-submit {
  background: var(--cabo-home-orange);
  border: 0;
  border-radius: 15px;
  color: var(--cabo-home-black);
  font: 850 14px/1 inherit;
  min-height: 58px;
  padding: 14px;
}

.cabo-home__trust {
  background: var(--cabo-home-orange);
  color: var(--cabo-home-black);
}

.cabo-home__trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cabo-home__trust-item {
  min-width: 0;
  padding: 30px 26px;
}

.cabo-home__trust-item + .cabo-home__trust-item {
  border-left: 1px solid rgb(5 5 5 / 24%);
}

.cabo-home__trust-item strong,
.cabo-home__trust-item span {
  display: block;
}

.cabo-home__trust-item p,
.cabo-home__price-card p,
.cabo-home__text-link-wrap,
.cabo-home__final-email-wrap {
  margin: 0;
}

.cabo-home__trust-item strong {
  font-size: 11px;
  letter-spacing: .05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cabo-home__trust-item span,
.cabo-home__trust-item a {
  align-items: center;
  color: inherit;
  display: inline-flex;
  font-size: 15px;
  font-weight: 750;
  min-height: 44px;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.cabo-home__section {
  padding-block: clamp(72px, 8vw, 112px);
}

.cabo-home__section--warm {
  background: var(--cabo-home-warm);
}

.cabo-home__section--dark {
  background: var(--cabo-home-black);
  color: var(--cabo-home-white);
}

.cabo-home__hotels-band {
  padding-block: 32px;
}

.cabo-home__section-heading {
  margin-bottom: 46px;
  max-width: 900px;
}

.cabo-home__section-heading h2 {
  color: inherit;
  font-family: inherit;
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin-bottom: 18px;
}

.cabo-home__section-heading p:not(.cabo-home__eyebrow) {
  color: var(--cabo-home-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 780px;
}

.cabo-home__section--dark .cabo-home__section-heading p:not(.cabo-home__eyebrow) {
  color: #b8bdc6;
}

.cabo-home__section:not(.cabo-home__section--dark) .cabo-home__eyebrow,
.cabo-home__service-card .cabo-home__eyebrow,
.cabo-home__compare-card:not(.cabo-home__compare-card--dark) .cabo-home__eyebrow {
  color: var(--cabo-home-orange-text);
}

.cabo-home__intro-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 300px 1fr;
}

.cabo-home__price-card,
.cabo-home__intro-copy,
.cabo-home__service-card,
.cabo-home__step,
.cabo-home__airport,
.cabo-home__hotels,
.cabo-home__extra,
.cabo-home__compare-card {
  border-radius: 24px;
}

.cabo-home__price-card {
  background: var(--cabo-home-black);
  color: var(--cabo-home-white);
  padding: 34px;
}

.cabo-home__price-card strong {
  color: var(--cabo-home-orange);
  display: block;
  font-size: 76px;
  letter-spacing: -.06em;
  line-height: .9;
  margin-bottom: 24px;
}

.cabo-home__price-card span {
  display: block;
  font-size: 16px;
  font-weight: 750;
}

.cabo-home__intro-copy {
  background: var(--cabo-home-white);
  padding: 38px;
}

.cabo-home__intro-copy h3 {
  font-family: inherit;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cabo-home__intro-copy p {
  color: var(--cabo-home-muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 760px;
}

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

.cabo-home__service-card {
  background: var(--cabo-home-white);
  border: 1px solid var(--cabo-home-line);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 16px;
}

.cabo-home__service-media,
.cabo-home .wp-block-image.cabo-home__service-media {
  aspect-ratio: 3 / 2;
  border-radius: 17px;
  margin: 0 0 26px;
  overflow: hidden;
}

.cabo-home__service-card h3 {
  font-family: inherit;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.08;
  margin: 8px 6px 14px;
}

.cabo-home__service-card > p:not(.cabo-home__eyebrow) {
  color: var(--cabo-home-muted);
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 6px 26px;
}

.cabo-home__service-card .cabo-home__eyebrow {
  font-size: 11px;
  margin: 0 6px;
}

.cabo-home__text-link {
  align-items: center;
  color: var(--cabo-home-ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  margin: 0 6px 8px;
  min-height: 44px;
  text-decoration: none;
}

.cabo-home__text-link-wrap a {
  align-items: center;
  color: var(--cabo-home-ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  min-height: 44px;
  text-decoration: none;
}

.cabo-home__service-card > p.cabo-home__text-link-wrap {
  flex: 0 0 auto;
  margin: 0 6px 8px;
}

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

.cabo-home__step {
  background: #171a1f;
  padding: 30px;
}

.cabo-home__step-number {
  color: var(--cabo-home-orange);
  display: block;
  font-size: 46px;
  font-weight: 850;
  line-height: 1;
  margin-bottom: 28px;
}

.cabo-home__step h3 {
  color: var(--cabo-home-white);
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cabo-home__step p {
  color: #b8bdc6;
  line-height: 1.55;
  margin-bottom: 0;
}

.cabo-home__airport-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 28px;
}

.cabo-home__airport {
  align-items: center;
  background: var(--cabo-home-warm);
  display: grid;
  gap: 24px;
  grid-template-columns: 96px 1fr;
  padding: 28px;
}

.cabo-home__airport--dark {
  background: var(--cabo-home-black);
  color: var(--cabo-home-white);
}

.cabo-home__airport-code {
  align-items: center;
  aspect-ratio: 1;
  background: var(--cabo-home-orange);
  border-radius: 18px;
  color: var(--cabo-home-black);
  display: flex;
  font-size: 23px;
  font-weight: 850;
  justify-content: center;
}

.cabo-home__airport h3 {
  color: inherit;
  font-family: inherit;
  font-size: 22px;
  font-weight: 850;
  margin-bottom: 8px;
}

.cabo-home__airport p {
  color: var(--cabo-home-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.cabo-home__airport .cabo-home__airport-code {
  color: var(--cabo-home-black);
}

.cabo-home__airport--dark p {
  color: #b8bdc6;
}

.cabo-home__hotels {
  border: 1px solid var(--cabo-home-line);
  padding: 36px;
}

.cabo-home__hotels h3 {
  font-family: inherit;
  font-size: 26px;
  font-weight: 850;
  margin-bottom: 12px;
}

.cabo-home__hotels > p {
  color: var(--cabo-home-muted);
  margin-bottom: 28px;
}

.cabo-home__hotel-list {
  display: grid;
  gap: 18px 42px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.cabo-home__hotel-list li {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 12px;
}

.cabo-home__hotel-list li::before {
  background: var(--cabo-home-orange);
  border-radius: 50%;
  content: "";
  flex: 0 0 12px;
  height: 12px;
}

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

.cabo-home__extra {
  background: var(--cabo-home-white);
  padding: 30px;
}

.cabo-home__extra-value {
  color: var(--cabo-home-orange-text);
  display: block;
  font-size: 42px;
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.cabo-home__extra h3 {
  font-family: inherit;
  font-size: 22px;
  font-weight: 850;
  margin-bottom: 12px;
}

.cabo-home__extra p {
  color: var(--cabo-home-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.cabo-home__rule-note {
  font-size: 14px;
  font-weight: 700;
  margin: 30px auto 0;
  max-width: 900px;
  text-align: center;
}

.cabo-home__event-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 84px);
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
}

.cabo-home__event-media,
.cabo-home .wp-block-image.cabo-home__event-media {
  aspect-ratio: 4 / 3;
  border-left: 12px solid var(--cabo-home-orange);
  border-radius: 26px;
  margin: 0;
  overflow: hidden;
}

.cabo-home__event-copy h2 {
  color: var(--cabo-home-white);
  font-family: inherit;
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.cabo-home__event-copy > p:not(.cabo-home__eyebrow) {
  color: #c5c8ce;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cabo-home__event-note {
  color: #aeb4be !important;
  font-size: 14px !important;
  margin: 24px 0 0 !important;
}

.cabo-home__comparison {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}

.cabo-home__compare-card {
  background: var(--cabo-home-warm);
  padding: 36px;
}

.cabo-home__compare-card--dark {
  background: var(--cabo-home-black);
  color: var(--cabo-home-white);
}

.cabo-home__section .cabo-home__compare-card--dark .cabo-home__eyebrow {
  color: var(--cabo-home-orange);
}

.cabo-home__compare-card h3 {
  color: inherit;
  font-family: inherit;
  font-size: 30px;
  font-weight: 850;
  margin-bottom: 24px;
}

.cabo-home__compare-card ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cabo-home__compare-card li {
  align-items: flex-start;
  display: flex;
  font-weight: 650;
  gap: 12px;
}

.cabo-home__compare-card li::before {
  background: var(--cabo-home-orange);
  border-radius: 50%;
  content: "";
  flex: 0 0 18px;
  height: 18px;
  margin-top: 3px;
}

.cabo-home__faq {
  display: grid;
  gap: 14px;
}

.cabo-home__faq details,
.cabo-home details.wp-block-details {
  background: var(--cabo-home-white);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 0 26px;
}

.cabo-home__faq details[open],
.cabo-home details.wp-block-details[open] {
  border-color: var(--cabo-home-line);
}

.cabo-home__faq summary,
.cabo-home details.wp-block-details summary {
  color: var(--cabo-home-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  min-height: 72px;
  padding: 24px 44px 20px 0;
  position: relative;
}

.cabo-home__faq summary::after,
.cabo-home details.wp-block-details summary::after {
  color: var(--cabo-home-orange);
  content: "+";
  font-size: 25px;
  font-weight: 850;
  position: absolute;
  right: 0;
  top: 21px;
}

.cabo-home__faq details[open] summary::after,
.cabo-home details.wp-block-details[open] summary::after {
  content: "−";
}

.cabo-home__faq details p,
.cabo-home details.wp-block-details p {
  color: var(--cabo-home-muted);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 960px;
}

.cabo-home__final {
  background: var(--cabo-home-orange);
  color: var(--cabo-home-black);
  padding-block: 74px;
}

.cabo-home__final-grid {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto;
}

.cabo-home__final h2 {
  color: inherit;
  font-family: inherit;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.cabo-home__final p {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
}

.cabo-home__final .cabo-home__eyebrow {
  color: var(--cabo-home-black);
}

.cabo-home__final .cabo-home__actions {
  justify-content: flex-end;
}

.cabo-home__final-email {
  align-items: center;
  color: inherit;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
  text-decoration: none;
}

.cabo-home__final-email-wrap a {
  align-items: center;
  color: inherit;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .cabo-home__hero-grid,
  .cabo-home__event-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .cabo-home__trust-item:nth-child(3) {
    border-left: 0;
  }

  .cabo-home__trust-item:nth-child(n + 3) {
    border-top: 1px solid rgb(5 5 5 / 24%);
  }
}

@media (max-width: 800px) {
  .cabo-home__inner {
    padding-inline: 16px;
  }

  .cabo-home__hero {
    padding: 40px 0 44px;
    /* Solid fallback so the section still reads as a dark hero below the
       capped-height photo (the dim overlay span still spans the full
       section height, but the image itself no longer does). */
    background: var(--cabo-home-black);
  }

  .cabo-home__hero-bg--desktop {
    display: none;
  }

  /* The mobile hero section is much taller than it is wide (it wraps the
     copy AND the stacked booking form), so object-fit:cover on the full
     portrait photo just displays its entire height edge-to-edge - mostly
     empty sky. Cap the image to a top "banner" band instead, positioned to
     keep the airplane and the family in frame, and let the solid dark
     background (above) carry the rest of the section. */
  .cabo-home__hero .cabo-home__hero-bg--mobile {
    display: block;
    bottom: auto;
    height: 640px;
    object-position: center 51%;
    /* Fade the band's bottom edge into the solid dark background instead
       of cutting off hard at the 640px mark. */
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  }

  /* The desktop hero photo can take a heavy 90% dim since it's a wide
     landscape shot; the portrait mobile photo reads as almost black at
     the same strength, so lighten it here specifically. */
  .cabo-home__hero.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90 {
    opacity: 0.55;
  }

  .cabo-home__hero-grid,
  .cabo-home__event-grid,
  .cabo-home__intro-grid,
  .cabo-home__airport-grid,
  .cabo-home__comparison,
  .cabo-home__final-grid {
    grid-template-columns: 1fr;
  }

  /* The booking form sits directly below on this breakpoint, so the
     "See my price" jump-link is redundant here. */
  .cabo-home .cabo-home__hero-copy .wp-block-buttons.cabo-home__actions {
    display: none;
  }

  .cabo-home__hero-grid {
    gap: 32px;
  }

  .cabo-home__hero-grid > .cabo-home__booking-shell {
    grid-column: 1;
    grid-row: 2;
  }

  .cabo-home__hero-grid > .cabo-home__hero-media {
    grid-column: 1;
    grid-row: 3;
  }

  .cabo-home__hero h1 {
    font-size: clamp(40px, 11vw, 52px);
    max-width: 600px;
  }

  .cabo-home__booking-fixture {
    border-radius: 24px;
    padding: 20px;
  }

  .cabo-home__booking-services {
    grid-template-columns: 1fr 1fr;
  }

  .cabo-home__booking-services .cabo-home__booking-choice:first-child {
    grid-column: 1 / -1;
  }

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

  .cabo-home__booking-fields {
    grid-template-columns: 1fr;
  }

  .cabo-home__trust-grid,
  .cabo-home__steps,
  .cabo-home__extras {
    grid-template-columns: 1fr;
  }

  .cabo-home__trust-item + .cabo-home__trust-item,
  .cabo-home__trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgb(5 5 5 / 24%);
  }

  .cabo-home__section-heading {
    margin-bottom: 34px;
  }

  .cabo-home__event-media {
    aspect-ratio: 3 / 2;
  }

  .cabo-home__final .cabo-home__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .cabo-home__hero h1 {
    font-size: 40px;
  }

  .cabo-home__hero-media {
    aspect-ratio: 16 / 9;
    border-radius: 22px;
  }

  .cabo-home__price-badge {
    bottom: 14px;
    right: 14px;
  }

  .cabo-home__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cabo-home__actions .cabo-home__button,
  .cabo-home__actions .wp-block-button {
    width: 100%;
  }

  .cabo-home__actions .wp-block-button__link {
    width: 100%;
  }

  .cabo-home__section {
    padding-block: 68px;
  }

  .cabo-home__section-heading h2 {
    font-size: 34px;
  }

  .cabo-home__service-grid,
  .cabo-home__hotel-list {
    grid-template-columns: 1fr;
  }

  .cabo-home__airport {
    align-items: start;
    grid-template-columns: 72px 1fr;
    padding: 22px;
  }

  .cabo-home__airport-code {
    border-radius: 14px;
    font-size: 18px;
  }

  .cabo-home__hotels,
  .cabo-home__compare-card {
    padding: 26px 22px;
  }

  .cabo-home__event-media {
    aspect-ratio: 4 / 3;
  }

  .cabo-home__faq details,
  .cabo-home details.wp-block-details {
    padding-inline: 20px;
  }
}

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