:root {
  --ink: #142832;
  --muted: #536a70;
  --paper: #f3f8f7;
  --white: #ffffff;
  --line: #d7e7e5;
  --teal: #0b7280;
  --teal-dark: #123b47;
  --green: #5c776f;
  --blue: #1f6d83;
  --coral: #0e8493;
  --coral-dark: #0a5b66;
  --sun: #b9e0e3;
  --mist: #e7f2f1;
  --foam: #cbe4e3;
  --charcoal: #102833;
  --wood: #6f8580;
  --water-texture: url("assets/water-texture.jpg");
  --glass: rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 60px rgba(16, 40, 51, 0.16);
  --shadow-soft: 0 10px 30px rgba(16, 40, 51, 0.10);
  --display: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 48%, #edf4f3 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  padding: 14px clamp(18px, 5vw, 56px);
  color: var(--white);
  background: rgba(16, 40, 51, 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 3px solid rgba(185, 224, 227, 0.56);
  box-shadow: 0 10px 24px rgba(16, 40, 51, 0.18);
}

.brand,
.main-nav,
.hero-actions,
.contact-lines,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 72px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.brand span {
  line-height: 1.1;
  letter-spacing: 0;
}

.main-nav {
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.95rem;
}

.main-nav a,
.header-action,
.contact-lines a,
.footer-links a {
  text-decoration: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.main-nav a:hover,
.header-action:hover,
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-action {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 148px clamp(18px, 5vw, 56px) 132px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(16, 40, 51, 0.84) 0%,
      rgba(18, 59, 71, 0.66) 36%,
      rgba(11, 114, 128, 0.20) 66%,
      rgba(11, 114, 128, 0.02) 100%
    ),
    linear-gradient(
      180deg,
      rgba(16, 40, 51, 0.06) 0%,
      rgba(18, 59, 71, 0) 46%,
      rgba(243, 248, 247, 0.62) 86%,
      var(--paper) 100%
    ),
    url("assets/hero.jpg") center 46% / cover no-repeat;
  background-color: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--foam));
}

.hero-overlay {
  display: none;
}

.hero h1 {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.32);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  padding-left: 24px;
  border-left: 6px solid rgba(185, 224, 227, 0.86);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p,
a,
li,
span,
strong {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.07;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 4.35rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.section-copy h2,
.section-heading h2,
.booking-copy h2,
.detail-list h2,
.trip-card h3,
.policy-grid h3,
.fleet-card-body h3 {
  color: var(--teal-dark);
}

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

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(10, 91, 102, 0.24);
}

.button-primary:hover {
  box-shadow: 0 16px 32px rgba(10, 91, 102, 0.32);
  background: var(--coral-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button-on-light {
  color: var(--teal-dark);
  border-color: var(--foam);
  background: var(--white);
}

.button-on-light:hover {
  border-color: var(--teal);
  background: var(--mist);
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -80px clamp(18px, 5vw, 56px) 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
  z-index: 2;
}

.trust-strip div {
  min-height: 118px;
  padding: 26px clamp(18px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 248, 247, 0.84)),
    var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 200ms ease;
}

.trust-strip div:hover {
  background: var(--mist);
}

.trust-strip strong {
  color: var(--teal-dark);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.section {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 56px);
}

.intro {
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.details-section {
  grid-template-columns: minmax(0, 900px);
  align-items: center;
  justify-content: center;
}

.section-copy,
.section-heading,
.booking-copy,
.detail-list {
  max-width: 760px;
}

.section-copy p,
.section-heading p,
.booking-copy p,
.detail-list p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-band {
  position: relative;
  color: var(--white);
  background: transparent;
}

.section-band > * {
  position: relative;
}

.ocean-panel {
  position: relative;
  overflow: hidden;
  background:
    var(--water-texture) center / cover no-repeat,
    var(--charcoal);
}

.ocean-panel > section {
  position: relative;
  z-index: 1;
}

.ocean-panel .section-heading {
  max-width: 820px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(18, 59, 71, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-band .eyebrow {
  color: var(--sun);
}

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

.section-band .section-heading p {
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  margin-inline: auto;
  text-align: center;
}

.trip-grid,
.payment-grid,
.policy-grid {
  display: grid;
  gap: 18px;
}

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

.trip-card,
.policy-grid article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(244, 248, 245, 0.92) 100%),
    var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.trip-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--foam));
  opacity: 1;
}

.section-band .trip-card {
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 248, 247, 0.72)),
    rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--foam);
}

.trip-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 360px;
  padding: 32px 28px 28px;
}

.trip-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.trip-card-top span {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 800;
}

.trip-card:nth-child(3) .trip-card-top span,
.trip-card:nth-child(4) .trip-card-top span {
  background: var(--teal);
}

.trip-card p,
.trip-card li,
.payment-option small,
.policy-grid p {
  color: var(--muted);
}

.trip-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding-left: 18px;
}

.payment-section {
  position: relative;
  color: var(--white);
  background: transparent;
}

