:root {
  --navy: #071f45;
  --navy-2: #0b2c5c;
  --red: #D1001C;
  --red-dark: #AA0016;
  --cream: #fff5df;
  --paper: #ffffff;
  --sky: #eaf4fb;
  --infosky: #e6f0fb;
  --shadow: 0 18px 55px rgba(7, 31, 69, .18);
  --max-page: none;
  --voucher-price: "£179";
  --balloon-image: url("../images/ui/white-balloon-cta.png");

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background-color: #e8f5fb;
  background-image: url("../images/ui/sky-gray.png");
  background-size: 700px auto;
  background-repeat: repeat;
  background-position: center top;
}

html,
body {
  overflow-x: hidden;
}

.page-shell {
  max-width: var(--max-page);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--paper);
  box-shadow: 0 0 32px rgba(7, 31, 69, .10);
  position: relative;
  overflow-x: clip;
}

.site-header {
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  padding: 0 clamp(1.35rem, 3.5vw, 3.2rem);
  background: rgba(255, 255, 255, .96);
  position: relative;
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: -.04em;
}

.brand img {
  display: block;
  width: 120px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.8vw, 1.9rem);
  height: 100%;
}

.main-nav a,
.main-nav button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  font-size: .88rem;
  color: #080f1f;
  text-decoration: none;
  cursor: pointer;
  padding: 1.55rem 0;
  white-space: nowrap;
}

.has-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.has-dropdown>button::after {
  content: "⌄";
  display: inline-block;
  margin-left: .35rem;
  font-size: .85em;
  transform: translateY(-1px);
}

.dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: -1.4rem;
  min-width: 230px;
  padding: .7rem 0;
  background: #fff;
  box-shadow: 0 22px 50px rgba(7, 31, 69, .22);
  border-radius: 0 0 18px 18px;
  border-top: 4px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 200;
  /* must sit over balloon */
}

.dropdown-right {
  left: auto;
  right: -1.4rem;
}

.dropdown a {
  display: block;
  padding: .78rem 1.4rem;
  font-weight: 650;
  color: #303846;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: #f6f8fb;
  color: var(--red);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  padding: .82rem 1.18rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(209, 0, 28, .22);
  white-space: nowrap;
}

.header-cta:hover {
  background: #BD0019;
}

.mobile-menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  /* Large hero keeps the full scenic image visible on wider screens */
  min-height: clamp(800px, 90vh, 900px);
  position: relative;
  overflow: visible;
  isolation: isolate;
  z-index: 5;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 31, 69, .42) 0%, rgba(7, 31, 69, .06) 42%, rgba(7, 31, 69, .10) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(40rem, 54%);
  padding: 7.5rem 0 0 clamp(1.7rem, 5vw, 4.1rem);
  color: #fff;
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 22% 42%, rgba(14, 14, 15, 0.34), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(7, 31, 69, .05));
  z-index: 1;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1.4rem;
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: clamp(1.65rem, 2.6vw, 1.95rem);
  line-height: .85;
  color: var(--red);
  transform: rotate(-2deg);
  margin-bottom: 2rem;

}

.hero h1 {
  margin: 0;
  font-size: clamp(3.15rem, 5.25vw, 3.3rem);
  line-height: 0.95;
  font-stretch: 125%;
  transform: scaleX(1.12);
  transform-origin: left center;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin-bottom: 1.5rem;
}

.location-hero h1 {
  transform: scaleX(1.05);
   margin-bottom: 1rem;
}

.hero-subtitle {
  margin: 1.05rem 0 0;
  max-width: 31rem;
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  line-height: 1.35;
  font-weight: 300;
  text-shadow: 0 3px 16px rgba(7, 31, 69, .35);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.45rem;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 35px rgba(209, 0, 28, .26);
}

.btn-primary:hover {
  background: #BD0019;
}

.gift-icon {
  display: inline-flex;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.gift-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #ffc233;
}

.btn-secondary {
  background: rgba(255, 255, 255, .95);
  color: var(--navy);
  box-shadow: 0 14px 35px rgba(7, 31, 69, .18);
  border: 1px solid rgba(7, 31, 69, .12);
  font-size: .84rem;
}

