/* Lie Press — canyon ticket / engraved stub. System faces only. */
:root {
  --lp-bone: #f3ead9;
  --lp-bone-hot: #faf4e8;
  --lp-sand: #c9a06a;
  --lp-sand-deep: #9a7044;
  --lp-navy: #152238;
  --lp-navy-deep: #0c1526;
  --lp-copper: #c27532;
  --lp-copper-hot: #e08a3c;
  --lp-ink: #1a140f;
  --lp-mute: #5c5348;
  --lp-faint: #8a7f72;
  --lp-rule: rgba(21, 34, 56, 0.14);
  --lp-display: Palatino, "Palatino Linotype", "Times New Roman", serif;
  --lp-body: "Avenir Next", Avenir, "Century Gothic", system-ui, sans-serif;
  --lp-ticket: "Courier New", Courier, ui-monospace, monospace;
  --lp-max: 1140px;
  --lp-gutter: 20px;
  --lp-drop: 0 26px 42px -28px rgba(12, 21, 38, 0.55);
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
}

body.lp-page {
  background:
    radial-gradient(920px 380px at 88% -6%, rgba(194, 117, 50, 0.14), transparent 58%),
    radial-gradient(640px 320px at -8% 18%, rgba(21, 34, 56, 0.08), transparent 50%),
    repeating-linear-gradient(
      180deg,
      transparent 0 47px,
      rgba(154, 112, 68, 0.05) 47px 48px
    ),
    var(--lp-bone);
  color: var(--lp-ink);
  font-family: var(--lp-body);
  font-size: 17px;
  line-height: 1.62;
}

body.lp-halt { overflow: hidden; }

img { max-width: 100%; display: block; }

a {
  color: var(--lp-copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--lp-navy); }

h1, h2, h3, h4 {
  font-family: var(--lp-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.12;
  color: var(--lp-navy-deep);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.15rem, 6vw, 3.7rem); }
h2 { font-size: clamp(1.4rem, 3.1vw, 2.15rem); }
h3 { font-size: 1.16rem; }

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding: 0 0 0 1.15em; }

address { font-style: normal; }

.lp-wrap {
  width: min(var(--lp-max), calc(100% - (var(--lp-gutter) * 2)));
  margin-inline: auto;
}

.lp-skip {
  position: absolute;
  left: 12px;
  top: -52px;
  background: var(--lp-navy);
  color: var(--lp-bone);
  padding: 8px 14px;
  z-index: 90;
  font-size: 0.84rem;
}

.lp-skip:focus { top: 10px; }

/* Right-edge canyon strata — desktop only */
.lp-strata {
  display: none;
}

@media (min-width: 1280px) {
  .lp-strata {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 18px;
    z-index: 40;
    pointer-events: none;
  }

  .lp-strata__band { flex: 1; }
  .lp-strata__band--bone { background: var(--lp-sand); }
  .lp-strata__band--sand { background: var(--lp-sand-deep); }
  .lp-strata__band--copper { background: var(--lp-copper); }
  .lp-strata__band--navy { background: var(--lp-navy); }

  .lp-strata__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--lp-ticket);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--lp-bone);
    background: var(--lp-navy-deep);
    padding: 10px 2px;
  }
}

.lp-marquee {
  background: var(--lp-navy);
  color: var(--lp-bone);
  overflow: hidden;
  border-bottom: 3px solid var(--lp-copper);
  font-family: var(--lp-ticket);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-marquee__run {
  display: flex;
  gap: 1.6rem;
  white-space: nowrap;
  padding: 0.55rem 1.2rem;
  animation: lp-crawl 36s linear infinite;
}

.lp-marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-copper);
  align-self: center;
  flex: 0 0 6px;
}

html:not(.lp-inked) .lp-marquee__run,
@media (prefers-reduced-motion: reduce) {
  .lp-marquee__run { animation: none; }
}

@keyframes lp-crawl {
  from { transform: translateX(0); }
  to { transform: translateX(-42%); }
}

.lp-mast {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    radial-gradient(circle at 12px 50%, transparent 5px, var(--lp-bone-hot) 6px) 0 0 / 18px 100%,
    var(--lp-bone-hot);
  border-bottom: 1px solid var(--lp-rule);
  transition: box-shadow 0.2s ease;
}

.lp-mast.is-pinned {
  box-shadow: 0 10px 24px -18px rgba(12, 21, 38, 0.7);
}

.lp-mast__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.7rem 0;
  min-height: 72px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-navy);
  min-width: 0;
}

.lp-brand__ram {
  display: grid;
  place-items: center;
  width: 54px;
  height: 42px;
  border: 1.5px solid var(--lp-navy);
  background: var(--lp-bone);
  color: var(--lp-copper);
  flex: 0 0 auto;
}

