/* ProseVox — one stylesheet, no framework. Light theme.
   Warm paper ground, ink text, brass accent. NOTE the two brasses: the bright
   one (#D3A548) measures 2.12:1 on paper, which fails even the 3:1 bar for UI
   elements, so it is used ONLY as a fill over dark imagery. Anything that is
   text, a link or an interactive border uses the darker #8A6516 (4.96:1, AA). */
:root{
  --paper:#FAF7F0; --paper-2:#F2ECE0; --rule:#E4DACA;
  --ink:#1A1713; --ink-dim:#5A5148;
  --brass:#8A6516;        /* text, links, interactive borders — AA on paper */
  --brass-bright:#D3A548; /* decorative fill on dark only */
  --wrap:64rem;
  --measure:38rem;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0; background:var(--paper); color:var(--ink);
  font:400 1rem/1.7 Inter,system-ui,-apple-system,"Segoe UI",sans-serif;
  overflow-wrap:break-word;
}
h1,h2{font-family:Fraunces,Georgia,serif;font-weight:600;line-height:1.15;margin:0}
a{color:var(--brass)}
a:focus-visible,button:focus-visible{outline:2px solid var(--brass);outline-offset:3px;border-radius:2px}
img{max-width:100%;height:auto}

/* Every landmark's contents sit in one centred column that never exceeds the
   viewport — without this, padding alone leaves content against the left edge. */
.wrap{width:min(100% - 2rem, var(--wrap));margin-inline:auto}

.skip{position:absolute;left:-9999px}
.skip:focus{left:1rem;top:1rem;background:var(--paper-2);color:var(--ink);padding:.6rem 1rem;z-index:1}

header{border-bottom:1px solid var(--rule)}
.bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 0}
.wordmark{font-family:Fraunces,Georgia,serif;font-size:1.15rem;letter-spacing:.02em}
.cta{border:1px solid var(--brass);border-radius:999px;padding:.45rem 1.1rem;
     text-decoration:none;font-size:.9rem;white-space:nowrap;color:var(--brass)}
.cta:hover{background:var(--brass);color:var(--paper)}

main{padding-bottom:4rem;text-align:center}
.hero{padding:clamp(3rem,10vw,6rem) 0 clamp(2rem,6vw,3rem)}
h1{font-size:clamp(2.1rem,7vw,4.25rem);letter-spacing:-.01em}
.tagline{color:var(--ink-dim);margin:.85rem auto 0;font-size:clamp(1rem,2.5vw,1.2rem)}

section+section{margin-top:clamp(2.5rem,8vw,4.5rem)}
h2{font-size:clamp(1.4rem,4vw,2rem)}
.sub{color:var(--ink-dim);margin:.5rem auto 1.5rem;max-width:var(--measure)}
.body{max-width:var(--measure);margin:0 auto 1rem;color:var(--ink-dim)}

.player{margin:0 auto 1.75rem;max-width:52rem}
.facade{display:block;position:relative;width:100%;padding:0;border:0;cursor:pointer;
        background:var(--paper-2);border-radius:12px;overflow:hidden;line-height:0;
        box-shadow:0 1px 3px rgba(26,23,19,.08),0 8px 24px rgba(26,23,19,.06)}
.facade img{width:100%;display:block;transition:transform .3s}
.facade:hover img{transform:scale(1.015)}
/* Bright brass is legible here because it sits on a dark scrim over the poster. */
.tri{position:absolute;inset:0;margin:auto;width:clamp(56px,12vw,76px);height:clamp(56px,12vw,76px);
     border-radius:50%;background:rgba(26,23,19,.62);border:2px solid var(--brass-bright)}
.tri::after{content:"";position:absolute;inset:0;margin:auto;width:0;height:0;
     border-left:clamp(15px,3.2vw,21px) solid var(--brass-bright);
     border-top:clamp(10px,2.1vw,14px) solid transparent;
     border-bottom:clamp(10px,2.1vw,14px) solid transparent;transform:translateX(3px)}
.player iframe{width:100%;aspect-ratio:16/9;border:0;border-radius:12px;display:block}

.marks{list-style:none;padding:0;margin:1.5rem 0 0;display:flex;flex-wrap:wrap;
       gap:.5rem;justify-content:center}
.marks li{border:1px solid var(--rule);background:var(--paper-2);border-radius:999px;
          padding:.3rem .9rem;font-size:.85rem;color:var(--ink-dim)}

footer{border-top:1px solid var(--rule);padding:2rem 0 3rem;text-align:center}
footer p{margin:.4rem 0}
.fine{color:var(--ink-dim);font-size:.82rem;max-width:var(--measure);margin-inline:auto}

@media (prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important}}
