/* ==========================================================================
   Runways 2 Highways — design tokens
   Palette extracted directly from the RWY2HWY badge logo:
     navy   #002051  (badge border / deep sky)
     azure  #2089f7  (the "2" / accent glow)
     sky    #d8e8f8  (pale cloud highlight)
     steel  #aab4c2  (chrome lettering / metal trim)
   ========================================================================== */

:root {
  --navy: #002051;
  --navy-deep: #000f2c;
  --navy-soft: #123067;
  --azure: #2089f7;
  --azure-light: #5fb0ff;
  --sky: #d8e8f8;
  --steel: #aab4c2;
  --steel-dark: #7c8898;
  --ink: #0a1424;
  --ink-soft: #3c4a5c;
  --paper: #f6f9fc;
  --paper-alt: #eaf1f8;
  --white: #ffffff;
  --rule: #d7e1ea;
  --pro-green: #2f8f5c;
  --con-red: #b8483f;

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --max: 1180px;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(0, 15, 44, 0.35);
  --shadow-sm: 0 4px 10px -3px rgba(0, 15, 44, 0.4);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--azure); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--azure);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.02;
  margin: 0;
  letter-spacing: 0.01em;
  text-wrap: balance;
  color: var(--navy);
}

p { margin: 0 0 1rem; max-width: 62ch; }
.lede { font-size: 1.15rem; color: var(--ink-soft); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azure);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--azure);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--sky); }
.eyebrow.on-dark::before { background: var(--sky); }
.eyebrow a { color: var(--azure); text-decoration: underline; text-decoration-color: rgba(32, 137, 247, 0.45); text-underline-offset: 3px; }
.eyebrow a:hover { text-decoration-color: currentColor; }
.eyebrow.on-dark a { color: var(--azure-light); text-decoration-color: rgba(95, 176, 255, 0.55); }
.eyebrow .crumb-sep { opacity: 0.55; }
.eyebrow.on-dark { flex-wrap: wrap; row-gap: 0.25rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--azure); color: var(--navy-deep); font-weight: 700; box-shadow: 0 8px 20px -8px rgba(32, 137, 247, 0.6); }
.btn-primary:hover { background: var(--azure-light); }
.btn-ghost { background: transparent; border-color: var(--steel); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white);
}
.brand img { height: 46px; width: auto; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.brand-word small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--azure-light);
  font-weight: 400;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
nav.main-nav > *:not(:first-child):not(.btn-primary) {
  position: relative;
}
nav.main-nav > *:not(:first-child):not(.btn-primary)::before {
  content: "";
  position: absolute;
  left: -0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.05em;
  background: rgba(216, 232, 248, 0.28);
}
nav.main-nav a {
  color: var(--sky);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
nav.main-nav a:hover { color: var(--white); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--steel);
  border-radius: 8px;
  color: var(--white);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

/* Logbook dropdown (Runways / Highways) */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 0.4rem; }
.nav-dropdown-trigger::after {
  content: "";
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
  transition: transform 0.15s ease;
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  /* Sits flush against the trigger (top:100%, no translateY offset) on
     purpose: a gap here, even a small one, breaks the hover chain the
     instant the cursor crosses it, since CSS :hover stops matching the
     moment the pointer leaves every box in the chain — including during
     the trip from the trigger down into the menu. Only opacity animates. */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 16rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 20;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.8rem;
  border-radius: calc(var(--radius) - 6px);
  text-transform: none;
  letter-spacing: normal;
}
.nav-dropdown-menu a:hover { background: var(--paper-alt); }
.nav-dropdown-menu a strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav-dropdown-menu a span { font-family: var(--font-body); font-size: 0.8rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  nav.main-nav > *:not(:first-child):not(.btn-primary)::before {
    content: none;
  }
  nav.main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem 1.6rem;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: none;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-trigger::after { display: none; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0.5rem 0 0 1rem;
    margin-top: 0.2rem;
    border-left: 2px solid rgba(255,255,255,0.15);
  }
  .nav-dropdown-menu a { padding: 0.35rem 0; }
  .nav-dropdown-menu a strong { color: var(--white); font-size: 0.85rem; }
  .nav-dropdown-menu a span { color: var(--steel); font-size: 0.75rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% -10%, var(--navy-soft) 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 5.5rem 0 6rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(216,232,248,0.06) 78px 80px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  color: var(--white);
}
.hero h1 .accent { color: var(--azure-light); }
.hero .lede { color: var(--sky); max-width: 46ch; margin-top: 1.1rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.1rem; }
.hero-badge { justify-self: center; }
.hero-badge img { width: min(100%, 380px); filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45)); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-badge { order: -1; }
  .hero-badge img { width: 220px; }
}