.lp-brand__words { display: flex; flex-direction: column; line-height: 1.05; }

.lp-brand__name {
  font-family: var(--lp-display);
  font-size: 1.28rem;
  letter-spacing: 0.01em;
}

.lp-brand__place {
  font-family: var(--lp-ticket);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-mute);
  margin-top: 3px;
}

.lp-punch {
  width: 44px;
  height: 44px;
  border: 1px dashed var(--lp-navy);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.lp-punch span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lp-navy);
  display: block;
}

.lp-punch.is-open span:nth-child(2) { background: var(--lp-copper); }

.lp-rail {
  display: none;
}

.lp-rail.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 13px,
      rgba(243, 234, 217, 0.04) 13px 14px
    ),
    var(--lp-navy-deep);
  color: var(--lp-bone);
  z-index: 60;
  padding: 88px 28px 40px;
  overflow: auto;
}

.lp-rail__tag {
  font-family: var(--lp-ticket);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--lp-sand);
  margin: 0 0 1.4rem;
}

.lp-rail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}

.lp-rail__list a {
  color: var(--lp-bone);
  text-decoration: none;
  font-family: var(--lp-display);
  font-size: 1.55rem;
  display: block;
  padding: 0.42rem 0;
  border-bottom: 1px dotted rgba(243, 234, 217, 0.22);
}

.lp-rail__list .is-here a { color: var(--lp-copper-hot); }

.lp-hold {
  display: inline-block;
  background: var(--lp-copper);
  color: var(--lp-navy-deep);
  text-decoration: none;
  font-family: var(--lp-ticket);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.85rem 1.1rem;
  text-align: center;
}

.lp-hold:hover { background: var(--lp-copper-hot); color: var(--lp-navy-deep); }

@media (min-width: 1120px) {
  .lp-punch { display: none; }

  .lp-rail {
    display: flex;
    align-items: center;
    gap: 8px;
    position: static;
    background: transparent;
    padding: 0;
    overflow: visible;
    color: inherit;
  }

  .lp-rail__tag { display: none; }

  .lp-rail__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.15rem 0.95rem;
    margin: 0;
  }

  .lp-rail__list a {
    color: var(--lp-navy);
    font-family: var(--lp-body);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 0;
    padding: 0.2rem 0;
  }

  .lp-rail__list .is-here a {
    color: var(--lp-copper);
    box-shadow: 0 2px 0 var(--lp-copper);
  }

  .lp-hold {
    margin-left: 8px;
    padding: 0.55rem 0.8rem;
    white-space: nowrap;
  }
}

.lp-stage { min-height: 48vh; }

.lp-kicker {
  font-family: var(--lp-ticket);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-copper);
  margin: 0 0 0.55rem;
}

.lp-lede {
  font-size: 1.08rem;
  color: var(--lp-mute);
  max-width: 42rem;
}

.lp-hero {
  padding: 1.6rem 0 2.4rem;
}

.lp-hero__ticket {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--lp-bone-hot);
  border: 1.5px solid var(--lp-navy);
  box-shadow: var(--lp-drop);
  position: relative;
}

.lp-hero__stub {
  background: var(--lp-navy);
  color: var(--lp-bone);
  padding: 1.2rem 1.3rem 1.4rem;
  display: grid;
  gap: 0.55rem;
  position: relative;
}

.lp-hero__stub::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 0;
  bottom: 0;
  width: 14px;
  background: radial-gradient(circle at 0 10px, transparent 6px, var(--lp-navy) 7px) 0 0 / 14px 20px;
}

.lp-hero__serial {
  font-family: var(--lp-ticket);
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--lp-sand);
  margin: 0;
}

.lp-hero__elev {
  font-family: var(--lp-display);
  font-size: 2rem;
  margin: 0;
  color: var(--lp-bone);
}

.lp-hero__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: rgba(243, 234, 217, 0.82);
}

.lp-hero__face {
  padding: 1.5rem 1.25rem 1.7rem;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

@media (min-width: 860px) {
  .lp-hero__ticket {
    grid-template-columns: 220px 1fr;
  }

  .lp-hero__stub {
    padding: 1.8rem 1.4rem;
  }

  .lp-hero__stub::after {
    background: radial-gradient(circle at 7px 10px, var(--lp-bone-hot) 6px, var(--lp-navy) 7px) 0 0 / 14px 20px;
  }

  .lp-hero__face {
    padding: 2.1rem 2rem 2.2rem 2.2rem;
  }
}

.lp-act {
  display: inline-block;
  background: var(--lp-navy);
  color: var(--lp-bone);
  text-decoration: none;
  font-family: var(--lp-ticket);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid var(--lp-navy);
}

.lp-act:hover { background: var(--lp-copper); color: var(--lp-navy-deep); border-color: var(--lp-copper); }

.lp-act--ghost {
  background: transparent;
  color: var(--lp-navy);
}

.lp-act--ghost:hover { background: var(--lp-navy); color: var(--lp-bone); }

.lp-act--block { width: 100%; text-align: center; }

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.1rem 0 0;
}

