/* ==========================================================================
   IsleConnect — V1 design system
   Version 1.0 · 18 August 2026
   Tokens sampled from the Vectis ONE deck. See BUILD-SPEC.md §2.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Colour */
  --navy:        #16243D;
  --navy-deep:   #0F1A2D;
  --navy-soft:   #23375A;
  --ivory:       #F4EFE7;
  --ivory-deep:  #EDE5D9;
  --gold:        #C89B3C;
  --gold-bright: #DDB45C;
  --teal:        #1F7A80;
  --teal-bright: #2C9AA1;
  --white:       #FFFFFF;
  --sage:        #4E9E7E;

  --ink:         var(--navy);
  --ink-muted:   #5A6579;
  --ink-on-dark: #F4EFE7;
  --ink-on-dark-muted: rgba(244, 239, 231, 0.72);
  --rule:        rgba(22, 36, 61, 0.14);
  --rule-dark:   rgba(244, 239, 231, 0.18);

  /* Type */
  --font-display: "Playfair Display", "Iowan Old Style", "Palatino Linotype",
                  Palatino, Georgia, "Times New Roman", serif;
  --font-body:    "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Roboto, "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.84rem, 0.80rem + 0.16vw, 0.94rem);
  --step-0:  clamp(1.06rem, 1.01rem + 0.22vw, 1.19rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.45vw, 1.55rem);
  --step-2:  clamp(1.55rem, 1.36rem + 0.90vw, 2.15rem);
  --step-3:  clamp(1.95rem, 1.60rem + 1.70vw, 3.05rem);
  --step-4:  clamp(2.45rem, 1.85rem + 2.90vw, 4.25rem);

  /* Space */
  --space-2xs: 0.35rem;
  --space-xs:  0.6rem;
  --space-sm:  1rem;
  --space-md:  1.6rem;
  --space-lg:  2.6rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --band-y:    clamp(3.6rem, 2rem + 6vw, 7rem);

  /* Layout */
  --wrap:      1180px;
  --wrap-text: 62ch;
  --radius:    6px;
  --radius-lg: 10px;

  --shadow-card: 0 1px 2px rgba(22,36,61,0.05), 0 10px 28px rgba(22,36,61,0.07);
  --shadow-card-hover: 0 2px 4px rgba(22,36,61,0.07), 0 20px 44px rgba(22,36,61,0.13);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 74px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

@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 {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 var(--space-sm);
  text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; }

p { margin: 0 0 var(--space-sm); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }

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

::selection { background: var(--gold); color: var(--navy); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus { left: 0; }

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

@media (min-width: 720px) {
  .wrap { width: min(100% - 5rem, var(--wrap)); }
}

.band { padding-block: var(--band-y); }
.band--ivory { background: var(--ivory); }
.band--ivory-deep { background: var(--ivory-deep); }
.band--navy { background: var(--navy); color: var(--ink-on-dark); }
.band--navy h1, .band--navy h2, .band--navy h3 { color: var(--ink-on-dark); }

.band__head { max-width: var(--wrap-text); margin-bottom: var(--space-lg); }
.band__head--centre { margin-inline: auto; text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-muted); }
.band--navy .lede { color: var(--ink-on-dark-muted); }

.measure { max-width: var(--wrap-text); }

.grid { display: grid; gap: var(--space-md); }
@media (min-width: 620px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 620px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 700;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--navy); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }

