/* What Ale's Ya — site styles
   Look: black canvas, huge tight uppercase headlines, logo-gold accent rows with hairline dividers.
   Brand colors come from the W.A.Y. logo: gold #F7941D and greens #008D55 / #8EB858. */

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1d1d1d;
  --fg: #f4f1ec;
  --muted: #a39e96;
  --line: #2b2b2b;
  --accent: #f7941d;
  --accent-2: #ffb355;
  --green: #008d55;
  --green-dark: #00603a;
  --leaf: #8eb858;
  --maxw: 1320px;
  --gutter: clamp(16px, 4vw, 48px);
  --display: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
/* Keep script-controlled visibility effective on grid and flex elements. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 400 17px/1.55 var(--body);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; background: var(--accent); color: #000; padding: 8px 12px; z-index: 100; }

/* ---------- type ---------- */
.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0;
}
h1 { font-size: clamp(44px, 8.4vw, 132px); }
h2 { font-size: clamp(36px, 5.6vw, 84px); }
h3 { font-size: clamp(24px, 2.6vw, 38px); letter-spacing: -0.035em; }
.accent { color: var(--accent); }
.eyebrow {
  font: 500 13px/1.3 var(--body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }
.lede { font-size: clamp(19px, 1.7vw, 24px); line-height: 1.35; max-width: 30ch; }
.small { font-size: 14px; color: var(--muted); line-height: 1.45; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 48px; width: auto; }
.brand span { font: 600 18px/1 var(--display); text-transform: uppercase; letter-spacing: -0.02em; }
.nav { margin-left: auto; display: flex; gap: 4px; align-items: center; }
.nav a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: 999px; color: var(--muted);
  transition: color .15s, background .15s;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); background: var(--bg-3); }
.nav .btn { margin-left: 8px; }
.menu-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line);
  color: var(--fg); border-radius: 999px; padding: 8px 16px; font: 500 14px var(--body); cursor: pointer;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--fg); color: #0a0a0a !important;
  font: 600 15px/1 var(--body); text-decoration: none;
  padding: 14px 22px; border-radius: 999px; border: 0; cursor: pointer;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--accent); transform: translateY(-1px); }
