/* Trip, Figured — marketing canon
   Source: docs/designs/trip-figured-homepage/figured.html
   Three surfaces only: photograph, spruce panel, bare snow + rules.
   No white cards. Poppy is action. Gold is resolution.
*/
/* ---------------------------------------------------------------
       TRIP, FIGURED — canon v1
       Three surfaces only: photograph, spruce panel, bare snow + rules.
       No white cards. Poppy is action. Gold is resolution.
       --------------------------------------------------------------- */
:root {
  --snow: #f1f4f0;
  --snow-2: #e7ebe6;
  --spruce: #14342e;
  --spruce-deep: #0c221e;
  --ink: #13241f;
  --ink-soft: #3b534b;
  --muted: #5e746b;
  --rule: #c6d1cb;
  --rule-dark: rgba(255, 255, 255, 0.1);
  --poppy: #dc3a22;
  --poppy-deep: #b82e1a;
  --gold: #c9a24e;
  --gold-light: #e3c077;
  --held: #2f9e6b;
  --lake: #2a6a78;
  --pale: #9fbdb2;

  --display: "Fraunces", "Times New Roman", serif;
  --board: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --sans: "Outfit", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--snow);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid var(--poppy);
  outline-offset: 3px;
}

.wrap {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}
.band {
  padding: 92px 0;
}
.band--tight {
  padding: 64px 0;
}

/* ---- shared type roles ---------------------------------------- */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--lake);
}
.kicker--gold {
  color: var(--gold);
}
.kicker--pale {
  color: var(--pale);
}

.title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(31px, 4.3vw, 53px);
  line-height: 1.02;
  letter-spacing: -0.028em;
}
.title em {
  font-style: italic;
  color: var(--gold);
}
.lead {
  max-width: 58ch;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 18px;
}
.lead--pale {
  color: #c0d5cc;
}
:where(h1, h2, h3, .title) {
  text-wrap: balance;
}
:where(.prose p, .lead, .answer .direct, .poster-note) {
  text-wrap: pretty;
  orphans: 3;
  widows: 3;
  overflow-wrap: break-word;
}
.section-gap {
  margin-top: 2.25rem;
}
.flow-space {
  margin-top: 1.75rem;
}
.sample-note {
  margin-top: 1rem;
  max-width: 68ch;
}
.head {
  max-width: 700px;
  margin-bottom: 34px;
}
.head .title {
  margin-top: 9px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.btn--poppy {
  background: var(--poppy);
  color: #fff;
}
.btn--poppy:hover {
  background: var(--poppy-deep);
}
.btn--spruce {
  background: var(--spruce);
  color: #fff;
}
.btn--spruce:hover {
  background: var(--spruce-deep);
}
.btn--line {
  border: 1px solid var(--rule);
  color: var(--ink);
}
.btn--line:hover {
  border-color: var(--ink);
}
.btn--line-light {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn--line-light:hover {
  border-color: #fff;
}

/* ---- nav ------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(241, 244, 240, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--rule);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.mark {
  display: inline-flex;
  align-items: baseline;
  font-size: 21px;
  letter-spacing: -0.035em;
}
.mark span {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
}
.mark em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  margin-left: 5px;
}
.nav-links {
  display: flex;
  gap: 27px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}
.nav-act {
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-act .btn {
  padding: 9px 15px;
  font-size: 13.5px;
  min-height: 44px;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.mobile {
  display: none;
  padding: 2px 0 16px;
}
.mobile.is-open {
  display: block;
}
.mobile a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}

/* ---- poster ---------------------------------------------------- */
.poster {
  padding-top: 14px;
}
.poster-shot {
  position: relative;
  overflow: hidden;
  border-radius: 3px 3px 0 0;
  height: min(76vh, 660px);
  min-height: 470px;
}
.poster-shot > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 45%;
}
.poster-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 34, 30, 0.3) 0%,
    rgba(12, 34, 30, 0.05) 30%,
    rgba(12, 34, 30, 0.3) 58%,
    rgba(12, 34, 30, 0.8) 100%
  );
}
.plaque {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--spruce);
  padding: 11px 14px 9px;
  min-width: 196px;
}
.plaque b {
  display: block;
  font-family: var(--board);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}
