/* ── Shell ─────────────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band { padding-block: var(--s-10); background: var(--paper); }
.band--light { background: var(--paper-2); }
.band--dark { background: var(--navy); color: var(--foam); }
.band--deepest { background: var(--abyss); color: var(--foam); }
.band--dark .h2, .band--deepest .h2 { color: var(--foam); }
.band--deepest .eyebrow { color: var(--cyan); }

.sec-head { max-width: 46rem; margin-bottom: var(--s-8); }
.sec-head .eyebrow { margin-bottom: var(--s-4); }
.sec-head .h2 { margin-bottom: var(--s-4); }

/* ── Header ────────────────────────────────────────────────────────────────
   Held offscreen over the opening screen, then slides down once you start
   scrolling — see src/js/intro.js.
   -------------------------------------------------------------------------- */
.head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  color: var(--foam);
  background: rgba(6, 33, 46, 0.9);
  border-bottom: 1px solid var(--rule-dark-2);
  transition: transform 0.55s var(--ease-out), background var(--dur) var(--ease);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .head {
    background: rgba(6, 33, 46, 0.7);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
  }
}

/* `headroom` is set by intro.js, so with no script — or with reduced motion —
   the bar is simply present from the start rather than permanently offscreen. */
.headroom .head { transform: translateY(-100%); }
.headroom .head.is-shown { transform: none; }
.head__in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: calc(var(--gutter) + var(--frame));
  height: var(--head-h);
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 1.5rem; height: 1.5rem; color: var(--cyan); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav { display: none; gap: clamp(1rem, 2vw, 2.1rem); }
.nav a {
  font-family: var(--display);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--foam-2);
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav a:hover { color: var(--foam); border-bottom-color: var(--cyan); }

.head__act { display: flex; align-items: center; gap: var(--s-4); }
.lang {
  font-family: var(--mono);
  font-size: var(--t-xs);
  letter-spacing: var(--track-mono);
  text-decoration: none;
  color: var(--foam-2);
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-pill);
  padding: 0.32rem 0.62rem;
  line-height: 1;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.lang:hover { color: var(--foam); border-color: var(--cyan); }
.head__tel { display: none; }

@media (min-width: 64rem) {
  .nav { display: flex; }
  .head__tel {
    display: inline-block;
    font-family: var(--mono);
    font-size: var(--t-xs);
    letter-spacing: var(--track-mono);
    text-decoration: none;
    color: var(--foam-2);
  }
  .head__tel:hover { color: var(--cyan); }
}

/* The header is fixed, so anything that overruns it is clipped rather than
   scrolled — it has to be made to fit at the narrow end instead. */
@media (max-width: 30rem) {
  :root { --track-hero: 0.05em; }
  .expand__title, .expand__content { padding-inline: var(--gutter); }
  .head__in { gap: var(--s-3); padding-inline: var(--gutter); }
  .head__act { gap: var(--s-3); }
  .brand { gap: 0.45rem; }
  .brand__mark { width: 1.3rem; height: 1.3rem; }
  .brand__name { font-size: 0.875rem; letter-spacing: 0.08em; }
  .lang { padding: 0.28rem 0.48rem; }
  .head__act .btn--sm { padding: 0.6em 0.9em; font-size: var(--t-xxs); }
}
/* Below this the wordmark has to go; the mark alone carries it. */
@media (max-width: 22rem) {
  .brand__name { display: none; }
}

/* ── Trip cards ────────────────────────────────────────────────────────── */
.cards { display: grid; gap: var(--s-5); }
@media (min-width: 46rem) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72rem) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  border: 1px solid var(--rule-light-2);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--lift);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--lift-2); }
.card--featured { border-color: var(--cyan); }

.card__media { position: relative; }
.card__media .shot { aspect-ratio: 4 / 3; border: 0; border-radius: 0; }