.payment-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.payment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-option {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.payment-option:hover {
  border-color: var(--sun);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.payment-option span {
  color: var(--sun);
  font-weight: 800;
}

.payment-option strong {
  font-size: 2rem;
}

.payment-option small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.sales-section,
.booking-section {
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  align-items: start;
}

.contact-lines {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-lines a {
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--foam);
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
  transition: all 180ms ease;
}

.contact-lines a:hover {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
  text-decoration: none;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(215, 231, 229, 0.86);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 800;
}

.trip-type-options {
  display: grid;
  gap: 12px;
}

.trip-type-option {
  position: relative;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.trip-type-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.trip-type-option span,
.trip-type-option small {
  grid-column: 2;
}

.trip-type-option span {
  font-weight: 800;
}

.trip-type-option small {
  color: var(--muted);
  font-weight: 600;
}

.trip-type-option:has(input:checked) {
  border-color: var(--teal);
  background: rgba(203, 228, 227, 0.72);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(14, 124, 117, 0.2);
  border-color: var(--teal);
}

.confirmation {
  display: grid;
  margin: 0 clamp(18px, 5vw, 56px) clamp(64px, 9vw, 112px);
  padding: 28px;
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  background: var(--glass-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.confirmation h2 {
  font-size: 2.25rem;
}

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

.confirmation strong {
  color: var(--teal-dark);
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.policy-grid article {
  min-height: 154px;
  padding: 22px;
}

.policy-grid p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, var(--teal-dark), var(--charcoal));
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.subpage-main {
  padding-top: 80px;
}

.booking-page {
  background:
    linear-gradient(180deg, var(--paper), var(--white) 42%, var(--mist)),
    var(--paper);
}

.booking-page-hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(64px, 9vw, 104px) clamp(18px, 5vw, 56px) clamp(32px, 6vw, 64px);
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--charcoal));
  border-bottom: 6px solid var(--sun);
}

.booking-page-hero::after {
  content: "";
  width: min(160px, 40vw);
  height: 5px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--teal), var(--sun), var(--foam));
}

.booking-page-hero .eyebrow {
  color: var(--sun);
}

.booking-page-hero h1 {
  max-width: 820px;
  color: var(--white);
}

.booking-page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.captain-section {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  justify-content: center;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(203, 228, 227, 0.34), transparent 32%, rgba(11, 114, 128, 0.08) 100%),
    var(--paper);
}

.captain-media {
  justify-self: center;
  width: min(100%, 320px);
}

.captain-media img {
  width: 100%;
  max-width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 8px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.captain-copy {
  max-width: 760px;
}

.captain-copy h1 {
  color: var(--teal-dark);
}

.captain-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.credential-list span {
  padding: 10px 12px;
  border: 1px solid var(--foam);
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--glass-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 800;
}

.fleet-section {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 56px);
  background: linear-gradient(180deg, var(--white), var(--paper) 58%, var(--mist));
}

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

.fleet-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass-strong);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.fleet-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--foam));
}

.fleet-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--mist);
}

.fleet-card:nth-child(2) img {
  object-fit: contain;
  padding: 18px;
}

.fleet-card-body {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.fleet-card-body p,
.fleet-card-body li {
  color: var(--muted);
}

.fleet-card-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    min-height: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 86vh;
    padding-top: 148px;
  }

  .trust-strip,
  .trip-grid,
  .payment-grid,
  .intro,
  .sales-section,
  .booking-section,
  .details-section,
  .captain-section,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
    white-space: normal;
  }

  .brand span {
    font-size: 0.95rem;
    line-height: 1.15;
    min-width: 0;
    max-width: 55vw;
    overflow-wrap: anywhere;
  }

  .brand-logo {
    width: 44px;
    height: 34px;
  }

  .header-action {
    display: none;
  }

  .main-nav {
    grid-column: 1 / -1;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    min-height: 84vh;
    padding-bottom: 54px;
  }

  .captain-section {
    padding-inline: 24px;
  }

  .captain-media {
    width: 240px;
  }

  .captain-media img {
    max-height: 340px;
  }

  .captain-copy h1 {
    font-size: 2rem;
  }

  .captain-copy p {
    font-size: 1rem;
  }

  .hero-content,
  .hero h1,
  .hero-copy,
  .hero .eyebrow {
    width: min(330px, calc(100vw - 48px));
    max-width: min(330px, calc(100vw - 48px));
  }

  .hero-content {
    padding-left: 16px;
    border-left-width: 4px;
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .section-copy,
  .section-heading,
  .booking-copy,
  .booking-form,
  .detail-list,
  .captain-copy,
  .fleet-card,
  .payment-option,
  .trip-card,
  .confirmation > div {
    width: min(330px, calc(100vw - 48px));
    max-width: min(330px, calc(100vw - 48px));
  }

  .section,
  .captain-section,
  .fleet-section {
    justify-items: center;
  }

  .section-copy,
  .section-heading,
  .booking-copy,
  .detail-list,
  .captain-copy {
    text-align: center;
  }

  .booking-form,
  .booking-form label,
  .booking-form legend {
    text-align: left;
  }

  .contact-lines,
  .credential-list,
  .hero-actions {
    justify-content: center;
  }

  .fleet-card img {
    height: 180px;
    object-fit: contain;
    padding: 10px;
  }

  .fleet-card:nth-child(2) img {
    height: 170px;
    padding: 8px;
  }

  .button {
    width: 100%;
  }

  .form-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    display: block;
    min-height: 140px;
    margin: -70px 24px 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .trust-strip div {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    min-height: 140px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
      opacity 260ms ease,
      transform 260ms ease;
  }

  .trust-strip div.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .trip-card,
  .payment-option {
    min-height: auto;
  }

  .trip-card-top {
    display: grid;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