.lp-band {
  padding: 2.4rem 0;
}

.lp-band--navy {
  background: var(--lp-navy);
  color: var(--lp-bone);
}

.lp-band--navy h2,
.lp-band--navy h3 { color: var(--lp-bone); }

.lp-band--navy .lp-kicker { color: var(--lp-copper-hot); }

.lp-band--navy .lp-lede { color: rgba(243, 234, 217, 0.82); }

.lp-band--sand {
  background:
    linear-gradient(180deg, rgba(201, 160, 106, 0.22), rgba(201, 160, 106, 0.08));
}

.lp-band--copper {
  background: var(--lp-copper);
  color: var(--lp-navy-deep);
}

.lp-band--copper h2 { color: var(--lp-navy-deep); }

.lp-offset {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 780px) {
  .lp-offset {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: start;
  }

  .lp-offset--flip { grid-template-columns: minmax(0, 1fr) minmax(0, 0.42fr); }
  .lp-offset--flip .lp-offset__aside { order: 2; }
}

.lp-twin {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 840px) {
  .lp-twin {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.4rem;
    align-items: start;
  }
}

.lp-enter {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-enter.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lp-enter { opacity: 1; transform: none; }
}

.lp-tells {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 700px) {
  .lp-tells { grid-template-columns: repeat(3, 1fr); }
}

.lp-stubcard {
  background: var(--lp-bone-hot);
  border: 1px solid var(--lp-navy);
  padding: 1.15rem 1.1rem 1.25rem;
  position: relative;
  box-shadow: 8px 8px 0 -1px var(--lp-navy);
}

.lp-stubcard::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lp-bone);
  border: 1px solid var(--lp-navy);
  top: 12px;
  right: 12px;
}

.lp-stubcard__no {
  font-family: var(--lp-ticket);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-copper);
  margin: 0 0 0.4rem;
}

.lp-stubcard h3 { margin-bottom: 0.35rem; }

.lp-stubcard p:last-child { margin-bottom: 0; }

.lp-check {
  list-style: none;
  padding: 0;
}

.lp-check li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.4rem;
  border-bottom: 1px dotted var(--lp-rule);
}

.lp-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lp-copper);
}

.lp-folio-head {
  padding: 2rem 0 0.4rem;
}

.lp-folio-head .lp-lede { margin-bottom: 0; }

.lp-fare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.lp-fare th,
.lp-fare td {
  text-align: left;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--lp-rule);
  vertical-align: top;
}

.lp-fare th {
  font-family: var(--lp-ticket);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-mute);
  font-weight: 500;
}

.lp-fare td:last-child,
.lp-fare th:last-child {
  text-align: right;
  font-family: var(--lp-ticket);
  white-space: nowrap;
}

.lp-fare tr:hover td { background: rgba(194, 117, 50, 0.08); }

.lp-people {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .lp-people { grid-template-columns: repeat(3, 1fr); }
}

.lp-bender {
  background: var(--lp-navy);
  color: var(--lp-bone);
  padding: 1.3rem 1.15rem 1.4rem;
  position: relative;
}

.lp-bender::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 14px;
  background: radial-gradient(circle at 12px 0, transparent 6px, var(--lp-navy) 7px) 0 0 / 24px 14px;
}

.lp-bender h3 { color: var(--lp-bone); margin: 0.15rem 0 0.2rem; }

.lp-bender__role {
  font-family: var(--lp-ticket);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-sand);
  margin: 0 0 0.7rem;
}

.lp-quotes {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .lp-quotes { grid-template-columns: 1fr 1fr; }
}

.lp-quote {
  background: var(--lp-bone-hot);
  border-left: 4px solid var(--lp-copper);
  padding: 1.1rem 1.15rem;
}

.lp-quote p { margin-bottom: 0.55rem; }

.lp-quote footer {
  font-family: var(--lp-ticket);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--lp-mute);
}

.lp-form {
  background: var(--lp-bone-hot);
  border: 1.5px solid var(--lp-navy);
  padding: 1.3rem 1.15rem 1.5rem;
}

.lp-fields {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .lp-fields { grid-template-columns: 1fr 1fr; }
}

.lp-field { display: flex; flex-direction: column; gap: 0.3rem; }

.lp-field--full { grid-column: 1 / -1; }

.lp-field label {
  font-family: var(--lp-ticket);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-mute);
}