/* ---------- Sections ---------- */
section { padding: 5.5rem 0; }
section.alt { background: var(--paper-alt); }
.section-head { max-width: 46rem; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.section-title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 1.1rem; }

/* Story */
.story-full { max-width: none; }
.story-cast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: stretch;
  margin-top: 2.2rem;
}
.story-cast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.crew-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}
.role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  display: block;
  margin-bottom: 0.35rem;
}
.crew-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.crew-card p { font-size: 0.92rem; margin-bottom: 0; color: var(--ink-soft); }
.crew-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.7rem;
  border: 2px solid var(--sky);
  box-shadow: var(--shadow-sm);
}

.crew-dogs {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.9rem;
  margin-top: 1.2rem;
  box-shadow: var(--shadow);
}
.crew-dogs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 5px);
  box-shadow: var(--shadow-sm);
}
.crew-dogs-caption p { font-size: 0.92rem; margin-bottom: 0; color: var(--ink-soft); }
.crew-dogs-caption h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }

.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .story-cast-row { grid-template-columns: 1fr; }
  .story-photo { min-height: 260px; }
  .crew-dogs { grid-template-columns: 6.5rem 1fr; }
}
@media (max-width: 700px) {
  .story-cast { grid-template-columns: 1fr; }
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.pillar {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.1rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(32,137,247,0.35), transparent 70%);
}
.pillar .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--azure-light);
  text-transform: uppercase;
}
.pillar h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 0.6rem 0 0.9rem;
}
.pillars .pillar p { color: var(--sky); font-size: 0.95rem; margin-bottom: 0; position: relative; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* Photo / rig section */
.rig-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  clear: both;
}
.rig-photo-sm { max-width: 420px; margin: 0; }
.rig-photo-md { max-width: 640px; margin: 0; }
.rig-photo-zoom img { transition: transform 0.35s ease; transform-origin: var(--zoom-origin, 50% 50%); }
.rig-photo-zoom:hover img { transform: scale(1.35); }
.rig-photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 1.6rem 0 2rem; clear: both; }
.rig-photo-pair figure { margin: 0; }
.rig-photo-pair img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
@media (max-width: 640px) { .rig-photo-pair { grid-template-columns: 1fr; } }

/* Trip write-up byline */
.byline { display: flex; align-items: center; gap: 0.8rem; margin: 0.8rem 0 1.4rem; }
.byline-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; border: 2px solid var(--white); box-shadow: var(--shadow-sm); }
.byline span { font-family: var(--font-mono); font-size: 0.9rem; color: var(--ink-soft); }

/* Flamingo rating scale (used to rate gear and services on trip write-ups) */
.flamingo-rating-block { margin: 2rem 0; text-align: center; }
.flamingo-rating { display: inline-flex; align-items: center; gap: 0.5rem; }
.flamingo-rating img { height: 56px; width: auto; flex: none; }
.flamingo-rating img.is-empty { opacity: 0.22; filter: grayscale(1); }
.flamingo-rating-label { font-family: var(--font-mono); font-size: 0.9rem; color: var(--ink-soft); margin-left: 0.6rem; }
button.flamingo-rating-link {
  display: inline-block;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
}
button.flamingo-rating-link:hover .flamingo-rating-label { text-decoration: underline; }
button.flamingo-rating-hint {
  display: block;
  margin: 0.5rem auto 0;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--azure);
  text-decoration: underline;
  text-underline-offset: 2px;
}
button.flamingo-rating-hint:hover { color: var(--navy); }

