/* Consolidated site stylesheet — shared rules global; page-specific
   rules scoped under body.<page>. Generated by scripts/.consolidate-css.py */

/* ===================== shared ===================== */
:root {
  --bg:        #08070a;
  --bg-2:      #0d0c10;
  --panel:     #110f14;
  --red:       #e0102a;   /* blood red, from the red-room portrait */
  --red-deep:  #8c0a1c;
  --amber:     #f0a23b;   /* booth curtain amber, secondary accent */
  --chrome-hi: #ffffff;
  --chrome-1:  #e7e9ef;
  --chrome-2:  #aeb2bf;
  --chrome-3:  #5a5d68;
  --chrome-lo: #2c2d34;
  --ink:       #e9eaee;
  --muted:     #8a8b95;
  --line:      rgba(255,255,255,.10);
  --line-soft: rgba(255,255,255,.05);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
::selection { background: var(--red); color: #fff; }
a { color: inherit; }
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.scan { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .35;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.25) 3px 4px); mix-blend-mode: multiply; }
.vign { position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 35%, transparent 55%, rgba(0,0,0,.6) 100%); }
.chrome {
  background: linear-gradient(176deg,
    var(--chrome-hi) 4%, var(--chrome-1) 22%, var(--chrome-2) 44%,
    var(--chrome-lo) 50%, var(--chrome-2) 57%, var(--chrome-hi) 82%, var(--chrome-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-stroke: .5px rgba(255,255,255,.10);
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.7));
}
.kicker { font-size: 11px; letter-spacing: .42em; text-transform: uppercase; color: var(--muted); }
.accent { color: var(--red); }
.statusbar { position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px clamp(16px,4vw,46px);
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted);
  background: linear-gradient(180deg, rgba(8,7,10,.92), rgba(8,7,10,.55) 70%, transparent);
  backdrop-filter: blur(6px); }
.statusbar .mark img { width: 22px; height: 22px; opacity: .9;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.25)); animation: rotate 38s linear infinite; }
.statusbar nav { display: flex; gap: clamp(14px,3vw,30px); }
.statusbar nav a { text-decoration: none; transition: color .2s; position: relative; }
.statusbar nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--red); transition: width .25s; }
.statusbar nav a:hover { color: var(--ink); }
.statusbar nav a:hover::after { width: 100%; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 8px var(--red); animation: pulse 1.8s ease-in-out infinite; margin-right: 7px; vertical-align: middle; }
@keyframes pulse { 0%,100%{ opacity:1; transform: scale(1) } 50%{ opacity:.35; transform: scale(.7) } }
@keyframes rotate { to { transform: rotate(360deg) } }
@media (max-width: 540px) { .statusbar .sys { display: none; } }
.field:focus-within { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), 0 0 36px -12px var(--red); }
.note.ok { color: #4ade80; }
.note.err { color: #ff5d6c; }
footer { position: relative; z-index: 3; border-top: 1px solid var(--line);
  padding: clamp(40px,6vh,64px) clamp(20px,4vw,64px) clamp(28px,4vh,40px);
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px 40px; align-items: center; }
footer .fmark { display: flex; align-items: center; gap: 14px; }
footer .fmark img { width: 40px; height: 40px; opacity: .85; filter: drop-shadow(0 0 10px rgba(255,255,255,.15)); }
footer .fmark .nm { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: 18px; line-height: 1.0; letter-spacing: .03em; }
footer .flinks { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
footer .flinks a { color: var(--muted); text-decoration: none; transition: color .2s; }
footer .flinks a:hover { color: var(--red); }
footer .fmeta { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--chrome-3); text-align: right; }
@media (max-width: 720px) { footer{ grid-template-columns: 1fr; text-align: center; }
  footer .fmark{ justify-content:center } footer .fmeta{ text-align:center } }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ===================== body.home ===================== */
body.home {
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Mono", ui-monospace, monospace;
  font-synthesis: none; /* Bruno Ace SC ships only 400 — never fake-bold heavy weights */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.home .statusbar .mark { display: flex; align-items: center; gap: 10px; color: var(--ink); }
body.home .hero { position: relative; min-height: 100svh; display: grid;
  grid-template-columns: 1.15fr .85fr; align-items: stretch; overflow: hidden; }
body.home .hero::before { /* emblem watermark, slowly turning */
  content: ""; position: absolute; z-index: 0;
  top: 50%; left: 38%; transform: translate(-50%,-50%);
  width: min(112vh, 1100px); aspect-ratio: 1;
  background: url("/img/emblem.png") center/contain no-repeat;
  opacity: .06; filter: grayscale(1) brightness(2.4);
  animation: rotate 90s linear infinite; pointer-events: none; }
body.home .hero-copy { position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(90px,12vh,150px) clamp(20px,4vw,64px) clamp(40px,6vh,70px); }
body.home .hero-tag { display: inline-flex; align-items: center; gap: 12px; align-self: flex-start;
  margin-bottom: clamp(20px,4vh,38px); padding: 7px 15px;
  border: 1px solid var(--line); border-radius: 2px; background: rgba(255,255,255,.02);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: rise .7s .1s forwards; }
body.home .wordmark { width: min(86%, 620px); display: block; margin: 0 0 -.06em -2px;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,.6)) drop-shadow(0 0 40px rgba(255,255,255,.07));
  opacity: 0; animation: rise .9s .2s forwards; }
body.home .machine { font-family: "Bruno Ace SC", sans-serif; font-weight: 400;
  font-size: clamp(44px, 10vw, 116px); line-height: .96; letter-spacing: .015em;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.7)) drop-shadow(0 0 26px rgba(224,16,42,.34));
  text-transform: uppercase; display: block; margin-top: clamp(8px,1.6vh,18px);
  opacity: 0; animation: rise .9s .35s forwards; }