.btn--ghost-dark { background: transparent; color: var(--navy); border-color: rgba(22,36,61,0.35); }
.btn--ghost-dark:hover { background: rgba(22,36,61,0.06); color: var(--navy); border-color: var(--navy); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.btn-row--centre { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--teal);
}
.link-arrow::after { content: "→"; transition: transform 0.2s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Asset slots  (replace with <img>/<video> — see ASSET-MANIFEST.md)
   -------------------------------------------------------------------------- */

.media {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(22,36,61,0.045) 0 12px,
      rgba(22,36,61,0.075) 12px 24px
    ),
    linear-gradient(160deg, #DCD3C6 0%, #C6BCAD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.media > img, .media > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--1x1  { aspect-ratio: 1 / 1; }

.media__spec {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.6rem 0.9rem;
  margin: 1rem;
  background: rgba(244,239,231,0.9);
  border: 1px dashed rgba(22,36,61,0.4);
  border-radius: var(--radius);
  color: var(--navy);
  max-width: 88%;
}
.media__spec b { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }

.media--dark {
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.10) 0 14px, rgba(0,0,0,0.16) 14px 28px),
    linear-gradient(160deg, #2A3E5F 0%, #16243D 100%);
}
.media--dark .media__spec {
  background: rgba(22,36,61,0.78);
  border-color: rgba(244,239,231,0.45);
  color: var(--ink-on-dark);
}

.play-badge {
  position: absolute;
  right: var(--space-sm);
  bottom: var(--space-sm);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(22,36,61,0.82);
  color: var(--white);
  font-size: 0.9rem;
  padding-left: 3px;
  border: 1px solid rgba(255,255,255,0.35);
  z-index: 2;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header--over { background: transparent; }
.site-header--solid,
.site-header.is-stuck {
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 6px 24px rgba(0,0,0,0.18);
}

.site-header__inner {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
@media (min-width: 720px) {
  .site-header__inner { width: min(100% - 5rem, var(--wrap)); }
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ivory);
  text-decoration: none;
  white-space: nowrap;
}
.brand b { font-weight: 600; color: var(--gold); }
.brand:hover { color: var(--ivory); }

.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: var(--space-md); }
}
.nav a {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink-on-dark);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }
.nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(244,239,231,0.45);
  color: var(--ink-on-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--navy);
  border-top: 1px solid var(--rule-dark);
  padding: var(--space-sm) 0 var(--space-md);
  z-index: 99;
  display: none;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--ink-on-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--rule-dark);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: var(--gold-bright); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(88svh, 780px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + var(--space-lg));
  padding-bottom: var(--space-xl);
  background: var(--navy);
  color: var(--ink-on-dark);
  overflow: hidden;
}
.hero--short { min-height: min(62svh, 560px); }

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .media { height: 100%; aspect-ratio: auto; }

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(15,26,45,0.94) 0%, rgba(15,26,45,0.72) 38%, rgba(15,26,45,0.28) 70%, rgba(15,26,45,0.45) 100%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 46rem; }
.hero h1 { color: var(--ivory); margin-bottom: var(--space-md); }
.hero__sub {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-on-dark-muted);
  max-width: 34rem;
  margin-bottom: var(--space-lg);
}

/* --------------------------------------------------------------------------
   8. Experience cards
   -------------------------------------------------------------------------- */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover, .card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card__media { position: relative; }
.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-md);
  flex: 1;
}
.card__cat {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.card__title { margin: 0; font-size: var(--step-1); }
.card__title a { color: var(--ink); text-decoration: none; }
.card:hover .card__title a { color: var(--teal); }
.card__line { color: var(--ink-muted); margin: 0; flex: 1; }
.card__cta { margin-top: var(--space-xs); }
.card__cta .btn { width: 100%; }

/* Whole-card click target, keyboard-accessible via the real link inside */
.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tag {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  background: var(--navy);
  color: var(--ivory);
  border: 1px solid rgba(244,239,231,0.35);
}
.tag--concept { background: var(--ivory); color: var(--navy); border-color: rgba(22,36,61,0.35); }

/* --------------------------------------------------------------------------
   9. Steps (Discover / Experience / Go)
   -------------------------------------------------------------------------- */

.steps { counter-reset: step; }
.step { border-top: 1px solid var(--rule-dark); padding-top: var(--space-md); }
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}
.step h3 { margin-bottom: var(--space-2xs); }
.step p { color: var(--ink-on-dark-muted); margin: 0; }

.band__close {
  margin-top: var(--space-xl);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.3;
  color: var(--ivory);
  max-width: 30ch;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   10. Audience columns
   -------------------------------------------------------------------------- */

.audience {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 2px solid var(--gold);
}
.audience h3 { margin-bottom: var(--space-2xs); }
.audience p { color: var(--ink-muted); flex: 1; }
.audience .link-arrow { margin-top: var(--space-xs); align-self: flex-start; }

/* --------------------------------------------------------------------------
   11. Trust panel
   -------------------------------------------------------------------------- */

.trust {
  background: var(--navy);
  color: var(--ink-on-dark);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-soft);
  padding: clamp(1.8rem, 1rem + 3vw, 3.4rem);
}
.trust h2 { color: var(--ivory); }
.trust p { color: var(--ink-on-dark-muted); max-width: var(--wrap-text); }