/* Flamingo rating info dialog */
dialog.flamingo-dialog {
  border: 0;
  padding: 2rem;
  width: min(92vw, 560px);
  max-width: none;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
dialog.flamingo-dialog[open] { display: block; }
dialog.flamingo-dialog::backdrop { background: rgba(0, 15, 44, 0.74); backdrop-filter: blur(3px); }
.flamingo-dialog-body { display: flex; gap: 1.4rem; align-items: flex-start; margin-bottom: 1.4rem; }
.flamingo-dialog-body .rating-explainer-icon { width: 76px; }
.flamingo-dialog-body h3 { margin-bottom: 0.8rem; }
.flamingo-dialog-body p { max-width: none; }
.flamingo-dialog-close { display: block; margin: 0 auto; }
@media (max-width: 560px) {
  dialog.flamingo-dialog { padding: 1.4rem; }
  .flamingo-dialog-body { flex-direction: column; align-items: center; text-align: left; }
}

/* Trip route map (Newfoundland hub page) */
.trip-intro { margin-bottom: 1.4rem; }
.page-body .trip-intro p { max-width: none; }
.trip-map-instructions {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}
.trip-map-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 45px -16px rgba(0, 15, 44, 0.45);
  margin: 0 auto 1.6rem;
  max-width: 980px;
}
#nl-map { width: 100%; height: 640px; }
.trip-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 0.9rem 1.1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.trip-map-legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trip-map-legend .swatch { display: inline-block; width: 22px; height: 0; border-top: 3px solid var(--azure); }
.trip-map-legend .swatch.detour { border-top: 3px solid #d64545; }
.trip-map-legend .swatch.dotted { border-top: 2px dotted var(--steel-dark); }
.stop-pin {
  background: var(--azure);
  color: var(--white);
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-mono);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.stop-pin:hover { transform: scale(1.35); }
.leaflet-popup-content-wrapper { border-radius: 8px; }
.leaflet-popup-content { font-family: var(--font-body); font-size: 0.88rem; margin: 10px 12px; }
.leaflet-popup-content a { color: var(--azure); }
.leaflet-tooltip.stop-tooltip {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  box-shadow: var(--shadow-sm);
}
.leaflet-tooltip.stop-tooltip::before { border-top-color: var(--navy); }

.trip-map-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.trip-map-list-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.trip-map-list-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.trip-map-list-n {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--white);
  background: var(--azure);
  border-radius: 999px;
  width: 1.6rem; height: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.trip-map-list-name { flex: 1; font-size: 0.92rem; }
.trip-map-list-item .trip-status { font-size: 0.62rem; padding: 0.35rem 0.65rem; }
@media (max-width: 640px) {
  #nl-map { height: 460px; }
}

/* Rating system explainer (About page) */
.rating-explainer { display: flex; gap: 1.8rem; align-items: flex-start; margin: 1.2rem 0 2rem; }
.rating-explainer-icon { width: 100px; height: auto; flex: none; }
.rating-scale { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.55rem; }
.rating-scale li { display: flex; align-items: center; gap: 0.7rem; color: var(--ink-soft); }
.rating-scale strong {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--white);
  background: var(--azure);
  border-radius: 999px;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
@media (max-width: 640px) { .rating-explainer { flex-direction: column; align-items: center; text-align: left; } }
.rig-caption {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
  margin-bottom: 1.4rem;
}

/* Checklist / signup */
.signup-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: 22px;
  padding: 3.2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.signup-panel h2,
.page-body .signup-panel h2 { color: var(--white); margin-top: 0; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.signup-panel .lede { color: var(--sky); }
.checklist-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
.checklist-card .doc-thumb {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}
.checklist-card .doc-thumb .icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--sky);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
}
.checklist-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.checklist-card p.small { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 1.1rem; }

