/* ─────────────────────────────────────────────
   RACE TO HASTINGS — hastings.css
   Companion to styles-v2.css.
   Campaign spectrum (original Race-to-Hastings stripe):
   terracotta · mustard · olive · slate blue · earth brown.
   --tap-rust / --tap-ochre / --tap-navy alias the five for legacy rules.
───────────────────────────────────────────── */

:root {
  --tap-terracotta: #c85832;
  --tap-mustard: #c9a84a;
  --tap-olive: #566838;
  --tap-slate: #4d6485;
  --tap-earth: #4a3528;
  /* Saturated nav / logo accent (hotter than terracotta) */
  --tap-flame: #e9492c;

  --tap-rust: var(--tap-terracotta);
  --tap-ochre: var(--tap-mustard);
  --tap-navy: var(--tap-slate);
  --tap-sienna: #6b5038;
  --tap-parch: #efe6d4;
}

/* Original hero: five-stripe spectrum */
.hast-campaign-stripe {
  display: block;
  width: 100%;
  height: 4px;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    var(--tap-terracotta) 0% 20%,
    var(--tap-mustard) 20% 40%,
    var(--tap-olive) 40% 60%,
    var(--tap-slate) 60% 80%,
    var(--tap-earth) 80% 100%
  );
}

/* ─── Hero load animations ─── */
@keyframes hast-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hast-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hast-slide-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hast-band-in {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

.hast-hero__date-chip {
  animation: hast-fade-up 500ms var(--ease-out, cubic-bezier(.22,1,.36,1)) 80ms both;
}
.hast-hero__eyebrow {
  animation: hast-fade-up 500ms var(--ease-out, cubic-bezier(.22,1,.36,1)) 160ms both;
}
.hast-hero__title-heading {
  animation: hast-fade-up 600ms var(--ease-out, cubic-bezier(.22,1,.36,1)) 240ms both;
}
.hast-hero__sub {
  animation: hast-fade-up 500ms var(--ease-out, cubic-bezier(.22,1,.36,1)) 360ms both;
}
.hast-hero__ctas {
  animation: hast-fade-up 500ms var(--ease-out, cubic-bezier(.22,1,.36,1)) 460ms both;
}
.hast-hero__meta {
  animation: hast-fade-in 400ms var(--ease-out, cubic-bezier(.22,1,.36,1)) 600ms both;
}
.hast-hero__illustration {
  animation: hast-slide-right 800ms var(--ease-out, cubic-bezier(.22,1,.36,1)) 200ms both;
}

/* Tapestry band sweeps in on load */
.tap-divider__img { animation: hast-band-in 700ms var(--ease-out, cubic-bezier(.22,1,.36,1)) 40ms both; }

@media (prefers-reduced-motion: reduce) {
  .hast-hero__date-chip, .hast-hero__eyebrow, .hast-hero__title-heading,
  .hast-hero__sub, .hast-hero__ctas, .hast-hero__meta,
  .hast-hero__illustration,
  .tap-divider__img { animation: none; }
}

/* ─── Tapestry frieze divider ─── */
.tap-divider {
  display: block;
  width: 100%;
  height: 72px;
  overflow: hidden;
  line-height: 0;
}
.tap-divider__img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: cover;
  object-position: left center;
}

/* ─── Hero ─── */
.hast-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Dot-grid overlay, same as main site hero */
.hast-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hast-hero__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 64px;
  /* Text drives the hero height; illustration is absolute */
}

.hast-hero__left {
  /* Limit text column so illustration has room */
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.hast-hero__date-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 2px;
  padding: 6px 12px;
  margin-bottom: 28px;
}
.hast-hero__date-chip::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tap-ochre);
}

.hast-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--tap-ochre);
  margin-bottom: 16px;
}

.hast-hero__heading {
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.93;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
}

.hast-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.46);
  max-width: 440px;
  line-height: 1.55;
  margin-bottom: 40px;
}

.hast-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero right: illustration — absolutely positioned so hero height
   is driven by the text content, not the image dimensions */
.hast-hero__illustration {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 46%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
}

.hast-hero__runner-img {
  /* Fill the hero height; portrait ratio sets the width naturally */
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  mix-blend-mode: lighten;
}

/* Distance badge — sits below the CTAs on the left */
.hast-hero__badge-num {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.hast-hero__badge-unit {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 3px;
}

/* Inline stat line under the CTAs */
.hast-hero__meta {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.25);
}
.hast-hero__meta span { margin: 0 6px; opacity: 0.4; }

/* scroll cue */
.hast-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.28;
}
.hast-hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.hast-hero__scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.8));
}

/* ─── Intro ─── */
.hast-intro {
  padding: 80px 24px 72px;
}
.hast-intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hast-intro__left .section-num { margin-bottom: 20px; }

.hast-intro__heading {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}

.hast-intro__body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}
.hast-intro__body + .hast-intro__body { margin-top: 16px; }

.hast-intro__history {
  margin-top: 28px;
  padding: 20px 20px 20px 24px;
  border-left: 3px solid var(--tap-ochre);
  background: rgba(200,149,42,0.06);
  border-radius: 0 2px 2px 0;
  position: relative;
}
.hast-intro__history::before {
  content: '✦';
  position: absolute;
  left: -9px;
  top: 18px;
  font-size: 13px;
  color: var(--tap-ochre);
  background: var(--cream, #F6F2EC);
  line-height: 1;
  padding: 2px 0;
}
.hast-intro__history p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
}

/* Stats grid */
.hast-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.hast-stat {
  background: var(--cream);
  padding: 28px 24px;
}
.hast-stat__num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.hast-stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hast-stat--rust  .hast-stat__num { color: var(--tap-rust); }
.hast-stat--ochre .hast-stat__num { color: var(--tap-ochre); }
.hast-stat--olive .hast-stat__num { color: var(--tap-olive); }
.hast-stat--navy  .hast-stat__num { color: var(--tap-navy); }

/* ─── Illustrated route map ─── */
.hast-route__map-wrap {
  max-width: var(--max-w);
  margin: -16px auto 52px;
  padding: 0 24px;
}
.hast-route__map {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.35),
    0 8px 32px rgba(0,0,0,0.25);
}

/* ─── Route ─── */
.hast-route {
  background: var(--dark-2);
  padding: 80px 0 88px;
  overflow: hidden;
  position: relative;
}
.hast-route::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hast-route__header {
  max-width: var(--max-w);
  margin: 0 auto 40px;
  padding: 0 24px;
}

.hast-route__heading {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}
.hast-route__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
}

/* Horizontal route line */
.hast-route__track {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* The connecting line */
.hast-route__track::before {
  content: '';
  position: absolute;
  top: 20px; /* vertically aligned with dot centers */
  left: calc(24px + 20px);
  right: calc(24px + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--tap-rust), var(--tap-ochre), var(--tap-olive), var(--tap-navy));
  opacity: 0.5;
}

.hast-route__nodes {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 8px;
}

.hast-route__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
}

.hast-route__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hast-route__node--start .hast-route__dot  { border-color: var(--tap-rust);   color: var(--tap-rust);  }
.hast-route__node--ex1 .hast-route__dot    { border-color: var(--tap-ochre);  color: var(--tap-ochre); }
.hast-route__node--ex2 .hast-route__dot    { border-color: var(--tap-olive);  color: var(--tap-olive); }
.hast-route__node--ex3 .hast-route__dot    { border-color: var(--tap-navy);   color: var(--tap-navy);  }
.hast-route__node--finish .hast-route__dot {
  border-color: var(--tap-ochre);
  background: var(--tap-ochre);
  color: var(--dark);
}

.hast-route__leg {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 6px;
}
.hast-route__place {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 4px;
}
.hast-route__dist {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.hast-route__note {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
  max-width: 120px;
}

/* Leg distance labels between nodes */
.hast-route__legs {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding: 0 40px;
  gap: 8px;
}
.hast-route__leg-pill {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hast-route__leg-pill span:first-child {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.7);
}
.hast-route__leg-pill span:last-child {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

/* ─── Format / How it works ─── */
.hast-format {
  padding: 80px 24px 80px;
}
.hast-format__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hast-format__header {
  margin-bottom: 48px;
  max-width: 560px;
}
.hast-format__heading {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 12px;
}
.hast-format__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.hast-format__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.hast-format__card {
  background: var(--cream);
  padding: 32px 28px;
}
.hast-format__card-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hast-format__card:nth-child(1) .hast-format__card-num { color: var(--tap-rust); }
.hast-format__card:nth-child(2) .hast-format__card-num { color: var(--tap-ochre); }
.hast-format__card:nth-child(3) .hast-format__card-num { color: var(--tap-olive); }
.hast-format__card:nth-child(4) .hast-format__card-num { color: var(--tap-navy); }

.hast-format__card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(27, 27, 27, 0.08);
  background: rgba(27, 27, 27, 0.025);
}
.hast-format__card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hast-format__card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}
.hast-format__card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Rules / fine print ─── */
.hast-rules {
  background: var(--tap-parch);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 56px 24px;
}
.hast-rules__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.hast-rules__item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.hast-rules__item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── FAQ ─── */
.hast-faq {
  padding: 80px 24px 88px;
  background: var(--cream);
}
.hast-faq__inner {
  max-width: 720px;
  margin: 0 auto;
}
.hast-faq__heading {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 40px;
}

.hast-faq__list {
  border-top: 1px solid var(--border);
}

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

.hast-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .hast-faq__q:hover { color: var(--tap-ochre); }
}
.hast-faq__item.open .hast-faq__q { color: var(--tap-ochre); }

.hast-faq__icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 240ms var(--ease-out), color 160ms ease;
}
.hast-faq__item.open .hast-faq__icon {
  transform: rotate(180deg);
  color: var(--tap-ochre);
}

.hast-faq__a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease-out), padding 240ms var(--ease-out);
  padding-bottom: 0;
}
.hast-faq__item.open .hast-faq__a {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ─── Apply ─── */
.hast-apply {
  padding: 88px 24px 96px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hast-apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hast-apply__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.hast-apply__heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.92);
  line-height: 1.0;
  margin-bottom: 12px;
}
.hast-apply__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 480px;
}

/* Form */
.hast-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hast-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hast-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hast-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.hast-field input,
.hast-field select,
.hast-field textarea {
  font-family: var(--font);
  font-size: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 11px 14px;
  color: rgba(255,255,255,0.88);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.hast-field input::placeholder,
.hast-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.hast-field input:focus,
.hast-field select:focus,
.hast-field textarea:focus {
  border-color: var(--tap-ochre);
  background: rgba(255,255,255,0.08);
}
.hast-field textarea { resize: vertical; min-height: 100px; }
.hast-field select option { background: #1a1a1a; color: #fff; }

.hast-form__runners {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hast-form__runners-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 2px;
}
.hast-form__fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.hast-form__legend {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 10px;
  padding: 0;
}
.hast-form__hint {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.32);
  margin: 0 0 14px;
  max-width: 52ch;
}
.hast-form__hint--tight {
  margin-bottom: 8px;
  max-width: none;
}
.hast-form__hint strong {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.hast-choice-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hast-choice-row--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
.hast-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}
.hast-choice:has(input:focus-visible) {
  outline: 2px solid var(--tap-ochre);
  outline-offset: 2px;
}
.hast-choice input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--tap-ochre);
}
.hast-choice__text {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
}
.hast-choice--compact {
  flex: 1;
  min-width: 140px;
}
@media (hover: hover) and (pointer: fine) {
  .hast-choice:hover {
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.04);
  }
}
.hast-form__panel {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  background: rgba(255,255,255,0.04);
}
.hast-form__panel-lede {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0 0 14px;
}
.hast-form__panel-lede strong {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}
.hast-word-count {
  font-size: 12px;
  margin: 6px 0 0;
  color: rgba(255,255,255,0.28);
}
.hast-word-count--over {
  color: #e8a090;
  font-weight: 600;
}

.hast-runner-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.hast-runner-row__leg {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
}

.hast-form__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0;
}

.hast-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.hast-form__note {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
}
.hast-form__status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(181, 69, 40, 0.45);
  background: rgba(181, 69, 40, 0.12);
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.5;
}
.hast-form__iframe {
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  visibility: hidden;
}

/* Success state */
.hast-form--success {
  display: none;
}
.hast-apply.submitted .hast-form { display: none; }
.hast-apply.submitted .hast-form--success { display: block; }
.hast-success {
  text-align: center;
  padding: 48px 0 24px;
}
.hast-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--tap-ochre);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.hast-success h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}
.hast-success p {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}
.hast-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}
.hast-success__actions .btn {
  text-decoration: none;
}

/* ─── Tapestry-ochre CTA button ─── */
.btn--ochre {
  background: var(--tap-ochre);
  color: var(--dark);
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .btn--ochre:hover {
    background: #d9a130;
    box-shadow: 0 4px 20px rgba(200,149,42,0.35);
  }
}

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .hast-hero__illustration { display: none; }
  .hast-hero__left { max-width: none; }

  .hast-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hast-format__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hast-rules__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .hast-route__track::before { display: none; }

  .hast-route__nodes {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .hast-route__node {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 2px;
    text-align: left;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hast-route__node:last-child { border-bottom: none; }
  .hast-route__dot {
    grid-column: 1;
    grid-row: 1 / 4;
    margin-bottom: 0;
    align-self: start;
    margin-top: 2px;
  }
  .hast-route__leg {
    grid-column: 2;
    grid-row: 1;
  }
  .hast-route__place {
    grid-column: 2;
    grid-row: 2;
  }
  .hast-route__dist {
    grid-column: 2;
    grid-row: 3;
  }
  .hast-route__note {
    grid-column: 2;
    grid-row: 4;
    max-width: none;
    margin-top: 4px;
  }

  .hast-route__legs { display: none; }

  .hast-format__grid {
    grid-template-columns: 1fr;
  }

  .hast-form__row {
    grid-template-columns: 1fr;
  }

  .hast-runner-row {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .hast-runner-row__leg {
    grid-column: 1 / -1;
  }

  .hast-form__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hast-hero__inner { padding: 72px 20px 64px; }
  .hast-intro { padding: 56px 20px; }
  .hast-format { padding: 56px 20px; }
  .hast-apply { padding: 64px 20px; }
}

/* ─── Battle for Hastings re-theme ─── */
.hast-body {
  --tap-display: "Cormorant Garamond", serif;
  --tap-accent: "Cinzel", serif;
  --tap-ink: var(--tap-earth);
  --tap-ink-soft: #6a5548;
  --tap-canvas: #f4ecde;
  --tap-panel: #fbf6e8;
  --tap-panel-deep: #e8dcc4;
  --tap-line: rgba(74, 53, 40, 0.16);
  --tap-night: #141110;
  --tap-night-2: #1e1a17;
  background-color: var(--tap-canvas);
  background-image:
    radial-gradient(rgba(93, 77, 58, 0.08) 0.55px, transparent 0.7px),
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.12));
  background-size: 9px 9px, auto;
  color: var(--tap-ink);
}