.ticks {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}
@media (min-width: 700px) { .ticks { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); } }
.ticks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--ivory);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--rule-dark);
}
.ticks li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  font-size: 1.1em;
}

/* --------------------------------------------------------------------------
   12. Invitation examples
   -------------------------------------------------------------------------- */

.example {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-md);
  border-left: 3px solid var(--teal);
}
.example h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; margin-bottom: var(--space-2xs); }
.example p { color: var(--ink-muted); margin: 0; }

/* --------------------------------------------------------------------------
   13. Closing band
   -------------------------------------------------------------------------- */

.closer {
  position: relative;
  background: var(--navy);
  color: var(--ink-on-dark);
  overflow: hidden;
  padding-block: clamp(4rem, 2rem + 8vw, 8rem);
}
.closer__media { position: absolute; inset: 0; opacity: 0.28; }
.closer__media .media { height: 100%; aspect-ratio: auto; align-items: flex-start; }
.closer__media .media__spec { margin-top: 1.2rem; }
.closer__inner { position: relative; z-index: 2; text-align: center; }
.closer h2 { color: var(--ivory); }
.closer p { color: var(--ink-on-dark-muted); max-width: 48ch; margin-inline: auto; margin-bottom: var(--space-lg); }

/* --------------------------------------------------------------------------
   14. Experience page
   -------------------------------------------------------------------------- */

.exp-section { padding-block: var(--band-y); }
.exp-section + .exp-section { border-top: 1px solid var(--rule); }
.exp-section h2 { font-size: var(--step-2); }

.exp-player {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.exp-player__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  color: var(--ink-on-dark-muted);
  font-size: var(--step--1);
  border-top: 1px solid var(--rule-dark);
}

.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.facts li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.1rem;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 620px) {
  .facts li { grid-template-columns: 10rem 1fr; gap: var(--space-md); align-items: baseline; }
}
.facts dt, .facts .facts__k {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.facts .facts__v { color: var(--ink); }

.sources { list-style: none; margin: 0; padding: 0; }
.sources li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: 0.97rem;
}
.sources li b { color: var(--ink); font-weight: 700; }

.contributor { display: grid; gap: var(--space-md); align-items: start; }
@media (min-width: 700px) { .contributor { grid-template-columns: 200px 1fr; gap: var(--space-lg); } }

.notice {
  background: var(--ivory-deep);
  border-left: 3px solid var(--gold);
  padding: var(--space-md);
  border-radius: var(--radius);
  color: var(--ink-muted);
  font-size: 0.97rem;
}
.notice b { color: var(--ink); }

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */

.form { display: grid; gap: var(--space-md); max-width: 34rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.97rem; }
.field .hint { font-size: var(--step--1); color: var(--ink-muted); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: var(--step-0);
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(22,36,61,0.28);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(31,122,128,0.25);
  outline-offset: 0;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: var(--ink-on-dark-muted);
  padding-block: var(--space-xl) var(--space-md);
  font-size: 0.97rem;
}
.site-footer h4 {
  color: var(--gold);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: var(--ink-on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--gold-bright); text-decoration: underline; }

.footer-cols { display: grid; gap: var(--space-lg); }
@media (min-width: 620px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }

.footer-bar {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--rule-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  justify-content: space-between;
  font-size: 0.88rem;
}
.footer-bar .brand { font-size: 1.15rem; }
.powered { color: var(--ink-on-dark-muted); letter-spacing: 0.02em; }
.footer-bar nav { display: flex; flex-wrap: wrap; gap: var(--space-md); }

/* --------------------------------------------------------------------------
   17. Breadcrumb
   -------------------------------------------------------------------------- */

.crumb {
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: var(--ink-on-dark-muted);
  margin-bottom: var(--space-sm);
}
.crumb a { color: var(--ink-on-dark-muted); text-decoration: none; }
.crumb a:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------------------
   18. Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .mobile-nav, .btn-row, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .band, .hero { padding-block: 1rem; }
}

/* --------------------------------------------------------------------------
   19. Video
   -------------------------------------------------------------------------- */

.video {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}
.video video { width: 100%; height: auto; display: block; }
.video__caption {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm) var(--space-md);
  line-height: 1.5;
  font-size: var(--step--1);
  color: var(--ink-on-dark-muted);
  border-top: 1px solid var(--rule-dark);
}
.video__caption b { color: var(--ivory); font-weight: 700; }

/* --------------------------------------------------------------------------
   20. Feature (large two-up flagship blocks)
   -------------------------------------------------------------------------- */