.card__flag {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  background: var(--cyan);
  color: var(--abyss);
  font-family: var(--display);
  font-size: var(--t-xxs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
}
.card__hours {
  position: absolute;
  top: var(--s-3); right: var(--s-3);
  background: rgba(6, 33, 46, 0.78);
  color: var(--foam);
  font-family: var(--mono);
  font-size: var(--t-xs);
  letter-spacing: var(--track-mono);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
}

.card__body { padding: var(--s-5); display: grid; gap: var(--s-3); align-content: start; }
.card__tier {
  font-family: var(--mono);
  font-size: var(--t-xxs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--ink-3);
}
.card__title { color: var(--ink); }
.card__route-label {
  display: block;
  font-family: var(--mono);
  font-size: var(--t-xxs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.25rem;
}
.card__route-line { font-family: var(--mono); font-size: var(--t-xs); line-height: 1.65; color: var(--sea); }
.card__text { font-size: var(--t-sm); color: var(--ink-2); text-wrap: pretty; }

.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
  padding: var(--s-4) var(--s-5) var(--s-5);
  border-top: 1px solid var(--rule-light-2);
}
.card__price { font-family: var(--display); font-size: 1.65rem; font-weight: 300; line-height: 1; color: var(--ink); }
.card__from {
  display: block;
  font-family: var(--mono);
  font-size: var(--t-xxs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.15rem;
}
.card__from:empty { display: none; }
.card__cur { color: var(--ink-3); margin-left: 0.15rem; font-size: 0.72em; }

.cards__inc { margin-top: var(--s-6); font-family: var(--mono); font-size: var(--t-sm); color: var(--ink-2); }
.cards__inc-label {
  display: block;
  font-size: var(--t-xxs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.3rem;
}
.cards__note { margin-top: var(--s-3); font-size: var(--t-xs); color: var(--ink-3); }

/* ── Routes ────────────────────────────────────────────────────────────── */
.routes { display: grid; gap: var(--s-7); }
@media (min-width: 64rem) {
  .routes {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
    grid-template-areas:
      "copy   chart"
      "panels chart"
      "foot   chart";
    column-gap: clamp(2.5rem, 5vw, 5rem);
    row-gap: var(--s-6);
    align-items: start;
  }
  .routes__copy   { grid-area: copy; }
  .routes__chart  { grid-area: chart; position: sticky; top: calc(var(--head-h) + 1.5rem); }
  .routes__panels { grid-area: panels; }
  .routes__foot   { grid-area: foot; }
}

.routes__copy > .eyebrow { margin-bottom: var(--s-4); }
.routes__copy > .h2 { margin-bottom: var(--s-4); }

.routes__list { display: grid; margin-top: var(--s-7); border-top: 1px solid var(--rule-dark-2); }
.route {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  width: 100%;
  padding: 0.95rem 0.25rem;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--rule-dark-2);
  text-align: left;
  cursor: pointer;
  color: var(--foam-2);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.route__name {
  font-family: var(--display);
  font-size: var(--t-h3);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--foam);
  transition: color var(--dur) var(--ease);
}
.route__data {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: var(--t-xs);
  letter-spacing: var(--track-mono);
  white-space: nowrap;
}
.route__dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }

.route:hover { color: var(--foam); padding-left: 0.6rem; }
.route[aria-selected="true"] {
  color: var(--cyan);
  padding-left: 0.6rem;
  box-shadow: inset 2px 0 0 var(--cyan);
}
.route[aria-selected="true"] .route__name { color: var(--cyan); }

.panel { display: grid; gap: var(--s-4); }
.panel[hidden] { display: none; }
.panel__kicker {
  font-family: var(--mono);
  font-size: var(--t-xxs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--cyan);
}
.panel__name { color: var(--foam); margin-top: calc(var(--s-4) * -1 + 0.15rem); }
.panel__body { color: var(--foam-2); max-width: 52ch; text-wrap: pretty; }

.panel__data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-4);
  padding-block: var(--s-4);
  border-top: 1px solid var(--rule-dark-2);
  border-bottom: 1px solid var(--rule-dark-2);
}
.panel__cell dt {
  font-family: var(--mono);
  font-size: var(--t-xxs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--foam-3);
  margin-bottom: 0.35rem;
}
.panel__cell dd { font-family: var(--mono); font-size: var(--t-base); letter-spacing: var(--track-mono); margin: 0; color: var(--foam); }
.panel__alt { color: var(--foam-3); font-size: var(--t-xs); }