body.home .hero-lede { font-size: clamp(13px,1.45vw,16.5px); line-height: 1.75; color: #c4c5cd;
  max-width: 46ch; margin-top: clamp(26px,4vh,40px);
  opacity: 0; animation: rise .9s .55s forwards; }
body.home .hero-lede b { color: var(--ink); font-weight: 700; }
body.home .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px,4vh,38px);
  opacity: 0; animation: rise .9s .7s forwards; }
body.home .btn { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: 14px; letter-spacing: .04em; text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: 2px;
  transition: transform .14s, filter .2s, background .2s, border-color .2s, color .2s; }
body.home .btn-red { color: #fff; border: 1px solid var(--red);
  background: linear-gradient(180deg, #ff2b41, var(--red) 55%, var(--red-deep));
  box-shadow: 0 8px 26px -10px rgba(224,16,42,.8), inset 0 1px 0 rgba(255,255,255,.25); }
body.home .btn-red:hover { filter: brightness(1.1); transform: translateY(-2px); }
body.home .btn-ghost { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.02); }
body.home .btn-ghost:hover { border-color: var(--chrome-2); background: rgba(255,255,255,.06); transform: translateY(-2px); }
body.home .btn:active { transform: translateY(0); }
body.home .hero-media { position: relative; z-index: 2; overflow: hidden;
  border-left: 1px solid var(--line); }
body.home .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%;
  opacity: 0; animation: fadeImg__home 1.4s .25s forwards; }
body.home .hero-media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, var(--bg) 0%, transparent 22%),
    linear-gradient(0deg, rgba(8,7,10,.6), transparent 40%); }
@keyframes fadeImg__home { to { opacity: 1 } }
body.home .scrollcue { position: absolute; left: clamp(20px,4vw,64px); bottom: 22px; z-index: 4;
  font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 10px; opacity: 0; animation: rise 1s 1s forwards; }
body.home .scrollcue .ln { width: 46px; height: 1px; background: var(--chrome-3); position: relative; overflow: hidden; }
body.home .scrollcue .ln::after { content:""; position:absolute; inset:0; width:40%;
  background: var(--red); animation: track__home 2.4s ease-in-out infinite; }
@keyframes track__home { 0%{ transform: translateX(-100%) } 100%{ transform: translateX(280%) } }
body.home .ticker { position: relative; z-index: 5; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden; white-space: nowrap; }
body.home .ticker .track { display: inline-block; padding: 13px 0; animation: slide__home 30s linear infinite;
  font-family: "Bruno Ace SC", sans-serif; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; font-size: 16px; color: var(--chrome-2); }