.plaque small {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
}
.poster-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 34px 28px;
  max-width: 760px;
}
.poster-copy h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5.9vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 10px 0 20px;
  max-width: 15ch;
}
.poster-copy h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.dispatch {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  max-width: 660px;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}
.dispatch .mic {
  display: grid;
  place-items: center;
  background: var(--poppy);
  color: #fff;
  transition: background 0.2s ease;
}
.dispatch .mic.is-live {
  background: var(--held);
}
.dispatch .field {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 10px 15px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.dispatch .field.is-empty {
  color: var(--muted);
}
.dispatch .btn {
  border-radius: 0;
  white-space: nowrap;
}

/* ---- SIGNATURE: the corridor spine ----------------------------- */
.corridor {
  background: var(--spruce);
  color: #e7f0ec;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
}
.corridor--free {
  border-radius: 3px;
}
.corridor-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 17px;
  border-bottom: 1px solid var(--rule-dark);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale);
}
.corridor-head b {
  font-weight: 400;
  color: var(--gold);
}
.spine {
  display: flex;
  align-items: stretch;
  min-height: 138px;
}
.seg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 19px 15px;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--rule-dark);
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.15, 1);
}
.seg-code {
  font-family: var(--board);
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}
.seg-place {
  margin-top: 3px;
  font-size: 13.5px;
  color: #c0d5cc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seg-nights {
  margin-top: 13px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.seg.is-changed {
  background: rgba(220, 58, 34, 0.14);
}
.seg.is-changed::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--poppy);
}
.seg-delta {
  position: absolute;
  right: 14px;
  top: 15px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ff8367;
}
.rail {
  flex: 0 0 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: var(--spruce-deep);
  border-right: 1px solid var(--rule-dark);
}
.rail b {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.rail small {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale);
}
.rail.is-changed b {
  color: #ff8367;
}
/* the stamp: what was checked, including the thing that isn't settled */
.stamp {
  background: var(--spruce-deep);
  border-top: 2px solid var(--gold);
}
.stamp-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 20px;
  padding: 11px 17px 9px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.stamp-head span:last-child {
  color: var(--pale);
  letter-spacing: 0.08em;
}
.stamp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  padding: 0 17px 15px;
}
.check {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 9px;
  align-items: start;
  padding: 5px 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  color: #dce8e3;
}
.check i {
  font-style: normal;
  font-weight: 500;
  text-align: center;
}
.check--ok i {
  color: var(--held);
}
.check--chg i {
  color: #ff8367;
}
.check--chg {
  color: #ffc0b0;
}
.check--open i {
  color: var(--gold);
}
.check--open {
  color: var(--gold-light);
}
.corridor--compact .spine {
  min-height: 104px;
}
.corridor--compact .seg {
  padding: 13px 15px;
}
.corridor--compact .seg-code {
  font-size: 27px;
}
.corridor--compact .seg-nights {
  margin-top: 7px;
  font-size: 10.5px;
  letter-spacing: 0.07em;
}
.corridor--compact .seg-place {
  display: none;
}
.corridor--compact .rail {
  flex-basis: 74px;
}

/* ---- gold rule ------------------------------------------------- */
.goldrule {
  margin-top: 22px;
  padding: 15px 20px;
  background: var(--gold);
  color: var(--spruce-deep);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 24px;
  border-radius: 2px;
}
.goldrule b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.goldrule span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
}
.poster-note {
  margin-top: 20px;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 17.5px;
}

/* ---- chapters -------------------------------------------------- */
.chapters {
  display: grid;
  gap: 10px;
}
.chap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  min-height: 330px;
}
.chap--wide {
  min-height: 430px;
}
.chap > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.chap-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
  gap: 10px;
}
.marker {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: min(430px, calc(100% - 32px));
  padding: 15px 17px 16px;
  background: var(--spruce);
  color: #c0d5cc;
}
.marker b {
  display: block;
  font-family: var(--board);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}
.marker h3 {
  margin: 6px 0 7px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #fff;
}
.marker p {
  font-size: 13.5px;
  line-height: 1.55;
}