.panel__light { color: var(--foam-2); font-size: var(--t-sm); max-width: 52ch; }
.panel__light-label {
  display: block;
  font-family: var(--mono);
  font-size: var(--t-xxs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--foam-3);
  margin-bottom: 0.3rem;
}

.routes__foot { display: grid; gap: var(--s-4); justify-items: start; }
.routes__note {
  font-size: var(--t-sm);
  color: var(--foam-3);
  max-width: 52ch;
  border-left: 1px solid var(--rule-dark);
  padding-left: var(--s-4);
}

/* ── The boat ──────────────────────────────────────────────────────────── */
.shots { display: grid; gap: var(--s-4); margin-bottom: var(--s-8); }
@media (min-width: 52rem) {
  /* video across the top, then the three stills in one row beneath it */
  .shots { grid-template-columns: repeat(3, 1fr); }
  .shot--wide { grid-column: 1 / -1; }
}

.boat__grid { display: grid; gap: var(--s-8); }
@media (min-width: 62rem) {
  .boat__grid { grid-template-columns: minmax(14rem, 19rem) 1fr; gap: var(--s-9); align-items: start; }
}

.specs { display: grid; }
.specs__label { margin-bottom: var(--s-3); }
.spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: 0.62rem;
  border-bottom: 1px solid var(--rule-light-2);
}
.spec__k { font-size: var(--t-sm); color: var(--ink-2); }
.spec__v { margin: 0; font-family: var(--mono); font-size: var(--t-sm); letter-spacing: var(--track-mono); white-space: nowrap; }

.draft {
  background: #fff;
  border: 1px solid var(--rule-light-2);
  border-radius: var(--r-card);
  padding: var(--s-5);
}
.draft__cap { display: block; margin-bottom: var(--s-3); }
.draft__svg { width: 100%; height: auto; }

/* ── Photo placeholders ────────────────────────────────────────────────────
   Sized and labelled so the page reads as finished before the photography
   arrives. See ASSETS.md for the shot list.
   -------------------------------------------------------------------------- */
.shot {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--rule-light-2);
  border-radius: var(--r-card);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 5%, rgba(63, 169, 214, 0.35), transparent 58%),
    radial-gradient(130% 110% at 88% 100%, rgba(6, 33, 46, 0.75), transparent 62%),
    linear-gradient(165deg, var(--sea) 0%, var(--navy) 48%, var(--abyss) 100%);
}
.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
}
.shot::after {
  content: attr(data-shot);
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-pill);
  background: rgba(6, 33, 46, 0.6);
  border: 1px solid var(--glass-line);
  font-family: var(--mono);
  font-size: var(--t-xxs);
  letter-spacing: 0.04em;
  color: var(--foam-2);
}
.shot--hero, .shot--intro { aspect-ratio: auto; }
.shot--hero::after, .shot--intro::after, .shot--band::after {
  left: auto;
  right: 0.85rem;
}
.shot--wide { aspect-ratio: 21 / 9; }
.shot--band { position: absolute; inset: 0; aspect-ratio: auto; border: 0; border-radius: 0; }

/* Once a real photograph goes in, drop the placeholder treatment. */
.shot--filled { background: var(--navy); }
.shot--filled::before, .shot--filled::after { content: none; }
.shot img { width: 100%; height: 100%; object-fit: cover; }