.features { display: grid; gap: var(--space-xl); }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); } }

.feature { display: flex; flex-direction: column; gap: var(--space-md); }
.feature__body { display: flex; flex-direction: column; gap: var(--space-xs); flex: 1; }
.feature h3 { font-size: var(--step-2); margin: 0; }
.feature__lead { color: var(--ink-muted); }
.band--navy .feature__lead { color: var(--ink-on-dark-muted); }
.feature__stops {
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.7;
}
.feature .btn-row { margin-top: var(--space-sm); }

/* --------------------------------------------------------------------------
   21. Story nodes (Explore Ryde grid)
   -------------------------------------------------------------------------- */

.nodes { display: grid; gap: var(--space-md); }
@media (min-width: 560px) { .nodes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .nodes { grid-template-columns: repeat(3, 1fr); } }

.node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-md);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.node:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.node h3 { font-size: var(--step-1); margin: 0; }
.node h3 a { color: var(--ink); text-decoration: none; }
.node h3 a::after { content: ""; position: absolute; inset: 0; }
.node:hover h3 a { color: var(--teal); }
.node p { color: var(--ink-muted); margin: 0; }
.node__meta {
  margin-top: auto;
  padding-top: var(--space-sm);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.node--soon { border-top-color: rgba(22,36,61,0.2); background: rgba(255,255,255,0.55); box-shadow: none; }
.node--soon:hover { transform: none; box-shadow: none; }
.node--soon h3 { color: var(--ink-muted); }
.node--soon .node__meta { color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   22. Trail route
   -------------------------------------------------------------------------- */

.route { list-style: none; margin: 0; padding: 0; }
.route > li {
  position: relative;
  padding: 0 0 var(--space-lg) 3.2rem;
  border-left: 2px solid var(--rule);
}
.route > li:last-child { border-left-color: transparent; padding-bottom: 0; }
.route > li[data-stop="?"]::before { background: var(--ivory-deep); color: var(--ink-muted); border: 1px solid var(--rule); }
.route > li::before {
  content: attr(data-stop);
  position: absolute;
  left: -1.05rem;
  top: 0;
  width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}
.route h3 { font-size: var(--step-1); margin: 0 0 var(--space-2xs); }
.route h3 a { color: var(--ink); text-decoration: none; }
.route h3 a:hover { color: var(--teal); }
.route p { color: var(--ink-muted); margin: 0; }
.route__soon {
  display: inline-block;
  margin-top: var(--space-2xs);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   23. Benefit blocks
   -------------------------------------------------------------------------- */

.benefit { padding-top: var(--space-md); border-top: 2px solid var(--gold); }
.benefit h3 { font-size: var(--step-1); margin-bottom: var(--space-2xs); }
.benefit p { color: var(--ink-muted); margin: 0; }
.band--navy .benefit p { color: var(--ink-on-dark-muted); }

/* --------------------------------------------------------------------------
   24. Beyond (future pipeline) — deliberately quieter
   -------------------------------------------------------------------------- */

.beyond { display: grid; gap: var(--space-md); }
@media (min-width: 700px) { .beyond { grid-template-columns: repeat(3, 1fr); } }
.beyond__item {
  padding: var(--space-md);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: transparent;
}
.beyond__item h3 {
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 700;
  margin-bottom: var(--space-2xs);
}
.beyond__item p { color: var(--ink-muted); font-size: 0.97rem; margin: 0; }

/* Full-bleed hero/closer imagery must cover, not letterbox. */
.hero__media img,
.hero__media video,
.closer__media img,
.closer__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   25. Brand mark
   -------------------------------------------------------------------------- */

.brand { gap: 0.55rem; align-items: center; }
.brand__mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
}
.footer-bar .brand__mark { width: 30px; height: 30px; flex-basis: 30px; }

/* --------------------------------------------------------------------------
   26. Nearby — story to business
   -------------------------------------------------------------------------- */

.nearby {
  display: grid;
  gap: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .nearby { grid-template-columns: 1fr auto; align-items: center; } }
.nearby h3 { font-size: var(--step-1); margin: 0 0 var(--space-2xs); }
.nearby p { color: var(--ink-muted); margin: 0; }
.nearby__kind {
  display: block;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2xs);
}

/* --------------------------------------------------------------------------
   27. Transcript
   -------------------------------------------------------------------------- */

.transcript {
  margin-top: var(--space-md);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
}
.transcript > summary {
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  font-weight: 700;
  list-style: none;
}
.transcript > summary::-webkit-details-marker { display: none; }
.transcript > summary::before { content: "▸ "; color: var(--gold); }
.transcript[open] > summary::before { content: "▾ "; }
.transcript__body { padding: 0 var(--space-md) var(--space-md); }
.transcript__body p {
  color: var(--ink-muted);
  border-left: 2px solid var(--rule);
  padding-left: var(--space-sm);
  margin-bottom: var(--space-xs);
}

/* --------------------------------------------------------------------------
   28. Illustrative stat row (partner value, clearly labelled as an example)
   -------------------------------------------------------------------------- */

.stats { display: grid; gap: var(--space-md); margin-top: var(--space-md); }
@media (min-width: 620px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat { padding-top: var(--space-sm); border-top: 1px solid var(--rule); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--gold);
  font-weight: 600;
}
.stat span { display: block; color: var(--ink-muted); margin-top: var(--space-2xs); font-size: 0.97rem; }

/* ==========================================================================
   IsleConnect design language — five recognisable behaviours
   1 Then/Now   2 Story thread   3 Evidence marks
   4 Place typography            5 Go somewhere next
   ========================================================================== */

/* --------------------------------------------------------------------------
   29. Then / Now — the signature interaction
   -------------------------------------------------------------------------- */

.thennow { position: relative; overflow: hidden; }
.thennow__plate { position: absolute; inset: 0; }
.thennow__plate img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* The historic plate sits beneath and is revealed on press. */
.thennow__plate--then {
  opacity: 0;
  transition: opacity 620ms var(--ease);
  will-change: opacity;
}
.thennow.is-revealed .thennow__plate--then { opacity: 1; }

/* A hairline sweeps across as the past arrives — the same engraved stroke
   as the story thread, used as a transition rather than a decoration. */
.thennow__sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,155,60,0) 44%,
    rgba(200,155,60,0.55) 50%,
    rgba(200,155,60,0) 56%,
    transparent 100%);
  background-size: 260% 100%;
  background-position: 130% 0;
  opacity: 0;
  transition: background-position 700ms var(--ease), opacity 200ms linear;
}
.thennow.is-revealed .thennow__sweep { opacity: 1; background-position: -30% 0; }

