:root {
  --ink: #11100e;
  --ink-soft: #1b1916;
  --paper: #eee8dc;
  --paper-bright: #f7f2e8;
  --orange: #df6c2d;
  --orange-bright: #f27b36;
  --teal: #8eb8ae;
  --muted: #aaa397;
  --line: rgba(238, 232, 220, 0.19);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding-block: clamp(80px, 10vw, 150px); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-bright);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(17, 16, 14, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-bright);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.brand b { color: var(--orange-bright); font-weight: inherit; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta):hover { color: var(--orange-bright); }
.site-nav .nav-cta { padding: 12px 16px; border: 1px solid rgba(255,255,255,.45); }
.site-nav .nav-cta:hover { color: var(--ink); background: var(--paper); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-image,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 72%; transform: scale(1.02); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(12,11,9,.78) 0%, rgba(12,11,9,.3) 58%, rgba(12,11,9,.06) 88%),
    linear-gradient(0deg, rgba(12,11,9,.72) 0%, transparent 48%, rgba(12,11,9,.36) 100%);
}

.hero-content { position: relative; z-index: 2; padding-top: clamp(145px, 19vh, 215px); }
.eyebrow, .kicker {
  margin: 0 0 20px;
  color: var(--orange-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--paper-bright); }
.eyebrow span { width: 38px; height: 3px; background: var(--orange); }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin: 0; line-height: .92; }
h1, h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: .005em;
  text-transform: uppercase;
}

h1 { max-width: 1120px; font-size: clamp(66px, 10.7vw, 154px); }
h1 em { color: var(--orange-bright); font-style: normal; }