/* ── On board ──────────────────────────────────────────────────────────── */
.aboard-band {
  position: relative;
  isolation: isolate;
  padding-block: var(--s-10);
  background: var(--abyss);
  color: var(--foam);
  overflow: hidden;
}
.aboard-band__in { position: relative; z-index: 2; }
.aboard-band .h2 { color: var(--foam); }
.aboard-band .eyebrow { color: var(--cyan); }

.aboard { display: grid; gap: var(--s-6); }
@media (min-width: 46rem) { .aboard { grid-template-columns: repeat(2, 1fr); gap: var(--s-7); } }
@media (min-width: 74rem) { .aboard { grid-template-columns: repeat(3, 1fr); } }

.aboard__item { border-top: 1px solid var(--rule-dark); padding-top: var(--s-4); }
.aboard__t {
  font-family: var(--display);
  font-size: var(--t-h3);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--foam);
  margin-bottom: var(--s-2);
}
.aboard__b { font-size: var(--t-sm); color: var(--foam-2); text-wrap: pretty; }

/* ── Prices ────────────────────────────────────────────────────────────── */
.tiers {
  display: grid;
  gap: 1px;
  background: var(--rule-dark-2);
  border: 1px solid var(--rule-dark-2);
  border-radius: var(--r-card);
  overflow: hidden;
}
@media (min-width: 40rem) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66rem) { .tiers { grid-template-columns: repeat(4, 1fr); } }

.tier { background: var(--navy); padding: var(--s-6) var(--s-5); display: grid; gap: var(--s-2); align-content: start; }
.tier--featured { background: var(--navy-2); box-shadow: inset 0 2px 0 var(--cyan); }
.tier__hours {
  font-family: var(--mono);
  font-size: var(--t-xs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--cyan);
}
.tier__price {
  font-family: var(--display);
  font-size: var(--t-num);
  font-weight: 200;
  line-height: 1;
  color: var(--foam);
}
.tier__cur { font-size: 0.46em; color: var(--foam-3); margin-left: 0.2rem; }
.tier__per { font-family: var(--mono); font-size: var(--t-xs); letter-spacing: var(--track-mono); color: var(--foam-3); }
.tier--extra { background: var(--sea); }
.tier--extra .tier__price { color: var(--cyan); }

.tiers__note {
  margin-top: var(--s-4);
  font-size: var(--t-sm);
  color: var(--foam-3);
  max-width: 60ch;
}

.custom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-top: var(--s-7);
  padding-top: var(--s-6);
  border-top: 1px solid var(--rule-dark-2);
}
.custom__title { color: var(--foam); margin-bottom: var(--s-2); }
.custom__body { color: var(--foam-2); max-width: 52ch; font-size: var(--t-sm); }

/* ── Booking ───────────────────────────────────────────────────────────── */
.booking { display: grid; gap: var(--s-8); }
@media (min-width: 62rem) {
  .booking { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: var(--s-9); align-items: start; }
}
.booking__intro .eyebrow { margin-bottom: var(--s-4); }
.booking__intro .h2 { margin-bottom: var(--s-4); }

.direct { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--rule-dark); }
.direct__label {
  font-family: var(--mono);
  font-size: var(--t-xxs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s-2);
}
.direct__tel {
  font-family: var(--display);
  font-size: clamp(1.6rem, 1.1rem + 1.7vw, 2.3rem);
  font-weight: 200;
  letter-spacing: 0.04em;
  color: var(--foam);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.direct__tel:hover { border-bottom-color: var(--cyan); }
.direct__row { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-3); }
.direct__link {
  font-family: var(--mono);
  font-size: var(--t-sm);
  letter-spacing: var(--track-mono);
  color: var(--foam-2);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-dark);
  padding-bottom: 1px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.direct__link:hover { color: var(--cyan); border-bottom-color: var(--cyan); }