.play-dot {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: .62rem;
  padding-left: 2px;
}

.balloon-cta {
  background-image: var(--balloon-image);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  will-change: transform, opacity;
  z-index: 10;
  width: clamp(310px, 27vw, 420px);
  aspect-ratio: 1024 / 1536;
  filter: drop-shadow(0 20px 22px rgba(7, 31, 69, .22));
  transform: rotate(.2deg);
  transition: transform .45s ease, opacity .45s ease;
  right: 0rem;
  top: 8px;
}

.balloon-cta::after {
  content: var(--voucher-price);
  position: absolute;
  left: 50%;
  top: 31%;
  transform: translateX(-50%);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.06em;
}

.balloon-cta:hover {
  transform: translateY(-5px) rotate(.2deg);
}

.brush-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  z-index: 3;
  pointer-events: none;
  background: url("../images/overlays/coastline2_mist_stronger.png") bottom center / 100% 100% no-repeat;
}

.below-hero {
  min-height: 210px;
  display: grid;
  place-items: start center;
  padding-top: 74px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.below-hero p {
  margin: 0;
  max-width: 44rem;
  color: rgba(7, 31, 69, .55);
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 130px;
  /* gives basket breathing room */
}

/*CTA Voucher Bar - Floating*/

.floating-voucher-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  z-index: 500;

  background: var(--sky);
  border-top: 1px solid rgba(7, 31, 69, .12);
  box-shadow: 0 -8px 30px rgba(7, 31, 69, .12);
}

.voucher-bar-content {
  max-width: var(--max-page);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 2rem;

  padding: 1rem 1.5rem;
}

.voucher-bar-title {
  font-weight: 800;
  color: var(--navy);
}

.voucher-bar-subtitle {
  margin-top: .25rem;
  font-size: .9rem;
  color: rgba(7, 31, 69, .7);
}

.voucher-bar-button {
  background: var(--red);
  color: #fff;

  text-decoration: none;
  font-weight: 800;

  padding: .95rem 1.4rem;
  border-radius: 12px;

  white-space: nowrap;
}

.floating-voucher-bar {
  transform: translateY(100%);
  transition: transform .3s ease;
}

.floating-voucher-bar.show {
  transform: translateY(0);
}

/*Benefits Strip*/

.benefits-strip {
  background: #fff;
  padding: 1.15rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(7, 31, 69, .08);
}

.benefits-inner {
  max-width: var(--max-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 58px;
  padding: 0 .9rem;
  font-size: .82rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  border-left: 1px solid rgba(7, 31, 69, .18);
}

.benefit-item:first-child {
  border-left: 0;
}

.benefit-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/*Popular Locations*/

.popular-locations {
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem) 5rem;
  background: #fff;
}

.section-intro {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-intro h2 {
  margin: 0 0 .75rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-intro p {
  margin: 0;
  color: rgba(7, 31, 69, .7);
  line-height: 1.6;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.location-card {
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 31, 69, .08);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.location-image {
  aspect-ratio: 16 / 10;
  background-image: var(--location-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-size .4s ease;
}


.location-card h3 {
  margin: 1rem 1.25rem .25rem;
  transition: color .25s ease;
}

.location-card p {
  margin: 0 1.25rem 1.25rem;
  color: rgba(7, 31, 69, .65);
}

.location-card h3,
.location-card p {
  color: inherit;
}

.location-content {
  padding: 1rem 1.25rem 1.25rem;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.location-card:hover h3 {
  color: var(--red);
}




/* Other Home Page Styling */

.how-it-works {
  padding: 5rem clamp(1.5rem, 4vw, 3rem);
  background: var(--sky);
}

.steps-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(7, 31, 69, .08);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  margin-bottom: 1rem;
}

.step-card h3,
.why-grid h3 {
  margin: 0 0 .55rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.step-card p,
.why-grid p {
  margin: 0;
  line-height: 1.55;
  color: rgba(7, 31, 69, .68);
}

.why-choose {
  padding: 5rem clamp(1.5rem, 4vw, 3rem);
  background: #fff;
}

.why-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-grid article {
  padding: 1.6rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(7, 31, 69, .1);
  box-shadow: 0 10px 26px rgba(7, 31, 69, .06);
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 560px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Location Pages */

.location-page-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 2rem;
  padding: 3.25rem clamp(1.5rem, 4vw, 3rem);
  background: #fff;
}

.location-main {
  min-width: 0;
  margin-top: -0.75rem;
}

.location-intro {
  margin-bottom: 4rem;
  font-size: 1.65;
}

.location-main h2 {
  font-size: clamp(1.95rem, 2.50vw, 2.15rem);
  margin-bottom: 2rem;
}

.location-main p {
  line-height: 2;
}

.location-link {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.location-link:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.ride-experience-strip {
  margin: 2.5rem 0;
  padding: 1.6rem 1.6rem 1.4rem;
  background: var(--infosky);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(7, 31, 69, .08);
  margin-bottom: 5rem;
}

.ride-experience-strip h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.45rem, 2vw, 1.65rem);
  color: var(--navy);
}

.ride-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
  align-items: start;
}

.ride-step {
  position: relative;
  text-align: center;
}

.ride-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 29px;
  left: calc(50% + 28px);
  width: calc(100% - 32px);
  border-top: 3px dotted var(--red);
  opacity: .75;
}

.ride-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto .65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  font-size: 1.55rem;
  box-shadow: 0 8px 20px rgba(7, 31, 69, .12);
  position: relative;
  z-index: 2;
}

.ride-step p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
}