.hast-body .nav {
  background: rgba(251, 246, 232, 0.92);
  border-bottom: 1px solid rgba(83, 63, 45, 0.12);
  backdrop-filter: none;
}
.hast-body .nav__logo-word,
.hast-body .nav__links a,
.hast-body .nav__signin {
  color: var(--tap-ink);
}
.hast-body .nav__logo-mark circle,
.hast-body .footer .nav__logo-mark circle {
  stroke: var(--tap-flame);
}
.hast-body .nav__logo-mark path,
.hast-body .footer .nav__logo-mark path {
  stroke: var(--tap-flame);
}
.hast-body .nav__hamburger span {
  background: var(--tap-ink);
}
.hast-body .nav__drawer {
  background: rgba(244, 233, 207, 0.96);
  border-top: 1px solid rgba(90, 67, 43, 0.14);
}
.hast-body .nav__drawer a {
  color: var(--tap-ink);
}
.hast-body .btn {
  border-radius: 999px;
}
.hast-body .btn--primary {
  background: var(--tap-flame);
  color: #fff;
  border: 1px solid var(--tap-flame);
  box-shadow: none;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body .btn--primary:hover {
    background: #f05a3d;
    border-color: #f05a3d;
    color: #fff;
  }
}
.hast-body .btn--ghost {
  background: rgba(255,255,255,0.46);
  backdrop-filter: none;
}

.hast-body .tap-divider {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  background: transparent;
}
.hast-body .tap-divider__line {
  flex: 1 1 auto;
  max-width: 460px;
  height: 1px;
  background: linear-gradient(90deg, rgba(83, 63, 45, 0), rgba(83, 63, 45, 0.22), rgba(83, 63, 45, 0));
}
.hast-body .tap-divider__mark {
  max-height: 56px;
  width: auto;
  height: auto;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.hast-body .hast-section-kicker {
  font-family: var(--tap-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tap-rust);
  margin-bottom: 16px;
}
.hast-body .hast-section-kicker::before {
  content: '✦ ';
  opacity: 0.6;
  font-size: 9px;
  vertical-align: middle;
}
.hast-body .hast-section-kicker--light {
  color: var(--tap-rust);
}

.hast-body .hast-hero::before {
  display: none;
}
.hast-body .hast-hero::after {
  content: none;
}
.hast-body .hast-hero__date-chip {
  grid-row: 1;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  border-color: rgba(83, 63, 45, 0.18);
  color: rgba(43, 33, 25, 0.82);
  font-family: var(--tap-accent);
  font-size: 10px;
  letter-spacing: 0.16em;
  box-shadow: none;
}
.hast-body .hast-hero__date-chip::before {
  background: #ad5a33;
}
.hast-body .hast-hero__inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  min-height: min(920px, calc(100vh - 74px));
  padding: 128px 24px 56px;
  text-align: center;
  z-index: 2;
}
.hast-body .hast-hero__crest {
  grid-row: 2;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}
