/* ============================================================
   Sous · landing page · getsous.ai
   "Editorial restaurant journal × kitchen ticket"
   ============================================================ */

:root {
  /* Brand palette (mirrors branding/sous tokens) */
  --deep:   #0f0d0c;
  --ground: #18130f;
  --crust:  #20191324;     /* very faint warm wash */
  --paper:  #f4ece0;       /* warm off-white for ticket */
  --paper-2:#ebe1d2;
  --ink:    #f5f0e8;
  --mute:   #a8a29e;
  --dim:    #6b6560;
  --edge:   #2a2520;
  --hair:   #38302a;
  --amber:  #e89b3e;
  --amber-2:#f5b258;
  --char:   #1a1411;
  --green:  #6da77a;
  --red:    #c97564;

  /* Type scale — fluid */
  --t-display: clamp(3.4rem, 9vw, 8rem);
  --t-h2:      clamp(2.2rem, 4.6vw, 3.6rem);
  --t-h3:      clamp(1.45rem, 2.4vw, 2rem);
  --t-lead:    clamp(1.05rem, 1.5vw, 1.2rem);
  --t-body:    1.025rem;
  --t-mono:    0.78rem;
  --t-mono-sm: 0.7rem;

  --gap-page:  clamp(1.25rem, 4vw, 4rem);
  --col-max:   78rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: 'Fraunces', 'Iowan Old Style', 'Hoefler Text', Georgia, serif;
  font-size: var(--t-body);
  line-height: 1.55;
  font-feature-settings: 'ss01', 'ss02';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle warm grain — adds the "printed paper" atmosphere without kitsch.
   Generated as a noise via SVG so we don't ship a binary asset. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Warm spotlight glow at the top — like a service-pass light */
body::after {
  content: '';
  position: fixed;
  top: -30vh;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 80vh;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center,
    rgba(232, 155, 62, 0.09) 0%,
    rgba(232, 155, 62, 0.04) 25%,
    transparent 60%);
  filter: blur(20px);
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--amber); color: var(--char); }

/* ============================================================
   Top rail
   ============================================================ */

.rail {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--gap-page);
  border-bottom: 1px solid var(--hair);
}

.rail__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--amber);
}

.rail__mark {
  width: 32px;
  height: 32px;
}

.rail__word {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: 'opsz' 144;
}

.rail__nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.rail__nav a {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  transition: color 0.18s ease;
}

.rail__nav a:hover { color: var(--ink); }

.rail__cta {
  color: var(--amber) !important;
}

@media (max-width: 640px) {
  .rail__nav a:not(.rail__cta) { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 6.5rem) var(--gap-page) clamp(4rem, 8vw, 7rem);
  max-width: var(--col-max);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.kicker__rule {
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  background: var(--amber);
  opacity: 0.7;
}

.kicker--center { color: var(--amber); }

.hero__head {
  font-family: 'Fraunces', serif;
  font-size: var(--t-display);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 1.25rem 0 1.5rem;
  font-variation-settings: 'opsz' 144;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(0.6em);
  animation: lineIn 0.95s cubic-bezier(0.2, 0.7, 0.1, 1) forwards;
}

.hero__line:nth-child(1) { animation-delay: 0.05s; }
.hero__line:nth-child(2) { animation-delay: 0.18s; }
.hero__line:nth-child(3) { animation-delay: 0.32s; }

.hero__line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  font-variation-settings: 'opsz' 144;
}

@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  max-width: 36ch;
  font-size: var(--t-lead);
  color: var(--mute);
  line-height: 1.5;
  margin: 0 0 2rem;
  font-weight: 400;
}

.hero__sub br { display: none; }
@media (min-width: 700px) {
  .hero__sub br { display: inline; }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.45rem;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber);
  color: var(--char);
  font-weight: 600;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 0 0 1px rgba(0,0,0,0.2),
    0 8px 24px -10px rgba(232, 155, 62, 0.45);
}

.btn--primary:hover {
  background: var(--amber-2);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--ink);
  border-color: var(--hair);
}

.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.hero__fineprint {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono-sm);
  letter-spacing: 0.04em;
  color: var(--dim);
  margin: 0;
}

.hero__fineprint span { color: var(--ink); }

/* ----- Kitchen ticket --------------------------------------- */

.ticket {
  position: relative;
  margin-top: 1rem;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  transform: rotate(1.5deg);
  animation: ticketLand 1.1s cubic-bezier(0.2, 0.8, 0.1, 1) 0.45s both;
}

@keyframes ticketLand {
  from { opacity: 0; transform: rotate(-3deg) translateY(-30px); }
  to   { opacity: 1; transform: rotate(1.5deg) translateY(0); }
}

@media (max-width: 900px) {
  .ticket {
    margin-left: auto;
    margin-right: auto;
    transform: rotate(0.8deg);
  }
}