.thennow__hold {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(1rem, 3vw, 2.2rem);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(244,239,231,0.45);
  background: rgba(15,26,45,0.6);
  backdrop-filter: blur(6px);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.thennow__hold:hover { background: rgba(15,26,45,0.82); border-color: var(--gold); }
.thennow__hold::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200,155,60,0.55);
  animation: hold-pulse 2.4s var(--ease) infinite;
}
@keyframes hold-pulse {
  0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(200,155,60,0.5); }
  35%           { box-shadow: 0 0 0 8px rgba(200,155,60,0); }
}

/* Card-scale variant */
.thennow--card { border-radius: var(--radius-lg); aspect-ratio: 16/9; }
.thennow--card .thennow__hold { bottom: 0.9rem; font-size: 0.72rem; padding: 0.45rem 0.85rem; }

@media (prefers-reduced-motion: reduce) {
  .thennow__plate--then { transition: none; }
  .thennow__sweep { display: none; }
  .thennow__hold::before { animation: none; }
}

/* --------------------------------------------------------------------------
   30. The story thread — an engraved line that connects place to place
   -------------------------------------------------------------------------- */

.thread {
  display: block;
  width: 100%;
  height: clamp(56px, 7vw, 104px);
  overflow: visible;
  color: rgba(22,36,61,0.30);
}
.band--navy .thread, .closer .thread { color: rgba(244,239,231,0.34); }

.thread path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 1400);
  stroke-dashoffset: var(--len, 1400);
  transition: stroke-dashoffset 1400ms cubic-bezier(0.33, 0.9, 0.4, 1);
}
.thread.is-drawn path { stroke-dashoffset: 0; }
.thread circle { fill: var(--gold); opacity: 0; transition: opacity 500ms 900ms linear; }
.thread.is-drawn circle { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .thread path { stroke-dashoffset: 0; transition: none; }
  .thread circle { opacity: 1; transition: none; }
}

/* --------------------------------------------------------------------------
   31. Evidence marks — provenance as visual language, not metadata
   -------------------------------------------------------------------------- */

