/* ==========================================================================
   Dive In Ltd — "Deep Water"
   Sections: fonts · tokens · reset · typography · layout · header · buttons
             · hero · doors · stats · rows · trips · cards · features
             · testimonials · faq · tables · content · footer · utilities
             · responsive · print
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts — self-hosted. No requests leave the site.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  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: "IBM Plex Mono";
  src: url("../fonts/plex-mono-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  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: "IBM Plex Mono";
  src: url("../fonts/plex-mono-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  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;
}

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Ground */
  --abyss: #05161e;
  --abyss-raised: #0c242e;

  /* Text */
  --foam: #eef4f4;
  --foam-dim: #cfdde0;
  --foam-muted: #b7c8cc;
  --foam-faint: #93a9ae;

  /* The single accent */
  --amber: #f0a23c;
  --amber-deep: #e08f28;

  /* Hairlines */
  --rule: rgb(238 244 244 / 14%);
  --rule-strong: rgb(238 244 244 / 45%);

  /* Roles — kept under the old names so the rest of the sheet keeps working */
  --bg: var(--abyss);
  --bg-alt: var(--abyss-raised);
  --surface: var(--abyss-raised);
  --text: var(--foam);
  --text-muted: var(--foam-muted);
  --accent: var(--amber);
  --accent-hover: var(--amber-deep);
  --border: var(--rule);

  /* Type */
  --font-ui: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --step--1: 0.8125rem;
  --step-0: 0.9375rem;
  --step-1: 1.125rem;
  --step-2: 1.5rem;
  --step-3: clamp(1.9rem, 1.5rem + 1.8vw, 2.5rem);
  --step-4: clamp(2.75rem, 1.9rem + 3.6vw, 5.125rem);

  /* Spacing */
  --gutter: 40px;
  --section-y: clamp(3rem, 2rem + 4vw, 4.5rem);
  --gap-card: 18px;
  --gap-col: 24px;

  --space-2xs: 0.35rem;
  --space-xs: 0.6rem;
  --space-s: 1rem;
  --space-m: 1.6rem;
  --space-l: 2.5rem;
  --space-xl: 4rem;

  /* Shape — 8px everywhere, pills on buttons only. No shadows. */
  --radius: 8px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.75, 0.3, 1);
  --t-colour: 0.18s var(--ease);
  --t-image: 0.5s var(--ease);
}

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

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

body {
  background: var(--abyss);
  color: var(--foam);
  font-family: var(--font-ui);
  font-size: var(--step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-4);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

h2 {
  font-size: var(--step-3);
}

h3 {
  font-size: var(--step-2);
  line-height: 1.1;
}

p,
li {
  text-wrap: pretty;
}

p + p,
p + ul,
p + ol,
ul + p,
ol + p {
  margin-top: var(--space-s);
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
  transition: color var(--t-colour);
}

a:hover {
  color: var(--amber);
}

strong {
  font-weight: 700;
  color: var(--foam);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--foam-dim);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--amber);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--gutter);
  z-index: 200;
  background: var(--amber);
  color: var(--abyss);
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  color: var(--abyss);
}

/* --------------------------------------------------------------------------
   Layout — full bleed to a 40px gutter. No centred container.
   -------------------------------------------------------------------------- */
.bleed,
.container {
  width: 100%;
  padding-inline: var(--gutter);
  margin-inline: auto;
}

/* Interior pages that still want a measured reading column */
.container--narrow {
  width: 100%;
  max-width: calc(760px + (var(--gutter) * 2));
  padding-inline: var(--gutter);
  margin-inline: auto;
}

main {
  flex: 1;
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: clamp(2.25rem, 1.6rem + 2.6vw, 3.25rem);
}

.section--alt {
  background: var(--abyss-raised);
}

/* Head row: heading left, supporting note or link right */
.head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--gap-col);
  margin-bottom: 32px;
}

.head-row h2 {
  max-width: 28ch;
}

.head-row--tight h2 {
  max-width: 16ch;
}

.head-row__note {
  font-size: 0.9375rem;
  color: var(--foam-faint);
  max-width: 34ch;
  text-align: right;
}

.head-row__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  white-space: nowrap;
}

.head-row__link:hover {
  color: var(--amber-deep);
  text-decoration: underline;
}

.section__head {
  max-width: 44rem;
  margin-bottom: 32px;
}

.section__head--centre {
  margin-inline: auto;
  text-align: center;
}

.section__head p {
  margin-top: var(--space-s);
  color: var(--foam-muted);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--abyss);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-colour), background var(--t-colour);
}

.site-header.is-stuck {
  background: rgb(5 22 30 / 88%);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--foam);
}

.brand:hover {
  color: var(--foam);
}

.primary-nav {
  margin-right: auto;
}