/* ---- wedge ----------------------------------------------------- */
.wedge {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
}
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 10px;
  user-select: none;
  cursor: pointer;
}
.switch {
  position: relative;
  flex: none;
  width: 58px;
  height: 32px;
  border-radius: 2px;
  background: var(--snow-2);
  border: 1px solid var(--rule);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 24px;
  border-radius: 1px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(19, 36, 31, 0.25);
  transition: left 0.2s ease;
}
.toggle.is-on .switch {
  background: var(--poppy);
  border-color: var(--poppy);
}
.toggle.is-on .switch::after {
  left: 27px;
}
.toggle b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 25px;
  letter-spacing: -0.025em;
}
.hint {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 40ch;
}
.assure {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 2px solid var(--spruce);
  max-width: 42ch;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* consequence preview: the product's own three groups, not a diff table */
.groups {
  margin-top: 16px;
}
.group {
  margin-bottom: 20px;
}
.group > h4 {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding-bottom: 8px;
  border-bottom: 2px solid;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.group > h4 b {
  font-weight: 500;
  opacity: 0.65;
}
.group--chg > h4 {
  color: var(--poppy);
  border-color: var(--poppy);
}
.group--ok > h4 {
  color: var(--held);
  border-color: var(--held);
}
.group--ver > h4 {
  color: #9a7a21;
  border-color: var(--gold);
}
.ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 10px 2px;
  border-bottom: 1px solid var(--rule);
}
.ledger-row > span:first-child {
  font-weight: 500;
  font-size: 15px;
}
.ledger-row > span:last-child {
  font-family: var(--mono);
  font-size: 12.5px;
  text-align: right;
  color: var(--muted);
}
.group--chg .ledger-row > span:last-child {
  color: var(--poppy);
}
.group--ok .ledger-row > span:last-child {
  color: var(--held);
}
.group--ver .ledger-row > span:last-child {
  color: #9a7a21;
}

/* second opinion */
.secondband {
  background: var(--spruce);
  color: #c0d5cc;
}
.secondband .title {
  color: #fff;
}
.claims {
  border-top: 2px solid var(--gold);
}
.claim {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule-dark);
}
.claim q {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #fff;
}
.claim .verdict {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.claim .verdict.ok {
  color: var(--held);
}
.claim .verdict.part {
  color: var(--gold);
}
.claim .src {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--pale);
}