@media (max-width: 820px) {
  .ride-experience-strip {
    padding: 1.4rem;
  }

  .ride-steps {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: .4rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .ride-step {
    flex: 0 0 120px;
    scroll-snap-align: start;
  }

  .ride-step:not(:last-child)::after {
    display: none;
  }
}

/* Locations Main Highlights */

.location-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
  margin-bottom: 5rem;
}

.highlight-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(7, 31, 69, .08);
  border: 1px solid rgba(7, 31, 69, .08);
}

.highlight-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #eef8ff;
}

.highlight-content {
  padding: 1rem 1.1rem 1.2rem;
}

.highlight-content h3 {
  margin: 0 0 .65rem;
  font-size: 1.25rem;
  color: var(--navy);
}

.highlight-content p {
  margin: 0;
  line-height: 1.65;
  color: var(--navy);
}

@media (max-width: 820px) {
  .location-highlights {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: .5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .location-highlights::-webkit-scrollbar {
    display: none;
  }

  .highlight-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .highlight-card img {
    height: 150px;
  }
}

/* Location FAQs */

.location-faq {
  margin: 2.75rem 0 3rem;
  padding: 1.25rem;
  background: #eef6fd;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(7, 31, 69, .06);
  margin-bottom:5rem;
}

.location-faq h2 {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: clamp(1.45rem, 2vw, 1.65rem);
  color: var(--navy);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(7, 31, 69, .08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(7, 31, 69, .05);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: .95rem 1rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: .85rem 1rem;
  padding-right: 2.5rem;
}

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

.faq-item summary::after {
  content: "▶";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .7rem;
  color: rgba(7, 31, 69, .55);
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  line-height: 1.6;
  color: rgba(7, 31, 69, .72);
}

@media (max-width: 820px) {
  .location-faq {
    padding: 1.4rem;
  }

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

/* Locations Side Bar */

.location-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sidebar-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(7, 31, 69, .08);
  border: 1px solid rgba(7, 31, 69, .08);
}

.price-card {
  text-align: center;
  background: #f8fbfd;
}

.price-card h2,
.sidebar-card h2 {
  margin: 0 0 .75rem;
  font-size: 1.35rem;
  color: var(--navy);
}

.price-label {
  margin: 0;
  font-weight: 800;
  color: rgba(7, 31, 69, .72);
}

.sidebar-price {
  margin: .25rem 0 1rem;
  font-size: 4rem;
  line-height: .9;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.06em;
}

.sidebar-price::before {
  content: var(--voucher-price);
}

.sidebar-checklist,
.good-to-know-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: left;
}

.sidebar-checklist li,
.good-to-know-card li {
  margin-bottom: .55rem;
  line-height: 1.4;
  font-weight: 650;
  color: rgba(7, 31, 69, .78);
}

.sidebar-checklist li::before {
  content: "✓";
  color: #12a85a;
  font-weight: 900;
  margin-right: .5rem;
}

.sidebar-btn {
  width: 100%;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card h2 {
  padding: 1.25rem 1.25rem .75rem;
}

.map-card img {
  display: block;
  width: 100%;
  height: auto;
}

.directions-card {
  background: #fff;
}

.directions-card h2 {
  margin-bottom: 1rem;
}

.directions-card h3 {
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

.directions-content {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(7, 31, 69, .72);
  padding: 1rem;
  padding-bottom: 1.2rem;
}

.directions-content p {
  margin: 0 0 1.25rem;
  line-height: 1.7;
  font-weight: 600;

}

.directions-content p:last-child {
  margin-bottom: 0;

}

.directions-content strong {
  color: var(--navy);
  font-weight: 700;
}


.questions-card {
  text-align: center;
  background: #f8fbfd;
}

.questions-card img {
  display: block;
  width: 70px;
  height: auto;
  margin: 0 auto 1rem;
}

.questions-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.questions-card-link:hover .questions-card {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 31, 69, .08);
}

.questions-card h2 {
  margin: 0 0 0.75rem;
}

.questions-card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(7, 31, 69, .72);
}

.good-to-know-card {
  text-align: center;
  background: #f8fbfd;
}

.good-to-know-card img {
  display: block;
  width: 70px;
  height: auto;
  margin: 0 auto 1rem;
}

.good-to-know-card h2 {
  margin: 0 0 0.75rem;
}

.good-to-know-card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(7, 31, 69, .72);
}