body.home .ticker .track span { margin: 0 22px; }
body.home .ticker .track .x { color: var(--red); }
@keyframes slide__home { from{ transform: translateX(0) } to{ transform: translateX(-50%) } }
body.home section.block { position: relative; z-index: 3; padding: clamp(64px,11vh,130px) clamp(20px,4vw,64px); }
body.home .sec-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: clamp(28px,5vh,52px); }
body.home .sec-num { font-size: 12px; color: var(--red); letter-spacing: .2em; }
body.home .sec-title { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(12px,1.3vw,14px); letter-spacing: .24em; color: var(--muted); }
body.home .sec-rule { flex: 1; height: 1px; background: var(--line); align-self: center; }
body.home .statement { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
body.home .statement .big { font-family: "Bruno Ace SC", sans-serif; font-weight: 400;
  font-size: clamp(25px,3.7vw,49px); line-height: 1.18; letter-spacing: 0; text-transform: uppercase; }
body.home .statement .big .accent { color: var(--red); }
body.home .statement .big .sword { font-size: .5em; vertical-align: .12em; margin-left: .04em;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
body.home .statement p { margin-top: 22px; font-size: clamp(13.5px,1.4vw,16px); line-height: 1.8; color: #bcbdc6; max-width: 52ch; }
body.home .statement p b { color: var(--ink); }
body.home .statement .portrait { position: relative; aspect-ratio: 3/4; border: 1px solid var(--line); overflow: hidden;
  background: var(--panel); }
body.home .statement .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 1.2s; filter: saturate(1.05); }
body.home .statement .portrait:hover img { transform: scale(1.04); }
body.home .statement .portrait .cap { position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--ink);
  background: rgba(8,7,10,.6); border: 1px solid var(--line); padding: 5px 10px; backdrop-filter: blur(4px); }
body.home .corner { position: absolute; width: 16px; height: 16px; z-index: 2; border: 1px solid var(--red); }
body.home .corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
body.home .corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
body.home .specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(40px,7vh,72px);
  background: var(--line); border: 1px solid var(--line); }