.form { display: grid; gap: var(--s-4); }
.form__row { display: grid; gap: var(--s-4); }
@media (min-width: 30rem) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--mono);
  font-size: var(--t-xxs);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--cyan);
}
.field__opt { color: var(--foam-3); text-transform: none; letter-spacing: 0; }

.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(232, 241, 245, 0.05);
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.85rem;
  color: var(--foam);
  font-size: var(--t-sm);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--foam-3); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(232, 241, 245, 0.3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(232, 241, 245, 0.09);
}
.field select option { background: var(--navy); color: var(--foam); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #E4685C; }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.85); cursor: pointer; }

.form__consent { font-size: var(--t-xs); color: var(--foam-3); }

.form__status { display: none; }
.form__status[data-state] {
  display: grid;
  gap: 0.3rem;
  padding: var(--s-4);
  border-radius: var(--r-sm);
  border: 1px solid var(--rule-dark);
}
.form__status[data-state="ok"]  { border-color: var(--cyan); background: rgba(63, 169, 214, 0.14); }
.form__status[data-state="err"] { border-color: #E4685C; background: rgba(228, 104, 92, 0.14); }
.form__status strong { font-family: var(--display); font-weight: 500; color: var(--foam); }
.form__status span { font-size: var(--t-sm); color: var(--foam-2); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.foot { background: var(--navy); color: var(--foam); padding-block: var(--s-8) var(--s-5); }
.foot__in { display: grid; gap: var(--s-6); }
@media (min-width: 44rem) { .foot__in { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66rem) { .foot__in { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-7); } }

.foot__col p { font-size: var(--t-sm); color: var(--foam-2); }
.foot__col a { text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease); }
.foot__col a:hover { border-bottom-color: var(--cyan); }
.foot__k {
  font-family: var(--mono) !important;
  font-size: var(--t-xxs) !important;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--cyan) !important;
  margin-bottom: var(--s-3);
}
.foot__brand {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--foam) !important;
}
.foot__boat { margin-top: var(--s-2); }
.foot__coord { font-family: var(--mono); font-size: var(--t-xxs) !important; margin-top: var(--s-2); letter-spacing: var(--track-mono); }
.foot__lang { margin-top: var(--s-3); }

.foot__base {
  margin-top: var(--s-7);
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule-dark-2);
  display: grid;
  gap: var(--s-2);
}
/* The registered company line is the one people actually go looking for,
   so it reads a step brighter than the copyright beneath it. */
.foot__legal { color: var(--foam-2) !important; }
.foot__base p { font-family: var(--mono); font-size: var(--t-xxs); color: var(--foam-3); letter-spacing: var(--track-mono); }

/* ── Video in the boat gallery ─────────────────────────────────────────────
   Takes the lead slot. The loop is layered over the still and cross-fades in
   only once it is genuinely playing, so a stall, a refused autoplay, or a
   visitor we deliberately never fetch it for all leave the photograph.
   -------------------------------------------------------------------------- */
.shot--video {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.shot--video img,
.shot__video { width: 100%; height: 100%; object-fit: cover; }

.shot__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.shot__video.is-playing { opacity: 1; }

/* An auto-starting loop needs a way to stop it. Revealed by video.js once the
   video is actually running — a control for something that isn't playing is
   worse than no control. */
.shot__toggle {
  position: absolute;
  right: var(--s-4);
  bottom: var(--s-4);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--glass-line);
  border-radius: var(--r-pill);
  background: rgba(6, 33, 46, 0.55);
  color: var(--foam);
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .shot__toggle {
    background: rgba(6, 33, 46, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.shot__toggle:hover { background: rgba(6, 33, 46, 0.75); border-color: var(--cyan); }
.shot__toggle[hidden] { display: none; }
.shot__toggle svg { width: 1.05rem; height: 1.05rem; }

/* One icon, two states. */
.shot__toggle .ic-play { display: none; }
.shot__toggle.is-paused .ic-pause { display: none; }
.shot__toggle.is-paused .ic-play { display: block; }