.hero-title-row { display: flex; align-items: center; gap: 24px; }
.hero-mascot {
  width: clamp(76px, 7.5vw, 104px);
  height: clamp(76px, 7.5vw, 104px);
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.hero h1 { max-width: 1010px; font-size: clamp(72px, 8.4vw, 132px); }

.hero-copy { max-width: 600px; margin: 26px 0 0; color: #ded8cc; font-size: clamp(17px, 2vw, 21px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 192px;
  padding: 14px 17px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #14110e; background: var(--orange-bright); }
.button-primary:hover { background: #ff985b; }
.button-ghost { color: var(--paper-bright); border-color: rgba(255,255,255,.55); background: rgba(17,16,14,.2); }
.button-ghost:hover { color: var(--ink); background: var(--paper-bright); border-color: var(--paper-bright); }

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 35px;
  display: flex;
  gap: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.ticker { overflow: hidden; color: var(--ink); background: var(--orange-bright); }
.ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-block: 14px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: ticker 30s linear infinite;
}
.ticker i { font-family: serif; font-size: 12px; font-style: normal; }
@keyframes ticker { to { transform: translateX(-45%); } }

.garage-section { background: var(--ink); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(270px, .65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading h2, .dispatch-copy h2, .shop-copy h2, .follow-top h2, .newsletter-grid h2 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 92px);
}
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 16px; }

.garage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.machine-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #24211c;
}
.machine-card-wide { grid-column: 1 / -1; min-height: 660px; }
.machine-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 700ms cubic-bezier(.2,.75,.2,1); }
.machine-card-wide > img { object-position: center 64%; }
.machine-card:not(.machine-card-wide) > img { object-position: center; }
.machine-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10,9,8,.94) 0%, rgba(10,9,8,.04) 68%);
}
.machine-card:hover > img { transform: scale(1.135); }
.machine-number { position: absolute; z-index: 2; top: 24px; right: 26px; color: rgba(255,255,255,.75); font-family: var(--display); font-size: 20px; }
.machine-copy { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 32px; }
.machine-copy p { margin: 0 0 5px; color: var(--orange-bright); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.machine-copy h3 { font-family: var(--display); font-size: clamp(48px, 6vw, 78px); text-transform: uppercase; }
.machine-copy > span { display: block; margin-top: 12px; color: #c8c1b7; }
.machine-copy ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 17px 0 0; padding: 0; list-style: none; }
.machine-copy li { padding: 7px 10px; border: 1px solid rgba(255,255,255,.35); font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.machine-card-type { background: #184b49; }
.machine-card-type::after { background: linear-gradient(0deg, rgba(7,31,30,.92), rgba(7,31,30,0) 70%); }
.type-art { position: absolute; inset: 0; overflow: hidden; }
.type-art > span {
  position: absolute;
  top: 10%;
  left: 50%;
  color: rgba(255,255,255,.07);
  font-family: var(--display);
  font-size: clamp(180px, 27vw, 360px);
  line-height: 1;
  transform: translateX(-50%);
}
.type-art i { position: absolute; right: 9%; height: 2px; background: rgba(238,232,220,.42); transform: skewX(-28deg); }
.type-art i:nth-of-type(1) { bottom: 43%; width: 64%; }
.type-art i:nth-of-type(2) { bottom: 38%; width: 48%; }
.type-art i:nth-of-type(3) { bottom: 33%; width: 34%; }

.dispatch-section { position: relative; background: var(--paper); color: var(--ink); }
.dispatch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(#201d19 .6px, transparent .6px);
  background-size: 6px 6px;
}
.dispatch-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(44px, 8vw, 110px); align-items: center; }
.dispatch-photo { position: relative; margin: 0; padding: 0 0 42px 42px; }
.dispatch-photo::before { content: ""; position: absolute; left: 0; bottom: 0; width: 55%; height: 68%; background: var(--orange); }
.dispatch-photo img { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.85) contrast(1.08); }
.dispatch-photo figcaption { position: absolute; right: -25px; bottom: 8px; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.dispatch-copy h2 { max-width: 650px; }
.dispatch-copy > p:not(.kicker) { max-width: 560px; margin: 28px 0 0; color: #575149; font-size: 18px; }
.dispatch-copy blockquote { margin: 42px 0 34px; padding-left: 18px; border-left: 4px solid var(--orange); font-family: var(--display); font-size: 30px; letter-spacing: .03em; text-transform: uppercase; }
.text-link { display: inline-flex; gap: 40px; padding-bottom: 5px; border-bottom: 2px solid var(--ink); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.text-link:hover { color: #a74216; border-color: var(--orange); }

.calendar-section { background: var(--ink); }
.event-list { border-top: 1px solid var(--line); }
.event {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 31px 5px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, padding 160ms ease;
}
.event:hover { padding-inline: 18px; background: rgba(255,255,255,.03); }
.event time { color: var(--orange-bright); font-family: var(--display); font-size: 38px; line-height: .9; text-transform: uppercase; }
.event time strong { display: block; color: var(--paper); font-size: 20px; font-weight: inherit; }
.event p { margin: 0 0 3px; color: var(--teal); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.event h3 { font-family: var(--display); font-size: clamp(30px, 4vw, 50px); text-transform: uppercase; }
.event div span { color: var(--muted); font-size: 13px; }
.event-status { padding: 8px 10px; border: 1px solid #625e57; color: #c9c2b6; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.event-status-set { color: var(--ink); background: var(--teal); border-color: var(--teal); }

.shop-section { overflow: hidden; background: var(--orange); color: var(--ink); }
.shop-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 120px); align-items: center; }
.shop-copy .kicker { color: #4d2414; }
.shop-copy > p:not(.kicker):not(.product-joke) { max-width: 520px; margin: 25px 0 38px; font-size: 18px; }
.product-title-row { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding: 22px 0; border-top: 1px solid rgba(17,16,14,.35); border-bottom: 1px solid rgba(17,16,14,.35); }
.product-title-row span { display: block; font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.product-title-row h3 { margin-top: 5px; font-family: var(--display); font-size: 34px; text-transform: uppercase; }
.product-title-row strong { font-family: var(--display); font-size: 28px; }
.product-joke { margin: 16px 0 24px; font-size: 13px; font-style: italic; }
.shop-copy .button-primary { color: var(--paper); background: var(--ink); }
.shop-copy .button-primary:hover { background: #38322c; }
.product-photo { position: relative; display: block; padding: 36px; color: var(--paper); background: #161513; text-decoration: none; transform: rotate(2deg); transition: transform 200ms ease; }
.product-photo:hover { transform: rotate(0) scale(1.01); }
.product-photo > span { position: absolute; z-index: 2; top: 22px; left: 24px; font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.product-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.follow-section { background: var(--ink); }
.follow-top { display: flex; align-items: end; justify-content: space-between; margin-bottom: 48px; }
.follow-top .kicker { margin-bottom: 8px; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.social-grid a {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}
.social-grid a:hover { color: var(--ink); background: var(--teal); }
.social-grid span { font-family: var(--display); font-size: clamp(36px, 5vw, 62px); line-height: 1; text-transform: uppercase; }
.social-grid small { margin-top: 10px; color: var(--muted); }
.social-grid a:hover small { color: #2a3a37; }
.social-grid b { position: absolute; top: 24px; right: 26px; font-size: 28px; font-weight: 400; }

.newsletter-section { padding-block: 82px; color: var(--ink); background: var(--paper); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.newsletter-grid h2 { max-width: 600px; font-size: clamp(45px, 6vw, 70px); }
.newsletter-form label { display: block; margin-bottom: 14px; color: #4f4942; font-size: 13px; }
.form-row { display: flex; border-bottom: 2px solid var(--ink); }
.form-row input { min-width: 0; flex: 1; padding: 15px 2px; border: 0; outline: 0; color: var(--ink); background: transparent; }
.form-row input::placeholder { color: #7b746b; }
.form-row button { padding: 12px 0 12px 18px; border: 0; color: var(--ink); background: transparent; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.form-row button:hover { color: #a74216; }
.form-row button:disabled { opacity: .5; cursor: wait; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; }
.form-note { min-height: 20px; margin: 10px 0 0; color: #726b62; font-size: 11px; }
.form-note a { color: inherit; }
.form-note.is-success { color: #23624c; }
.form-note.is-error { color: #9b2d21; }

.site-footer { background: #090908; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; padding-block: 70px; }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand img { width: 90px; height: 90px; border: 1px solid var(--line); border-radius: 50%; object-fit: cover; }
.footer-brand p { max-width: 280px; margin: 0; color: #bcb5aa; font-family: var(--display); font-size: 24px; line-height: 1.05; text-transform: uppercase; }
.footer-contact p { margin: 0 0 8px; color: var(--muted); font-size: 12px; }
.footer-contact a { color: var(--orange-bright); font-family: var(--display); font-size: clamp(24px, 3.2vw, 40px); line-height: 1; text-decoration: none; }
.footer-contact a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 18px; border-top: 1px solid var(--line); color: #777168; font-size: 9px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.footer-bottom a { text-decoration: none; }

.legal-page {
  min-height: 100svh;
  padding: 120px 0 90px;
  color: var(--ink);
  background: var(--paper);
}
.legal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 80px; }
.legal-nav .brand { color: var(--ink); }
.legal-nav > a:last-child { font-size: 11px; font-weight: 850; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.legal-content { max-width: 760px; }
.legal-content h1 { margin-bottom: 38px; color: var(--ink); font-size: clamp(58px, 9vw, 112px); }
.legal-content h2 { margin: 42px 0 12px; font-size: 28px; }
.legal-content p, .legal-content li { color: #514b43; }
.legal-content a { color: #9d4017; }
.legal-updated { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  :root { --wrap: min(100% - 34px, 700px); }
  .site-header { padding-inline: 17px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 66px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 24px;
    background: rgba(17,16,14,.98);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }
  .site-nav.is-open { transform: none; }
  .site-nav a { padding: 18px 6px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 34px; letter-spacing: .02em; }
  .site-nav .nav-cta { margin-top: 18px; padding: 18px; font-family: var(--sans); font-size: 12px; text-align: center; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 132px; }
  .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .garage-grid { grid-template-columns: 1fr; }
  .machine-card-wide { grid-column: auto; }
  .machine-card, .machine-card-wide { min-height: 520px; }
  .dispatch-grid, .shop-grid, .newsletter-grid, .footer-top { grid-template-columns: 1fr; }
  .dispatch-grid { gap: 58px; }
  .dispatch-photo { padding: 0 0 28px 26px; }
  .dispatch-photo figcaption { right: -15px; }
  .shop-grid { gap: 64px; }
  .product-photo { max-width: 560px; }
  .event { grid-template-columns: 105px 1fr; gap: 20px; }
  .event-status { display: none; }
  .newsletter-grid, .footer-top { gap: 44px; }
}

@media (max-width: 560px) {
  :root { --wrap: calc(100% - 28px); }
  .site-header { min-height: 66px; }
  .brand span { font-size: 14px; }
  .brand img { width: 40px; height: 40px; }
  .hero { min-height: 680px; }
  .hero-image { object-position: 58% 76%; }
  .hero-shade { background: linear-gradient(0deg, rgba(12,11,9,.95) 0%, rgba(12,11,9,.25) 78%), linear-gradient(90deg, rgba(12,11,9,.57), transparent); }
  h1 { font-size: clamp(55px, 18vw, 86px); }
  .hero-title-row { align-items: flex-start; gap: 14px; }
  .hero-mascot { width: 64px; height: 64px; margin-top: 4px; }
  .hero h1 { font-size: clamp(58px, 17vw, 82px); }
  .hero-copy { max-width: 90%; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .section { padding-block: 78px; }
  .machine-card, .machine-card-wide { min-height: 450px; }
  .machine-card-wide > img { object-position: 72% 64%; }
  .machine-copy { left: 22px; right: 22px; bottom: 24px; }
  .machine-copy li { font-size: 8px; }
  .dispatch-photo { padding-left: 18px; }
  .event { grid-template-columns: 82px 1fr; padding-block: 24px; }
  .event time { font-size: 30px; }
  .event h3 { font-size: 30px; }
  .product-photo { padding: 24px; }
  .social-grid { grid-template-columns: 1fr; }
  .social-grid a { min-height: 155px; }
  .form-row { align-items: stretch; flex-direction: column; border: 0; }
  .form-row input { border-bottom: 2px solid var(--ink); }
  .form-row button { margin-top: 10px; padding: 14px; color: var(--paper); background: var(--ink); }
  .footer-brand { align-items: flex-start; flex-direction: column; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-contact a { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