.good-to-know-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.good-to-know-card li {
  margin-bottom: 0.9rem;
  line-height: 1.45;
  color: rgba(7, 31, 69, .72);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .location-page-content {
    grid-template-columns: 1fr;
  }

  .location-sidebar {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

/* On the Day */

.flight-experience {
  padding: 5rem clamp(1.5rem, 4vw, 3rem) 6rem;
  background: var(--sky);
}

.location-flight-experience {
  padding: 2rem clamp(1.5rem, 3vw, 2.5rem) 2rem;
  background: #fff;
  padding-top: 0rem;
  margin-top: 0;
}


.experience-wrap {
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 1rem;
  position: relative;
}

.experience-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.experience-carousel::-webkit-scrollbar {
  display: none;
}

.experience-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 31, 69, .08);
}

.experience-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.experience-content {
  padding: 1rem 1.25rem 1.25rem;
}

.experience-content h3 {
  margin: 0 0 .6rem;
}

.experience-content p {
  margin: 0;
  line-height: 1.45;
  color: rgba(7, 31, 69, .68);
}

.carousel-arrow {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: var(--navy);
  font-size: 0;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(7, 31, 69, .18);
}

.carousel-arrow {
  opacity: .8;
}

.carousel-arrow:hover {
  opacity: 1;
}

.carousel-arrow span {
  font-size: 2rem;
  line-height: 1;
}

.carousel-prev {
  left: -58px;
}

.carousel-next {
  right: -58px;
}

@media (max-width: 760px) {
  .experience-card {
    flex: 0 0 85%;
  }

  .carousel-arrow {
    display: none;
  }
}

/* Catchment Area Heroes */

.catchment-hero .hero-triptych {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.catchment-hero .hero-panel {
  position: absolute;
  inset: 0;
  background-image: var(--panel-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: catchmentFade 24s infinite;
}

.catchment-hero .hero-panel-first {
  animation-delay: 0s;
}

.catchment-hero .hero-panel-second {
  animation-delay: 6s;
}

.catchment-hero .hero-panel-third {
  animation-delay: 12s;
}

.catchment-hero .hero-panel-fourth {
  animation-delay: 18s;
}

@keyframes catchmentFade {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


/* Footer */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
}

.footer-inner {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 4vw, 3rem);

  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.25fr;
  gap: 2rem;
}

.footer-brand img {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  line-height: 1.7;
  max-width: 22rem;
}

.footer-column h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  margin-bottom: .65rem;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  padding: 1.25rem;
  font-size: .9rem;
}