form.signup-form { display: flex; flex-direction: column; gap: 0.7rem; }
form.signup-form input[type="email"],
form.signup-form input[type="text"] {
  padding: 0.75rem 0.9rem;
  border-radius: 9px;
  border: 1.5px solid var(--rule);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
form.signup-form .consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--ink-soft);
  cursor: pointer;
}
form.signup-form .consent input { margin-top: 0.15rem; accent-color: var(--azure); flex: none; }
form.signup-form[hidden] { display: none; }
.gate-sent { outline: none; }
.gate-sent h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.gate-sent p { font-size: 0.95rem; color: var(--ink); }
.cl-card div.cl-thumb img { transform: none; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin: 0; }
.form-status { font-size: 0.85rem; margin-top: 0.5rem; display: none; }
.form-status.ok { color: #1a7d3f; }
.form-status.err { color: #b3261e; }

@media (max-width: 900px) {
  .signup-panel { grid-template-columns: 1fr; padding: 2rem; }
}

/* Footer */
footer.site-footer {
  background: var(--navy-deep);
  color: var(--steel);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--sky);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-grid a { color: var(--steel); text-decoration: none; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }
.footer-brand p { color: var(--steel); font-size: 0.9rem; max-width: 34ch; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--steel-dark);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Disclosure ribbon (sitewide small note) */
.disclosure-note {
  background: var(--sky);
  color: var(--navy-soft);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-align: center;
  padding: 0.55rem 1rem;
}
.disclosure-note a { color: var(--navy); }

/* ---------- Simple content pages (about / legal) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 3rem;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero h1 + .eyebrow { margin-top: 1.1rem; margin-bottom: 0; }
.page-body { padding: 3.5rem 0 5rem; }
.page-body h2 {
  font-size: 1.4rem;
  margin: 2.2rem 0 0.8rem;
  color: var(--navy);
}
.page-body h2:first-child { margin-top: 0; }
.page-body p, .page-body li { color: var(--ink); max-width: 68ch; }
.page-body ul { padding-left: 1.3rem; }
.page-body .updated {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
mark.todo {
  background: #ffe9b3;
  color: #6b4a00;
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85em;
  font-weight: 700;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}
.about-photos img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.about-feature {
  display: grid;
  grid-template-columns: 1fr 19rem;
  gap: 2.5rem;
  align-items: center;
  margin: 2.6rem 0;
}
.about-feature figure { margin: 0; }
.about-feature img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-feature figcaption {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
  text-align: center;
}
@media (max-width: 760px) {
  .about-feature { grid-template-columns: 1fr; gap: 1.4rem; }
  .about-feature figure { width: 100%; max-width: 22rem; margin: 0 auto; }
}

.about-bio {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
}
.about-bio .bio-portrait {
  flex: none;
  width: 120px;  /* fallback before JS sizes it to match the bio text's height */
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sky);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 560px) {
  .about-bio { flex-direction: column; align-items: center; text-align: center; }
}

/* Trip list (Highways) */
.trip-list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0 2.5rem; }
.trip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.trip-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azure);
  display: block;
  margin-bottom: 0.35rem;
}
.trip-card-body h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.trip-card-body p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.95rem; max-width: 52ch; }
.trip-status {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-soft);
  background: var(--sky);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
@media (max-width: 640px) {
  .trip-card { flex-direction: column; align-items: flex-start; }
}

/* Build-status banner */
.build-banner {
  background: #ffe9b3;
  color: #6b4a00;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
}

/* ---------- Checklists: picker rows, cards, on-screen viewer ---------- */
.btn-sm { padding: 0.5rem 0.95rem; font-size: 0.76rem; }

.cl-pick {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--rule);
}
.cl-pick:last-of-type { border-bottom: 1px solid var(--rule); margin-bottom: 1.1rem; }
.cl-pick-label { flex: 1; font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.cl-pick-label small { display: block; font-weight: 400; font-size: 0.8rem; color: var(--ink-soft); }
.cl-more { font-size: 0.86rem; display: inline-block; margin-bottom: 1.3rem; }

.cl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin: 1.8rem 0 2.6rem;
}
.cl-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cl-thumb {
  display: block;
  background: var(--paper-alt);
  padding: 1.3rem 1.3rem 0;
  border-bottom: 1px solid var(--rule);
}
.cl-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 -2px 14px -4px rgba(0, 15, 44, 0.3);
  transition: transform 0.2s ease;
}
.cl-thumb:hover img { transform: translateY(-3px); }
.cl-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.cl-body h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.page-body .cl-body p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.cl-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: auto; }
@media (max-width: 760px) { .cl-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) {
  .cl-pick { flex-wrap: wrap; }
  .cl-pick-label { flex-basis: 100%; }
}

dialog.viewer {
  border: 0;
  padding: 0;
  width: min(100vw - 1.2rem, 1000px);
  max-width: none;
  height: calc(100dvh - 1.2rem);
  max-height: none;
  border-radius: var(--radius);
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
dialog.viewer[open] { display: flex; flex-direction: column; }
dialog.viewer::backdrop { background: rgba(0, 15, 44, 0.74); backdrop-filter: blur(3px); }
.viewer-bar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem 0.65rem 1.1rem;
  background: var(--navy);
  border-bottom: 3px solid var(--azure);
}
.viewer-title {
  flex: 1;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.viewer-bar .btn { flex: none; }
.viewer-bar button.btn-ghost { font-family: var(--font-mono); }
.viewer-body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
  background: #46536a;
  text-align: center;
}
.viewer-body img {
  display: inline-block;
  width: 100%;
  max-width: none;
  background: var(--white);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}