/* booking-state legend */
.states {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.state {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.state i {
  font-style: normal;
}
.state--computed {
  border: 1px dashed var(--rule-dark);
  color: var(--pale);
}
.state--observed {
  border: 1px solid var(--rule-dark);
  color: #dce8e3;
}
.state--observed span {
  color: var(--pale);
  text-transform: none;
  letter-spacing: 0;
}
.state--selected {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}
.state--held {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 3px 0 0 var(--gold);
  color: var(--gold-light);
}
.state--confirmed {
  background: rgba(47, 158, 107, 0.18);
  color: #7fd9b0;
}
.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.choice {
  padding: 9px 13px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.choice:hover {
  border-color: var(--ink);
}
.choice.is-on {
  background: var(--spruce);
  border-color: var(--spruce);
  color: #fff;
}

/* ---- versions -------------------------------------------------- */
.vers {
  display: flex;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 18px;
}
.ver {
  flex: 1;
  text-align: left;
  padding: 16px 18px;
  border-right: 1px solid var(--rule);
  transition: background 0.15s ease;
}
.ver:last-child {
  border-right: 0;
}
.ver:hover {
  background: var(--snow-2);
}
.ver b {
  display: block;
  font-family: var(--board);
  font-size: 29px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.ver small {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.ver .tag {
  display: inline-block;
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lake);
}
.ver.is-on {
  background: var(--spruce);
  border-color: var(--spruce);
  color: #fff;
}
.ver.is-on small {
  color: var(--pale);
}
.ver.is-on .tag {
  color: var(--gold);
}
.why {
  max-width: 74ch;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

/* ---- recovery -------------------------------------------------- */
.recovery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}
.rec-say {
  padding: 40px 38px;
  background: var(--spruce);
  color: #c0d5cc;
  border-radius: 3px;
}
.rec-say q {
  display: block;
  margin: 12px 0 16px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  quotes: "“" "”";
}
.rec-say p {
  font-size: 16.5px;
  line-height: 1.6;
}
.rec-plan {
  padding: 34px 34px 30px;
  background: var(--spruce-deep);
  color: #c0d5cc;
  border-radius: 3px;
}
.rec-plan h3 {
  margin: 9px 0 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 31px;
  letter-spacing: -0.025em;
  color: #fff;
}
.rec-plan > p {
  font-size: 15.5px;
  margin-bottom: 18px;
}
.rec-plan ul {
  list-style: none;
}
.rec-plan li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--rule-dark);
  font-size: 14.5px;
}
.rec-plan li span {
  font-family: var(--mono);
  font-size: 12px;
  white-space: nowrap;
}
.rec-plan li .ok {
  color: var(--held);
}
.rec-plan li .unk {
  color: var(--gold);
}

/* ---- how ------------------------------------------------------- */
.how {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--spruce);
}
.how-step {
  padding: 28px 36px 36px;
  border-right: 1px solid var(--rule);
}
.how-step:first-child {
  padding-left: 0;
}
.how-step:last-child,
.how-step:last-of-type {
  border-right: 0;
  padding-right: 0;
}
.how-step b {
  display: block;
  font-family: var(--board);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--poppy);
  line-height: 1;
}
.how-step h3 {
  margin: 9px 0 7px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.how-step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- fit ------------------------------------------------------- */
.fit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
}
.fit h3 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 2px solid;
}
.fit-yes h3 {
  color: var(--held);
  border-color: var(--held);
}
.fit-no h3 {
  color: var(--poppy);
  border-color: var(--poppy);
}
.fit ul {
  list-style: none;
}
.fit li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* ---- pricing: the ticket --------------------------------------- */
.ticket {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  background: var(--spruce);
  color: #c0d5cc;
  border-radius: 3px;
  overflow: hidden;
}
.ticket-main {
  padding: 34px 36px 32px;
}
.ticket-main .plan {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
}
.ticket-main .amt {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 6px;
}
.ticket-main .amt b {
  font-family: var(--board);
  font-size: 76px;
  font-weight: 800;
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.01em;
}
.ticket-main .amt span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticket-main > p {
  max-width: 46ch;
  font-size: 15.5px;
  margin-bottom: 20px;
}
.ticket-main ul {
  list-style: none;
  margin-bottom: 24px;
}
.ticket-main li {
  padding: 9px 0;
  border-top: 1px solid var(--rule-dark);
  font-size: 14.5px;
}
.ticket-stub {
  position: relative;
  padding: 34px 30px;
  background: var(--spruce-deep);
  border-left: 2px dashed rgba(159, 189, 178, 0.42);
}
.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  left: -13px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--snow);
}
.ticket-stub::before {
  top: -12px;
}
.ticket-stub::after {
  bottom: -12px;
}
.stub-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule-dark);
}
.stub-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.stub-item .plan {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pale);
}
.stub-item b {
  display: block;
  margin: 4px 0 5px;
  font-family: var(--board);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.stub-item p {
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 11px;
}
.stub-item a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 162, 78, 0.5);
  padding-bottom: 2px;
}
.stub-item a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.price-note {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ---- trust ----------------------------------------------------- */
.trustband {
  background: var(--spruce);
  color: #c0d5cc;
}
.trustband .title {
  color: #fff;
}
.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--gold);
}
.trust-item {
  padding: 28px 36px 32px;
  border-right: 1px solid var(--rule-dark);
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child,
.trust-item:last-of-type {
  border-right: 0;
  padding-right: 0;
}
.trust-item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
  color: #fff;
}
.trust-item p {
  color: inherit;
  font-size: 15px;
  line-height: 1.6;
}

/* ---- finale ---------------------------------------------------- */
.finale {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  min-height: 430px;
}
.finale > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 50% 40%;
}
.finale-veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 44px 24px;
  background: linear-gradient(
    180deg,
    rgba(12, 34, 30, 0.3),
    rgba(12, 34, 30, 0.82)
  );
}
.finale h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(31px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 17ch;
  margin: 10px auto 14px;
}
.finale h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.finale p {
  max-width: 48ch;
  margin: 0 auto 24px;
  color: #c0d5cc;
  font-size: 16.5px;
}