.marks { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; list-style: none; }
.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem 0.28rem;
  border: 1px solid rgba(22,36,61,0.22);
  border-radius: 2px;
  color: var(--ink-muted);
  background: transparent;
  white-space: nowrap;
}
.mark::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}
.mark--source   { color: #3F6B57; border-color: rgba(78,158,126,0.5); }
.mark--recon    { color: #8A6A24; border-color: rgba(200,155,60,0.55); }
.mark--archive  { color: #2C5A5E; border-color: rgba(31,122,128,0.45); }
.mark--spot     { color: var(--navy); border-color: rgba(22,36,61,0.4); }

.band--navy .mark, .hero .mark, .closer .mark {
  color: var(--ink-on-dark-muted);
  border-color: rgba(244,239,231,0.32);
}
.band--navy .mark--recon, .hero .mark--recon, .closer .mark--recon { color: var(--gold-bright); border-color: rgba(221,180,92,0.5); }

/* --------------------------------------------------------------------------
   32. Place typography — location names used as landscape
   -------------------------------------------------------------------------- */

.placename {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 12vw, 11rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(22,36,61,0.16);
  margin: 0;
  pointer-events: none;
  user-select: none;
}
.band--navy .placename, .closer .placename { -webkit-text-stroke-color: rgba(244,239,231,0.16); }
.placename--solid { color: var(--navy); -webkit-text-stroke: 0; opacity: 0.07; }

.placeband {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-lg);
}
.placeband__names {
  display: flex;
  gap: clamp(1.5rem, 5vw, 4rem);
  white-space: nowrap;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   33. Editorial rhythm — asymmetric story grid, breaking the three-card tell
   -------------------------------------------------------------------------- */

.stories { display: grid; gap: var(--space-md); }
@media (min-width: 780px) {
  .stories {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md) var(--space-lg);
  }
  .stories > .story--lead  { grid-column: span 4; }
  .stories > .story--sub   { grid-column: span 2; }
  .stories > .story--frag  { grid-column: span 2; }
}

.story {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.story__media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ivory-deep); }
.story__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16/9; }
.story--sub .story__media img { aspect-ratio: 4/3; }
.story h3 { margin: 0; font-size: var(--step-1); }
.story--lead h3 { font-size: var(--step-2); }
.story h3 a { color: var(--ink); text-decoration: none; }
.story h3 a::after { content: ""; position: absolute; inset: 0; }
.story:hover h3 a { color: var(--teal); }
.story p { color: var(--ink-muted); margin: 0; }

/* Fragments — the in-development entries, set like an archive catalogue */
.story--frag {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--rule);
  gap: var(--space-2xs);
}
.story--frag h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; }
.story--frag h3 a { color: var(--ink-muted); }
.story--frag:hover h3 a { color: var(--navy); }
.story--frag p { font-size: 0.95rem; }
.story__state {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   34. Beyond — editorial, not boxes
   -------------------------------------------------------------------------- */

.beyond-list { list-style: none; margin: 0; padding: 0; }
.beyond-list li {
  display: grid;
  gap: var(--space-2xs);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .beyond-list li { grid-template-columns: minmax(0, 20rem) 1fr; gap: var(--space-lg); align-items: baseline; }
}
.beyond-list h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  margin: 0;
}
.beyond-list p { color: var(--ink-muted); margin: 0; }

/* --------------------------------------------------------------------------
   35. Go somewhere next — the onward place emerges
   -------------------------------------------------------------------------- */