.btn.orange { background: var(--accent); }
.btn.orange:hover { background: var(--fg); }
.btn.ghost { background: transparent; color: var(--fg) !important; border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--fg); background: transparent; }
.btn.sm { padding: 10px 16px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: calc(100vh - 72px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.55) 45%, rgba(10,10,10,.97) 100%);
}
.hero .eyebrow { color: var(--fg); }
.hero .wrap { position: relative; padding-top: 120px; padding-bottom: 56px; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: end; margin-top: 36px; }
.hero-card {
  background: rgba(20,20,20,.8); border: 1px solid var(--line); border-radius: 18px; padding: 22px;
  backdrop-filter: blur(6px);
}
.hero-card .status { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; }
.hero-card .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); }
.hero-card .dot.open { background: #3ecf6e; box-shadow: 0 0 0 4px rgba(62,207,110,.2); }

.page-hero { padding: clamp(64px, 10vw, 140px) 0 clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.page-hero .lede { margin-top: 28px; color: var(--muted); max-width: 44ch; }

/* ---------- marquee ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; background: var(--accent); color: #0a0a0a; }
.marquee-track { display: flex; gap: 48px; width: max-content; padding: 16px 0; animation: marquee 38s linear infinite; }
.marquee span { font: 600 22px/1 var(--display); text-transform: uppercase; letter-spacing: -0.02em; white-space: nowrap; }
.marquee span::after { content: "✺"; margin-left: 48px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- split section (the Dribbble layout) ---------- */
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section.alt { background: var(--bg-2); }
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); }
.split-left { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.split-left .mark { width: 40px; height: 40px; opacity: .9; }
.split-left .small { max-width: 26ch; margin-top: 14px; }
.split-left .lede { margin: 0; }
.sticky-col { position: sticky; top: 104px; align-self: start; }

.rows { margin-top: clamp(36px, 5vw, 64px); }
.row {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 24px; align-items: center;
  padding: 22px 0; border-top: 1px solid var(--line); text-decoration: none;
}
.row:last-child { border-bottom: 1px solid var(--line); }
.row h3 { color: var(--accent); }
.row p { margin: 0; font-size: 15px; color: var(--muted); }
a.row { transition: padding .2s; }
a.row:hover { padding-left: 12px; }
a.row:hover h3 { color: var(--fg); }
.row .price { font: 600 22px/1 var(--display); color: var(--fg); letter-spacing: -0.02em; }

/* ---------- media ---------- */
.photo { border-radius: 18px; overflow: hidden; background: var(--bg-3); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo.tall { aspect-ratio: 4 / 5; }
.photo.wide { aspect-ratio: 16 / 10; }
.photo.square { aspect-ratio: 1; }
.photo.contain { background: #fff; }
.photo.contain img { object-fit: contain; padding: 8%; }
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.mosaic .photo:nth-child(1) { grid-column: span 7; aspect-ratio: 16/11; }
.mosaic .photo:nth-child(2) { grid-column: span 5; aspect-ratio: auto; }
.mosaic .photo:nth-child(3) { grid-column: span 4; aspect-ratio: 1; }
.mosaic .photo:nth-child(4) { grid-column: span 4; aspect-ratio: 1; }
.mosaic .photo:nth-child(5) { grid-column: span 4; aspect-ratio: 1; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.section.alt .card { background: var(--bg); }
.card .photo { margin: -10px -10px 6px; border-radius: 12px; aspect-ratio: 16/10; }
.card h3 { font-size: 26px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }
.card .meta { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted);
}
.tag.hot { border-color: var(--accent); color: var(--accent); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: 56px; }
.stat { padding: 26px 20px 0 0; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: 20px; }
.stat b { display: block; font: 600 clamp(40px, 5vw, 68px)/1 var(--display); letter-spacing: -0.05em; color: var(--accent); }
.stat span { font-size: 14px; color: var(--muted); }

/* ---------- beer kit browser ---------- */
.kit-tools { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 36px 0 8px; }
.kit-tools input {
  flex: 1 1 240px; background: var(--bg-2); border: 1px solid var(--line); color: var(--fg);
  font: 400 16px var(--body); padding: 13px 18px; border-radius: 999px; outline: none;
}
.kit-tools input:focus { border-color: var(--accent); }
.chip {
  background: transparent; color: var(--muted); border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 999px; font: 500 14px var(--body); cursor: pointer;
}
.chip[aria-pressed="true"] { background: var(--fg); color: #0a0a0a; border-color: var(--fg); }
.kit-group { margin-top: 44px; }
.kit-group > h3 { font-size: 22px; color: var(--muted); letter-spacing: 0; font-family: var(--body); font-weight: 600; margin-bottom: 8px; }
.kit {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  padding: 18px 0; border-top: 1px solid var(--line); text-decoration: none;
}
.kit strong { font: 600 clamp(22px, 2.4vw, 32px)/1.02 var(--display); text-transform: uppercase; letter-spacing: -0.035em; }
.kit em { font-style: normal; color: var(--muted); font-size: 14px; display: block; margin-top: 4px; }
.kit .go { font-size: 13px; font-weight: 600; color: var(--accent); white-space: nowrap; }
a.kit:hover strong { color: var(--accent); }
.kit-empty { display: none; padding: 32px 0; color: var(--muted); }

/* ---------- lists ---------- */
.hop-list { columns: 2; column-gap: 40px; margin: 0; padding: 0; list-style: none; }
.hop-list li { break-inside: avoid; padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.hop-list b { color: var(--fg); display: block; font-size: 16px; }
.check { list-style: none; padding: 0; margin: 0; }
.check li { padding: 10px 0 10px 30px; border-top: 1px solid var(--line); position: relative; }
.check li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- faq ---------- */
details { border-top: 1px solid var(--line); }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary {
  list-style: none; cursor: pointer; padding: 26px 48px 26px 0; position: relative;
  font: 600 clamp(22px, 2.4vw, 32px)/1.05 var(--display); text-transform: uppercase; letter-spacing: -0.035em;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font: 400 34px/1 var(--body); color: var(--accent); transition: transform .2s;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details[open] summary { color: var(--accent); }
details .answer { padding: 0 0 28px; max-width: 70ch; color: var(--muted); }
details .answer strong { color: var(--fg); }

/* ---------- callout ---------- */
.callout {
  background: var(--accent); color: #0a0a0a; border-radius: 24px;
  padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: end;
}
.callout h2 { font-size: clamp(34px, 5vw, 72px); }
.callout .btn { background: #0a0a0a; color: var(--fg) !important; }
.callout .btn:hover { background: #fff; color: #0a0a0a !important; }
.callout.green { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; align-items: center; }
.callout.green .eyebrow { color: rgba(255,255,255,.85); }
.callout.green .eyebrow::before { background: var(--accent); }
.callout.green .gold { color: var(--accent); }
.callout.green .btn { background: #fff; color: #0a0a0a !important; }
.callout.green .btn:hover { background: var(--accent); }
.callout.green .btn.ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.5); }
.callout.green .btn.ghost:hover { border-color: #fff; }
.callout .photo { border-radius: 16px; }

/* ---------- reviews ---------- */
.reviews figure { margin: 0; }
.reviews .stars { color: var(--accent); letter-spacing: .12em; font-size: 18px; }
.reviews blockquote { margin: 0; font-size: 18px; line-height: 1.45; color: var(--fg); }
.reviews figcaption { margin-top: auto; font-size: 14px; color: var(--muted); padding-top: 8px; border-top: 1px solid var(--line); }
.warn {
  border: 1px solid var(--accent); border-radius: 14px; padding: 18px 22px; margin: 24px 0;
  background: rgba(247,148,29,.08);
}
.warn b { color: var(--accent); }

/* ---------- embeds ---------- */
.embed { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.embed iframe { display: block; width: 100%; border: 0; }
.video { aspect-ratio: 16/9; background: #000; }
.video iframe { height: 100%; }
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.videos figure { margin: 0; }
.videos figcaption { margin-top: 12px; font-weight: 600; }

/* ---------- hours ---------- */
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 14px 0; border-top: 1px solid var(--line); }
.hours td:last-child { text-align: right; color: var(--muted); }
.hours tr.today td { color: var(--accent); font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 80px 0 32px; background: var(--bg); }
.footer-cta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 32px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.footer-cta h2 { font-size: clamp(40px, 7vw, 110px); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; padding: 48px 0; }
.footer-grid h4 { font: 600 12px var(--body); text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin: 0 0 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin: 0 0 8px; }
.footer-grid a { text-decoration: none; color: var(--fg); }
.footer-grid a:hover { color: var(--accent); }
.footer-logo { width: 150px; }
.socials { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; transition: border-color .15s, background .15s;
}
.socials a:hover { border-color: var(--accent); background: var(--accent); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 24px; }
.affiliate-note { margin: 16px 0 0; font-size: 12px; color: var(--muted); }
.partner { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.partner img { height: 44px; width: auto; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .menu-toggle { display: inline-block; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 12px var(--gutter) 24px; gap: 0;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-radius: 0; border-bottom: 1px solid var(--line); font-size: 18px; color: var(--fg); background: none !important; }
  .nav .btn { margin: 16px 0 0; justify-content: center; border: 0; }
  .split, .hero-grid, .callout { grid-template-columns: 1fr; }
  .callout .photo { order: -1; }
  .sticky-col { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .videos { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand span { display: none; }
  .row { grid-template-columns: 1fr; gap: 8px; }
  .hop-list { columns: 1; }
  .mosaic .photo { grid-column: span 12 !important; aspect-ratio: 4/3 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
}

/* ---------- jockey box feature ---------- */
.jb-feature { background: radial-gradient(120% 90% at 100% 0%, rgba(0,141,85,.22) 0%, transparent 60%), var(--bg); }
.jb-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.price-hero { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-hero b { font: 600 clamp(72px, 9vw, 140px)/.9 var(--display); letter-spacing: -.05em; color: var(--accent); }

/* ---------- inventory ---------- */
.inv-toggle { white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); cursor: pointer; }
.inv-toggle input { accent-color: var(--accent); width: 18px; height: 18px; }
.inv-list { margin-top: 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); column-gap: 32px; }
.inv-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); align-items: start; }
.inv-item b { display: block; font-weight: 600; }
.inv-item .small { display: block; margin-top: 2px; }
.inv-item .prices { text-align: right; font-size: 14px; white-space: nowrap; }
.inv-item .prices span { display: block; color: var(--muted); }
.inv-item .prices span.out { text-decoration: line-through; opacity: .55; }
.inv-item .prices strong { color: var(--fg); font-weight: 600; }
.inv-badge { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 3px 8px; border-radius: 999px; margin-top: 6px; }
.inv-badge.in { background: rgba(0,141,85,.2); color: #5fd49a; }
.inv-badge.out { background: var(--bg-3); color: var(--muted); }
.inv-empty { padding: 32px 0; color: var(--muted); grid-column: 1 / -1; }

@media (max-width: 1180px) and (min-width: 981px) {
  .nav a { padding: 8px 8px; font-size: 13px; }
  .brand span { display: none; }
}
.jb-feature .split-left { justify-content: flex-start; gap: 16px; }

/* keep anchored sections clear of the sticky header */
[id] { scroll-margin-top: 88px; }
.nav a.nav-stock { color: var(--leaf); }
.nav a.nav-stock::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #3ecf6e; margin-right: 7px; vertical-align: 1px; }
@media (max-width: 980px) {
  .nav a.btn { background: var(--accent) !important; color: #0a0a0a !important; border-radius: 999px; padding: 14px 22px; border-bottom: 0; }
}

/* ---------- slideshow ---------- */
.slideshow { position: relative; }
.slideshow .slides { position: absolute; inset: 0; }
.slideshow .slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.slideshow .slides img.on { opacity: 1; }
.ss-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(10,10,10,.6); color: #fff; font: 400 28px/1 var(--body);
  display: grid; place-items: center; transition: background .15s;
}
.ss-btn:hover { background: var(--accent); color: #0a0a0a; }
.ss-btn.prev { left: 12px; } .ss-btn.next { right: 12px; }
.ss-dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 8px; z-index: 2; }
.ss-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.5); }
.ss-dots button[aria-selected="true"] { background: var(--accent); width: 24px; border-radius: 999px; }
@media (prefers-reduced-motion: reduce) { .slideshow .slides img { transition: none; } }

/* ---------- order form ---------- */
.order-form { display: grid; gap: 20px; }
.order-form label { display: grid; gap: 8px; font-weight: 600; font-size: 15px; }
.order-form input:not([type="radio"]), .order-form textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--fg);
  font: 400 16px/1.4 var(--body); padding: 14px 16px; border-radius: 12px; outline: none;
}
.order-form textarea { resize: vertical; min-height: 180px; }
.order-form input:focus, .order-form textarea:focus { border-color: var(--accent); }
.order-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.order-form fieldset { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin: 0; display: grid; gap: 10px; }
.order-form legend { font-weight: 600; font-size: 15px; padding: 0 6px; color: var(--accent); }
.order-form label.opt { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; color: var(--fg); }
.order-form label.opt input { accent-color: var(--accent); width: 18px; height: 18px; margin-top: 2px; flex: none; }
.order-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.order-form .human input { max-width: 140px; }
.order-form .btn { justify-self: start; }
.order-form .btn:disabled { opacity: .6; cursor: not-allowed; }
.form-error { color: #ff8a7a; margin: 0; font-weight: 600; }
.order-notes h3 { font-size: 26px; margin-bottom: 12px; }
.order-notes b { color: var(--fg); }
.order-done { background: var(--bg-2); border: 1px solid var(--accent); border-radius: 18px; padding: 28px; }
.order-done h3 { color: var(--accent); margin-bottom: 12px; }
.order-preview { white-space: pre-wrap; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin-top: 20px; font: 400 14px/1.5 ui-monospace, Menlo, Consolas, monospace; color: var(--muted); }
@media (max-width: 640px) { .order-form .field-row { grid-template-columns: 1fr; } }

/* ---------- history timeline ---------- */
.timeline { margin-top: 40px; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); }
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-item > b { font: 600 28px/1 var(--display); color: var(--accent); letter-spacing: -.03em; text-transform: uppercase; }
.tl-item h3 { font-size: 24px; margin-bottom: 8px; }
.tl-item p { margin: 0; color: var(--muted); }
@media (max-width: 640px) { .tl-item { grid-template-columns: 1fr; gap: 8px; } }
.order-form label.human { display: block; }
.order-form label.human input { display: block; margin-top: 8px; }
.send-choice { border-color: var(--accent) !important; }
.send-choice label.opt span b { color: var(--accent); }