.ticket__paper {
  position: relative;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--char);
  padding: 1.4rem 1.6rem 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono);
  line-height: 1.55;
  /* Paper-edge perforations on top/bottom — classic POS-receipt look */
  --tooth: 8px;
  --tooth-bg: var(--deep);
  -webkit-mask:
    radial-gradient(circle at 4px -2px, transparent var(--tooth), #000 calc(var(--tooth) + 0.5px)) 0 0/16px 100%,
    radial-gradient(circle at 4px calc(100% + 2px), transparent var(--tooth), #000 calc(var(--tooth) + 0.5px)) 0 100%/16px 16px no-repeat,
    linear-gradient(#000, #000);
  mask:
    radial-gradient(circle at 4px -2px, transparent var(--tooth), #000 calc(var(--tooth) + 0.5px)) 0 0/16px 100%,
    radial-gradient(circle at 4px calc(100% + 2px), transparent var(--tooth), #000 calc(var(--tooth) + 0.5px)) 0 100%/16px 16px no-repeat,
    linear-gradient(#000, #000);
}

.ticket__head {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  margin-bottom: 0.35rem;
}

.ticket__sub {
  display: flex;
  justify-content: space-between;
  color: var(--char);
  opacity: 0.7;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
}

.ticket__time {
  font-variant-numeric: tabular-nums;
}

.ticket__paper hr {
  border: 0;
  border-top: 1px solid rgba(26,20,17,0.35);
  margin: 0.6rem 0;
}

.ticket__hr--dotted {
  border-top: 1px dashed rgba(26,20,17,0.35) !important;
}

.ticket__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.ticket__lines li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 0.6rem;
}

.ticket__lbl {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: rgba(26,20,17,0.62);
}

.ticket__val {
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--char);
}

.ticket__delta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ticket__delta--up   { color: #2d6b3f; }
.ticket__delta--down { color: #2d6b3f; } /* labor going DOWN is good — green */
.ticket__delta--flat { color: rgba(26,20,17,0.5); }

.ticket__brief {
  display: grid;
  gap: 0.45rem;
  padding: 0.2rem 0;
}

.ticket__brief p {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--char);
}

.ticket__brief strong {
  font-weight: 600;
  font-style: normal;
  color: var(--char);
}

.ticket__foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  color: rgba(26,20,17,0.55);
  letter-spacing: 0.08em;
  padding: 0.35rem 0 0.6rem;
}

.ticket__shadow {
  position: absolute;
  inset: 6px -2px -6px 8px;
  background: rgba(0,0,0,0.4);
  filter: blur(20px);
  z-index: -1;
  border-radius: 8px;
}

/* Sparkle twinkle on the brand mark */
.spark {
  transform-origin: center;
  animation: twinkle 3.4s ease-in-out infinite;
}
.spark--lg { animation-delay: 0s; }
.spark--md { animation-delay: 0.7s; }
.spark--sm { animation-delay: 1.4s; }

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  45%      { opacity: 0.4; transform: scale(0.85); }
}

/* ============================================================
   Numbers strip
   ============================================================ */

.strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: linear-gradient(180deg, transparent, rgba(232,155,62,0.025));
}

.strip__row {
  max-width: var(--col-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--gap-page);
}

.strip__cell {
  padding: 1.8rem 1rem;
  border-right: 1px solid var(--hair);
  display: grid;
  gap: 0.35rem;
  text-align: left;
}

.strip__cell:last-child { border-right: 0; }

.strip__num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--amber);
  font-variation-settings: 'opsz' 144;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.strip__lbl {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono-sm);
  letter-spacing: 0.08em;
  color: var(--mute);
}

@media (max-width: 700px) {
  .strip__row { grid-template-columns: 1fr; }
  .strip__cell { border-right: 0; border-bottom: 1px solid var(--hair); }
  .strip__cell:last-child { border-bottom: 0; }
}

/* ============================================================
   Section heads (shared)
   ============================================================ */

.section__head {
  max-width: var(--col-max);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: 0 var(--gap-page);
}

.section__head--center {
  text-align: center;
}

.section__head--center .kicker {
  justify-content: center;
}

.section__title {
  font-family: 'Fraunces', serif;
  font-size: var(--t-h2);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 1.25rem 0 1rem;
  max-width: 22ch;
  font-variation-settings: 'opsz' 96;
}

.section__title em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.section__lede {
  max-width: 50ch;
  font-size: var(--t-lead);
  color: var(--mute);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   Menu (feature courses)
   ============================================================ */

.menu {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.courses {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gap-page);
  list-style: none;
  display: grid;
  gap: 0;
}

.course {
  display: grid;
  grid-template-columns: clamp(4.5rem, 12vw, 9rem) 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--hair);
  position: relative;
}

.course:last-child { border-bottom: 1px solid var(--hair); }

/* Tiny ornamental glyph at intersection — Egyptian-cross shape, like
   a printed-menu marker. Pure CSS. */