.onward { position: relative; }
.onward__lead {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.onward__lead em { font-style: normal; color: var(--gold); }

/* Hero then/now wiring — the media layer must not trap the hold button
   beneath the scrim, so it deliberately creates no stacking context. */
.hero__media { z-index: auto; }
.hero__media .thennow { position: absolute; inset: 0; height: 100%; }
.hero__media .thennow__plate img { height: 100%; }
.thennow__hold { z-index: 6; }
.hero .thennow__hold {
  left: auto;
  transform: none;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
}
.hero .marks { margin-top: var(--space-md); }

/* Placeband: the names run past the edges on purpose, so fade them out
   rather than letting a word look chopped in half. */
.placeband {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.placename { font-size: clamp(2.4rem, 7.5vw, 6.5rem); }

/* Fragments read better two-up than three-with-an-orphan. */
@media (min-width: 780px) {
  .stories > .story--frag { grid-column: span 3; }
}

/* --------------------------------------------------------------------------
   36. Assurance line — the objection answered before it is raised
   -------------------------------------------------------------------------- */

.assure {
  margin-top: var(--space-sm);
  color: var(--ink-on-dark-muted);
  font-size: var(--step--1);
  letter-spacing: 0.01em;
}
.assure b {
  color: var(--gold);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   37. Promise — one display line carrying the page's whole argument
   -------------------------------------------------------------------------- */

.promise {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.15;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-md);
  margin-bottom: var(--space-lg);
  max-width: var(--wrap-text);
}

/* --------------------------------------------------------------------------
   38. Figure — a photograph carrying its own honesty note
   -------------------------------------------------------------------------- */

.figure { margin: 0; display: grid; gap: var(--space-md); }
@media (min-width: 780px) {
  .figure { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); align-items: center; }
}
.figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.figure__cap {
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--ink-muted);
  border-top: 1px solid var(--rule);
  padding-top: var(--space-sm);
}
.figure__cap b { color: var(--ink); }
.band--navy .figure__cap {
  color: var(--ink-on-dark-muted);
  border-top-color: rgba(255,255,255,0.18);
}
.band--navy .figure__cap b { color: var(--ivory); }

/* --------------------------------------------------------------------------
   39. Route strip — nine slots, four filled. The gaps are the honest part.
   -------------------------------------------------------------------------- */

.routestrip {
  overflow-x: auto;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  -webkit-overflow-scrolling: touch;
}
.routestrip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(7.5rem, 1fr);
  min-width: 100%;
}
.routestrip__stop {
  position: relative;
  padding: var(--space-lg) var(--space-xs) 0;
  text-align: center;
  font-size: var(--step--1);
}
/* The connecting line runs behind the markers, stopping at each end. */
.routestrip__stop::before {
  content: "";
  position: absolute;
  top: calc(var(--space-lg) - 1.35rem);
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule);
}
.routestrip__stop:first-child::before { left: 50%; }
.routestrip__stop:last-child::before { right: 50%; }
.routestrip__n {
  position: absolute;
  top: calc(var(--space-lg) - 2.05rem);
  left: 50%;
  transform: translateX(-50%);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ivory-deep);
  border: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 700;
}
.routestrip__stop.is-known .routestrip__n {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.routestrip__stop a { color: var(--ink); text-decoration: none; font-weight: 700; }
.routestrip__stop a:hover { color: var(--teal); }
.routestrip__tbc { color: var(--ink-muted); opacity: 0.75; }
.routestrip__note {
  font-size: var(--step--1);
  color: var(--ink-muted);
  margin-bottom: var(--space-lg);
}
.routestrip__note b { color: var(--ink); }
.routestrip__note a { color: var(--ink); }

/* --------------------------------------------------------------------------
   40. Placeband as route — the four names become stops on the same line
        the rest of the homepage has been following.
   -------------------------------------------------------------------------- */

.placeband--route .placeband__names {
  position: relative;
  align-items: flex-end;
  padding-top: 1.9rem;
}
/* The hairline runs behind the names at the height the incoming thread
   segment finishes at, so the trace appears to pass straight through. */
.placeband--route .placeband__names::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: -10vw;
  right: -10vw;
  height: 1px;
  background: rgba(22,36,61,0.30);
}
.placeband--route .placename { position: relative; }
.placeband--route .placename::before {
  content: "";
  position: absolute;
  top: -1.28rem;
  left: 50%;
  width: 6.8px;
  height: 6.8px;
  margin-left: -3.4px;
  border-radius: 50%;
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   41. Beyond Ryde — a glimpse of what else this could be, not a third
        product area. Deliberately the quietest thing on the page.
   -------------------------------------------------------------------------- */

.beyond-band { padding-block: calc(var(--band-y) * 0.62); }
.beyond-band .band__head { margin-bottom: var(--space-md); }
.beyond-band .band__head h2 {
  font-size: var(--step-1);
  color: var(--ink-muted);
  font-weight: 600;
}
.beyond-band .lede { font-size: var(--step-0); }
.beyond-band .beyond-list li { padding: var(--space-sm) 0; }
.beyond-band .beyond-list h3 {
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 700;
  color: var(--ink-muted);
}
.beyond-band .beyond-list p { font-size: 0.95rem; }
.beyond-band .btn { font-size: 0.85rem; padding: 0.6rem 1.1rem; }