.lp-field input,
.lp-field select,
.lp-field textarea {
  font: inherit;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--lp-navy);
  background: var(--lp-bone);
  color: var(--lp-ink);
  width: 100%;
}

.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  outline: 2px solid var(--lp-copper);
  outline-offset: 1px;
}

.lp-form-note {
  font-size: 0.86rem;
  color: var(--lp-mute);
  margin: 0.9rem 0 0;
}

.lp-faq details {
  border-bottom: 1px solid var(--lp-rule);
  padding: 0.75rem 0;
}

.lp-faq summary {
  cursor: pointer;
  font-family: var(--lp-display);
  font-size: 1.12rem;
  color: var(--lp-navy);
  list-style: none;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary::before {
  content: "○ ";
  color: var(--lp-copper);
  font-family: var(--lp-ticket);
}

.lp-faq details[open] summary::before { content: "● "; }

.lp-faq details p { margin: 0.55rem 0 0.2rem; color: var(--lp-mute); }

.lp-article {
  max-width: 42rem;
}

.lp-article p { margin-bottom: 1.05em; }

.lp-notes {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .lp-notes { grid-template-columns: 1fr 1fr; }
}

.lp-note {
  text-decoration: none;
  color: inherit;
  background: var(--lp-bone-hot);
  border: 1px solid var(--lp-navy);
  padding: 1.1rem 1.15rem 1.2rem;
  display: block;
}

.lp-note:hover {
  background: var(--lp-navy);
  color: var(--lp-bone);
}

.lp-note:hover h2 { color: var(--lp-bone); }

.lp-note h2 { font-size: 1.28rem; margin-bottom: 0.35rem; }

.lp-note p { margin: 0; color: var(--lp-mute); }

.lp-note:hover p { color: rgba(243, 234, 217, 0.78); }

.lp-note__when {
  font-family: var(--lp-ticket);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-copper);
  margin: 0 0 0.4rem;
}

.lp-lost {
  padding: 4rem 0 5rem;
  text-align: left;
}

.lp-lost__code {
  font-family: var(--lp-ticket);
  letter-spacing: 0.28em;
  color: var(--lp-copper);
  margin: 0 0 0.6rem;
}

.lp-steps {
  list-style: none;
  padding: 0;
  counter-reset: ram;
}

.lp-steps li {
  counter-increment: ram;
  padding: 0.85rem 0 0.85rem 3.2rem;
  position: relative;
  border-bottom: 1px dashed var(--lp-rule);
}

.lp-steps li::before {
  content: counter(ram, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.9rem;
  font-family: var(--lp-ticket);
  color: var(--lp-copper);
  letter-spacing: 0.08em;
}

.lp-end {
  background: var(--lp-navy-deep);
  color: var(--lp-bone);
  margin-top: 2rem;
}

.lp-end a { color: var(--lp-sand); }
.lp-end a:hover { color: var(--lp-copper-hot); }

.lp-end h2 {
  color: var(--lp-sand);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.lp-end__tear {
  height: 16px;
  background: radial-gradient(circle at 12px 0, transparent 8px, var(--lp-navy-deep) 9px) 0 0 / 24px 16px;
  background-color: transparent;
  position: relative;
  top: -8px;
}

.lp-end__grid {
  display: grid;
  gap: 1.6rem;
  padding: 0.4rem 0 2rem;
}

@media (min-width: 900px) {
  .lp-end__grid {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
    gap: 1.8rem;
  }
}

.lp-end__serial {
  font-family: var(--lp-ticket);
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  color: var(--lp-copper-hot);
  margin: 0 0 0.35rem;
}

.lp-end__name {
  font-family: var(--lp-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.lp-end__chips {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
}

.lp-end__chips li {
  padding: 0.25rem 0;
  border-bottom: 1px dotted rgba(243, 234, 217, 0.18);
}

.lp-clock {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
}

.lp-clock li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0.22rem 0;
  border-bottom: 1px dotted rgba(243, 234, 217, 0.16);
}

.lp-clock .is-shut { opacity: 0.55; }

.lp-end__links {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 1;
}

.lp-end__links li { padding: 0.18rem 0; }

.lp-end__floor {
  border-top: 1px solid rgba(243, 234, 217, 0.12);
  font-family: var(--lp-ticket);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(243, 234, 217, 0.62);
}

.lp-end__floor-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  padding: 0.8rem 0 1.1rem;
}

.lp-end__floor p { margin: 0; }

@media (max-width: 480px) {
  body.lp-page { font-size: 16px; }
  .lp-hero__elev { font-size: 1.55rem; }
  .lp-stubcard { box-shadow: 5px 5px 0 -1px var(--lp-navy); }
}