.viewer-body.zoomed img { width: 190%; }
@media (max-width: 560px) {
  .viewer-title { font-size: 0.95rem; }
  .viewer-bar .btn { padding: 0.45rem 0.7rem; font-size: 0.7rem; }
  .viewer-body { padding: 0.5rem; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.6rem; max-width: 40rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 9px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: normal;
  text-transform: none;
}
.contact-form textarea { resize: vertical; min-height: 9rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--azure); outline-offset: 1px; border-color: var(--azure); }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.contact-form .btn { align-self: flex-start; }
.contact-form[hidden] { display: none; }
.contact-sent { margin-top: 1.6rem; padding: 1.3rem 1.6rem; background: #e8f6ee; border: 1px solid #b9e2c8; border-left: 4px solid #1a7d3f; border-radius: var(--radius); outline: none; max-width: 40rem; }
.contact-sent[hidden] { display: none; }
.page-body .contact-sent p { margin-bottom: 0; }
.page-body .contact-sent h2 { margin-top: 0; }
.contact-aside {
  background: var(--paper-alt);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  margin-top: 1.6rem;
}
.page-body .contact-aside h2 { margin-top: 0; font-size: 1.2rem; }
.page-body .contact-aside p { font-size: 0.95rem; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 520px) {
  .contact-row { grid-template-columns: 1fr; }
}

/* Footer subscribe */
.footer-subscribe { margin-top: 0.2rem; }
.footer-fine { color: var(--steel-dark); font-size: 0.78rem; margin: 0.7rem 0 0; max-width: 30ch; }

/* Nav dropdown: inline "coming soon" flag for a not-yet-live section */
.nav-dropdown-menu a strong .soon {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure);
  background: var(--sky);
  padding: 0.15em 0.5em;
  border-radius: 999px;
  margin-left: 0.5em;
  vertical-align: middle;
}
@media (max-width: 860px) {
  .nav-dropdown-menu a strong .soon { background: rgba(32, 137, 247, 0.18); color: var(--azure-light); }
}

/* ---------- Gear reviews ---------- */
.gear-hero { margin: 2.2rem 0 0.7rem; }
.gear-hero img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.gear-hero-caption { font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-soft); margin: 0.8rem 0 0; text-align: center; }

.gear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin: 1.6rem 0 2.6rem;
}
.gear-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gear-card-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gear-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.gear-card-logo { align-self: flex-start; line-height: 0; }
.gear-card-logo img { height: 28px; width: auto; }
.gear-card .gear-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure);
}
.gear-card-body h3 { font-size: 1.1rem; margin: 0; }
.page-body .gear-card-body p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 0; }

.pillars-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 760px) { .gear-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .pillars-2 { grid-template-columns: 1fr; } }

/* Pillar as a clickable link (e.g. Gear page: Hitch & Tow -> jumps to the reviews) */
a.pillar {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
a.pillar .tag.tag-active { color: var(--white); background: var(--azure); padding: 0.15em 0.6em; border-radius: 999px; }

/* Featured pillar: small thumbnail + click-through hint */
.pillar-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(255, 255, 255, 0.18);
}
.pillar-cta {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--azure-light);
}
a.pillar:hover .pillar-cta { color: var(--white); }

/* External link labels on gear brand logos */
.gear-card-logo { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; }
.gear-card-logo .ext-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: var(--azure);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.gear-card-logo .ext-icon { width: 10px; height: 10px; flex: none; }
.gear-card-logo:hover .ext-link { text-decoration: underline; }

/* Let the review prose stretch the full column instead of the default measure cap */
.review-copy p { max-width: none; }

/* Review accordion: keeps a long gear review short until you open a section */
.review-copy { margin-top: 0.5rem; }
.review-section {
  border-top: 1px solid var(--rule);
  padding: 1.3rem 0;
}
.review-section:last-of-type { border-bottom: 1px solid var(--rule); margin-bottom: 2rem; }
.review-section summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.review-section summary::-webkit-details-marker { display: none; }
.review-section summary h2 { margin: 0; transition: color 0.15s ease; }
.review-section summary:hover h2 { color: var(--azure); }
.review-section summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--azure);
  flex: none;
}
.review-section[open] summary::after { content: "\2212"; }
.review-section[open] summary { margin-bottom: 0.9rem; }
.review-section > p { max-width: none; }