/* ---- footer ---------------------------------------------------- */
.foot {
  padding: 30px 0 90px;
}
.foot-in {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
.foot-in p {
  margin-top: 8px;
}
.foot-legal {
  max-width: 560px;
  line-height: 1.62;
}

/* ---- responsive ------------------------------------------------ */
@media (max-width: 980px) {
  .band {
    padding: 66px 0;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: grid;
    place-items: center;
  }
  .poster-shot {
    height: 66vh;
    min-height: 430px;
  }
  .poster-copy {
    padding: 24px 20px 22px;
  }
  .plaque {
    top: 12px;
    right: 12px;
    min-width: 0;
  }
  .spine {
    flex-direction: column;
    min-height: 0;
  }
  .seg {
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
  }
  .seg-delta {
    top: auto;
    bottom: 15px;
  }
  .rail {
    flex: none;
    flex-direction: row;
    gap: 12px;
    padding: 9px;
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
  }
  .wedge,
  .chap-pair,
  .recovery,
  .fit,
  .how,
  .trust,
  .vers,
  .ticket,
  .guide-grid,
  .split,
  .claim {
    grid-template-columns: 1fr;
  }
  .page-hero .poster-shot {
    height: 46vh;
    min-height: 280px;
  }
  .wedge {
    gap: 34px;
  }
  .vers {
    flex-direction: column;
  }
  .ver {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .ver:last-child {
    border-bottom: 0;
  }
  .how-step {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 28px 0;
  }
  .how-step:first-child,
  .how-step:last-child,
  .how-step:last-of-type {
    padding-left: 0;
    padding-right: 0;
  }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
    padding: 28px 0;
  }
  .trust-item:first-child,
  .trust-item:last-child,
  .trust-item:last-of-type {
    padding-left: 0;
    padding-right: 0;
  }
  .how-step:last-child,
  .trust-item:last-child {
    border-bottom: 0;
  }
  .trustband {
    padding: 46px 0 50px;
  }
  .chap,
  .chap--wide {
    min-height: 250px;
  }
  .ticket-stub {
    border-left: 0;
    border-top: 2px dashed rgba(159, 189, 178, 0.42);
  }
  .ticket-stub::before {
    top: -12px;
    left: -12px;
  }
  .ticket-stub::after {
    top: -12px;
    bottom: auto;
    left: auto;
    right: -12px;
  }
  .dispatch {
    grid-template-columns: 54px 1fr;
  }
  .dispatch .btn {
    grid-column: 1 / -1;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: calc(100% - 26px);
  }
  .band {
    padding: 54px 0;
  }
  .nav-act .signin {
    display: none;
  }
  .poster-shot {
    height: 58vh;
    min-height: 380px;
  }
  .rec-say,
  .rec-plan,
  .ticket-main,
  .ticket-stub {
    padding: 26px 22px;
  }
  .ticket-main .amt b {
    font-size: 60px;
  }
  .stamp-grid {
    grid-template-columns: 1fr;
  }
  .page-hero .poster-shot {
    height: 40vh;
    min-height: 240px;
  }
  .foot-grid {
    gap: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---- skip + a11y ---------------------------------------------- */
.skip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--poppy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 2px;
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
.btn {
  min-height: 44px;
  text-decoration: none;
}

/* ---- page hero (inner pages) ---------------------------------- */
.page-hero {
  padding-top: 14px;
}
.page-hero .poster-shot {
  height: min(52vh, 480px);
  min-height: 340px;
  border-radius: 3px;
}
.page-hero .poster-copy h1 {
  max-width: 18ch;
  margin-bottom: 0;
}
.page-hero .poster-copy {
  max-width: 820px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumbs a {
  color: var(--lake);
}
.crumbs a:hover {
  color: var(--ink);
}
.crumbs [aria-hidden] {
  color: var(--rule);
}

/* ---- AEO answer block ----------------------------------------- */
.answer {
  background: var(--spruce);
  color: #c0d5cc;
  padding: 28px 32px;
  border-radius: 3px;
  margin: 8px 0 0;
}
.answer .direct {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 8px 0 12px;
  max-width: 46ch;
}
.answer .act {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}
.answer ul {
  margin: 14px 0 0;
  padding-left: 18px;
}
.answer li {
  margin: 5px 0;
}

/* ---- editorial prose ------------------------------------------ */
.prose {
  max-width: 72ch;
}
.prose > h2,
.stack > h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 42px 0 12px;
}
.prose > h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 28px 0 8px;
}
.prose p,
.stack p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 17px;
}
.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: var(--ink-soft);
}
.prose li {
  margin: 6px 0;
}
.prose a:not(.btn),
.stack a:not(.btn) {
  color: var(--lake);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:not(.btn):hover,
.stack a:not(.btn):hover {
  color: var(--ink);
}
.prose a.btn,
.stack a.btn {
  text-decoration: none;
}
.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.updated {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 10px 0 0;
}

/* ---- split: copy + photograph --------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: start;
}
.split figure {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  min-height: 280px;
}
.split figure img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* ---- tables --------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  margin: 8px 0 22px;
  border-top: 2px solid var(--spruce);
}
.sheet {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.sheet th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  padding: 11px 12px 10px;
  color: var(--lake);
  border-bottom: 1px solid var(--rule);
}
.sheet td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  color: var(--ink-soft);
}
.sheet td:first-child,
.sheet th:first-child {
  padding-left: 0;
  color: var(--ink);
  font-weight: 500;
}
.sheet .mono,
.sheet td.mono {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* ---- FAQ ------------------------------------------------------ */
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.faq summary:focus-visible {
  outline: 2px solid var(--poppy);
  outline-offset: 4px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--gold);
  font-weight: 500;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  margin-top: 10px;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* ---- guide / hub cards ---------------------------------------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.guide-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  min-height: 230px;
  color: #fff;
}
.guide-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}
.guide-card .marker {
  max-width: min(360px, calc(100% - 28px));
}
.guide-card:focus-visible {
  outline: 2px solid var(--poppy);
  outline-offset: 3px;
}