@media (max-width: 820px) {

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

/* Legal */


.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.page-header {
  background: var(--sky);
  padding: 3rem 1.5rem;
  margin: 0 -5px 2rem;
}

.page-header h1 {
  margin-bottom: .75rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(7, 31, 69, .1);
}

.legal-nav a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.legal-nav a:hover {
  text-decoration: underline;
}

.legal-section {
  margin-bottom: 3rem;
  scroll-margin-top: 120px;
}

.legal-section h2 {
  margin-bottom: 1rem;
}

/*Media*/


@media (max-width: 820px) {

  html,
  body {
    overflow-x: hidden;
  }

  .page-shell {
    overflow-x: clip;
  }
}


@media (max-width: 480px) {
  .benefit-item {
    flex-direction: column;
    gap: .35rem;
    text-align: center;
    font-size: .74rem;
  }
}

@media (max-width: 900px) {
  .benefits-inner {
    grid-template-columns: repeat(3, 1fr);
    row-gap: .7rem;
  }

  .benefit-item:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    height: 78px;
    min-height: 78px;
    background: #f8fbfd;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    grid-column: 3;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    background: #f8fbfd;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0 1.5rem;
    box-shadow: 0 18px 35px rgba(7, 31, 69, .18);
    border-top: 1px solid rgba(7, 31, 69, .08);
    z-index: 300;
  }

  .main-nav.is-open a,
  .main-nav.is-open button {
    width: 100%;
    display: block;
    text-align: left;
    padding: .85rem 2rem;
    font-size: 1rem;
    line-height: 1.2;
    background: #f8fbfd;
  }

  .main-nav.is-open .has-dropdown {
    display: block;
    height: auto;
  }

  .main-nav.is-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    border-radius: 0;
    padding: .5rem 0 .75rem;
    min-width: 0;
    display: none;
    background: #f8fbfd;
  }

  .main-nav.is-open .has-dropdown.is-open .dropdown {
    display: block;
  }

  .main-nav.is-open .dropdown a {
    padding: .7rem 2rem .7rem 3.5rem;
    font-size: .95rem;
    font-weight: 650;
  }

  .hero-copy {
    width: 60%;
  }

  .balloon-cta {
    width: clamp(360px, 46vw, 500px);
    right: -4rem;
  }
}

@media (max-width: 820px) {

  html,
  body {
    overflow-x: hidden;
  }

  .page-shell {
    overflow-x: clip;
  }

  .hero {
    min-height: 690px;
  }

  .hero-media {
    background-position: center;
  }

  .hero-copy {
    width: auto;
    padding: 3rem 1.4rem 0;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 14vw, 5rem);
  }

  .hero-subtitle {
    max-width: 25rem;
  }

  .balloon-cta {
    width: min(86vw, 390px);
    top: 360px;
    right: -70px;
  }

  .balloon-cta.float-away {
    transform: translateY(-180px) rotate(.2deg);
    opacity: 0;
    pointer-events: none;
  }

  .brush-edge {
    height: 92px;
  }

  .below-hero {
    padding-top: 120px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 1rem;
    gap: .85rem;
  }

  .header-cta {
    padding: .75rem .9rem;
    font-size: .72rem;
  }

  .main-nav {
    gap: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: min(100%, 290px);
  }

  .balloon-cta {
    top: 390px;
    right: -95px;
    width: 355px;
  }
}

.test-scroll-area {
  display: block;
  min-height: 1300px;
  padding: 5rem clamp(1.5rem, 5vw, 4rem);
  background: #fff;
}

.dummy-content {
  max-width: 980px;
  margin: 0 auto;
}

.dummy-content h2,
.dummy-content h3 {
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}

.dummy-content p {
  max-width: 720px;
  line-height: 1.7;
  color: #24344d;
}

.dummy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2rem 0 3rem;
}

.dummy-grid div {
  min-height: 150px;
  border-radius: 18px;
  background: #eaf4fb;
  padding: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(7, 31, 69, .08);
}

.dummy-grid small {
  font-weight: 600;
  opacity: .65;
}

@media (max-width: 760px) {
  .dummy-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: .5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .location-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .experience-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: .5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .experience-carousel::-webkit-scrollbar {
    display: none;
  }

  .experience-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}