.course::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--amber);
  transform: translate(-3px, 0) rotate(45deg);
}

.course__num {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0.35em;
}

.course__roman {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.04em;
}

.course__body {
  display: grid;
  gap: 0.85rem;
}

.course__kicker {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.course__title {
  font-family: 'Fraunces', serif;
  font-size: var(--t-h3);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
  font-variation-settings: 'opsz' 72;
  max-width: 22ch;
}

.course__title em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.course__desc {
  margin: 0;
  font-size: var(--t-body);
  color: var(--mute);
  max-width: 52ch;
  line-height: 1.6;
}

.course__bullets {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.course__bullets li {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding-left: 1.4rem;
  position: relative;
}

.course__bullets li::before {
  content: '·';
  position: absolute;
  left: 0.4rem;
  color: var(--amber);
  font-size: 1.4rem;
  line-height: 0.9;
}

@media (max-width: 700px) {
  .course { grid-template-columns: 1fr; gap: 0.5rem; }
  .course__num { padding-top: 0; }
  .course__roman { font-size: 2.4rem; }
}

/* ============================================================
   Quote
   ============================================================ */

.quote {
  position: relative;
  z-index: 2;
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gap-page);
  text-align: center;
}

.quote figure { margin: 0; }

.quote__kicker {
  display: inline-flex;
  margin-bottom: 1.6rem;
}

.quote__body {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1.5rem;
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.012em;
}

.quote__mark {
  color: var(--amber);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.18em;
  margin-right: 0.05em;
}

.quote__mark--close { margin-right: 0; margin-left: 0.05em; }

.quote__by {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono-sm);
  letter-spacing: 0.1em;
  color: var(--mute);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}

.quote__name { color: var(--ink); }
.quote__role::before {
  content: '·';
  color: var(--amber);
  margin-right: 0.6rem;
}

/* ============================================================
   Belief
   ============================================================ */

.belief {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gap-page);
  border-top: 1px solid var(--hair);
}

.belief__body {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--ink);
  text-align: center;
}

.belief__body p {
  margin: 0 0 1.1rem;
}

.belief__body em {
  font-style: italic;
  color: var(--amber);
  font-weight: 500;
}

.belief__sig {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono-sm);
  letter-spacing: 0.12em;
  color: var(--mute);
  margin-top: 1.6rem !important;
}

/* ============================================================
   Access / waitlist card
   ============================================================ */

.access {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 5rem) var(--gap-page) clamp(3rem, 5vw, 5rem);
}

.access__card {
  max-width: 44rem;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(232,155,62,0.04), transparent 30%),
    var(--ground);
  border: 1px solid var(--hair);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  /* Reservation-slip notched corners — pure CSS */
  --notch: 14px;
  clip-path: polygon(
    var(--notch) 0,
    calc(100% - var(--notch)) 0,
    100% var(--notch),
    100% calc(100% - var(--notch)),
    calc(100% - var(--notch)) 100%,
    var(--notch) 100%,
    0 calc(100% - var(--notch)),
    0 var(--notch)
  );
}

.access__head {
  margin-bottom: 1.8rem;
}

.access__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 0.85rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 96;
}

.access__desc {
  margin: 0;
  color: var(--mute);
  max-width: 50ch;
  line-height: 1.55;
}

.access__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.access__field {
  display: grid;
  gap: 0.35rem;
}

.access__field--wide {
  grid-column: 1 / -1;
}

.access__lbl {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.access__field input {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hair);
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.18s ease;
}

.access__field input::placeholder {
  color: var(--dim);
  font-style: italic;
}

.access__field input:focus {
  border-bottom-color: var(--amber);
}

.access__submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.5rem;
}

.access__success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--amber);
  background: rgba(232, 155, 62, 0.05);
  margin-top: 0.5rem;
}

.access__check {
  color: var(--amber);
  font-size: 1.5rem;
  line-height: 1;
}

.access__success p {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}

.access__success strong { color: var(--amber); font-weight: 500; }

.access__fine {
  margin-top: 1.6rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono-sm);
  color: var(--mute);
  letter-spacing: 0.04em;
}

.access__fine a {
  color: var(--amber);
}
.access__fine a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 600px) {
  .access__form { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */

.foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hair);
  padding: 1.6rem var(--gap-page);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--t-mono-sm);
  color: var(--mute);
  letter-spacing: 0.06em;
}

.foot__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--amber);
}

.foot__brand span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 1.1rem;
}

.foot__mark { width: 22px; height: 22px; }

.foot__line { color: var(--mute); }

.foot__stamp {
  font-variant-numeric: tabular-nums;
  color: var(--amber);
  letter-spacing: 0.12em;
}

/* ============================================================
   Reduced motion — turn off animations
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }
  .ticket { transform: rotate(0); }
  .hero__line { opacity: 1; transform: none; }
}