/* ---- sources -------------------------------------------------- */
.sources {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.sources h2 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 10px;
}
.sources a {
  color: var(--lake);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- light booking states ------------------------------------- */
.states--light .state--computed {
  border: 1px dashed var(--rule);
  color: var(--muted);
}
.states--light .state--observed {
  border: 1px solid var(--rule);
  color: var(--ink-soft);
}
.states--light .state--selected {
  background: var(--snow-2);
  color: var(--ink);
}
.states--light .state--held {
  background: var(--snow-2);
  box-shadow: inset 3px 0 0 var(--gold);
  color: #9a7a21;
}
.states--light .state--confirmed {
  background: rgba(47, 158, 107, 0.14);
  color: var(--held);
}

/* ---- CTA row -------------------------------------------------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

/* ---- footer --------------------------------------------------- */
.foot {
  padding: 48px 0 72px;
}
.foot-brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  padding-bottom: 22px;
  border-top: 1px solid var(--rule);
}
.foot-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 32px;
}
.foot-grid h2 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.foot-grid a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 13.5px;
}
.foot-grid a:hover {
  color: var(--ink);
}
.foot-copy {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.62;
}
.foot-copy p {
  margin: 0;
}
.foot-copy p:first-child {
  flex: 1 1 36ch;
}
.foot-copy p:last-child {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ---- 404 ------------------------------------------------------ */
.empty {
  padding: 80px 0 120px;
  max-width: 40ch;
}
.empty h1 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
}

@media (max-width: 980px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guide-grid,
  .split,
  .claim {
    grid-template-columns: 1fr;
  }
  .page-hero .poster-shot {
    height: 46vh;
    min-height: 280px;
  }
  .answer {
    padding: 22px 20px;
  }
}

@media (max-width: 620px) {
  .foot-grid {
    gap: 22px;
  }
  .page-hero .poster-shot {
    height: 40vh;
    min-height: 240px;
  }
  .plaque b {
    font-size: 22px;
  }
}

/* --- Comma Valley -------------------------------------------------------
   The mark in the wordmark: the comma from the name carved into an alpine
   ridge, sun in the saddle. The ridge takes currentColor so it inks itself
   from .mark; the sun is the lockup's one lamp and stays poppy. Sized to the
   cap height of "Trip," and nudged onto its baseline. */
.mark {
  gap: 9px;
}
.mark-glyph {
  width: 36px;
  height: 44px;
  flex: none;
  align-self: center;
  color: var(--ink);
}
.foot-brand .mark-glyph {
  color: currentColor;
}