.primary-nav__list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav__link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--foam-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-colour);
}

.primary-nav__link:hover {
  color: var(--foam);
}

.primary-nav__link[aria-current="page"] {
  color: var(--foam);
  font-weight: 600;
}

.header-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foam-muted);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--foam);
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--foam);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--amber);
  color: var(--abyss);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-colour), color var(--t-colour),
    border-color var(--t-colour), transform var(--t-colour);
}

.button:hover {
  background: var(--amber-deep);
  color: var(--abyss);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button--ghost {
  background: transparent;
  border-color: var(--rule-strong);
  color: var(--foam);
}

.button--ghost:hover {
  background: var(--foam);
  border-color: var(--foam);
  color: var(--abyss);
}

.button--small {
  padding: 11px 24px;
  font-size: 0.875rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row--centre {
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--amber);
}

.link-arrow::after {
  content: "→";
  transition: transform var(--t-colour);
}

.link-arrow:hover {
  color: var(--amber-deep);
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgb(5 22 30 / 88%) 0%,
    rgb(5 22 30 / 55%) 55%,
    rgb(5 22 30 / 30%) 100%
  );
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 760px;
  padding: 0 var(--gutter);
  text-align: left;
}

.hero__lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--foam-dim);
  max-width: 46ch;
}

/* Interior pages keep a shorter banner in the same language */
.hero--page {
  height: 360px;
}

.hero--page h1 {
  font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.5rem);
}

/* --------------------------------------------------------------------------
   Doors — "Where are you now?"
   -------------------------------------------------------------------------- */
.doors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
}

.door {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--abyss-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t-colour);
}

.door:hover {
  border-color: var(--amber);
}

.door__media {
  height: 190px;
  overflow: hidden;
}

.door__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-image);
}

.door:hover .door__media img {
  transform: scale(1.03);
}

.door__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  flex: 1;
}

.door__body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.door__body p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--foam-muted);
}

.door__foot {
  margin-top: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foam);
}

/* Card titles are links, but should not read as underlined body links */
.door__body h3 a,
.trip__body h3 a,
.card__body h3 a {
  text-decoration: none;
  color: inherit;
}

.door:hover .door__body h3 a,
.card:hover .card__body h3 a {
  color: var(--amber);
}

/* Stretched anchor makes the whole card clickable */
.stretched::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  border-top: 1px solid var(--rule);
}

.stat-strip__item {
  padding: 26px var(--gap-col) 0;
}

.stat-strip__item:first-child {
  padding-left: 0;
}

.stat-strip__item:last-child {
  padding-right: 0;
}

.stat-strip__value {
  display: block;
  font-size: 2.125rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--foam);
}

.stat-strip__label {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--foam-faint);
}

/* --------------------------------------------------------------------------
   Course / dated rows
   -------------------------------------------------------------------------- */
.row {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr 150px 190px;
  gap: var(--gap-col);
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  transition: background var(--t-colour);
}

.row:last-child {
  border-bottom: 1px solid var(--rule);
}

.row:hover {
  background: rgb(240 162 60 / 6%);
}

/* No-date variant: course then action */
.row--undated {
  grid-template-columns: 1fr 190px;
}

.row__date {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--amber);
}

.row__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--foam);
}

.row__note {
  font-size: 0.9375rem;
  color: var(--foam-faint);
}

.row__action {
  justify-self: end;
}

/* --------------------------------------------------------------------------
   Trips
   -------------------------------------------------------------------------- */
.trips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-card);
}

.trip {
  position: relative;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}

.trip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-image);
}

.trip:hover img {
  transform: scale(1.03);
}

.trip__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgb(5 22 30 / 88%) 100%);
}

.trip__body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
}

.trip__body .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.trip__body h3 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--foam);
}

/* --------------------------------------------------------------------------
   Cards (interior pages)
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: var(--gap-card);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
}

.card-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--abyss-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t-colour);
}

.card:hover {
  border-color: var(--amber);
}

.card__media {
  overflow: hidden;
}

.card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--t-image);
}

.card:hover .card__media img {
  transform: scale(1.03);
}

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card__body h3 {
  font-size: 1.5rem;
}

.card__body p {
  color: var(--foam-muted);
  font-size: 0.9375rem;
}

.card__meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.card__body .link-arrow,
.card__body .button {
  margin-top: auto;
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Feature rows (interior pages)
   -------------------------------------------------------------------------- */
.feature {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 3.75rem);
  align-items: center;
}

.feature + .feature {
  margin-top: var(--section-y);
}

@media (min-width: 850px) {
  .feature {
    grid-template-columns: 1fr 1fr;
  }

  .feature--flip .feature__media {
    order: 2;
  }
}

.feature__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--abyss-raised);
}

.feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--t-image);
}

.feature__media:hover img {
  transform: scale(1.03);
}

.feature__body h3 {
  margin-bottom: var(--space-s);
}

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

.feature__body .button-row {
  margin-top: var(--space-m);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.quote-grid {
  display: grid;
  gap: var(--gap-card);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  align-items: start;
}

.quote {
  background: var(--abyss-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.quote__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--foam-muted);
}

.quote__text::before {
  content: "“";
  font-size: 2.6rem;
  line-height: 0;
  vertical-align: -0.35em;
  color: var(--amber);
  margin-right: 0.1em;
}

.quote__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.quote__avatar {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--abyss-raised);
  border: 1px solid var(--rule);
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 700;
}

.quote__name {
  font-weight: 600;
  line-height: 1.3;
  color: var(--foam);
}

.quote__role {
  font-size: 0.8125rem;
  color: var(--foam-faint);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq {
  border-top: 1px solid var(--rule);
  max-width: 72ch;
}

.faq__item {
  border-bottom: 1px solid var(--rule);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  padding: var(--space-s) 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foam);
  cursor: pointer;
  list-style: none;
}

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

.faq__item summary::after {
  content: "";
  flex-shrink: 0;
  margin-right: 3px;
  width: 0.72rem;
  height: 0.72rem;
  border-right: 2.5px solid var(--amber);
  border-bottom: 2.5px solid var(--amber);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.22s var(--ease);
}

.faq__item[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq__answer {
  padding-bottom: var(--space-m);
  color: var(--foam-muted);
  max-width: 60ch;
}

/* --------------------------------------------------------------------------
   Tables (price lists)
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--abyss-raised);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 30rem;
}

.price-table caption {
  text-align: left;
  padding: var(--space-s) var(--space-m);
  font-weight: 700;
  border-bottom: 1px solid var(--rule);
}

.price-table th,
.price-table td {
  padding: 0.85rem var(--space-m);
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  color: var(--foam-muted);
}

.price-table thead th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foam-faint);
  background: rgb(238 244 244 / 4%);
  white-space: nowrap;
}

/* Every value cell in the body is a <td>; the row label is a
   <th scope="row">. Using `td + td` here missed the first value column,
   because its previous sibling is that th. */
.price-table tbody td,
.price-table thead th + th {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--foam);
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: rgb(240 162 60 / 6%);
}

.price-table th[scope="row"] {
  font-weight: 500;
  color: var(--foam);
}

.table-note {
  margin-top: var(--space-s);
  font-size: 0.875rem;
  color: var(--foam-faint);
}

.price-block {
  max-width: 54rem;
}

.price-block + .price-block {
  margin-top: var(--space-xl);
}

.price-block > h2 {
  font-size: var(--step-2);
  margin-bottom: var(--space-xs);
}

.price-block__intro {
  margin-bottom: var(--space-s);
  color: var(--foam-muted);
}

/* --------------------------------------------------------------------------
   Content blocks
   -------------------------------------------------------------------------- */
.prose > * + * {
  margin-top: var(--space-s);
}

.prose p,
.prose li {
  color: var(--foam-muted);
}

.prose h2,
.prose h3 {
  margin-top: var(--space-l);
  color: var(--foam);
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.prose a {
  color: var(--amber);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-top: var(--space-s);
}

.pill-list li {
  padding: 0.38rem 0.85rem;
  border-radius: var(--radius);
  background: var(--abyss-raised);
  border: 1px solid var(--rule);
  font-size: 0.875rem;
  color: var(--foam-muted);
}

.tick-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.tick-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--foam-muted);
}

.tick-list li::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: 700;
  color: var(--amber);
  line-height: 1.6;
}

.tick-list--cross li::before {
  content: "✕";
  color: var(--foam-faint);
}

.facts {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--abyss-raised);
}

.facts__row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 12rem) 1fr;
  gap: var(--space-s);
  padding: 0.8rem var(--space-m);
  border-bottom: 1px solid var(--rule);
}

.facts__row:last-child {
  border-bottom: none;
}

.facts dt {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foam);
}

.facts dd {
  margin: 0;
  color: var(--foam-muted);
}