.hast-body .hast-hero__mascot {
  width: clamp(240px, 52vw, 460px);
  height: auto;
  opacity: 0.96;
  filter: none;
}
.hast-body .hast-hero__left {
  grid-row: 3;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hast-body .hast-hero__eyebrow {
  font-family: var(--tap-accent);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(43, 33, 25, 0.62);
  margin-bottom: 18px;
  text-shadow: none;
}
.hast-body .hast-hero__heading {
  display: block;
  font-family: var(--tap-display);
  font-size: clamp(62px, 10vw, 112px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--tap-ink);
  margin-bottom: 18px;
  text-wrap: balance;
  text-transform: none;
  text-shadow: none;
}
.hast-body .hast-hero__heading-line {
  display: inline;
  padding: 0;
  color: inherit;
  text-shadow: none;
}
.hast-body .hast-hero__sub {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  color: rgba(43, 33, 25, 0.72);
  max-width: 34ch;
  margin-bottom: 28px;
  text-shadow: none;
}
.hast-body .hast-hero__ctas {
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.hast-body .hast-hero .btn--ochre {
  background: var(--tap-ink);
  color: #fbf6e8;
  border: 1px solid var(--tap-ink);
  box-shadow: none;
}
.hast-body .hast-hero .btn--ghost {
  color: var(--tap-ink) !important;
  border-color: rgba(83, 63, 45, 0.2) !important;
  background: rgba(255,255,255,0.42);
}
.hast-body .hast-hero__scribble {
  display: inline-block;
  margin-top: 0;
  padding: 0;
  font-family: var(--tap-accent);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
  color: var(--tap-sienna);
  background: none;
  border: none;
  border-radius: 0;
  transform: none;
  box-shadow: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hast-body .hast-hero__meta {
  margin-top: 20px;
  font-family: var(--tap-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(43, 33, 25, 0.5);
  text-shadow: none;
}
.hast-body .hast-hero__meta span {
  opacity: 0.45;
}
.hast-body .hast-hero__illustration {
  pointer-events: none;
}
.hast-body .hast-hero__illustration {
  display: none;
}

.hast-body .hast-intro__history,
.hast-body .hast-stat,
.hast-body .hast-format__card,
.hast-body .hast-rules__item,
.hast-body .hast-faq__item,
.hast-body .hast-form,
.hast-body .hast-success {
  background-image: none;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.hast-body .hast-intro {
  padding: 100px 24px 88px;
}
.hast-body .hast-intro__inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(36px, 6vw, 96px);
}
.hast-body .hast-intro__heading {
  font-family: var(--tap-display);
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--tap-ink);
  max-width: 10ch;
}
.hast-body .hast-intro__body {
  font-size: 17px;
  color: var(--tap-ink-soft);
  line-height: 1.86;
  max-width: 36ch;
}
.hast-body .hast-intro__right {
  display: grid;
  gap: 22px;
  align-self: start;
}
.hast-body .hast-mascot-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 28px 24px 24px;
  border: 1px solid rgba(194, 143, 82, 0.36);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    radial-gradient(circle at top, rgba(219, 160, 93, 0.12), rgba(219, 160, 93, 0) 42%),
    #23211d;
  color: #f7edd8;
}
.hast-body .hast-mascot-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(194, 143, 82, 0.24);
  pointer-events: none;
}
.hast-body .hast-mascot-card__art {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 18px 0 22px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.04), rgba(255,255,255,0) 66%);
}
.hast-body .hast-mascot-card__img {
  width: min(100%, 300px);
  height: auto;
  mix-blend-mode: lighten;
  filter: invert(1);
}
.hast-body .hast-mascot-card__copy {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(194, 143, 82, 0.2);
  padding-top: 18px;
}
.hast-body .hast-mascot-card__label {
  margin-bottom: 8px;
  font-family: var(--tap-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 237, 216, 0.62);
}
.hast-body .hast-mascot-card__title {
  margin-bottom: 10px;
  font-family: var(--tap-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fbf5e7;
}
.hast-body .hast-mascot-card__text {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(247, 237, 216, 0.74);
}
.hast-body .hast-intro__history {
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid rgba(83, 63, 45, 0.14);
  background-color: rgba(255,255,255,0.36);
}
.hast-body .hast-intro__history p {
  font-size: 16px;
  color: #5d4631;
}
.hast-body .hast-stats {
  gap: 14px;
  background: none;
  border: none;
}
.hast-body .hast-stat {
  min-height: 136px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(83, 63, 45, 0.14);
  background-color: rgba(255,255,255,0.44);
}
.hast-body .hast-stat__num {
  font-family: var(--tap-display);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.hast-body .hast-stat__label {
  font-family: var(--tap-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(52, 38, 27, 0.68);
}

.hast-body .hast-route {
  padding: 96px 24px 92px;
  background:
    linear-gradient(180deg, rgba(14, 11, 9, 0.42), rgba(14, 11, 9, 0.64)),
    url("hastings-assets/img-8652.jpg") center 42% / cover no-repeat;
  border-top: 1px solid rgba(83, 63, 45, 0.08);
}
.hast-body .hast-route::before {
  display: block;
  background:
    linear-gradient(180deg, rgba(9, 7, 6, 0.2), rgba(9, 7, 6, 0.08) 24%, rgba(9, 7, 6, 0.36) 100%),
    radial-gradient(circle at center, rgba(255, 244, 223, 0.05), rgba(255, 244, 223, 0) 52%);
  opacity: 1;
}
.hast-body .hast-route__map-wrap {
  display: none;
}

.hast-body .hast-route__header {
  margin-bottom: 42px;
  text-align: center;
}
.hast-body .hast-route .hast-section-kicker--light {
  color: rgba(248, 236, 208, 0.72);
}
.hast-body .hast-route__heading {
  font-family: var(--tap-display);
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 700;
  line-height: 0.94;
  color: #f8ecd0;
  margin-bottom: 12px;
}
.hast-body .hast-route__sub {
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(248, 236, 208, 0.72);
  margin: 0 auto;
}
.hast-body .hast-route__track {
  padding: 36px 32px 34px;
  background: rgba(18, 15, 13, 0.42);
  border: 1px solid rgba(248, 236, 208, 0.12);
  border-radius: 0;
  box-shadow: none;
}
.hast-body .hast-route__track::before {
  top: 60px;
  left: 64px;
  right: 64px;
  height: 1px;
  border-radius: 0;
  background: repeating-linear-gradient(90deg, rgba(248, 236, 208, 0.42) 0 12px, transparent 12px 22px);
  opacity: 0.84;
}
.hast-body .hast-route__nodes {
  gap: 18px;
}
.hast-body .hast-route__node {
  padding: 18px 16px 20px;
  border: 1px solid rgba(248, 236, 208, 0.08);
  border-radius: 0;
  background: rgba(255,255,255,0.04);
}
.hast-body .hast-route__dot {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  font-family: var(--tap-accent);
  font-size: 12px;
  color: #f8ecd0;
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}
.hast-body .hast-route__node--start .hast-route__dot  { background: rgba(181, 69, 40, 0.12); }
.hast-body .hast-route__node--ex1 .hast-route__dot    { background: rgba(200, 149, 42, 0.14); }
.hast-body .hast-route__node--ex2 .hast-route__dot    { background: rgba(74, 94, 42, 0.14); }
.hast-body .hast-route__node--ex3 .hast-route__dot    { background: rgba(72, 99, 164, 0.12); }
.hast-body .hast-route__node--finish .hast-route__dot {
  background: #f8ecd0;
  color: #221b16;
}
.hast-body .hast-route__leg {
  font-family: var(--tap-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: rgba(248, 236, 208, 0.52);
}
.hast-body .hast-route__place {
  font-family: var(--tap-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f8ecd0;
}
.hast-body .hast-route__dist {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(248, 236, 208, 0.52);
}
.hast-body .hast-route__note {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(248, 236, 208, 0.68);
  max-width: 16ch;
}

.hast-body .hast-format {
  padding: 96px 24px 92px;
}
.hast-body .hast-format__header {
  max-width: 620px;
  margin-bottom: 42px;
}
.hast-body .hast-format__heading {
  font-family: var(--tap-display);
  font-size: clamp(44px, 5.4vw, 68px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--tap-ink);
}
.hast-body .hast-format__sub {
  font-size: 17px;
  line-height: 1.76;
  color: var(--tap-ink-soft);
}
.hast-body .hast-format__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: none;
  border: none;
  overflow: visible;
}
.hast-body .hast-format__card {
  padding: 30px 28px;
  border: 1px solid rgba(83, 63, 45, 0.14);
  border-top-width: 4px;
  background-color: rgba(255,255,255,0.38);
}
.hast-body .hast-format__card:nth-child(1) { border-top-color: var(--tap-rust); }
.hast-body .hast-format__card:nth-child(2) { border-top-color: var(--tap-ochre); }
.hast-body .hast-format__card:nth-child(3) { border-top-color: var(--tap-olive); }
.hast-body .hast-format__card:nth-child(4) { border-top-color: var(--tap-navy); }
.hast-body .hast-format__card-num {
  font-family: var(--tap-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.hast-body .hast-format__card-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  display: block;
  font-family: var(--tap-accent);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.hast-body .hast-format__card:nth-child(1) .hast-format__card-icon { color: var(--tap-rust); }
.hast-body .hast-format__card:nth-child(2) .hast-format__card-icon { color: var(--tap-ochre); }
.hast-body .hast-format__card:nth-child(3) .hast-format__card-icon { color: var(--tap-olive); }
.hast-body .hast-format__card:nth-child(4) .hast-format__card-icon { color: var(--tap-navy); }
.hast-body .hast-format__card h3 {
  font-family: var(--tap-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 10px;
  color: var(--tap-ink);
}
.hast-body .hast-format__card p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--tap-ink-soft);
}

.hast-body .hast-rules {
  padding: 84px 24px;
  background-color: rgba(234, 223, 193, 0.52);
  border-top: 1px solid rgba(83, 63, 45, 0.08);
  border-bottom: 1px solid rgba(83, 63, 45, 0.08);
}
.hast-body .hast-rules__inner {
  grid-template-columns: 0.95fr repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}
.hast-body .hast-rules__intro h3 {
  font-family: var(--tap-display);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--tap-ink);
}
.hast-body .hast-rules__item {
  padding: 24px 22px;
  border: 1px solid rgba(83, 63, 45, 0.12);
  background-color: rgba(255,255,255,0.36);
}
.hast-body .hast-rules__item h4 {
  font-family: var(--tap-accent);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--tap-rust);
  margin-bottom: 14px;
}
.hast-body .hast-rules__item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--tap-ink-soft);
}

.hast-body .hast-faq {
  padding: 96px 24px 92px;
  background-color: rgba(250, 244, 229, 0.3);
}
.hast-body .hast-faq__inner {
  max-width: 860px;
}
.hast-body .hast-faq__heading {
  font-family: var(--tap-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 34px;
}
.hast-body .hast-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: none;
}
.hast-body .hast-faq__item {
  border: 1px solid rgba(83, 63, 45, 0.12);
  background-color: rgba(255, 255, 255, 0.58);
  padding: 0 22px;
}
.hast-body .hast-faq__q {
  padding: 22px 0;
  font-family: var(--tap-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.02;
  color: var(--tap-ink);
}
.hast-body .hast-faq__icon {
  color: rgba(90, 67, 43, 0.6);
}
.hast-body .hast-faq__a {
  font-size: 15px;
  line-height: 1.72;
  color: var(--tap-ink-soft);
}

.hast-body .hast-apply {
  padding: 96px 24px 104px;
  background:
    linear-gradient(180deg, rgba(22, 18, 15, 0.88) 0%, rgba(12, 10, 8, 0.92) 100%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 38%),
    url("hastings-assets/img-8837.jpg") center 40% / cover no-repeat;
}
.hast-body .hast-apply::before {
  background-image:
    radial-gradient(rgba(255,245,224,0.08) 0.55px, transparent 0.7px),
    radial-gradient(rgba(0,0,0,0.08) 0.55px, transparent 0.7px);
  background-size: 10px 10px, 13px 13px;
  background-position: 0 0, 3px 2px;
  opacity: 0.1;
}
.hast-body .hast-apply__inner {
  max-width: 900px;
}
.hast-body .hast-apply__heading {
  font-family: var(--tap-display);
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #f8ecd0;
  margin-bottom: 14px;
}
.hast-body .hast-apply__sub {
  font-size: 17px;
  line-height: 1.72;
  max-width: 36ch;
  color: rgba(248, 236, 208, 0.68);
  margin-bottom: 34px;
}
.hast-body .hast-form {
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(248, 236, 208, 0.12);
  border-top-width: 4px;
  border-top-color: rgba(248, 236, 208, 0.5);
  background-color: rgba(250, 244, 229, 0.98);
}
.hast-body .hast-field label,
.hast-body .hast-form__runners-label,
.hast-body .hast-runner-row__leg,
.hast-body .hast-form__legend {
  color: rgba(47, 34, 24, 0.66);
}
.hast-body .hast-form__hint,
.hast-body .hast-form__panel-lede {
  color: rgba(47, 34, 24, 0.62);
}
.hast-body .hast-form__hint strong,
.hast-body .hast-form__panel-lede strong {
  color: var(--tap-ink);
}
.hast-body .hast-choice {
  border-color: rgba(90, 67, 43, 0.18);
  background: rgba(255, 251, 242, 0.5);
}
.hast-body .hast-choice__text {
  color: var(--tap-ink);
}
@media (hover: hover) and (pointer: fine) {
  .hast-body .hast-choice:hover {
    border-color: rgba(90, 67, 43, 0.28);
    background: rgba(255, 255, 255, 0.65);
  }
}
.hast-body .hast-form__panel {
  border-color: rgba(90, 67, 43, 0.15);
  background: rgba(255, 251, 242, 0.65);
}
.hast-body .hast-word-count {
  color: rgba(47, 34, 24, 0.45);
}
.hast-body .hast-word-count--over {
  color: #a9442a;
}
.hast-body .hast-field input,
.hast-body .hast-field select,
.hast-body .hast-field textarea {
  background: rgba(255, 251, 242, 0.84);
  border: 1px solid rgba(90, 67, 43, 0.18);
  border-radius: 4px;
  color: var(--tap-ink);
  box-shadow: none;
}
.hast-body .hast-field input::placeholder,
.hast-body .hast-field textarea::placeholder {
  color: rgba(47, 34, 24, 0.36);
}
.hast-body .hast-field input:focus,
.hast-body .hast-field select:focus,
.hast-body .hast-field textarea:focus {
  background: rgba(255,255,255,0.92);
}
.hast-body .hast-field select option {
  background: var(--tap-panel);
  color: var(--tap-ink);
}
.hast-body .hast-form__divider {
  background: rgba(90, 67, 43, 0.12);
}
.hast-body .hast-form__note {
  color: rgba(47, 34, 24, 0.74);
}
.hast-body .hast-form__status {
  border-color: rgba(181, 69, 40, 0.32);
  background: rgba(181, 69, 40, 0.08);
  color: var(--tap-ink);
}
.hast-body .hast-success {
  padding: 38px 34px;
  border: 1px solid rgba(248, 236, 208, 0.12);
  border-top-width: 4px;
  border-top-color: rgba(248, 236, 208, 0.5);
  background-color: rgba(250, 244, 229, 0.98);
}
.hast-body .hast-success h3 {
  font-family: var(--tap-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--tap-ink);
}
.hast-body .hast-success p {
  color: var(--tap-ink-soft);
}

.hast-body .footer {
  background: #1e1915;
  border-top-color: rgba(248, 236, 208, 0.12);
}
.hast-body .footer__brand .nav__logo-word,
.hast-body .footer__col a {
  color: rgba(248,236,208,0.74);
}
.hast-body .footer__tagline,
.hast-body .footer__bottom,
.hast-body .footer__col-label {
  color: rgba(248,236,208,0.38);
}

@media (max-width: 980px) {
  .hast-body .hast-hero__inner {
    min-height: 720px;
    padding-top: 112px;
    padding-bottom: 52px;
  }
  .hast-body .hast-intro__inner {
    grid-template-columns: 1fr;
  }
  .hast-body .hast-intro__right {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
  .hast-body .hast-rules__inner {
    grid-template-columns: 1fr;
  }
  .hast-body .hast-format__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hast-body .hast-route:not(.hast-march) .hast-route__track,
  .hast-body .hast-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hast-body .hast-intro,
  .hast-body .hast-format,
  .hast-body .hast-faq,
  .hast-body .hast-apply {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hast-body .hast-route:not(.hast-march) .hast-route__track::before {
    display: none;
  }
  .hast-body .hast-route:not(.hast-march) .hast-route__nodes {
    gap: 12px;
  }
  .hast-body .hast-route:not(.hast-march) .hast-route__node {
    transform: none !important;
    padding: 20px 0;
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0;
    background: none;
  }
  .hast-body .hast-route:not(.hast-march) .hast-route__note {
    max-width: none;
  }
  .hast-body .hast-mascot-card__title {
    font-size: 34px;
  }
  .hast-body .hast-faq__q {
    font-size: 23px;
  }
  .hast-body .hast-success h3 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .hast-body .hast-hero__title-heading,
  .hast-body .hast-intro__heading,
  .hast-body .hast-route__heading,
  .hast-body .hast-format__heading,
  .hast-body .hast-faq__heading,
  .hast-body .hast-apply__heading {
    text-wrap: balance;
  }
  .hast-body .hast-hero__scribble {
    font-size: 11px;
  }
  .hast-body .hast-hero__sub {
    font-size: 16px;
  }
  .hast-body .hast-hero__meta {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .hast-body .tap-divider {
    gap: 10px;
    height: 72px;
  }
  .hast-body .tap-divider__mark {
    max-height: 48px;
    width: auto;
  }
  .hast-body .hast-stat__num {
    font-size: 54px;
  }
  .hast-body .hast-format__card h3,
  .hast-body .hast-faq__q {
    font-size: 22px;
  }
  .hast-body .hast-form {
    padding: 24px 18px;
  }
}

/* ─────────────────────────────────────────────
   EDITORIAL REVAMP
   Bold serif + organic illustration style,
   keeping the Bayeux palette.
────────────────────────────────────────────── */

/* ─── Vine / scroll decoration ─── */
.hast-vine {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hast-vine--bl {
  bottom: 0;
  left: 0;
  width: clamp(200px, 30vw, 440px);
  height: auto;
  transform-origin: left bottom;
}
.hast-vine--br {
  bottom: 0;
  right: 0;
  width: clamp(200px, 30vw, 440px);
  height: auto;
  transform: scaleX(-1);
  transform-origin: right bottom;
}

/* Prevent horizontal scroll from vines */
.hast-body {
  overflow-x: hidden;
}

/* ─── Heading scale — section titles (hero title is calligraphy image) ─── */
.hast-body .hast-intro__heading {
  font-size: clamp(60px, 9vw, 108px);
  line-height: 0.87;
  letter-spacing: -0.05em;
}
.hast-body .hast-route__heading {
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.88;
  letter-spacing: -0.05em;
}
.hast-body .hast-format__heading {
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.hast-body .hast-rules__intro h3 {
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.hast-body .hast-faq__heading {
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.hast-body .hast-apply__heading {
  font-size: clamp(60px, 9vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

/* ─── Format card numerals — bigger ─── */
.hast-body .hast-format__card-icon {
  font-size: 68px;
}

/* ─── Mobile ─── */
@media (max-width: 600px) {
  .hast-vine--bl,
  .hast-vine--br {
    width: clamp(140px, 46vw, 220px);
  }
  .hast-body .hast-intro__heading,
  .hast-body .hast-route__heading,
  .hast-body .hast-format__heading,
  .hast-body .hast-faq__heading,
  .hast-body .hast-apply__heading {
    font-size: clamp(44px, 12vw, 68px);
  }
  .hast-body .hast-rules__intro h3 {
    font-size: clamp(40px, 11vw, 60px);
  }
}

/* ═══════════════════════════════════════════
   CAMPAIGN EDITORIAL SYSTEM — structure + restraint
   Parchment editorial default; dark “night watch”
   only on March + enlistment (existing sections).
═══════════════════════════════════════════ */

.hast-body {
  --hast-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --hast-soot: var(--tap-earth);
}

.hast-anchor {
  display: block;
  position: relative;
  top: -88px;
  height: 0;
  visibility: hidden;
}

/* Stitch-line section rules */
.hast-stride {
  height: 1px;
  max-width: min(680px, 90vw);
  margin: 0 auto;
  background: repeating-linear-gradient(
    90deg,
    rgba(83, 63, 45, 0.2) 0 4px,
    transparent 4px 10px
  );
}
.hast-stride--hero {
  max-width: 100%;
  opacity: 0.4;
}
.hast-stride--dark {
  max-width: 100%;
  opacity: 0.35;
  background: repeating-linear-gradient(
    90deg,
    rgba(248, 236, 208, 0.12) 0 4px,
    transparent 4px 10px
  );
}

/* Nav — campaign chapter */
.hast-body .nav {
  padding-top: 14px;
  padding-bottom: 14px;
}
.hast-body .nav__bfh {
  color: var(--tap-mustard) !important;
  font-weight: 700;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.2;
}
.hast-body .nav__bfh-sub {
  font-family: var(--hast-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(43, 33, 25, 0.42);
}

/* Labels / kickers — sans */
.hast-body .hast-section-kicker {
  font-family: var(--hast-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  margin-bottom: 22px;
}
.hast-body .hast-section-kicker::before {
  content: none;
}

/* ─── Hero: coast photograph (not used with .hast-editorial — UNO hero replaces) ─── */
.hast-body:not(.hast-editorial) .hast-hero {
  --hast-hero-legible: 0 1px 4px rgba(0,0,0,0.55), 0 2px 20px rgba(0,0,0,0.32);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #0e0a06;
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 7, 4, 0.54) 0%,
      rgba(10, 7, 4, 0.38) 32%,
      rgba(10, 7, 4, 0.30) 55%,
      rgba(10, 7, 4, 0.52) 100%
    ),
    url("hastings-assets/img-8670.jpg");
  background-size: auto, cover;
  background-position: 0 0, center 36%;
  background-repeat: no-repeat, no-repeat;
  padding: clamp(40px, 5vh, 72px) 0 clamp(140px, 28vh, 360px);
  min-height: min(88vh, 920px);
}
.hast-body:not(.hast-editorial) .hast-hero__shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  flex: 0 0 auto;
}
.hast-body:not(.hast-editorial) .hast-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: min(720px, 94vw);
  margin: 0 auto;
}
.hast-body:not(.hast-editorial) .hast-hero__title-heading {
  margin: 0 0 28px;
  padding: 0;
  line-height: 1.05;
  background: none;
  font-weight: 400;
}
.hast-body:not(.hast-editorial) .hast-hero__title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12em;
}
.hast-body:not(.hast-editorial) .hast-hero__title-pre {
  font-family: "Cinzel", serif;
  font-size: clamp(13px, 1.9vw, 16px);
  font-weight: 600;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(248, 236, 208, 0.82);
  text-shadow: var(--hast-hero-legible);
}
.hast-body:not(.hast-editorial) .hast-hero__title-main {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(40px, 8.5vw, 84px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.02;
  color: #f8ecd0;
  text-shadow: var(--hast-hero-legible);
}

@media (max-width: 540px) {
  .hast-body:not(.hast-editorial) .hast-hero__title-heading {
    margin-bottom: 22px;
  }
  .hast-body:not(.hast-editorial) .hast-hero__title-pre {
    letter-spacing: 0.36em;
  }
}

.hast-body:not(.hast-editorial) .hast-hero__date-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--hast-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 236, 208, 0.82);
  text-shadow: var(--hast-hero-legible);
  margin: 0 0 22px;
}
.hast-body:not(.hast-editorial) .hast-hero__date-line::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tap-mustard);
  box-shadow: 0 0 0 1px rgba(74, 53, 40, 0.12);
  flex-shrink: 0;
}
.hast-body:not(.hast-editorial) .hast-hero__eyebrow {
  font-family: var(--hast-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  color: #e8c96a;
  text-shadow: var(--hast-hero-legible);
}
.hast-body:not(.hast-editorial) .hast-hero__sub {
  max-width: 36ch;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
  margin-bottom: 36px;
  color: rgba(248, 236, 208, 0.90);
  text-shadow: var(--hast-hero-legible);
}
.hast-body:not(.hast-editorial) .hast-hero__ctas {
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  margin-bottom: 28px;
}
.hast-body:not(.hast-editorial) .btn--hast-cta {
  background: var(--tap-mustard) !important;
  color: var(--tap-earth) !important;
  border: 1px solid rgba(74, 53, 40, 0.28) !important;
  border-radius: 2px !important;
  font-weight: 700;
  padding: 15px 28px !important;
  letter-spacing: 0.03em;
  box-shadow: none !important;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body:not(.hast-editorial) .btn--hast-cta:hover {
    background: #d4b45c !important;
    border-color: rgba(74, 53, 40, 0.35) !important;
    color: var(--tap-earth) !important;
  }
}
.hast-body:not(.hast-editorial) .hast-hero__link-quiet {
  font-family: var(--hast-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 236, 208, 0.68);
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 236, 208, 0.30);
  padding-bottom: 2px;
  text-shadow: var(--hast-hero-legible);
}
.hast-body:not(.hast-editorial) .hast-hero__link-quiet:hover {
  color: var(--tap-terracotta);
  border-bottom-color: var(--tap-terracotta);
}
.hast-body:not(.hast-editorial) .hast-hero__scribble {
  text-align: center;
  margin-top: 0;
  color: rgba(248, 236, 208, 0.72);
  text-shadow: var(--hast-hero-legible);
}

/* ─── Campaign: metadata rail + light artifact ─── */
.hast-body .hast-intro {
  padding: clamp(96px, 12vw, 140px) clamp(20px, 4vw, 40px);
}
.hast-body .hast-intro__inner {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.hast-body .hast-intro__heading {
  max-width: 14ch;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.92;
}
.hast-body .hast-intro__body {
  font-size: 18px;
  max-width: 38ch;
  line-height: 1.75;
}
.hast-body .hast-intro__history {
  margin-top: 36px;
  padding: 0;
  border: none;
  background: none;
}
.hast-body .hast-intro__history p {
  font-size: 17px;
  max-width: 36ch;
  color: var(--tap-ink-soft);
}

.hast-body .hast-meta-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(18px, 3vw, 36px);
  row-gap: 20px;
  margin: 44px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(83, 63, 45, 0.14);
  list-style: none;
  padding-left: 0;
}
.hast-body .hast-meta-rail li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hast-body .hast-meta-rail__item--mobile-only {
  display: flex;
}
.hast-body .hast-meta-rail__v {
  font-family: var(--tap-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--tap-ink);
  line-height: 1;
}
.hast-body .hast-meta-rail__k {
  font-family: var(--hast-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(43, 33, 25, 0.48);
}

@media (max-width: 640px) {
  .hast-body .hast-meta-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(12px, 5vw, 28px);
    row-gap: 22px;
    align-items: baseline;
  }
  .hast-body .hast-meta-rail li {
    min-width: 0;
  }
}

.hast-body .hast-artifact {
  margin: 0;
}
.hast-body .hast-artifact__frame {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border: 1px solid rgba(83, 63, 45, 0.1);
}
.hast-body .hast-artifact__frame img {
  width: 100%;
  height: auto;
  display: block;
}
.hast-body .hast-artifact__cap {
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hast-body .hast-artifact__label {
  font-family: var(--hast-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43, 33, 25, 0.42);
}
.hast-body .hast-artifact__title {
  font-family: var(--tap-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--tap-ink);
  letter-spacing: -0.02em;
}

/* ─── Orders: decrees, not cards ─── */
.hast-body .hast-format.hast-orders {
  background-image:
    linear-gradient(
      180deg,
      rgba(251, 246, 232, 0.92) 0%,
      rgba(251, 246, 232, 0.85) 50%,
      rgba(251, 246, 232, 0.9) 100%
    ),
    url("hastings-assets/img-8746.jpg");
  background-size: auto, cover;
  background-position: 0 0, center 36%;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(83, 63, 45, 0.06);
  border-bottom: 1px solid rgba(83, 63, 45, 0.05);
}
.hast-body .hast-orders .hast-format__header {
  max-width: 36rem;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.hast-body .hast-orders__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
}
.hast-body .hast-order {
  padding: 0 0 8px;
  margin: 0;
  border: none;
  background: none;
  border-bottom: 1px solid rgba(83, 63, 45, 0.12);
}
.hast-body .hast-order__roman {
  display: block;
  font-family: var(--tap-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.hast-body .hast-order:nth-child(1) .hast-order__roman { color: var(--tap-rust); }
.hast-body .hast-order:nth-child(2) .hast-order__roman { color: var(--tap-ochre); }
.hast-body .hast-order:nth-child(3) .hast-order__roman { color: var(--tap-olive); }
.hast-body .hast-order:nth-child(4) .hast-order__roman { color: var(--tap-navy); }
.hast-body .hast-order h3 {
  font-family: var(--tap-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--tap-ink);
}
.hast-body .hast-order p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--tap-ink-soft);
  margin: 0;
  max-width: 42ch;
}

/* ─── Provisions: quiet interlude ─── */
.hast-body .hast-provisions {
  padding: clamp(72px, 10vw, 110px) clamp(20px, 4vw, 40px);
  background-image:
    linear-gradient(
      180deg,
      rgba(251, 246, 232, 0.88) 0%,
      rgba(234, 223, 193, 0.82) 100%
    ),
    url("hastings-assets/img-8747.jpg");
  background-size: auto, cover;
  background-position: 0 0, center 45%;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(83, 63, 45, 0.06);
  border-bottom: 1px solid rgba(83, 63, 45, 0.06);
}
.hast-body .hast-provisions .hast-rules__inner {
  grid-template-columns: minmax(0, 220px) repeat(3, minmax(0, 1fr));
  gap: 40px 36px;
}
.hast-body .hast-provisions .hast-rules__item {
  border: none;
  background: none;
  padding: 0;
}
.hast-body .hast-provisions .hast-rules__item h4 {
  font-family: var(--hast-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  color: var(--tap-ink);
}
.hast-body .hast-provisions .hast-rules__item p {
  font-size: 15px;
  line-height: 1.7;
}

/* ─── FAQ: functional, narrow ─── */
.hast-body .hast-faq {
  padding: clamp(88px, 11vw, 120px) 24px;
  background-color: var(--tap-canvas);
  background-image:
    linear-gradient(180deg, rgba(251, 246, 232, 0.9) 0%, rgba(251, 246, 232, 0.84) 100%),
    url("hastings-assets/img-8784.jpg");
  background-size: auto, cover;
  background-position: 0 0, center 50%;
  background-repeat: no-repeat;
}
.hast-body .hast-faq__inner {
  max-width: 520px;
  margin: 0 auto;
}
.hast-body .hast-faq__heading {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 28px;
}
.hast-body .hast-faq__list {
  gap: 0;
}
.hast-body .hast-faq__item {
  border: none;
  background: rgba(255, 255, 255, 0.42);
  padding: 0 14px;
  border-radius: 2px;
  border-bottom: 1px solid rgba(83, 63, 45, 0.08);
  margin-bottom: 8px;
}
.hast-body .hast-faq__q {
  font-family: var(--hast-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 20px 0;
  line-height: 1.35;
}
.hast-body .hast-faq__a {
  font-size: 15px;
}

/* ─── Enlistment: paper column ─── */
.hast-body .hast-apply__inner {
  max-width: 520px;
}
.hast-body .hast-apply__heading {
  font-size: clamp(40px, 5vw, 64px);
}
.hast-body .hast-form {
  border: none;
  border-top: 1px solid rgba(248, 236, 208, 0.18);
  padding: 36px 0 0;
  margin-top: 8px;
  background: transparent;
  border-radius: 0;
}
.hast-body .hast-success {
  border: none;
  border-top: 1px solid rgba(248, 236, 208, 0.2);
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.hast-body .hast-success h3 {
  font-size: clamp(32px, 4vw, 48px);
}

.hast-body .hast-apply .btn--ochre {
  background: var(--hast-soot) !important;
  color: #f7f0e4 !important;
  border-color: var(--hast-soot) !important;
  border-radius: 2px !important;
  box-shadow: none !important;
}

/* Section rhythm */
.hast-body .hast-format {
  padding: clamp(88px, 11vw, 132px) clamp(20px, 4vw, 40px);
}

@media (max-width: 900px) {
  .hast-body .hast-orders__grid {
    grid-template-columns: 1fr;
  }
  .hast-body .hast-provisions .hast-rules__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .hast-body .hast-route__nodes:not(.hast-march__cards) {
    flex-direction: column;
  }
  .hast-body .hast-route__nodes:not(.hast-march__cards) .hast-route__node {
    min-width: 100%;
  }
}

/* ═══════════════════════════════════════════
   THE MARCH — parchment chapter cards (no map)
   (Skipped when .hast-editorial — UNO march styles apply instead.)
═══════════════════════════════════════════ */

.hast-body:not(.hast-editorial) .hast-route.hast-march {
  padding: clamp(104px, 13vw, 152px) clamp(20px, 4vw, 48px) clamp(92px, 11vw, 128px);
  background:
    linear-gradient(
      180deg,
      rgba(3, 2, 2, 0.82) 0%,
      rgba(5, 4, 3, 0.88) 42%,
      rgba(4, 3, 2, 0.91) 100%
    ),
    url("hastings-assets/img-8652.jpg") center 42% / cover no-repeat;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.hast-body:not(.hast-editorial) .hast-route.hast-march::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    transparent 38%,
    rgba(0, 0, 0, 0.42) 100%
  );
  opacity: 1;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__header {
  text-align: center;
  margin-bottom: 20px;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__heading {
  margin-bottom: 22px;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__sub {
  margin: 0 auto;
  max-width: 38ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(248, 236, 208, 0.62);
}

.hast-body:not(.hast-editorial) .hast-march__stitch {
  max-width: min(720px, 90vw);
  margin: 0 auto 48px;
  padding: 0 20px;
}

.hast-body:not(.hast-editorial) .hast-march__stitch-line {
  display: block;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(201, 168, 74, 0.52) 0 5px,
    transparent 5px 13px
  );
  opacity: 0.95;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__track.hast-march__shell {
  position: relative;
  z-index: 1;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 auto;
  max-width: 1180px;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__track::before {
  display: none !important;
}

.hast-body:not(.hast-editorial) .hast-march .hast-march__cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 30px);
  align-items: stretch;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node {
  grid-column: span 2;
  --march-accent: var(--tap-terracotta);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: linear-gradient(180deg, #f9f4e8 0%, #efe6d4 100%);
  border: 1px solid rgba(40, 30, 22, 0.11);
  border-top: 3px solid var(--march-accent);
  border-radius: 2px;
  padding: 28px 26px 26px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node:nth-child(4) {
  grid-column: 2 / 4;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node:nth-child(5) {
  grid-column: 4 / 6;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node--start {
  --march-accent: var(--tap-terracotta);
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node--ex1 {
  --march-accent: var(--tap-mustard);
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node--ex2 {
  --march-accent: var(--tap-olive);
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node--ex3 {
  --march-accent: var(--tap-slate);
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node--finish {
  --march-accent: var(--tap-mustard);
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node--key {
  padding-top: 30px;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__dot {
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tap-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: #e4dbc4;
  border: 2px solid var(--march-accent);
  color: #1f1812;
  box-shadow: none;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node--key .hast-route__dot {
  width: 52px;
  height: 52px;
  font-size: 13px;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__node--finish .hast-route__dot {
  background: #faf6ec;
  border-width: 3px;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__leg {
  font-family: var(--hast-sans, "DM Sans", system-ui, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(35, 27, 20, 0.48);
  margin-bottom: 14px;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__place {
  font-family: var(--tap-display);
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #1a1410;
  margin-bottom: 10px;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__dist {
  font-family: var(--hast-sans, "DM Sans", system-ui, sans-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(35, 27, 20, 0.52);
  margin-bottom: 16px;
}

.hast-body:not(.hast-editorial) .hast-march .hast-route__note {
  font-family: var(--tap-display);
  font-size: 16px;
  line-height: 1.55;
  color: #5a4a3a;
  max-width: 28ch;
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .hast-body:not(.hast-editorial) .hast-march .hast-route__node:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.38);
    border-color: rgba(40, 30, 22, 0.16);
  }
}

@media (max-width: 1080px) {
  .hast-body:not(.hast-editorial) .hast-march .hast-march__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 4px 12px 18px 4px;
    margin: 0 -12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .hast-body:not(.hast-editorial) .hast-march .hast-route__node {
    flex: 0 0 min(300px, 84vw);
    scroll-snap-align: start;
    grid-column: auto !important;
  }

  .hast-body:not(.hast-editorial) .hast-march .hast-route__node--key {
    flex: 0 0 min(318px, 86vw);
  }
}

@media (max-width: 520px) {
  .hast-body:not(.hast-editorial) .hast-march .hast-march__cards {
    flex-direction: column;
    overflow-x: visible;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    scroll-snap-type: none;
  }

  .hast-body:not(.hast-editorial) .hast-march .hast-route__node,
  .hast-body:not(.hast-editorial) .hast-march .hast-route__node--key {
    flex: none;
    width: 100%;
  }

  .hast-body:not(.hast-editorial) .hast-march .hast-route__note {
    max-width: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   UNO EDITORIAL REFERENCE — hairline grid, blurred hero, asymmetric splits
═══════════════════════════════════════════════════════════════ */

.hast-body.hast-editorial {
  --hast-nav-gold: #c29d43;
  --hast-nav-gold-hover: #a88438;
  --hast-ed-border: #000000;
  --hast-ed-ink: #1a1a1a;
  --hast-ed-muted: #5c5a56;
  --hast-ed-warm: #f2f0ed;
  --hast-ed-cool: #ebe8e2;
  --hast-ed-gallery: #e6e2db;
  --hast-ed-cream: #e8e4dc;
  --hast-ed-sage: #8f9f88;
  --hast-ed-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --hast-ed-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --hast-ed-pad-x: clamp(28px, 5vw, 56px);
  --hast-ed-pad-y: clamp(48px, 7vw, 88px);
  --hast-ed-max: 1200px;
  background: var(--hast-ed-warm);
  color: var(--hast-ed-ink);
}

.hast-body.hast-editorial .hast-stride {
  display: none !important;
}

.hast-body.hast-editorial .hast-editorial-main {
  max-width: var(--hast-ed-max);
  margin: 0 auto;
  border-left: 1px solid var(--hast-ed-border);
  border-right: 1px solid var(--hast-ed-border);
  background: var(--hast-ed-warm);
  overflow-x: hidden;
}

/* Stop iOS/Android horizontal rubber-band from full-bleed map / wide crops */
html:has(body.hast-body.hast-editorial) {
  overflow-x: hidden;
}
body.hast-body.hast-editorial {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* —— Nav — platform spacing/typography; gold accent on Battle for Hastings link —— */
.hast-body.hast-editorial .nav {
  background: rgba(242, 237, 230, 0.9) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-top: none !important;
  border-bottom: 1px solid transparent !important;
  transition: border-color 200ms ease;
}
.hast-body.hast-editorial .nav.scrolled {
  border-bottom-color: var(--border) !important;
}
.hast-body.hast-editorial .nav__inner {
  max-width: var(--hast-ed-max) !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  gap: 32px;
  justify-content: space-between;
}
.hast-body.hast-editorial header.nav .nav__logo-mark circle,
.hast-body.hast-editorial header.nav .nav__logo-mark path {
  stroke: var(--tap-flame) !important;
}
.hast-body.hast-editorial header.nav .nav__logo-word--uno {
  font-family: var(--font);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--text) !important;
}
@media (min-width: 601px) {
  .hast-body.hast-editorial .nav__hamburger-wrap {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .hast-body.hast-editorial .nav__links,
  .hast-body.hast-editorial .nav__actions {
    display: none !important;
  }
  .hast-body.hast-editorial .nav__hamburger-wrap {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-left: auto !important;
  }
  .hast-body.hast-editorial .nav__hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin-left: 0 !important;
    padding: 4px 0 0;
  }
}
.hast-body.hast-editorial .nav__hamburger {
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-left: 0 !important;
  padding: 4px 0 0;
}
.hast-body.hast-editorial .nav__menu-label {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.hast-body.hast-editorial .nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text) !important;
  border-radius: 2px;
}
@media (min-width: 601px) {
  .hast-body.hast-editorial .nav__links {
    gap: 2px;
  }
  .hast-body.hast-editorial .nav__links a {
    font-family: var(--font);
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: normal;
    color: var(--muted) !important;
    padding: 6px 10px;
    border-radius: 2px;
  }
  .hast-body.hast-editorial .nav__links a.nav__link--bfh {
    color: var(--hast-nav-gold) !important;
    font-weight: 700 !important;
  }
  @media (hover: hover) and (pointer: fine) {
    .hast-body.hast-editorial .nav__links a:hover {
      color: var(--text) !important;
      background: rgba(0, 0, 0, 0.05) !important;
    }
    .hast-body.hast-editorial .nav__links a.nav__link--bfh:hover {
      color: var(--hast-nav-gold-hover) !important;
      background: rgba(194, 157, 67, 0.08) !important;
    }
  }
  .hast-body.hast-editorial .nav__actions .btn--primary {
    background: var(--tap-terracotta) !important;
    border: 1px solid var(--tap-earth) !important;
    color: #fafaf8 !important;
    border-radius: 2px !important;
    font-family: var(--font);
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em;
    text-transform: none;
    padding: 9px 18px;
    box-shadow: 0 2px 12px rgba(26, 26, 26, 0.1);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  @media (hover: hover) and (pointer: fine) {
    .hast-body.hast-editorial .nav__actions .btn--primary:hover {
      background: var(--tap-flame) !important;
      border-color: var(--tap-flame) !important;
      box-shadow: 0 4px 18px rgba(26, 26, 26, 0.14) !important;
    }
  }
}

/* —— Hero: two columns (copy | heraldic crest), editorial warm ground —— */
.hast-body.hast-editorial .hast-hero.hast-hero--heading-img {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(72vh, 680px) !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hast-ed-warm) !important;
  background-image: none !important;
  border-bottom: 1px solid var(--hast-ed-border);
}
.hast-body.hast-editorial .hast-hero__heading-inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--hast-ed-max);
  margin: 0 auto;
  padding: clamp(48px, 9vh, 100px) var(--hast-ed-pad-x);
}
.hast-body.hast-editorial .hast-hero__heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1.22fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.hast-body.hast-editorial .hast-hero__heading-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: clamp(14px, 2.2vh, 22px);
  min-width: 0;
}
.hast-body.hast-editorial .hast-hero__heading-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  width: 100%;
}
.hast-body.hast-editorial .hast-hero__crest-img {
  width: 100%;
  max-width: min(720px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(26, 26, 26, 0.14));
}
.hast-body.hast-editorial .hast-hero.hast-hero--heading-img .hast-hero__title-heading {
  margin: 0;
  padding: 0;
  line-height: 1.05;
  background: none;
  font-weight: 400;
}
.hast-body.hast-editorial .hast-hero.hast-hero--heading-img .hast-hero__title-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35em;
}
.hast-body.hast-editorial .hast-hero.hast-hero--heading-img .hast-hero__title-main--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.02em;
}
.hast-body.hast-editorial .hast-hero.hast-hero--heading-img .hast-hero__title-word--lg {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--hast-ed-ink);
}
.hast-body.hast-editorial .hast-hero.hast-hero--heading-img .hast-hero__title-word--sm {
  font-family: "Cinzel", serif;
  font-size: clamp(10px, 1.6vw, 12px);
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: lowercase;
  line-height: 1.2;
  color: var(--hast-ed-muted);
  margin: 0.06em 0 0.04em;
  padding-left: 0.5em;
}
.hast-body.hast-editorial .hast-hero__hero-deck {
  margin: 0;
  font-family: var(--hast-ed-sans);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--hast-ed-muted);
  max-width: 42ch;
}
.hast-body.hast-editorial .hast-hero__crew-credit {
  margin: 0;
  font-family: var(--hast-ed-sans);
  font-size: clamp(11px, 1.15vw, 13px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(20, 20, 20, 0.48);
  max-width: 42ch;
}
.hast-body.hast-editorial .hast-hero__crew-credit a {
  color: var(--hast-ed-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-hero__crew-credit a:hover {
    color: var(--tap-terracotta);
  }
}
.hast-body.hast-editorial .hast-hero__hero-date {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  font-family: var(--hast-ed-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hast-ed-ink);
}
.hast-body.hast-editorial .hast-hero__hero-date::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tap-flame);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(200, 88, 50, 0.25);
}
.hast-body.hast-editorial .hast-hero__hero-date--lead {
  margin: 0 0 clamp(2px, 0.4vh, 6px);
}
.hast-body.hast-editorial .hast-hero__hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 2vh, 18px);
  width: 100%;
  max-width: min(320px, 100%);
}
.hast-body.hast-editorial .hast-hero__cta {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  padding: 14px 28px !important;
  font-family: var(--hast-ed-sans) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-align: center;
  line-height: 1.25;
  background: var(--tap-terracotta) !important;
  border: 1px solid var(--tap-earth) !important;
  color: #fafaf8 !important;
  border-radius: 0 !important;
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-hero__cta:hover {
    background: var(--tap-flame) !important;
    border-color: var(--tap-flame) !important;
    box-shadow: 0 6px 22px rgba(26, 26, 26, 0.16);
  }
}
.hast-body.hast-editorial .hast-hero__cta:focus-visible {
  outline: 2px solid var(--hast-ed-ink);
  outline-offset: 3px;
}
.hast-body.hast-editorial .hast-hero__hero-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px 10px;
  font-family: var(--hast-ed-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hast-body.hast-editorial .hast-hero__hero-meta-sep {
  opacity: 0.4;
  user-select: none;
}
.hast-body.hast-editorial .hast-hero__hero-meta a {
  color: var(--hast-ed-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 88, 50, 0.45);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-hero__hero-meta a:hover {
    color: var(--tap-terracotta);
    border-bottom-color: var(--tap-flame);
  }
}
@media (max-width: 820px) {
  .hast-body.hast-editorial .hast-hero__heading-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vh, 40px);
  }
  .hast-body.hast-editorial .hast-hero__heading-visual {
    max-width: min(560px, 94vw);
    margin: 0 auto;
  }
  .hast-body.hast-editorial .hast-hero__heading-copy {
    align-items: center;
    text-align: center;
  }
  .hast-body.hast-editorial .hast-hero.hast-hero--heading-img .hast-hero__title-text,
  .hast-body.hast-editorial .hast-hero.hast-hero--heading-img .hast-hero__title-main--stacked {
    align-items: center;
  }
  .hast-body.hast-editorial .hast-hero__hero-date {
    justify-content: center;
  }
  .hast-body.hast-editorial .hast-hero__hero-actions {
    align-items: center;
  }
  .hast-body.hast-editorial .hast-hero__hero-meta {
    justify-content: center;
  }
}
@media (max-width: 540px) {
  .hast-body.hast-editorial .hast-hero.hast-hero--heading-img .hast-hero__title-word--sm {
    letter-spacing: 0.38em;
    padding-left: 0.38em;
  }
}

/* —— Campaign: asymmetric grid + hairline —— */
.hast-body.hast-editorial .hast-section-kicker {
  font-family: var(--hast-ed-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--tap-terracotta);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px !important;
}
.hast-body.hast-editorial .hast-section-kicker::before {
  content: '✦ ';
  opacity: 0.55;
  font-size: 9px;
  vertical-align: middle;
}
.hast-body.hast-editorial .hast-intro {
  padding: 0;
  background: var(--hast-ed-warm);
  border-bottom: 1px solid var(--hast-ed-border);
}
/* UNO: ~2/3 text | ~1/3 image */
.hast-body.hast-editorial .hast-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 0;
  max-width: none;
  margin: 0;
  align-items: stretch;
}
.hast-body.hast-editorial .hast-intro__left {
  padding: var(--hast-ed-pad-y) var(--hast-ed-pad-x);
  border-right: 1px solid var(--hast-ed-border);
  text-align: left;
}
.hast-body.hast-editorial .hast-intro__heading {
  font-size: clamp(32px, 4.2vw, 52px) !important;
  line-height: 1.06 !important;
  max-width: 14ch;
  font-weight: 600 !important;
}
.hast-body.hast-editorial .hast-intro__heading,
.hast-body.hast-editorial .hast-format__heading,
.hast-body.hast-editorial .hast-route__heading,
.hast-body.hast-editorial .hast-faq__heading,
.hast-body.hast-editorial .hast-apply__heading,
.hast-body.hast-editorial .hast-provisions .hast-rules__intro h3 {
  font-family: var(--hast-ed-serif) !important;
  font-weight: 600;
  color: var(--hast-ed-ink) !important;
}
.hast-body.hast-editorial .hast-intro__body,
.hast-body.hast-editorial .hast-intro__history p {
  font-family: var(--hast-ed-sans);
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  color: var(--hast-ed-muted);
}
.hast-body.hast-editorial .hast-intro__history::before {
  top: 10px;
}
.hast-body.hast-editorial .hast-meta-rail {
  border-top: 1px solid var(--hast-ed-border);
  margin-top: 36px;
  padding-top: 28px;
}
.hast-body.hast-editorial .hast-meta-rail__v {
  font-family: var(--hast-ed-serif) !important;
  color: var(--hast-ed-ink) !important;
}
.hast-body.hast-editorial .hast-meta-rail__k {
  font-size: 9px;
  letter-spacing: 0.2em;
}
.hast-body.hast-editorial .hast-artifact {
  margin: 0;
  padding: 0;
  min-height: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  background: var(--hast-ed-warm);
}
.hast-body.hast-editorial .hast-faq__q-cell {
  margin: 0;
  padding: 0;
}
.hast-body.hast-editorial .hast-artifact__frame {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  border: none;
  background: var(--tap-earth);
}
.hast-body.hast-editorial .hast-artifact__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hast-body.hast-editorial .hast-intro__heading em,
.hast-body.hast-editorial .hast-format__heading em,
.hast-body.hast-editorial .hast-faq__heading em {
  font-style: italic;
  font-weight: 500;
}
.hast-body.hast-editorial .hast-artifact__cap {
  display: none;
}

/* Editorial flourishes: icons beside headings (tan / warm panels only — not hero or photo rails) */
.hast-body.hast-editorial .hast-ed-icon-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 2.8vw, 22px);
  align-items: start;
}
.hast-body.hast-editorial .hast-intro__left > .hast-ed-icon-row {
  margin-bottom: clamp(18px, 3vw, 26px);
}
.hast-body.hast-editorial img.hast-ed-icon {
  width: clamp(48px, 11vw, 80px);
  height: auto;
  flex-shrink: 0;
  opacity: 0.92;
  display: block;
  object-fit: contain;
}
.hast-body.hast-editorial .hast-ed-icon--flip {
  transform: scaleX(-1);
}
.hast-body.hast-editorial .hast-intro__left .hast-ed-icon-row .hast-ed-icon {
  margin-top: 0.28rem;
}
.hast-body.hast-editorial .hast-ed-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 20px);
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}
.hast-body.hast-editorial .hast-ed-head__text {
  flex: 1 1 min(100%, 22rem);
  min-width: 0;
  text-align: center;
}
.hast-body.hast-editorial .hast-ed-head .hast-ed-icon {
  margin-top: 0;
}
@media (max-width: 520px) {
  .hast-body.hast-editorial .hast-ed-head {
    flex-direction: column;
    align-items: center;
  }
  .hast-body.hast-editorial .hast-ed-head__text {
    flex-basis: auto;
    width: 100%;
  }
}
.hast-body.hast-editorial .hast-apply__inner > .hast-ed-icon-row {
  margin-bottom: clamp(22px, 3.5vw, 32px);
}

/* —— Route map (editorial): cartographic plate + waypoints + annotation panel —— */
.hast-body.hast-editorial .hast-route-map {
  --rm-paper: #f9f8f4;
  --rm-ink: #222222;
  --rm-muted: rgba(34, 34, 34, 0.52);
  background: var(--hast-ed-warm) !important;
  background-image: none !important;
  padding: clamp(20px, 3.2vw, 36px) var(--hast-ed-pad-x) clamp(14px, 2.2vw, 24px) !important;
  border-top: none !important;
  border-bottom: 1px solid var(--hast-ed-border) !important;
  overflow-x: hidden;
}
.hast-body.hast-editorial .hast-route-map__header {
  text-align: center;
  margin: 0 auto 0;
  max-width: 40rem;
}
.hast-body.hast-editorial .hast-route-map__header .hast-section-kicker {
  margin-bottom: 4px !important;
}
.hast-body.hast-editorial .hast-route-map .hast-section-kicker--light {
  color: var(--tap-terracotta) !important;
}
.hast-body.hast-editorial .hast-route-map__title {
  margin: 0;
  font-family: var(--hast-ed-serif) !important;
  font-size: clamp(28px, 3.4vw, 40px) !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  color: var(--hast-ed-ink) !important;
}
.hast-body.hast-editorial .hast-route-map__lede {
  margin: 2px 0 0;
  padding-bottom: 0;
  font-family: var(--hast-ed-sans) !important;
  font-size: 14px;
  line-height: 1.5;
  color: var(--hast-ed-muted) !important;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}
.hast-body.hast-editorial .hast-route-map__body {
  max-width: min(1040px, 100%);
  margin: clamp(-40px, -6.5vw, -16px) auto 0;
}
.hast-body.hast-editorial .hast-route-map__stage {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.hast-body.hast-editorial .hast-route-map__map-wrap {
  position: relative;
  line-height: 0;
  overflow: visible;
  transform: translate(0, 0);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  /* Trim transparent tail of PNG without pulling nav too close */
  margin-bottom: clamp(-52px, -9vw, -18px);
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-route-map__map-wrap:hover {
    transform: translate(-4px, -5px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hast-body.hast-editorial .hast-route-map__map-wrap {
    transition: none;
  }
  .hast-body.hast-editorial .hast-route-map__map-wrap:hover {
    transform: none;
  }
}
.hast-body.hast-editorial .hast-route-map__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  /* Alpha-aware shadow: follows the irregular map silhouette */
  filter: drop-shadow(0 14px 28px rgba(20, 18, 14, 0.12))
    drop-shadow(0 4px 12px rgba(20, 18, 14, 0.08));
}
@media (prefers-reduced-motion: reduce) {
  .hast-body.hast-editorial .hast-route-map__img {
    filter: drop-shadow(0 8px 20px rgba(20, 18, 14, 0.1));
  }
}
.hast-body.hast-editorial .hast-route-map__marker {
  position: absolute;
  z-index: 4;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease;
}
.hast-body.hast-editorial .hast-route-map__marker:hover,
.hast-body.hast-editorial .hast-route-map__marker:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  outline: none;
}
.hast-body.hast-editorial .hast-route-map__marker:focus-visible .hast-route-map__marker-ring {
  box-shadow: 0 0 0 2px var(--hast-ed-warm), 0 0 0 4px var(--tap-terracotta);
}
.hast-body.hast-editorial .hast-route-map__marker[aria-pressed='true'] {
  transform: translate(-50%, -50%) scale(1.08);
}
.hast-body.hast-editorial .hast-route-map__marker-ring {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(34, 34, 34, 0.45);
  background: rgba(255, 255, 255, 0.62);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hast-body.hast-editorial .hast-route-map__marker-core {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rm-ink);
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hast-body.hast-editorial .hast-route-map__marker[aria-pressed='true'] .hast-route-map__marker-ring {
  border-color: rgba(34, 34, 34, 0.85);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.hast-body.hast-editorial .hast-route-map__marker[aria-pressed='true'] .hast-route-map__marker-core {
  opacity: 1;
  transform: scale(1.1);
}
.hast-body.hast-editorial .hast-route-map__panel {
  box-sizing: border-box;
  width: min(288px, calc(100% - 32px));
  padding: 18px 18px 16px;
  background: #fdfcfa;
  border: 1px solid rgba(34, 34, 34, 0.12);
  box-shadow: 0 12px 36px rgba(20, 18, 14, 0.08);
  transition: opacity 0.2s ease, transform 0.2s ease;
  /* Panel stacks above the map; without this it swallows clicks meant for waypoints */
  pointer-events: none;
}
.hast-body.hast-editorial .hast-route-map__panel > * {
  pointer-events: auto;
}
.hast-body.hast-editorial .hast-route-map__panel-stage {
  margin: 0 0 8px;
  font-family: var(--hast-ed-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rm-muted);
}
.hast-body.hast-editorial .hast-route-map__panel-name {
  margin: 0 0 10px;
  font-family: var(--hast-ed-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--rm-ink);
}
.hast-body.hast-editorial .hast-route-map__panel-meta {
  margin: 0 0 12px;
  font-family: var(--hast-ed-sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--rm-muted);
}
.hast-body.hast-editorial .hast-route-map__panel-copy {
  margin: 0;
  font-family: var(--hast-ed-sans);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(34, 34, 34, 0.62);
}
@media (min-width: 721px) {
  .hast-body.hast-editorial .hast-route-map__stage {
    min-height: 0;
  }
  .hast-body.hast-editorial .hast-route-map__panel {
    position: absolute;
    z-index: 3;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.98;
  }
}
@media (max-width: 720px) {
  .hast-body.hast-editorial .hast-route-map__map-wrap {
    /* Pull nearly to the section edge; keep a thin gutter off the viewport */
    --rm-map-bleed: max(0px, calc(var(--hast-ed-pad-x) - clamp(8px, 2.4vw, 14px)));
    width: calc(100% + 2 * var(--rm-map-bleed));
    max-width: none;
    margin-left: calc(-1 * var(--rm-map-bleed));
    margin-right: calc(-1 * var(--rm-map-bleed));
    margin-bottom: clamp(-36px, -8vw, -14px);
  }
  .hast-body.hast-editorial .hast-route-map__img {
    filter: drop-shadow(0 10px 22px rgba(20, 18, 14, 0.1))
      drop-shadow(0 3px 10px rgba(20, 18, 14, 0.07));
  }
  .hast-body.hast-editorial .hast-route-map__stage {
    display: flex;
    flex-direction: column;
  }
  .hast-body.hast-editorial .hast-route-map__panel {
    position: relative;
    align-self: center;
    width: min(100%, 19.5rem);
    max-width: calc(100% - 24px);
    margin: 10px 12px 0;
    padding: 11px 14px 10px;
    border: 1px solid rgba(34, 34, 34, 0.1);
    border-radius: 2px;
    box-shadow: 0 6px 20px rgba(20, 18, 14, 0.06);
    transform: none;
  }
  .hast-body.hast-editorial .hast-route-map__panel-stage {
    margin: 0 0 4px;
    font-size: 8px;
    letter-spacing: 0.2em;
  }
  .hast-body.hast-editorial .hast-route-map__panel-name {
    margin: 0 0 6px;
    font-size: clamp(17px, 4.6vw, 21px);
  }
  .hast-body.hast-editorial .hast-route-map__panel-meta {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.4;
  }
  .hast-body.hast-editorial .hast-route-map__panel-copy {
    font-size: 12.5px;
    line-height: 1.5;
  }
  .hast-body.hast-editorial .hast-route-map__marker {
    width: 52px;
    height: 52px;
  }
}
.hast-body.hast-editorial .hast-route-map__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-top: clamp(22px, 4vw, 40px);
  padding: 0;
  border-top: 1px solid var(--hast-ed-border);
  border-bottom: 1px solid var(--hast-ed-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.hast-body.hast-editorial .hast-route-map__nav-item {
  flex: 1 1 auto;
  min-width: max-content;
  margin: 0;
  padding: 8px 10px;
  font-family: var(--hast-ed-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hast-ed-muted);
  background: transparent;
  border: none;
  border-right: 1px solid var(--hast-ed-border);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.hast-body.hast-editorial .hast-route-map__nav-item:last-child {
  border-right: none;
}
.hast-body.hast-editorial .hast-route-map__nav-item:hover,
.hast-body.hast-editorial .hast-route-map__nav-item:focus-visible {
  color: var(--rm-ink);
  background: rgba(249, 248, 244, 0.9);
  outline: none;
}
.hast-body.hast-editorial .hast-route-map__nav-item:focus-visible {
  box-shadow: inset 0 0 0 2px var(--tap-terracotta);
  z-index: 1;
}
.hast-body.hast-editorial .hast-route-map__nav-item[aria-pressed='true'] {
  color: var(--rm-ink);
  background: rgba(249, 248, 244, 1);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* —— Photo strip: auto-scrolling horizontal carousel (duplicate track = seamless loop) —— */
.hast-body.hast-editorial .hast-editorial-process {
  background: var(--hast-ed-gallery);
  border-bottom: 1px solid var(--hast-ed-border);
  padding: clamp(48px, 8vw, 88px) var(--hast-ed-pad-x);
}
.hast-body.hast-editorial .hast-editorial-process--carousel {
  padding-left: 0;
  padding-right: 0;
  padding-top: clamp(16px, 2.2vw, 32px);
  padding-bottom: clamp(48px, 8vw, 88px);
}
.hast-body.hast-editorial .hast-editorial-process__inner {
  max-width: none;
  margin: 0;
  position: relative;
  padding-top: 0.25rem;
}
.hast-body.hast-editorial .hast-editorial-process--carousel .hast-editorial-process__inner {
  padding-top: 0;
}
.hast-body.hast-editorial .hast-editorial-process--carousel .hast-editorial-process__inner::before {
  display: none;
}
.hast-body.hast-editorial .hast-editorial-process__carousel-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--hast-ed-border);
  border-left: none;
  border-right: none;
  background: var(--hast-ed-gallery);
  margin: 0;
  width: 100%;
  max-width: none;
}
@keyframes hast-process-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.hast-body.hast-editorial .hast-editorial-process__carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: hast-process-marquee 48s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hast-body.hast-editorial .hast-editorial-process__carousel-track {
    animation: none;
  }
}
.hast-body.hast-editorial .hast-editorial-process__carousel-group {
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
}
.hast-body.hast-editorial .hast-editorial-process--carousel .hast-editorial-process__cell {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  flex: 0 0 auto;
  width: clamp(220px, 32vw, 380px);
  border-right: 1px solid var(--hast-ed-border);
  background: var(--hast-ed-gallery);
}
.hast-body.hast-editorial .hast-editorial-process__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #d0ccc4;
}
.hast-body.hast-editorial .hast-editorial-process__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Portrait stash tee — face sits high; square crop was clipping the cap. */
.hast-body.hast-editorial .hast-editorial-process__img img.hast-process-img--stash-shirt {
  object-position: 50% 24%;
}

.hast-body.hast-editorial .hast-editorial-process__stash {
  max-width: 38rem;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px) var(--hast-ed-pad-x) 0;
  text-align: center;
}
.hast-body.hast-editorial .hast-editorial-process__stash-title {
  margin: 0 0 clamp(14px, 2.2vw, 22px);
  font-family: "Cinzel", var(--hast-ed-serif);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.08;
  color: var(--tap-terracotta);
}
.hast-body.hast-editorial .hast-editorial-process__stash-lede {
  font-family: var(--hast-ed-sans);
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.65;
  color: var(--hast-ed-muted);
  margin: 0;
  text-wrap: balance;
}
.hast-body.hast-editorial .hast-editorial-process__stash-link-wrap {
  margin: 18px 0 0;
}
.hast-body.hast-editorial .hast-editorial-process__stash-link {
  font-family: var(--hast-ed-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tap-terracotta);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--tap-terracotta) 45%, transparent);
  padding-bottom: 2px;
}
.hast-body.hast-editorial .hast-editorial-process__stash-link:hover {
  color: color-mix(in srgb, var(--tap-terracotta) 80%, black);
  border-bottom-color: color-mix(in srgb, var(--tap-terracotta) 70%, transparent);
}

/* —— Split bands: UNO 65/35 then mirrored; FAQ band 60/40 —— */
.hast-body.hast-editorial .hast-editorial-split {
  display: grid;
  gap: 0;
  min-height: min(520px, 70vh);
  border-bottom: 1px solid var(--hast-ed-border);
}
/* UNO: ~2/3 copy | ~1/3 photo, images bottom-aligned to hairline */
.hast-body.hast-editorial .hast-editorial-split--orders {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}
.hast-body.hast-editorial .hast-editorial-split--provisions {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}
/* UNO section 5: ~70% copy | ~30% image */
.hast-body.hast-editorial .hast-editorial-split--faq {
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  align-items: stretch;
  min-height: min(680px, 88vh);
}
.hast-body.hast-editorial .hast-editorial-split__media {
  position: relative;
  min-height: min(360px, 50vh);
  align-self: stretch;
  background: var(--tap-earth);
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.hast-body.hast-editorial .hast-editorial-split--orders .hast-editorial-split__media,
.hast-body.hast-editorial .hast-editorial-split--provisions .hast-editorial-split__media {
  min-height: 100%;
}
.hast-body.hast-editorial .hast-editorial-split--orders .hast-editorial-split__media {
  border-left: 1px solid var(--hast-ed-border);
}
.hast-body.hast-editorial .hast-editorial-split--provisions .hast-editorial-split__media {
  border-right: 1px solid var(--hast-ed-border);
}
.hast-body.hast-editorial .hast-editorial-split--faq .hast-editorial-split__media {
  border-left: 1px solid var(--hast-ed-border);
  min-height: 100%;
}
.hast-body.hast-editorial .hast-editorial-split--orders .hast-editorial-split__media img,
.hast-body.hast-editorial .hast-editorial-split--provisions .hast-editorial-split__media img,
.hast-body.hast-editorial .hast-editorial-split--faq .hast-editorial-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: none;
  max-width: none;
  max-height: none;
}
.hast-body.hast-editorial .hast-editorial-split--provisions .hast-editorial-split__media img {
  object-position: 40% center;
}
/* FAQ medal photo: wide panorama in a tall column — slight horizontal zoom-out + focal point on both runners. */
.hast-body.hast-editorial .hast-editorial-split--faq .hast-editorial-split__media img.hast-faq__photo {
  inset: unset;
  left: 50%;
  top: 0;
  width: 124%;
  height: 100%;
  max-width: none;
  transform: translateX(calc(-50% + 3.5%));
  object-fit: cover;
  object-position: 72% 28%;
}
@media (max-width: 980px) {
  /* Full-bleed width + translate can extend past the column on small viewports */
  .hast-body.hast-editorial .hast-editorial-split--faq .hast-editorial-split__media img.hast-faq__photo {
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-position: 68% 26%;
  }
}
.hast-body.hast-editorial .hast-editorial-split__content {
  padding: var(--hast-ed-pad-y) var(--hast-ed-pad-x);
  background: var(--hast-ed-warm);
}
.hast-body.hast-editorial .hast-editorial-split--orders .hast-editorial-split__content {
  background: var(--hast-ed-warm);
}

.hast-body.hast-editorial .hast-format.hast-orders {
  padding: 0 !important;
  background: none !important;
  background-image: none !important;
  border: none;
}
.hast-body.hast-editorial .hast-format__sub {
  font-family: var(--hast-ed-sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--hast-ed-muted);
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.hast-body.hast-editorial .hast-orders .hast-format__header {
  text-align: left;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.hast-body.hast-editorial .hast-format__heading {
  font-size: clamp(30px, 3.6vw, 44px) !important;
  line-height: 1.05 !important;
}
.hast-body.hast-editorial .hast-orders__grid {
  gap: 0;
  border: 1px solid var(--hast-ed-border);
}
.hast-body.hast-editorial .hast-order {
  border: none !important;
  border-right: 1px solid var(--hast-ed-border) !important;
  border-bottom: 1px solid var(--hast-ed-border) !important;
  padding: clamp(22px, 3vw, 32px) !important;
  background: #faf9f7 !important;
}
.hast-body.hast-editorial .hast-order:nth-child(2n) {
  border-right: none !important;
}
@media (min-width: 901px) {
  /* 2-column grid: bottom row shouldn't double the outer grid border */
  .hast-body.hast-editorial .hast-order:nth-child(n + 3) {
    border-bottom: none !important;
  }
}
.hast-body.hast-editorial .hast-order__roman {
  opacity: 1 !important;
  font-family: var(--hast-ed-serif) !important;
}
.hast-body.hast-editorial .hast-order:nth-child(1) .hast-order__roman {
  color: var(--tap-rust) !important;
}
.hast-body.hast-editorial .hast-order:nth-child(2) .hast-order__roman {
  color: var(--tap-ochre) !important;
}
.hast-body.hast-editorial .hast-order:nth-child(3) .hast-order__roman {
  color: var(--tap-olive) !important;
}
.hast-body.hast-editorial .hast-order:nth-child(4) .hast-order__roman {
  color: var(--tap-navy) !important;
}
.hast-body.hast-editorial .hast-order:nth-child(5) .hast-order__roman {
  color: var(--tap-rust) !important;
}
.hast-body.hast-editorial .hast-order h3 {
  font-family: var(--hast-ed-sans) !important;
  font-weight: 700 !important;
  color: var(--hast-ed-ink) !important;
}
.hast-body.hast-editorial .hast-order p {
  font-family: var(--hast-ed-sans);
  font-size: 14px;
  line-height: 1.72;
  color: var(--hast-ed-muted);
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.hast-body.hast-editorial .hast-order h3 {
  font-size: clamp(18px, 1.6vw, 22px) !important;
}
.hast-body.hast-editorial .hast-order__toggle {
  display: none;
}
.hast-body.hast-editorial .hast-order__content {
  margin-top: 12px;
}
.hast-body.hast-editorial .hast-order__bullets {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 10px;
  font-family: var(--hast-ed-sans);
  font-size: 14px;
  line-height: 1.72;
  color: var(--hast-ed-muted);
}
.hast-body.hast-editorial .hast-order__bullets li {
  margin: 0;
}

.hast-body.hast-editorial .hast-provisions {
  padding: 0 !important;
  background: none !important;
  background-image: none !important;
  border: none;
}
.hast-body.hast-editorial .hast-provisions .hast-editorial-split__content {
  background: var(--hast-ed-warm);
}
.hast-body.hast-editorial .hast-provisions .hast-rules__inner {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}
.hast-body.hast-editorial .hast-provisions .hast-rules__intro {
  margin-bottom: 28px;
}
.hast-body.hast-editorial .hast-provisions .hast-rules__intro h3 em {
  font-style: italic;
  font-weight: 500;
}
.hast-body.hast-editorial .hast-provisions .hast-rules__item {
  padding: 22px 0 !important;
  border-bottom: 1px solid var(--hast-ed-border) !important;
}
.hast-body.hast-editorial .hast-provisions .hast-rules__item:last-child {
  border-bottom: none !important;
}
.hast-body.hast-editorial .hast-provisions .hast-rules__item p {
  font-family: var(--hast-ed-sans);
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
  color: var(--hast-ed-muted);
}

.hast-body.hast-editorial .hast-faq {
  padding: 0 !important;
  background: var(--hast-ed-warm) !important;
  background-image: none !important;
  border-bottom: 1px solid var(--hast-ed-border);
}
.hast-body.hast-editorial .hast-faq .hast-editorial-split__content {
  background: var(--hast-ed-warm);
}
.hast-body.hast-editorial .hast-faq__inner {
  max-width: 36rem !important;
  margin: 0 !important;
  text-align: left;
}
.hast-body.hast-editorial .hast-faq__heading {
  font-size: clamp(32px, 4vw, 48px) !important;
  line-height: 1.02 !important;
  margin-bottom: 20px !important;
}
.hast-body.hast-editorial .hast-faq__lede {
  font-family: var(--hast-ed-sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--hast-ed-muted);
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
  margin: 0 0 28px !important;
  max-width: none;
}
.hast-body.hast-editorial .hast-faq__item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--hast-ed-border) !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 0 !important;
}
.hast-body.hast-editorial .hast-faq__q {
  color: var(--hast-ed-ink) !important;
  font-family: var(--hast-ed-serif) !important;
  font-size: clamp(17px, 1.5vw, 20px) !important;
  font-weight: 600 !important;
}
.hast-body.hast-editorial .hast-faq__a {
  color: var(--hast-ed-muted);
  font-family: var(--hast-ed-sans);
  font-size: 14px;
  line-height: 1.72;
}
.hast-body.hast-editorial .hast-faq__item:last-child {
  border-bottom: none !important;
}

/* —— Enlistment —— */
.hast-body.hast-editorial .hast-apply {
  background: var(--hast-ed-warm) !important;
  background-image: none !important;
  padding: var(--hast-ed-pad-y) var(--hast-ed-pad-x) !important;
  border-bottom: 1px solid var(--hast-ed-border);
}
.hast-body.hast-editorial .hast-apply__inner {
  max-width: 36rem !important;
}
.hast-body.hast-editorial .hast-apply::before {
  opacity: 0 !important;
}
.hast-body.hast-editorial .hast-apply__heading {
  color: var(--hast-ed-ink) !important;
  font-size: clamp(32px, 4vw, 48px) !important;
  line-height: 1.02 !important;
}
.hast-body.hast-editorial .hast-apply__sub {
  color: var(--hast-ed-muted) !important;
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.hast-body.hast-editorial .hast-section-kicker--light {
  color: var(--tap-terracotta) !important;
}
.hast-body.hast-editorial .hast-form {
  background: #fff !important;
  border: 1px solid var(--hast-ed-border) !important;
  border-top: 1px solid var(--hast-ed-border) !important;
  border-radius: 0 !important;
  padding: clamp(28px, 4vw, 40px) !important;
}
.hast-body.hast-editorial .hast-form__legend,
.hast-body.hast-editorial .hast-form__runners-label,
.hast-body.hast-editorial .hast-runner-row__leg {
  color: var(--hast-ed-muted) !important;
}
.hast-body.hast-editorial .hast-form__hint,
.hast-body.hast-editorial .hast-form__panel-lede {
  color: var(--hast-ed-muted) !important;
}
.hast-body.hast-editorial .hast-form__hint strong,
.hast-body.hast-editorial .hast-form__panel-lede strong {
  color: var(--hast-ed-ink) !important;
}
.hast-body.hast-editorial .hast-choice {
  border-color: var(--hast-ed-border) !important;
  background: #fafaf8 !important;
}
.hast-body.hast-editorial .hast-choice__text {
  color: var(--hast-ed-ink) !important;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-choice:hover {
    border-color: rgba(26, 26, 26, 0.22) !important;
    background: #fff !important;
  }
}
.hast-body.hast-editorial .hast-form__panel {
  border-color: var(--hast-ed-border) !important;
  background: #f6f5f0 !important;
}
.hast-body.hast-editorial .hast-word-count {
  color: rgba(26, 26, 26, 0.45) !important;
}
.hast-body.hast-editorial .hast-word-count--over {
  color: var(--tap-terracotta) !important;
}
.hast-body.hast-editorial .hast-field input,
.hast-body.hast-editorial .hast-field textarea,
.hast-body.hast-editorial .hast-field select {
  border: 1px solid var(--hast-ed-border) !important;
  border-radius: 0 !important;
  background: #fafaf8 !important;
  font-family: var(--hast-ed-sans);
}
.hast-body.hast-editorial .hast-apply .btn--ochre {
  background: var(--tap-terracotta) !important;
  color: #fafaf8 !important;
  border-color: var(--tap-earth) !important;
  border-radius: 0 !important;
  font-family: var(--hast-ed-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px !important;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-apply .btn--ochre:hover {
    background: var(--tap-flame) !important;
    border-color: var(--tap-flame) !important;
  }
}
.hast-body.hast-editorial .hast-apply .hast-success__btn--outline {
  background: transparent !important;
  color: var(--tap-ink) !important;
  border: 1px solid var(--hast-ed-border) !important;
  border-radius: 0 !important;
  font-family: var(--hast-ed-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px !important;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-apply .hast-success__btn--outline:hover {
    border-color: var(--tap-terracotta) !important;
    color: var(--tap-terracotta) !important;
  }
}

/* —— Footer —— */
.hast-body.hast-editorial .footer {
  background: var(--hast-ed-warm) !important;
  border-top: 1px solid var(--hast-ed-border) !important;
}
.hast-body.hast-editorial .footer__brand .nav__logo-word,
.hast-body.hast-editorial .footer__col a {
  color: var(--hast-ed-muted) !important;
}
.hast-body.hast-editorial .footer__tagline,
.hast-body.hast-editorial .footer__bottom,
.hast-body.hast-editorial .footer__col-label {
  color: rgba(20, 20, 20, 0.45) !important;
}

/* —— Mobile: sticky footer CTA (after hero; hidden while apply is in view) —— */
.hast-body.hast-editorial .hast-mobile-footer-cta-wrap {
  display: none;
}
@media (max-width: 900px) {
  body.hast-body.hast-editorial:has(.hast-mobile-footer-cta-wrap.is-visible) {
    padding-bottom: calc(12px + 52px + env(safe-area-inset-bottom, 0px));
  }
  .hast-body.hast-editorial .hast-mobile-footer-cta-wrap {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.42s step-end;
  }
  .hast-body.hast-editorial .hast-mobile-footer-cta-wrap.is-visible {
    pointer-events: auto;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s step-start;
  }
  .hast-body.hast-editorial .hast-mobile-footer-cta__btn {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 14px 24px;
    font-family: var(--hast-ed-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    line-height: 1.25;
    color: #fafaf8 !important;
    background: var(--tap-terracotta);
    border: 1px solid var(--tap-earth);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.18);
  }
  @media (hover: hover) and (pointer: fine) {
    .hast-body.hast-editorial .hast-mobile-footer-cta__btn:hover {
      background: var(--tap-flame);
      border-color: var(--tap-flame);
    }
  }
  .hast-body.hast-editorial .hast-mobile-footer-cta__btn:focus-visible {
    outline: 2px solid var(--hast-ed-ink);
    outline-offset: 3px;
  }
}
@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .hast-body.hast-editorial .hast-mobile-footer-cta-wrap {
    transition: none;
  }
  .hast-body.hast-editorial .hast-mobile-footer-cta-wrap.is-visible {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hast-body.hast-editorial .hast-intro__inner {
    grid-template-columns: 1fr;
  }
  .hast-body.hast-editorial .hast-intro__left {
    border-right: none;
    border-bottom: 1px solid var(--hast-ed-border);
  }
  .hast-body.hast-editorial .hast-artifact__frame {
    min-height: min(72vw, 380px);
    border-bottom: 1px solid var(--hast-ed-border);
  }
  .hast-body.hast-editorial .hast-editorial-split,
  .hast-body.hast-editorial .hast-editorial-split--provisions,
  .hast-body.hast-editorial .hast-editorial-split--faq {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hast-body.hast-editorial .hast-editorial-split__media {
    min-height: 200px;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid var(--hast-ed-border);
  }
  .hast-body.hast-editorial .hast-editorial-process--carousel .hast-editorial-process__cell {
    width: clamp(200px, 70vw, 320px);
  }
  .hast-body.hast-editorial .hast-order {
    border-right: none !important;
    border-bottom: 1px solid var(--hast-ed-border) !important;
  }
  .hast-body.hast-editorial .hast-order h3 {
    margin-bottom: 0;
  }
  .hast-body.hast-editorial .hast-order__toggle {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 0;
    border: none;
    background: none;
    font-family: var(--hast-ed-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tap-terracotta);
  }
  .hast-body.hast-editorial .hast-order__content[hidden] {
    display: none !important;
  }
}

.hast-body.hast-editorial .nav__drawer {
  display: flex !important;
  background: var(--cream) !important;
  border-color: var(--border) !important;
  top: var(--nav-h) !important;
}
.hast-body.hast-editorial .nav__drawer a {
  color: var(--text) !important;
  font-family: var(--font);
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em;
  border-bottom-color: var(--border) !important;
}
.hast-body.hast-editorial .nav__drawer li:last-child a {
  color: var(--hast-nav-gold) !important;
  font-weight: 700 !important;
}
.hast-body.hast-editorial .nav__drawer .btn--primary {
  background: var(--tap-terracotta) !important;
  color: #fafaf8 !important;
  border: 1px solid var(--tap-earth) !important;
  border-radius: 2px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
  text-transform: none;
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .nav__drawer .btn--primary:hover {
    background: var(--tap-flame) !important;
    border-color: var(--tap-flame) !important;
    box-shadow: 0 4px 18px rgba(26, 26, 26, 0.14) !important;
  }
}
.hast-body.hast-editorial .footer__inner {
  max-width: var(--hast-ed-max) !important;
  padding-left: var(--hast-ed-pad-x) !important;
  padding-right: var(--hast-ed-pad-x) !important;
}
.hast-body.hast-editorial .footer .nav__logo-mark circle,
.hast-body.hast-editorial .footer .nav__logo-mark path {
  stroke: var(--tap-flame) !important;
}

.hast-body.hast-editorial .hast-form__legal {
  display: block;
  margin-top: 0.35em;
  font-size: 12px;
  opacity: 0.72;
}
.hast-body.hast-editorial .hast-form__legal a {
  color: inherit;
  text-decoration: underline;
}

/* —— Legal pages (terms / privacy) — match editorial Hastings —— */
.hast-body.hast-editorial .hast-legal {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(40px, 8vh, 88px) var(--hast-ed-pad-x) clamp(72px, 12vw, 140px);
}
.hast-body.hast-editorial .hast-legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hast-ed-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--hast-ed-muted);
  text-decoration: none;
  margin-bottom: clamp(32px, 5vw, 48px);
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-legal__back:hover {
    color: var(--hast-ed-ink);
  }
}
.hast-body.hast-editorial .hast-legal__kicker {
  font-family: var(--hast-ed-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hast-nav-gold);
  margin-bottom: 10px;
}
.hast-body.hast-editorial .hast-legal h1 {
  font-family: var(--hast-ed-serif);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--hast-ed-ink);
  margin: 0 0 10px;
}
.hast-body.hast-editorial .hast-legal__date {
  font-family: var(--hast-ed-sans);
  font-size: 13px;
  color: rgba(26, 26, 26, 0.48);
  margin-bottom: clamp(40px, 6vw, 56px);
}
.hast-body.hast-editorial .hast-legal h2 {
  font-family: var(--hast-ed-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hast-ed-ink);
  margin-top: 2.25rem;
  margin-bottom: 12px;
}
.hast-body.hast-editorial .hast-legal p,
.hast-body.hast-editorial .hast-legal li {
  font-family: var(--hast-ed-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--hast-ed-muted);
  margin-bottom: 14px;
}
.hast-body.hast-editorial .hast-legal strong {
  color: var(--hast-ed-ink);
  font-weight: 600;
}
.hast-body.hast-editorial .hast-legal ul {
  padding-left: 1.25rem;
  margin-bottom: 14px;
}
.hast-body.hast-editorial .hast-legal ul li {
  margin-bottom: 6px;
}
.hast-body.hast-editorial .hast-legal a {
  color: var(--hast-nav-gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-legal a:hover {
    color: var(--hast-nav-gold-hover);
  }
}
.hast-body.hast-editorial .hast-legal hr {
  border: none;
  border-top: 1px solid var(--hast-ed-border);
  margin: 48px 0;
}
.hast-body.hast-editorial .hast-legal__note {
  font-family: var(--hast-ed-sans);
  font-size: 13px;
  color: rgba(26, 26, 26, 0.42);
  margin-top: 2rem;
  margin-bottom: 0;
}
.hast-body.hast-editorial .hast-legal__note a {
  color: var(--hast-nav-gold);
  font-weight: 600;
}

/* Strong defaults if an older hastings.css is cached */
@media (min-width: 601px) {
  body.hast-body.hast-editorial .nav__hamburger-wrap {
    display: none !important;
  }
}
@media (max-width: 600px) {
  body.hast-body.hast-editorial .nav__links,
  body.hast-body.hast-editorial .nav__actions {
    display: none !important;
  }
  body.hast-body.hast-editorial .nav__hamburger-wrap {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin-left: auto !important;
  }
  body.hast-body.hast-editorial .nav__hamburger {
    display: flex !important;
    margin-left: 0 !important;
  }
}
body.hast-body.hast-editorial .hast-hero.hast-hero--heading-img {
  display: flex !important;
  background-color: var(--hast-ed-warm) !important;
  background-image: none !important;
  padding: 0 !important;
}
body.hast-body.hast-editorial .hast-route-map {
  background: #f2f0ed !important;
  background-image: none !important;
}

/* —— Bayeux 6-panel tapestry rails: full-bleed gutters (viewport edge → editorial column) —— */
.hast-body.hast-editorial .hast-tapestry-rail {
  --hast-tapestry-gutter: max(0px, calc((100vw - var(--hast-ed-max)) / 2));
  display: none;
  position: fixed;
  z-index: 5;
  top: 0;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
  box-sizing: border-box;
}
@media (min-width: 1400px) {
  .hast-body.hast-editorial .hast-tapestry-rail {
    display: block;
  }
}
.hast-body.hast-editorial .hast-tapestry-rail--left {
  left: env(safe-area-inset-left, 0px);
  width: max(100px, calc(var(--hast-tapestry-gutter) - env(safe-area-inset-left, 0px)));
  opacity: 0.88;
}
.hast-body.hast-editorial .hast-tapestry-rail--right {
  right: env(safe-area-inset-right, 0px);
  left: auto;
  width: max(100px, calc(var(--hast-tapestry-gutter) - env(safe-area-inset-right, 0px)));
  opacity: 0.84;
}
.hast-body.hast-editorial .hast-tapestry-rail__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.75) 7%,
    #000 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.75) 7%,
    #000 82%,
    transparent 100%
  );
}
.hast-body.hast-editorial .hast-tapestry-rail__strip {
  will-change: transform;
  backface-visibility: hidden;
}
.hast-body.hast-editorial .hast-tapestry-rail__sequence {
  margin: 0;
  padding: 0;
}
.hast-body.hast-editorial .hast-tapestry-rail__panel {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}
.hast-body.hast-editorial .hast-tapestry-rail__panel img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: contrast(0.96) saturate(0.94);
}
.hast-body.hast-editorial .hast-tapestry-rail__panel {
  height: min(100dvh, 1024px);
  overflow: hidden;
}
.hast-body.hast-editorial .hast-tapestry-rail__panel img {
  width: 400%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}
.hast-body.hast-editorial .hast-tapestry-rail--left .hast-tapestry-rail__panel img {
  transform: translateX(0);
}
.hast-body.hast-editorial .hast-tapestry-rail--right .hast-tapestry-rail__panel img {
  transform: translateX(-75%);
}

@media (prefers-reduced-motion: reduce) {
  .hast-body.hast-editorial .hast-tapestry-rail__strip {
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   HASTINGS ANIMATIONS — on-load (hero) & scroll (editorial)
══════════════════════════════════════════════════════════════ */

/* ─── Extra keyframes ─── */
@keyframes hast-word-drop {
  from { opacity: 0; transform: translateY(-32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hast-crest-rise {
  from { opacity: 0; transform: translateY(64px) scale(0.90); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}
@keyframes hast-draw-right {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ─── Campaign stripe: draws in left → right on load ─── */
.hast-campaign-stripe {
  transform-origin: left center;
  animation: hast-draw-right 700ms cubic-bezier(.22,1,.36,1) 0ms both;
}

/* ─── Hero: staggered word-by-word title entry ─── */
/* Suppress the parent heading animation so each word can animate individually */
.hast-body.hast-editorial .hast-hero__title-heading {
  animation: none;
}
.hast-body.hast-editorial .hast-hero__hero-date {
  animation: hast-fade-up 500ms cubic-bezier(.22,1,.36,1) 80ms both;
}
.hast-body.hast-editorial .hast-hero__title-word--lg:first-child {
  animation: hast-word-drop 700ms cubic-bezier(.22,1,.36,1) 240ms both;
}
.hast-body.hast-editorial .hast-hero__title-word--sm {
  animation: hast-fade-in 400ms cubic-bezier(.22,1,.36,1) 500ms both;
}
.hast-body.hast-editorial .hast-hero__title-word--lg:last-child {
  animation: hast-word-drop 700ms cubic-bezier(.22,1,.36,1) 620ms both;
}
.hast-body.hast-editorial .hast-hero__hero-deck {
  animation: hast-fade-up 560ms cubic-bezier(.22,1,.36,1) 540ms both;
}
.hast-body.hast-editorial .hast-hero__crew-credit {
  animation: hast-fade-up 520ms cubic-bezier(.22,1,.36,1) 640ms both;
}
.hast-body.hast-editorial .hast-hero__hero-actions {
  animation: hast-fade-up 500ms cubic-bezier(.22,1,.36,1) 780ms both;
}

/* ─── Heraldic crest: rises up from below ─── */
.hast-body.hast-editorial .hast-hero__crest-img {
  animation: hast-crest-rise 1300ms cubic-bezier(.22,1,.36,1) 140ms both;
  will-change: transform;
}

/* ─── Section icons: spin gently into view when a sibling reveal enters ─── */
.hast-body .hast-ed-icon {
  opacity: 0;
  transform: rotate(-14deg) scale(0.72);
  transition:
    opacity  700ms cubic-bezier(.22,1,.36,1),
    transform 700ms cubic-bezier(.22,1,.36,1);
}
.hast-body .hast-ed-icon-row:has(.in-view) .hast-ed-icon {
  opacity: 1;
  transform: none;
}

/* ─── Intro: copy block slides from left, artifact from right ─── */
.hast-body .hast-intro__left .reveal:not(.in-view) {
  transform: translateX(-28px) translateY(14px);
}
.hast-body .hast-artifact.reveal:not(.in-view) {
  transform: translateX(42px);
}

/* ─── Photo strip: clip-path curtain wipe (grid only; carousel has no .reveal / .in-view) ─── */
.hast-body.hast-editorial .hast-editorial-process:not(.hast-editorial-process--carousel) .hast-editorial-process__cell .hast-editorial-process__img {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 900ms cubic-bezier(.22,1,.36,1);
}
.hast-body.hast-editorial .hast-editorial-process:not(.hast-editorial-process--carousel) .hast-editorial-process__cell:nth-child(1) .hast-editorial-process__img { transition-delay:  80ms; }
.hast-body.hast-editorial .hast-editorial-process:not(.hast-editorial-process--carousel) .hast-editorial-process__cell:nth-child(2) .hast-editorial-process__img { transition-delay: 160ms; }
.hast-body.hast-editorial .hast-editorial-process:not(.hast-editorial-process--carousel) .hast-editorial-process__cell:nth-child(3) .hast-editorial-process__img { transition-delay: 240ms; }
.hast-body.hast-editorial .hast-editorial-process:not(.hast-editorial-process--carousel) .hast-editorial-process__cell.in-view .hast-editorial-process__img {
  clip-path: inset(0 0 0 0);
}

/* ─── Orders grid: alternating left / right directional reveal ─── */
.hast-body .hast-orders__grid .hast-order:nth-child(odd).reveal:not(.in-view) {
  transform: translateX(-28px) translateY(14px);
}
.hast-body .hast-orders__grid .hast-order:nth-child(even).reveal:not(.in-view) {
  transform: translateX(28px) translateY(14px);
}

/* ─── Route map body: scale + lift on reveal ─── */
.hast-body .hast-route-map__body.reveal:not(.in-view) {
  transform: translateY(28px) scale(0.985);
}

/* ─── Split-panel media: slow hover Ken Burns zoom ─── */
.hast-body.hast-editorial .hast-editorial-split__media {
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .hast-body.hast-editorial .hast-editorial-split__media img {
    transition: transform 3.6s cubic-bezier(.25,.46,.45,.94);
  }
  .hast-body.hast-editorial .hast-editorial-split__media:hover img:not(.hast-faq__photo) {
    transform: scale(1.05);
  }
}

/* ─── Reduced motion: disable all custom hastings animations ─── */
@media (prefers-reduced-motion: reduce) {
  .hast-campaign-stripe { animation: none; }

  .hast-body.hast-editorial .hast-hero__hero-date,
  .hast-body.hast-editorial .hast-hero__title-word--lg,
  .hast-body.hast-editorial .hast-hero__title-word--sm,
  .hast-body.hast-editorial .hast-hero__hero-deck,
  .hast-body.hast-editorial .hast-hero__crew-credit,
  .hast-body.hast-editorial .hast-hero__hero-actions,
  .hast-body.hast-editorial .hast-hero__crest-img { animation: none; }

  .hast-body .hast-ed-icon { opacity: 1; transform: none; transition: none; }

  .hast-body.hast-editorial .hast-editorial-process:not(.hast-editorial-process--carousel) .hast-editorial-process__cell .hast-editorial-process__img {
    clip-path: none;
    transition: none;
  }

  .hast-body.hast-editorial .hast-editorial-split__media img { transition: none; }
}