body.home .spec { background: var(--bg); padding: 22px clamp(14px,2vw,24px); }
body.home .spec dt { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
body.home .spec dd { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(17px,2vw,25px); margin-top: 10px; line-height: 1.08; letter-spacing: .01em; }
@media (max-width:720px) {
  body.home .specs { grid-template-columns: repeat(2,1fr) }
}
body.home .booth { position: relative; z-index: 2; min-height: 80svh; display: flex; align-items: flex-end;
  padding: clamp(36px,7vh,80px) clamp(20px,4vw,64px); overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
body.home .booth img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 42%; z-index: 0; }
body.home .booth::after { content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(90deg, rgba(8,7,10,.86) 0%, rgba(8,7,10,.5) 40%, rgba(8,7,10,.15) 100%),
    linear-gradient(0deg, rgba(8,7,10,.85), transparent 55%); }
body.home .booth .inner { position: relative; z-index: 2; max-width: 620px; }
body.home .booth h2 { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(33px,5.4vw,74px); line-height: 1.0; letter-spacing: .01em; margin: 14px 0 18px; }
body.home .booth p { font-size: clamp(13.5px,1.4vw,16px); line-height: 1.75; color: #cdced5; max-width: 44ch; margin-bottom: 26px; }
body.home .signup-block { position: relative; z-index: 3; }
body.home .signup-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,5vw,72px); align-items: center; }
body.home .signup-grid h2 { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(29px,4.2vw,57px); line-height: 1.04; letter-spacing: .01em; }
body.home .signup-grid h2 .accent { color: var(--red); }
body.home .signup-grid .sub { margin-top: 18px; font-size: clamp(13.5px,1.4vw,16px); line-height: 1.75; color: #bcbdc6; max-width: 46ch; }
body.home .signup-grid .sub b { color: var(--ink); }
body.home .panel { background: linear-gradient(180deg, var(--panel), #0b0a0e); border: 1px solid var(--line);
  border-radius: 4px; padding: clamp(22px,3vw,34px); position: relative; }
body.home .panel .lbl { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px; }
body.home form { display: flex; flex-direction: column; gap: 10px; }
body.home .field { flex: 1; border: 1px solid var(--line); border-radius: 2px;
  background: rgba(255,255,255,.03); transition: border-color .22s, box-shadow .22s; }
body.home .field input { width: 100%; background: transparent; border: 0; color: var(--ink);
  font-family: "Space Mono", monospace; font-size: 15px; padding: 14px 15px; }
body.home input::placeholder { color: #5e5f69; }
body.home input:focus { outline: none; }
body.home .panel button { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: 15px; letter-spacing: .03em; color: #fff; cursor: pointer; border: 1px solid var(--red);
  padding: 0 26px; border-radius: 2px; white-space: nowrap;
  background: linear-gradient(180deg, #ff2b41, var(--red) 55%, var(--red-deep));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 20px -8px rgba(224,16,42,.7);
  transition: transform .14s, filter .22s; }
body.home .panel button:hover { filter: brightness(1.1); transform: translateY(-1px); }
body.home .panel button:active { transform: translateY(1px); }
body.home .note { margin-top: 14px; font-size: 13px; color: var(--muted); min-height: 1.2em; }
body.home altcha-widget { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
body.home .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
body.home .reveal.in { opacity: 1; transform: none; }
@media (max-width: 880px) {
  body.home .hero { grid-template-columns: 1fr; }
  body.home .hero-media { order: -1; min-height: 46svh; border-left: 0; border-bottom: 1px solid var(--line); }
  body.home .hero-media img { position: relative; height: 100%; }
  body.home .hero::before { left: 50%; opacity: .05; }
  body.home .statement, body.home .signup-grid { grid-template-columns: 1fr; }
  body.home .statement .portrait { max-width: 440px; }
  body.home .scrollcue { display: none; }
}
@media (max-width: 560px) {
  body.home form { flex-direction: column; }
  body.home .panel button { padding: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  body.home *, body.home *::before, body.home *::after { animation: none !important; transition: none !important; }
  body.home .reveal { opacity: 1 !important; transform: none !important; }
  body.home [style*="animation"], body.home .wordmark, body.home .machine, body.home .hero-tag, body.home .hero-lede, body.home .hero-actions, body.home .scrollcue { opacity: 1 !important; transform: none !important; }
}

/* ===================== body.book ===================== */
body.book {
    background: var(--bg);
    color: var(--ink);
    font-family: "Space Mono", ui-monospace, monospace;
    font-synthesis: none; /* Bruno Ace SC ships only 400 — never fake-bold heavy weights */
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100svh;
  }
body.book .statusbar .mark { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
body.book .statusbar nav a.here { color: var(--ink); }
body.book .statusbar nav a.here::after { width: 100%; }
body.book .wrap { position: relative; z-index: 3;
    padding: clamp(112px,18vh,168px) clamp(20px,4vw,64px) clamp(64px,11vh,130px);
    display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: start; }
@media (max-width: 860px) {
  body.book .wrap { grid-template-columns: 1fr; gap: clamp(28px,5vh,40px); }
}
body.book .intro { position: sticky; top: clamp(96px,16vh,140px); }
@media (max-width: 860px) {
  body.book .intro { position: static; }
}
body.book .intro .tag { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
    margin-bottom: 22px; padding: 7px 14px;
    border: 1px solid var(--line); border-radius: 2px; background: rgba(255,255,255,.02);
    font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
body.book .intro h1 { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
    font-size: clamp(37px,6vw,72px); line-height: 1.0; letter-spacing: .01em; }
body.book .intro h1 .l2 { display: block; }
body.book .intro p { margin-top: 22px; font-size: clamp(13.5px,1.4vw,15.5px); line-height: 1.8; color: #bcbdc6; max-width: 40ch; }
body.book .intro p b { color: var(--ink); font-weight: 700; }
body.book .intro .specs { list-style: none; margin-top: 28px; border-top: 1px solid var(--line); }
body.book .intro .specs li { display: flex; justify-content: space-between; gap: 16px;
    padding: 12px 0; border-bottom: 1px solid var(--line-soft);
    font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
body.book .intro .specs li b { color: var(--ink); font-weight: 700; letter-spacing: .04em; }
body.book .intro .back { display: inline-block; margin-top: 26px; font-size: 11px; letter-spacing: .26em;
    text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
body.book .intro .back:hover { color: var(--red); }
body.book .panel { background: linear-gradient(180deg, var(--panel), #0b0a0e); border: 1px solid var(--line);
    border-radius: 4px; padding: clamp(22px,3.4vw,38px); position: relative; }
body.book .panel::before, body.book .panel::after { content: ""; position: absolute; width: 16px; height: 16px;
    border: 1px solid var(--red); pointer-events: none; }
body.book .panel::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
body.book .panel::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
body.book .panel .lbl { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 22px; display: flex; align-items: center; gap: 8px; }
body.book .booking { display: grid; gap: 18px; }
body.book .row { display: grid; gap: 18px; }
@media (min-width: 560px) {
  body.book .row.two { grid-template-columns: 1fr 1fr; }
}
body.book .fg { display: flex; flex-direction: column; gap: 7px; }
body.book .fg > label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--chrome-2); }
body.book .fg > label .req { color: var(--red); margin-left: 3px; }
body.book .field { border: 1px solid var(--line); border-radius: 2px;
    background: rgba(255,255,255,.03); transition: border-color .22s, box-shadow .22s; }
body.book .field input, body.book .field textarea {
    width: 100%; background: transparent; border: 0; color: var(--ink);
    font-family: "Space Mono", monospace; font-size: 15px; padding: 13px 14px; resize: vertical; }
body.book .field textarea { min-height: 128px; line-height: 1.6; }
body.book .field input::placeholder, body.book .field textarea::placeholder { color: #5e5f69; }
body.book .field input:focus, body.book .field textarea:focus { outline: none; }
body.book .field input[type="datetime-local"]::-webkit-calendar-picker-indicator { filter: invert(.7) sepia(1) saturate(6) hue-rotate(-15deg); cursor: pointer; }
body.book .field input[type="datetime-local"] { color-scheme: dark; }
body.book .hint { font-size: 11px; color: var(--muted); letter-spacing: .04em; }
body.book .rt-toolbar { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; flex-wrap: wrap; }
body.book .rt-toolbar button { font-family: "Space Mono", monospace; font-size: 13px; line-height: 1;
    color: var(--chrome-2); background: rgba(255,255,255,.03); border: 1px solid var(--line);
    border-radius: 2px; min-width: 30px; height: 28px; padding: 0 8px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color .18s, color .18s, background .18s; }
body.book .rt-toolbar button:hover { color: var(--ink); border-color: var(--chrome-3); background: rgba(255,255,255,.06); }
body.book .rt-toolbar button.on { color: #fff; border-color: var(--red); background: rgba(224,16,42,.14); }
body.book .rt-sep { width: 1px; height: 18px; background: var(--line); margin: 0 5px; flex: none; }
body.book .rt-input { min-height: 132px; padding: 13px 14px; color: var(--ink);
    font-family: "Space Mono", monospace; font-size: 15px; line-height: 1.65; outline: none; overflow-wrap: anywhere; }
body.book .rt-input:empty:before { content: attr(data-placeholder); color: #5e5f69; }
body.book .rt-input ul, body.book .rt-input ol { margin: 4px 0 4px 22px; }
body.book .rt-input li { margin: 2px 0; }
body.book .rt-input a { color: var(--red); }
body.book .rt-input strong, body.book .rt-input b { color: #fff; }
body.book .opt { color: var(--muted); letter-spacing: .1em; }
body.book .dropzone { position: relative; display: flex; flex-direction: column; gap: 4px; cursor: pointer;
    border: 1px dashed var(--line); border-radius: 2px; background: rgba(255,255,255,.02);
    padding: 18px 16px; text-align: center; transition: border-color .2s, background .2s; }
body.book .dropzone:hover, body.book .dropzone.drag { border-color: var(--red); background: rgba(224,16,42,.06); }
body.book .dropzone input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
body.book .dz-cue { font-size: 13px; color: var(--chrome-2); }
body.book .dz-cue b { color: var(--ink); }
body.book .dz-meta { font-size: 11px; color: var(--muted); letter-spacing: .04em; }
body.book .filelist { list-style: none; margin-top: 10px; display: grid; gap: 6px; }
body.book .filelist:empty { margin-top: 0; }
body.book .filelist li { display: flex; align-items: center; gap: 12px;
    border: 1px solid var(--line); border-radius: 2px; background: rgba(255,255,255,.03);
    padding: 8px 12px; font-size: 12.5px; }
body.book .filelist li .nm { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
body.book .filelist li .st { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); flex: none; }
body.book .filelist li .st.ok { color: #4ade80; }
body.book .filelist li .st.err { color: #ff5d6c; }
body.book .filelist li .rm { cursor: pointer; color: var(--muted); flex: none; border: 0; background: none;
    font-family: inherit; font-size: 14px; line-height: 1; padding: 0 2px; }
body.book .filelist li .rm:hover { color: var(--red); }
body.book .gate { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
body.book .submit { margin-top: 6px; font-family: "Bruno Ace SC", sans-serif; font-weight: 400;
    text-transform: uppercase; font-size: 15px; letter-spacing: .03em; color: #fff; cursor: pointer;
    border: 1px solid var(--red); padding: 15px 26px; border-radius: 2px; width: 100%;
    background: linear-gradient(180deg, #ff2b41, var(--red) 55%, var(--red-deep));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 20px -8px rgba(224,16,42,.7);
    transition: transform .14s, filter .22s, opacity .2s; }
body.book .submit:hover { filter: brightness(1.1); transform: translateY(-1px); }
body.book .submit:active { transform: translateY(1px); }
body.book .submit:disabled { opacity: .5; cursor: not-allowed; filter: grayscale(.3); transform: none; }
body.book .note { margin-top: 4px; font-size: 13px; color: var(--muted); min-height: 1.2em; line-height: 1.5; }
body.book .done { display: none; text-align: center; padding: clamp(20px,5vh,48px) 10px; }
body.book .done.show { display: block; }
body.book .booking.hide { display: none; }
body.book .done .mk { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
    font-size: clamp(29px,5vw,47px); line-height: 1.04; letter-spacing: .01em; }
body.book .done .mk .accent { color: var(--red); }
body.book .done p { margin-top: 16px; color: #bcbdc6; font-size: 14px; line-height: 1.7; max-width: 38ch; margin-inline: auto; }
body.book .done .again { display: inline-block; margin-top: 24px; font-size: 11px; letter-spacing: .26em;
    text-transform: uppercase; color: var(--muted); text-decoration: none; cursor: pointer; }
body.book .done .again:hover { color: var(--red); }
body.book .rise { opacity: 0; animation: rise .8s .1s forwards; }
@media (prefers-reduced-motion: reduce) {
  body.book *, body.book *::before, body.book *::after { animation: none !important; transition: none !important; }
  body.book .rise { opacity: 1 !important; transform: none !important; }
}

/* ===================== Universal site nav + footer =====================
   Ported from services/builder/templates/site.css so the hand-authored homepage
   and booking page carry the EXACT same header/footer as every builder page.
   Wrapped in .sitebar for the shared page width; footer uses .sitefoot to override
   the legacy grid footer rule above. */
:root {
  --violet: #e0102a; --violet-2: #8c0a1c;
  --edge: rgba(255,255,255,.10); --card: rgba(255,255,255,.03); --chrome-mid: #aeb2bf;
}
.sitebar { max-width: 1120px; margin: 0 auto; padding: 0 clamp(18px,4vw,40px); }
.nav { display: flex; justify-content: space-between; align-items: center; gap: 12px 22px; flex-wrap: wrap;
  padding: clamp(14px,3vw,22px) 0; margin-bottom: clamp(14px,3vw,28px); border-bottom: 1px solid var(--edge); }
.nav .brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none;
  font-family: "Bruno Ace SC", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(13px,1.8vw,16px); letter-spacing: .05em; line-height: 1; }
.nav .brand .emblem { width: 26px; height: 26px; opacity: .9; filter: drop-shadow(0 0 7px rgba(255,255,255,.22)); }
.nav-links { display: flex; gap: clamp(16px,4vw,30px); align-items: center; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; }
.nav-links a { position: relative; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0; background: var(--violet); transition: width .25s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--violet); }
footer.sitefoot { border-top: 1px solid var(--edge); margin-top: clamp(56px,8vw,100px); padding-top: clamp(26px,4vw,38px);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px 36px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); grid-template-columns: none; }
footer.sitefoot .foot-brand { display: flex; align-items: center; gap: 13px; }
footer.sitefoot .foot-brand .emblem { width: 38px; height: 38px; opacity: .85; filter: drop-shadow(0 0 9px rgba(255,255,255,.14)); }
footer.sitefoot .foot-brand .nm { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; color: var(--ink);
  text-transform: uppercase; font-size: 17px; line-height: 1.0; letter-spacing: .03em; }
footer.sitefoot .foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; flex: 1 1 auto; }
footer.sitefoot .foot-links a { color: var(--muted); text-decoration: none; transition: color .2s; }
footer.sitefoot .foot-links a:hover { color: var(--violet); }
footer.sitefoot .foot-meta { color: var(--chrome-lo); white-space: nowrap; }
@media (max-width: 600px) { footer.sitefoot { justify-content: center; text-align: center; } footer.sitefoot .foot-brand { justify-content: center; } }
@media (max-width: 460px) { .nav-links { font-size: 11px; } .nav .brand { font-size: 15px; } }