.steps {
  display: grid;
  gap: var(--gap-card);
  counter-reset: step;
  list-style: none;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.step {
  counter-increment: step;
  background: var(--abyss-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--amber);
  color: var(--abyss);
  font-weight: 700;
  margin-bottom: var(--space-s);
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.4rem;
}

.step p,
.step li {
  color: var(--foam-muted);
  font-size: 0.9375rem;
}

.step ul {
  padding-left: 1.1rem;
  margin-top: 0.4rem;
}

/* Callout — amber-tinted on the dark ground, replacing the old cream panel */
.callout {
  padding: 24px;
  border-radius: var(--radius);
  background: rgb(240 162 60 / 8%);
  border: 1px solid rgb(240 162 60 / 28%);
  color: var(--foam-muted);
}

.callout h3 {
  color: var(--foam);
  margin-bottom: 0.5rem;
}

.callout p + p,
.callout .button-row {
  margin-top: var(--space-s);
}

.callout strong {
  color: var(--foam);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--abyss);
  border-top: 1px solid var(--rule);
  color: var(--foam-faint);
  padding: var(--section-y) var(--gutter) var(--space-m);
  margin-top: auto;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber);
}

.footer-grid {
  display: grid;
  gap: var(--space-l);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.site-footer h2 {
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--foam);
  margin-bottom: 0.4rem;
}

.site-footer h3 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-s);
}

.footer-tagline {
  font-size: 0.9375rem;
  max-width: 28ch;
}

.footer-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.site-footer address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  gap: 0.4rem;
  margin-top: var(--space-s);
  font-size: 0.9375rem;
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-m);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  justify-content: space-between;
  font-size: 0.8125rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--space-m);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.footer-badge img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: var(--space-l);
  align-items: start;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-list {
  display: grid;
  gap: var(--space-s);
  list-style: none;
  padding: 0;
  margin-top: var(--space-m);
}

.contact-list li {
  display: flex;
  gap: var(--space-s);
  align-items: flex-start;
  padding: var(--space-s) var(--space-m);
  background: var(--abyss-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.contact-list svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.22rem;
  color: var(--amber);
}

.contact-list li > div {
  display: grid;
  gap: 0.1rem;
}

.contact-list__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foam-faint);
}

.contact-list__value {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foam);
}

.contact-list__value a {
  text-decoration: none;
}

.contact-list__value a:hover {
  text-decoration: underline;
}

.contact-list address {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--foam);
}

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

.text-centre {
  text-align: center;
}

.mt-m {
  margin-top: var(--space-m);
}

.mt-l {
  margin-top: var(--space-l);
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
}

.media-frame img {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Responsive — reusing the existing breakpoints: 1100, 1040, 850, 640, 560, 420
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .doors {
    grid-template-columns: repeat(2, 1fr);
  }

  .row {
    grid-template-columns: 150px 1fr 190px;
  }

  .row__note {
    display: none;
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-flex;
    order: 4;
  }

  .header-phone {
    display: none;
  }

  .header-cta {
    order: 3;
    margin-left: auto;
  }

  .site-header__inner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .primary-nav {
    order: 5;
    flex-basis: 100%;
    margin-right: 0;
    display: none;
    padding-bottom: var(--space-s);
  }

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

  .site-header:has(.primary-nav.is-open) {
    border-bottom-color: var(--rule);
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .primary-nav__link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--rule);
  }

  .primary-nav__phone {
    display: block;
    padding: 0.85rem 0 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--amber);
    text-decoration: none;
  }
}

@media (min-width: 1041px) {
  .primary-nav__phone {
    display: none;
  }
}

@media (max-width: 850px) {
  .doors,
  .trips {
    grid-template-columns: 1fr;
  }

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

  .stat-strip__item {
    padding: 26px 0 0;
  }

  .stat-strip__item:nth-child(n + 3) {
    padding-top: 22px;
  }

  .head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .head-row h2 {
    max-width: none;
  }

  .head-row__note {
    text-align: left;
    max-width: none;
  }

  .hero {
    height: auto;
    padding: 64px 0;
  }

  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgb(5 22 30 / 72%) 0%,
      rgb(5 22 30 / 62%) 50%,
      rgb(5 22 30 / 88%) 100%
    );
  }

  .hero--page {
    height: auto;
  }

  /* Stacked block — never a horizontally scrolling table */
  .row,
  .row--undated {
    display: block;
    padding: 18px 0;
  }

  .row__date,
  .row__note {
    display: inline;
  }

  .row__note {
    margin-left: 0.4rem;
  }

  .row__note::before {
    content: "· ";
  }

  .row__title {
    margin-top: 6px;
  }

  .row__action {
    display: block;
    margin-top: 14px;
  }

  .row__action .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  /* Keep brand, pill and toggle on one line */
  .header-cta__suffix {
    display: none;
  }

  .header-cta .button {
    padding: 10px 18px;
  }

  .trip__body {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .trip__body h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 560px) {
  .price-table {
    font-size: 0.875rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.7rem var(--space-s);
  }

  .facts__row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .hero__inner .button-row .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip__item {
    padding-top: 20px;
  }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .hero__media,
  .hero__scrim,
  .trip__scrim {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    height: auto;
    color: #000;
    padding-block: 1rem;
  }

  .faq__answer {
    display: block;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}