/* Pros and cons: two-up list, no color-coding, matches the +/- accordion marks */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin: 0.2rem 0 0.4rem; }
.pros-cons > div { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.pros-cons h3 { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel-dark); margin: 0 0 0.9rem; }
.pros-cons ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.pros-cons li { padding-left: 1.4rem; position: relative; max-width: none; }
.pros-cons .pros li::before { content: "+"; position: absolute; left: 0; top: 0; font-family: var(--font-mono); font-weight: 700; color: var(--pro-green); }
.pros-cons .cons li::before { content: "\2212"; position: absolute; left: 0.15rem; top: 0; font-family: var(--font-mono); font-weight: 700; color: var(--con-red); }
@media (max-width: 760px) { .pros-cons { grid-template-columns: 1fr; } }

/* Standout pull-quote for a review's key line */
.pull-quote {
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--azure);
  border-left: 3px solid var(--azure);
  padding-left: 1.1rem;
  margin: 0 0 1.1rem;
}
@media (max-width: 640px) { .pull-quote { font-size: 1.2rem; } }

/* Trip write-up prose: full-width paragraphs, photos spread through the piece */
.journal-copy p, .journal-copy li { max-width: none; }
.journal-copy h2 { clear: both; }
.rig-photo-float-right, .rig-photo-float-left {
  max-width: 380px;
  margin-bottom: 1.2rem;
}
.rig-photo-float-right { float: right; margin-left: 1.6rem; }
.rig-photo-float-left { float: left; margin-right: 1.6rem; }
.rig-photo-float-right .rig-caption, .rig-photo-float-left .rig-caption { padding: 0 0.9rem; }

/* Wide banner crop for the lead photo on a stop write-up */
.rig-photo-hero img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: 50% 32%; }
@media (max-width: 640px) { .rig-photo-hero img { aspect-ratio: 4 / 3; } }

/* "At a glance" fact card at the top of a stop write-up */
.spot-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.6rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
  margin: 1.8rem 0 2rem;
  clear: both;
}
.spot-card-map .rig-photo { box-shadow: none; border: 1px solid var(--rule); }
.spot-card-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); text-transform: uppercase; margin: 0 0 0.9rem; }
.spot-facts { display: grid; grid-template-columns: max-content 1fr; gap: 0.7rem 1.2rem; margin: 0; }
.spot-facts dt { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-dark); padding-top: 0.2rem; }
.spot-facts dd { margin: 0; font-size: 0.95rem; color: var(--ink); }
.spot-facts dd a { font-family: var(--font-mono); font-size: 0.8rem; }
@media (max-width: 760px) {
  .spot-card { grid-template-columns: 1fr; }
  .spot-card-map { max-width: 320px; }
  .spot-facts { grid-template-columns: 1fr; gap: 0.15rem; }
  .spot-facts dd { margin-bottom: 0.7rem; }
}

/* Side-by-side campground fallback cards */
.camp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 1.4rem 0 2rem; clear: both; }
.camp-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.2rem 1.3rem; }
.camp-card h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin: 0 0 0.5rem; text-transform: uppercase; }
.camp-card h3 a { color: inherit; text-decoration-color: rgba(32, 137, 247, 0.5); text-underline-offset: 4px; }
.camp-card-cost { display: inline-block; font-family: var(--font-mono); font-size: 0.85rem; background: var(--sky); color: var(--navy); border-radius: 999px; padding: 0.3rem 0.8rem; margin: 0 0 0.8rem; }
.camp-card ul { margin: 0; padding-left: 1.1rem; font-size: 0.95rem; }
.camp-card li { margin-bottom: 0.4rem; }
@media (max-width: 760px) { .camp-cards { grid-template-columns: 1fr; } }

/* Bottom-of-post navigation between stops */
.trip-nav { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.8rem 1.5rem; border-top: 1px solid var(--rule); margin-top: 2.4rem; padding-top: 1.3rem; }
.trip-nav-next { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 700px) {
  .rig-photo-float-right, .rig-photo-float-left { float: none; max-width: 100%; margin-left: 0; margin-right: 0; }
}

/* Trip card once a write-up is published */
a.trip-card { text-decoration: none; color: inherit; transition: transform 0.15s ease, box-shadow 0.15s ease; }
a.trip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trip-status.trip-status-live { background: var(--azure); color: var(--white); }

/* Outbound tour-operator call-to-action on a trip write-up */
.tour-cta {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  max-width: 480px;
  margin: 2.4rem auto;
}
.tour-cta img { max-width: 220px; margin: 0 auto 1.1rem; display: block; }
.tour-cta p { max-width: none; margin-bottom: 1.3rem; }
.tour-cta .ext-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--azure);
  margin-top: 0.9rem;
}
.tour-cta .ext-icon { width: 10px; height: 10px; flex: none; }
