/* Self-hosted type. Inter variable (latin) + DM Mono 400/500. No third-party font requests. */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('../fonts/inter-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'DM Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/dm-mono-400.woff2') format('woff2'); }
@font-face { font-family: 'DM Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/dm-mono-500.woff2') format('woff2'); }

/* ==========================================================================
   venueOS.studio — shared with waiver.studio and actioncut.studio.

   Near-black ground, warm paper text, one hot accent, mono labels, square
   edges, hairline grids. The only thing that changes between the platform
   and an edition is --accent, which is the entire argument of the product:
   one core, re-coloured and re-named per venue. Editions are themed in
   theme.css, generated by _build/build.py from site.json.
   ========================================================================== */

:root {
  --bg: #080808;
  --bg-2: #0d0d0d;
  --bg-3: #0b0b0b;
  --paper: #f0eee8;
  --muted: #9c9b96;
  --dim: #9a9a95;   /* 6.4:1 on --bg */
  --dim2: #8c8c88;  /* 5.3:1 on --bg */
  --line: #292929;
  --line-2: #303030;
  --ink: #0a0a0a;

  /* Platform accent — signal green. An OS should read "running". */
  --accent: #00e3a1;
  --accent-soft: #5cf0c4;
  --accent-ink: #04241a;
  /* The inverted section is warm paper; the bright accent vanishes on it, so
     every accented mark inside .paper uses this deepened tone instead. */
  --accent-deep: #007b57;

  --font: Inter, 'Helvetica Neue', Arial, sans-serif;
  /* Type floor: nothing the reader must read sits below 12px mono / 15px sans. */
  --text-body: 16px;
  --text-small: 15px;
  --text-mono: 12px;
  --mono: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film grain, at the same weight as the sibling sites. */
.grain {
  position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.shell { width: min(1240px, calc(100% - 64px)); margin: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- nav ---------- */
.nav { height: 100px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 30; }
.brand { display: flex; align-items: center; color: inherit; text-decoration: none; font-size: 17px; letter-spacing: -.06em; }
.brand strong { font-weight: 700; }
.brand span { font-weight: 400; }
.brand i { width: 8px; height: 8px; background: var(--accent); margin-left: 6px; border-radius: 50%; transition: background .4s; }
.nav nav { display: flex; align-items: center; gap: 34px; }
.nav nav a, .mobile-nav a { color: #c4c3bf; text-decoration: none; font-size: 14px; }
.nav nav a:hover { color: #fff; }
.nav nav a.here { color: var(--accent); }
.nav .nav-cta { border: 1px solid #444; padding: 13px 17px; color: #fff; }
.nav-cta span { color: var(--accent); margin-left: 15px; }
.menu, .mobile-nav { display: none; }
.nav:before {
  content: ""; position: absolute; inset: 12px -18px; border: 1px solid transparent;
  background: rgba(8, 8, 8, 0); backdrop-filter: blur(0); z-index: -1;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled:before { background: rgba(8, 8, 8, .72); border-color: var(--line); backdrop-filter: blur(14px); }

/* ---------- type ---------- */
h1, h2 { margin: 0; font-weight: 600; letter-spacing: -.075em; line-height: .87; }
h1 { font-size: clamp(46px, 7.2vw, 108px); max-width: 14ch; margin-top: 25px; position: relative; z-index: 2; }
h2 { font-size: clamp(36px, 5.2vw, 76px); max-width: 18ch; }
h1 em, h2 em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-style: italic; color: var(--accent); transition: color .4s; }

.eyebrow, .section-label { font: 12px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: #aaa; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 25px; height: 1px; background: var(--accent); transition: background .4s; }

.lede { color: #bbb; line-height: 1.65; font-size: var(--text-body); max-width: 62ch; }

/* ---------- buttons ---------- */
.button {
  display: inline-flex; min-width: 190px; justify-content: space-between; align-items: center;
  padding: 18px 21px; background: var(--accent); color: var(--accent-ink); text-decoration: none;
  font-size: 14px; font-weight: 700; border: 0; cursor: pointer; font-family: var(--font);
  transition: transform .2s, background .4s, color .4s;
}
.button span { color: inherit; margin-left: 15px; }
.button:active { transform: scale(.97); }
.button.ghost { background: transparent; color: #fff; border: 1px solid #444; }
.button.ghost span { color: var(--accent); }
.button.light { background: var(--ink); color: #fff; min-width: 200px; }
.button.light span { color: var(--accent); }

/* ---------- hero ---------- */
.hero { padding-top: 60px; padding-bottom: 40px; position: relative; }
.hero-bottom { display: flex; align-items: center; gap: 45px; position: relative; z-index: 3; margin: 38px 0 0; flex-wrap: wrap; }
.hero-bottom p { max-width: 52ch; color: #bbb; line-height: 1.65; font-size: var(--text-body); margin: 0; }
.hero-sub { max-width: 60ch; margin: 34px 0 0; color: #ccc; line-height: 1.7; font-size: 18px; }

/* ---------- stat band ---------- */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); margin-top: 70px; }
.num { background: var(--bg-2); padding: 28px 24px 26px; }
.num b { display: block; font-size: 42px; font-weight: 700; letter-spacing: -.06em; color: var(--paper); }
.num b em { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--accent); }
.num span { display: block; margin-top: 10px; font: 12px var(--mono); letter-spacing: .02em; color: var(--dim); line-height: 1.6; }

/* ---------- generic section head ---------- */
.sec { padding: 150px 0; }
.sec-sm { padding: 100px 0; }
.sec-head { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; margin-bottom: 60px; gap: 40px; }
.sec-head .section-label { grid-column: 1 / -1; }
.sec-head h2 { margin-top: 35px; }
.sec-head > p:last-child { color: #a8a8a3; line-height: 1.75; max-width: 46ch; margin: 0 0 10px; font-size: var(--text-body); }

/* ---------- hairline tile grid ---------- */
.tiles { display: grid; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.tiles-2 { grid-template-columns: repeat(2, 1fr); }
.tiles-3 { grid-template-columns: repeat(3, 1fr); }
.tiles-4 { grid-template-columns: repeat(4, 1fr); }
.tile { background: var(--bg-2); padding: 28px 24px 30px; position: relative; overflow: hidden; transition: background .45s, transform .45s; }
.tile > span.tile-n { font: 12px var(--mono); color: var(--dim2); }
.tile h3 { font-size: 21px; letter-spacing: -.04em; margin: 22px 0 8px; font-weight: 600; }
.tile p { font-size: var(--text-small); color: var(--dim); line-height: 1.7; margin: 0; max-width: 60ch; }
.tile:hover { background: #141414; }
a.tile { color: inherit; text-decoration: none; display: block; }
a.tile:hover { transform: translateY(-5px); z-index: 2; }

/* ---------- numbered flow ---------- */
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; margin-top: 70px; }
.flow-item { padding: 0 28px; }
.flow-item:first-child { padding-left: 0; }
.flow-item small { font: 12px var(--mono); color: var(--accent); display: block; margin-bottom: 70px; transition: color .4s; }
.flow-item strong { font-size: 30px; letter-spacing: -.05em; display: block; margin-bottom: 12px; }
.flow-item p { color: var(--dim); line-height: 1.65; font-size: var(--text-small); max-width: 28ch; margin: 0; }
.flow-arrow { align-self: center; color: var(--dim); }

/* ---------- the stack diagram ---------- */
.stack { border: 1px solid var(--line-2); background: var(--bg-2); padding: 26px; }
.stack-row { display: flex; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); flex-wrap: wrap; }
.stack-cell {
  background: #141414; flex: 1 1 130px; padding: 15px 14px; font: 12px var(--mono);
  letter-spacing: .06em; color: #cfcec9; text-transform: uppercase;
}
.stack-cell.on { background: var(--accent); color: var(--accent-ink); font-weight: 500; transition: background .4s, color .4s; }
.stack-label { font: 12px var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--dim2); margin: 0 0 12px; }
.stack-gap { height: 26px; display: grid; place-items: center; }
.stack-gap i { width: 1px; height: 100%; background: #444; display: block; }

/* ---------- edition switcher ---------- */
.switch { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 50px; }
.switch button {
  font: 12px var(--mono); text-transform: uppercase; letter-spacing: .06em;
  background: transparent; border: 1px solid #3a3a3a; color: #bbb; padding: 12px 15px;
  cursor: pointer; transition: border-color .25s, color .25s, background .25s;
}
.switch button:hover { color: #fff; border-color: #666; }
.switch button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); font-weight: 500; }

/* ---------- module list (the core) ---------- */
.modules { border-top: 1px solid var(--line); margin-top: 50px; }
.module { display: grid; grid-template-columns: 250px 1fr; gap: 40px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; }
.module dt { font-size: 19px; letter-spacing: -.035em; font-weight: 600; }
.module dt i { display: inline-block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-right: 11px; vertical-align: middle; transition: background .4s; }
.module dd { margin: 0; color: #a8a8a3; line-height: 1.75; font-size: var(--text-small); max-width: 64ch; }

/* ---------- plus list ---------- */
.plus { list-style: none; padding: 0; margin: 0; border-top: 1px solid #333; }
.plus li { font: 13px var(--mono); padding: 14px 0; border-bottom: 1px solid #333; color: #bbb; line-height: 1.6; }
.plus li:before { content: "+"; color: var(--accent); margin-right: 12px; transition: color .4s; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8%; align-items: center; }
.split-copy > p:not(.section-label) { color: #999; line-height: 1.75; max-width: 490px; margin: 40px 0 28px; }

/* ---------- inverted light section ---------- */
.paper { background: var(--paper); color: #0b0b0b; padding: 150px 0; }
.paper .section-label { color: #5d5d5d; }
.paper h2 em { color: var(--accent-deep); }
.paper .flow-item small { color: var(--accent-deep); }
.paper .plus li:before { color: var(--accent-deep); }
.paper .eyebrow span { background: var(--accent-deep); }
.paper p { color: #555; line-height: 1.75; }
.paper .tiles, .paper .tiles { background: #c6c3bc; border-color: #c6c3bc; }
.paper .tile { background: #e8e5de; }
.paper .tile h3 { color: #111; }
.paper .tile p { color: #5a5a5a; }
.paper .tile > span.tile-n { color: #6d6a64; }
.paper .tile:hover { background: #ded9d0; }
.paper .plus { border-color: #c6c3bc; }
.paper .plus li { border-color: #c6c3bc; color: #444; }
.paper .modules { border-color: #c6c3bc; }
.paper .module { border-color: #c6c3bc; }
.paper .module dd { color: #55534e; }
.paper-points { display: flex; flex-wrap: wrap; gap: 12px; }
.paper-points span { font: 12px var(--mono); border: 1px solid #b5b2ab; padding: 11px; color: #333; }
.paper-points b { color: var(--accent-deep); margin-right: 5px; }

/* ---------- edition cards ---------- */
/* a.tile sets display:block and outranks a bare .ed, so the card's own
   layout has to match that specificity or the footer never reaches the
   bottom of the card. */
a.ed, a.ed.tile { background: var(--bg-2); padding: 0; display: flex; flex-direction: column; color: inherit; text-decoration: none; min-height: 300px; }
.ed-top { padding: 24px 24px 0; flex: 1; }
.ed-bar { height: 4px; background: var(--ed, var(--accent)); }
.ed-status { font: 12px var(--mono); text-transform: uppercase; letter-spacing: .06em; color: var(--ed, var(--accent)); }
.ed h3 { font-size: 26px; letter-spacing: -.05em; margin: 20px 0 6px; font-weight: 600; }
.ed .ed-vert { font: 12px var(--mono); letter-spacing: .02em; color: var(--dim2); }
.ed p { font-size: var(--text-small); color: var(--dim); line-height: 1.7; margin: 18px 0 0; }
.ed-foot { padding: 20px 24px 24px; font: 12px var(--mono); letter-spacing: .04em; color: var(--ed, var(--accent)); }

/* ---------- marquee ---------- */
.marquee {
  width: 100vw; margin-left: calc((100vw - 100%) / -2); overflow: hidden;
  border-top: 1px solid #333; border-bottom: 1px solid #333; padding: 24px 0;
  transform: rotate(-2deg); background: var(--bg-2);
}
.marquee div { display: flex; width: max-content; gap: 25px; align-items: center; animation: marquee 32s linear infinite; }
.marquee span { font-size: 22px; font-weight: 600; letter-spacing: -.04em; white-space: nowrap; }
.marquee i { color: var(--accent); font-style: normal; transition: color .4s; }

/* ---------- cta ---------- */
.cta { padding: 150px 0; background: var(--accent); text-align: center; color: var(--accent-ink); transition: background .4s; }
.cta .section-label { color: var(--accent-ink); opacity: .75; }
.cta .eyebrow span { background: var(--accent-ink); }
.cta h2 { color: var(--accent-ink); }
.cta h2 em { color: #0a0a0a; }
.cta > .shell > p { margin: 36px auto 30px; max-width: 520px; line-height: 1.7; color: var(--accent-ink); opacity: .85; }

/* ---------- form ---------- */
.form { max-width: 560px; margin: 0 auto; text-align: left; }
.form-row { margin-bottom: 14px; }
.form label { display: block; font: 12px var(--mono); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 7px; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid #3a3a3a; background: #111; color: #f0eee8;
  padding: 15px 14px; font: 15px var(--font); border-radius: 0;
}
.form textarea { min-height: 130px; resize: vertical; }
.form .button { width: 100%; justify-content: space-between; margin-top: 8px; }
.cta .form label { color: var(--accent-ink); }
.cta .form input, .cta .form select, .cta .form textarea { border-color: rgba(0,0,0,.35); background: #fff; color: #111; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 22px; font-size: var(--text-small); font-weight: 600; margin: 14px 0 0; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.price { background: var(--bg-2); padding: 34px 28px 36px; display: flex; flex-direction: column; }
.price.feature { background: #111; }
.price h3 { font-size: 24px; letter-spacing: -.05em; margin: 18px 0 6px; font-weight: 600; }
.price .amount { font-size: 50px; font-weight: 700; letter-spacing: -.07em; margin: 22px 0 4px; line-height: 1; }
.price .amount em { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--accent); }
.price .per { font: 12px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--dim2); }
.price > p { font-size: var(--text-small); color: var(--dim); line-height: 1.7; }
.price .plus { margin-top: 24px; flex: 1; }

/* ---------- vertical entries ---------- */
.vert { border-top: 1px solid var(--line); padding: 56px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 7%; scroll-margin-top: 110px; }
.vert-head h3 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -.06em; margin: 16px 0 14px; font-weight: 600; line-height: .95; }
.vert-head h3 i { display: block; width: 34px; height: 3px; background: var(--ed, var(--accent)); margin-bottom: 20px; }
.vert-head .ed-vert { font: 12px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--ed, var(--accent)); }
.vert-head > p { color: #999; line-height: 1.75; font-size: 14px; max-width: 380px; }
.vert-why { color: #a8a8a3; line-height: 1.8; font-size: 15px; margin: 0 0 26px; }
.vert-reuse { font: 12px var(--mono); color: var(--dim2); line-height: 1.8; border-left: 1px solid var(--line-2); padding-left: 16px; }
.vert-reuse b { color: var(--ed, var(--accent)); font-weight: 400; display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 60px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.foot-grid h4 { font: 12px var(--mono); text-transform: uppercase; letter-spacing: .12em; color: var(--dim2); margin: 0 0 18px; font-weight: 400; }
.foot-grid a { display: block; color: #aaa; text-decoration: none; font-size: var(--text-small); padding: 5px 0; }
.foot-grid a:hover { color: #fff; }
.foot-note { color: var(--dim2); font-size: var(--text-small); line-height: 1.75; max-width: 280px; margin: 16px 0 0; }
.foot-bar { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: #9a9a95; gap: 20px; flex-wrap: wrap; }
.foot-bar span { font: 12px var(--mono); }

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

.skip-link { position: fixed; left: 18px; top: -60px; z-index: 100; background: var(--paper); color: #111; padding: 13px 18px; font: 12px var(--mono); transition: top .2s; }
.skip-link:focus { top: 18px; }
.scroll-progress { position: fixed; left: 0; right: 0; top: 0; height: 2px; z-index: 60; background: transparent; }
.scroll-progress i { display: block; width: 100%; height: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: background .4s; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 4px;
}
.cta a:focus-visible, .cta button:focus-visible, .cta input:focus-visible, .cta textarea:focus-visible { outline-color: var(--accent-ink); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .sec-head { grid-template-columns: 1fr; }
  .sec-head > p:last-child { margin-top: 0; }
  .tiles-4 { grid-template-columns: repeat(2, 1fr); }
  .tiles-3 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .vert { grid-template-columns: 1fr; gap: 28px; }
  .module { grid-template-columns: 1fr; gap: 10px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .shell { width: min(100% - 36px, 700px); }
  .nav { height: 78px; }
  .nav nav { display: none; }
  .nav:before { inset: 8px -8px; }
  .menu { display: block; background: none; border: 0; width: 35px; height: 35px; padding: 7px; cursor: pointer; }
  .menu span { display: block; height: 1px; background: #fff; margin: 7px 0; }
  .mobile-nav {
    display: flex; position: fixed; inset: 78px 0 auto 0; height: 0; overflow: hidden; z-index: 25;
    background: var(--bg-3); flex-direction: column; transition: height .35s;
  }
  .mobile-nav.open { height: calc(100vh - 78px); padding: 30px 25px; overflow-y: auto; }
  .mobile-nav a { font-size: 24px; padding: 16px 0; border-bottom: 1px solid #333; }
  .sec { padding: 100px 0; }
  .sec-sm { padding: 70px 0; }
  .paper { padding: 100px 0; }
  .cta { padding: 100px 0; }
  .numbers { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-item { padding: 26px 0; border-bottom: 1px solid #2b2b2b; }
  .flow-item small { margin-bottom: 20px; }
  .flow-arrow { display: none; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .hero-bottom { display: block; }
  .hero-bottom .button { margin-bottom: 24px; }
  .hero-bottom p { margin-bottom: 25px; }
  .tile:hover, a.tile:hover { transform: none; }
}
@media (max-width: 560px) {
  .shell { width: calc(100% - 30px); }
  h1 { font-size: 16vw; }
  h2 { font-size: 13vw; }
  /* The burger menu already carries this link; at phone width the two
     together crowd the brand out. */
  .nav .nav-cta { display: none; }
  .numbers { grid-template-columns: 1fr; }
  .num b { font-size: 36px; }
  .tiles-2, .tiles-3, .tiles-4 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee div { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .tile, a.tile { transition: none; }
}

/* ---- FAQ (rendered from _build/faq/<page>.json; also emitted as FAQPage JSON-LD) ---- */
.faqs { border-top: 1px solid var(--line-2); margin-top: 36px; }
.faq { border-bottom: 1px solid var(--line-2); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 0; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-size: 17px; font-weight: 600; letter-spacing: -.03em; margin: 0; }
.faq summary i { flex: 0 0 14px; width: 14px; height: 14px; position: relative; }
.faq summary i:before, .faq summary i:after { content: ""; position: absolute; background: var(--accent); left: 0; top: 6px; width: 14px; height: 2px; transition: transform .3s; }
.faq summary i:after { transform: rotate(90deg); }
.faq[open] summary i:after { transform: rotate(0); }
.faq p { color: #a8a8a3; line-height: 1.8; font-size: 15px; margin: 0 0 24px; max-width: 720px; }
.faq summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* ---- photographs (rendered by <!--#img-key--> from _build/assets/img/manifest.json) ---- */
.photo { margin: 0; }
.photo img { display: block; width: 100%; height: auto; filter: saturate(.82) contrast(1.04); background: var(--bg-2); }
.photo.band { width: 100vw; margin-left: calc(50% - 50vw); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.photo.band img { max-height: 72vh; object-fit: cover; }
.photo-grid { display: grid; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); margin-top: 60px; }
.photo-grid-2 { grid-template-columns: repeat(2, 1fr); }
.photo-grid-3 { grid-template-columns: repeat(3, 1fr); }
.photo-grid .photo img { aspect-ratio: 3 / 2; object-fit: cover; height: 100%; }
.split .photo img { aspect-ratio: 4 / 3; object-fit: cover; }
.paper .photo img { filter: saturate(.9); }
@media (max-width: 900px) {
  .photo-grid-2, .photo-grid-3 { grid-template-columns: 1fr; }
  .photo.band img { max-height: 60vh; }
}

/* ---- form states ---- */
.form-status { grid-column: 1 / -1; margin: 12px 0 0; font: 13px var(--mono); color: var(--accent-ink, #111); min-height: 1.4em; }
.form-done { grid-column: 1 / -1; padding: 28px; border: 1px solid rgba(0,0,0,.35); }
.form-done h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.03em; }
.form-done p { margin: 0; line-height: 1.7; }
.form-turnstile { grid-column: 1 / -1; }
