/* Ember & Wheel — wood-fired stoneware
   palette: umber #2B1D16 · terracotta #C96F4A · slip cream #E5D5C0 · celadon #647D75 · iron red #96442B */

:root {
  --umber: #2B1D16;
  --umber-deep: #201410;
  --umber-lift: #3A2A20;
  --terra: #C96F4A;
  --cream: #E5D5C0;
  --cream-dim: #cbb89f;
  --celadon: #647D75;
  --iron: #96442B;
  --display: "Yeseva One", serif;
  --body: "Karla", sans-serif;
  --hand: "Caveat", cursive;
  --ease-clay: cubic-bezier(.33, .01, .18, 1);
  --ease-swing: cubic-bezier(.36, 1.6, .4, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--umber-deep);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--terra); color: var(--umber-deep); }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.08; color: var(--cream); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra); }
a:hover { color: var(--cream); }

:focus-visible {
  outline: 2px dashed var(--terra);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: 1rem; top: -3rem; z-index: 50;
  background: var(--terra); color: var(--umber-deep);
  padding: .5rem 1rem; border-radius: 4px; text-decoration: none;
  transition: top .2s;
}
.skip:focus { top: 1rem; }

/* grain over everything */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; z-index: 40; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.eyebrow {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terra); font-weight: 700; margin-bottom: .9rem;
}
.glaze-note {
  font-family: var(--hand); font-size: 1.35rem; line-height: 1.25;
  color: var(--cream-dim); transform: rotate(-1.2deg); display: inline-block;
}

/* ============ header ============ */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; align-items: center; gap: 2rem;
  padding: .9rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(32,20,16,.92), rgba(32,20,16,.75) 70%, transparent);
}
.brand {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-size: 1.18rem; color: var(--cream);
  text-decoration: none; letter-spacing: .01em;
}
.brand-mark { width: 1.35rem; height: 1.35rem; color: var(--terra); }
.site-head nav { display: flex; gap: 1.4rem; margin-left: auto; }
.site-head nav a {
  color: var(--cream-dim); text-decoration: none; font-size: .92rem; font-weight: 600;
  letter-spacing: .03em; padding: .2rem 0;
  border-bottom: 1px solid transparent; transition: color .25s, border-color .25s;
}
.site-head nav a:hover { color: var(--cream); border-bottom-color: var(--terra); }
.head-pill {
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-decoration: none;
  color: var(--umber-deep); background: var(--terra);
  padding: .42rem .9rem; border-radius: 99px; white-space: nowrap;
  transition: background .25s;
}
.head-pill:hover { background: var(--cream); color: var(--umber-deep); }

/* ============ wheel stage ============ */
.wheel-scroll { position: relative; }
.js .wheel-scroll { height: 560vh; }
.stage {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(60% 45% at 50% 78%, rgba(201,111,74,.16), transparent 70%),
    radial-gradient(120% 90% at 50% 0%, #33231a, var(--umber-deep) 75%);
}
.no-js .stage { position: relative; height: auto; min-height: 60vh; overflow: visible; padding-bottom: 3rem; }
.glow {
  position: absolute; left: 50%; bottom: 14%; width: 46vmin; height: 10vmin;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(201,111,74,.35), transparent 70%);
  filter: blur(12px);
}
#pot { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ember sparks drifting up from the glow */
.sparks { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.sparks span {
  position: absolute; bottom: 12%;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--terra);
  opacity: 0;
  animation: spark 7s linear infinite;
  animation-delay: var(--sd, 0s);
  left: var(--sx, 50%);
  filter: blur(.4px);
}
.sparks span:nth-child(odd) { background: #e5a06f; width: 2px; height: 2px; }
@keyframes spark {
  0%   { transform: translate(0, 0) ; opacity: 0; }
  8%   { opacity: .85; }
  60%  { opacity: .35; }
  100% { transform: translate(var(--sw, 20px), -46vh); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .sparks { display: none; } }
.no-js .sparks { display: none; }

.hero-copy {
  position: absolute; z-index: 3;
  left: clamp(1.25rem, 6vw, 5.5rem); top: 50%;
  transform: translateY(-50%);
  max-width: 40rem;
}
.hero-copy .eyebrow { font-size: .74rem; letter-spacing: .14em; }
.hero-copy h1 {
  font-size: clamp(2.5rem, 4.7vw, 4rem);
  margin: 0 0 1.2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero-copy .lede { color: var(--cream-dim); max-width: 26rem; }
.scroll-hint {
  margin-top: 2.2rem; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terra); display: flex; align-items: center; gap: .8rem;
}
.hint-line {
  width: 3.2rem; height: 1px; background: var(--terra); display: inline-block;
  transform-origin: left; animation: hint 2.4s var(--ease-clay) infinite;
}
@keyframes hint { 0% { transform: scaleX(0);} 55% { transform: scaleX(1);} 100% { transform: scaleX(0); transform-origin: right;} }

.form-caption {
  position: absolute; z-index: 3;
  left: clamp(1.25rem, 6vw, 5.5rem); top: 50%;
  transform: translateY(-50%);
  max-width: 22rem;
}
.form-num { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--terra); font-weight: 700; margin-bottom: .6rem; }
.form-caption h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin-bottom: .9rem; }
.form-note { color: var(--cream-dim); margin-bottom: 1rem; }

/* JS: captions crossfade; no-JS: stacked and readable */
.js [data-stagecopy] {
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease-clay), transform .5s var(--ease-clay), visibility 0s .5s;
}
.js [data-stagecopy].on {
  opacity: 1; visibility: visible; transition-delay: 0s;
}
.js .form-caption { transform: translateY(calc(-50% + 18px)); }
.js .form-caption.on { transform: translateY(-50%); }
.no-js .form-caption { position: static; transform: none; max-width: 34rem; padding: 2rem clamp(1.25rem, 6vw, 5.5rem); }
.no-js .form-rail, .no-js #pot, .no-js .glow { display: none; }
.no-js .hero-copy { position: static; transform: none; padding: 8rem clamp(1.25rem, 6vw, 5.5rem) 2rem; }
.no-js .scroll-hint { display: none; }

.form-rail {
  position: absolute; z-index: 3; right: clamp(1.1rem, 4vw, 3rem); top: 50%;
  transform: translateY(-50%);
  list-style: none; display: flex; flex-direction: column; gap: 1.1rem;
  font-family: var(--display); font-size: .82rem; color: var(--cream-dim);
}
.form-rail li {
  position: relative; padding-right: 1.15rem; text-align: right;
  opacity: .4; transition: opacity .3s, color .3s;
}
.form-rail li::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: .45rem; height: .45rem; border-radius: 50%;
  transform: translateY(-50%) scale(.7);
  background: var(--cream-dim); transition: background .3s, transform .3s var(--ease-swing);
}
.form-rail li.on { opacity: 1; color: var(--terra); }
.form-rail li.on::after { background: var(--terra); transform: translateY(-50%) scale(1.25); }

/* ============ sections shared ============ */
section { position: relative; }
.firing, .collection, .glazes, .classes, .visit {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 6vw, 5.5rem);
  max-width: 82rem; margin: 0 auto;
}
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin-bottom: 1.1rem; }
.section-lede { color: var(--cream-dim); font-size: 1.12rem; }

/* ============ firing ============ */
.firing { border-top: 1px solid rgba(229,213,192,.12); }
.firing-grid {
  display: grid; grid-template-columns: minmax(18rem, 30rem) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.firing-copy p { margin-bottom: 1.2rem; color: var(--cream-dim); }
.firing-copy p:first-child { color: var(--cream); }
.firing-facts {
  list-style: none; margin-top: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem;
}
.firing-facts strong { display: block; font-family: var(--display); font-weight: 400; font-size: 1.7rem; color: var(--terra); }
.firing-facts span { font-size: .88rem; color: var(--cream-dim); }

.curve-wrap { min-width: 0; }
.curve { width: 100%; height: auto; display: block; }
.curve .cones line { stroke: rgba(229,213,192,.18); stroke-dasharray: 3 6; }
.curve .cones text, .curve .hours text { font: 600 12.5px var(--body); fill: var(--cream-dim); letter-spacing: .04em; }
.curve .hours line { stroke: rgba(229,213,192,.3); }
.curve .burn {
  stroke: var(--terra); stroke-width: 3.5; stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(201,111,74,.55));
}
.js .curve .burn { stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.js .curve.lit .burn { animation: burn 2.6s var(--ease-clay) forwards; }
@keyframes burn { to { stroke-dashoffset: 0; } }
.curve .anno circle { fill: var(--cream); stroke: var(--iron); stroke-width: 2.5; }
.curve .anno text { font: 500 13.5px var(--body); fill: var(--cream); }
.js .curve .anno { opacity: 0; }
.js .curve.lit .anno { animation: annoIn .7s var(--ease-clay) forwards; animation-delay: calc(1.1s + var(--d, 0s)); }
@keyframes annoIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: none;} }
.curve-wrap figcaption { margin-top: .8rem; }

/* ============ collection ============ */
.collection { border-top: 1px solid rgba(229,213,192,.12); }
.pieces { display: grid; gap: clamp(3.5rem, 7vw, 6rem); }
.piece {
  display: grid; grid-template-columns: minmax(16rem, 30rem) 1fr;
  gap: clamp(1.6rem, 4vw, 4rem); align-items: center;
}
.piece:nth-child(even) { grid-template-columns: 1fr minmax(16rem, 30rem); }
.piece:nth-child(even) figure { order: 2; }
.piece:nth-child(even) .piece-meta { order: 1; text-align: right; }
.piece:nth-child(even) dl div { flex-direction: row-reverse; }
.piece figure { position: relative; }
.piece img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.7);
  transition: transform .7s var(--ease-clay), box-shadow .7s var(--ease-clay);
}
.piece:hover img {
  transform: translateY(-6px);
  box-shadow: 0 34px 70px -24px rgba(0,0,0,.8), 0 12px 40px -18px rgba(201,111,74,.25);
}
@media (prefers-reduced-motion: reduce) {
  .piece img, .piece:hover img { transition: none; transform: none; }
}
.piece:nth-child(odd) figure { transform: rotate(-.6deg); }
.piece:nth-child(even) figure { transform: rotate(.6deg); }
/* kiln-book ledger sketches (pieces the camera hasn't caught up with) */
.sketch-page {
  aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden;
  padding: 4%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23p)' opacity='.06'/%3E%3C/svg%3E"),
    linear-gradient(165deg, #EFE1CD, var(--cream) 50%, #d6c3a7);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.7);
}
.sketch-page svg { width: 100%; height: 100%; display: block; }
.page-head text { font: 700 11px var(--body); letter-spacing: .18em; fill: #8a6c52; }
.page-head line { stroke: rgba(43,29,22,.28); stroke-width: 1; }
.ink ellipse, .ink path { stroke: #3d2a1e; stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ink .faint, .ink .faint ellipse, .ink .faint path { stroke: rgba(61,42,30,.42); stroke-width: 1.8; }
.dims line { stroke: var(--iron); stroke-width: 1.5; }
.dims text { font: 700 13px var(--body); fill: var(--iron); letter-spacing: .06em; }
.scrawl text { font: 600 21px var(--hand); fill: var(--iron); }
.scrawl .lead { stroke: var(--iron); stroke-width: 1.4; stroke-dasharray: 2 5; }

.piece-num { font-size: .78rem; letter-spacing: .22em; color: var(--terra); font-weight: 700; margin-bottom: .5rem; }
.piece-meta h3 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); margin-bottom: .5rem; }
.piece-meta .glaze-note { margin-bottom: 1.2rem; }
.piece dl { border-top: 1px solid rgba(229,213,192,.15); }
.piece dl div {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: .55rem 0; border-bottom: 1px solid rgba(229,213,192,.15);
  font-size: .95rem;
}
.piece dt { color: var(--cream-dim); font-weight: 700; letter-spacing: .04em; font-size: .8rem; text-transform: uppercase; padding-top: .15rem; }
.piece dd { color: var(--cream); }
.piece-price { margin-top: 1.2rem; font-family: var(--display); font-size: 1.5rem; color: var(--terra); }
.piece-price span { font-family: var(--body); font-size: .9rem; color: var(--cream-dim); }
.collection-foot { margin-top: clamp(3rem, 6vw, 5rem); max-width: 40rem; color: var(--cream-dim); }

/* ============ glazes ============ */
.glazes { border-top: 1px solid rgba(229,213,192,.12); }
.defs { position: absolute; width: 0; height: 0; }
.glaze-row {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
  gap: clamp(1.4rem, 2.4vw, 2.2rem);
}
.glaze h3 { font-size: 1.35rem; margin: 1.1rem 0 .2rem; }
.glaze .glaze-note { margin-bottom: .6rem; }
.glaze-body { font-size: .95rem; color: var(--cream-dim); }
.blob {
  width: min(11rem, 70%); aspect-ratio: 1;
  filter: url(#blobRough);
  border-radius: 58% 42% 55% 45% / 45% 58% 42% 55%;
  background:
    radial-gradient(45% 45% at 32% 28%, var(--g1), transparent 70%),
    radial-gradient(120% 120% at 60% 70%, var(--g3), var(--g2) 55%);
  box-shadow: inset 0 -10px 24px rgba(0,0,0,.35), 0 14px 30px -12px rgba(0,0,0,.6);
  transition: transform .6s var(--ease-swing);
}
.glaze:hover .blob { transform: rotate(-3deg) scale(1.04); }
.blob-b { border-radius: 45% 55% 48% 52% / 55% 44% 56% 45%; filter: url(#blobRough2); }
.blob-c { border-radius: 52% 48% 60% 40% / 48% 55% 45% 52%; }
.blob-d { border-radius: 60% 40% 45% 55% / 52% 46% 54% 48%; filter: url(#blobRough2); }
.blob-e { border-radius: 47% 53% 52% 48% / 58% 42% 58% 42%; }

/* ============ classes / tags ============ */
.classes { border-top: 1px solid rgba(229,213,192,.12); }
.tags {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: clamp(2rem, 4vw, 3rem); align-items: start;
}
.tag {
  position: relative;
  color: var(--umber);
  padding: 3.4rem 1.6rem 1.7rem;
  transform: rotate(var(--tilt, 0deg));
  transform-origin: 50% 0;
  filter: drop-shadow(0 20px 22px rgba(0,0,0,.45));
  transition: transform .7s var(--ease-swing);
  margin-top: 3.2rem;
}
.tag::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23p)' opacity='.05'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #EFE1CD, var(--cream) 55%, #d9c6ab);
  border-radius: 8px;
  clip-path: polygon(12% 0, 88% 0, 100% 9%, 100% 100%, 0 100%, 0 9%);
}
.tag > * { position: relative; z-index: 1; }
.tag:hover { transform: rotate(calc(var(--tilt, 0deg) * -.55)); }
.tag-hole {
  position: absolute; top: 1.1rem; left: 50%; transform: translateX(-50%);
  width: .95rem; height: .95rem; border-radius: 50%;
  background: var(--umber-deep);
  box-shadow: 0 0 0 5px #cdb99c, 0 0 0 6px rgba(43,29,22,.3);
}
.string {
  position: absolute; top: -3.1rem; left: 50%; transform: translateX(-50%);
  width: 7.5rem; height: 4.6rem; overflow: visible;
}
.string path { stroke: var(--cream-dim); stroke-width: 2; stroke-linecap: round; }
.string circle { fill: var(--terra); }
.tag-kicker { font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--iron); margin-bottom: .5rem; }
.tag h3 { color: var(--umber); font-size: 1.9rem; margin-bottom: .7rem; }
.tag p { font-size: .95rem; }
.tag-meta { margin-top: .9rem; font-weight: 700; font-size: .84rem; letter-spacing: .04em; color: #6b5240; }
.tag-price { font-family: var(--display); font-size: 2rem; color: var(--iron); margin-top: .3rem; }
.tag .glaze-note.tag-scrawl { display: block; color: var(--iron); transform: rotate(-2.4deg); margin: .2rem 0 .9rem; }
.tag-cta {
  display: inline-block; font-weight: 800; font-size: .95rem; letter-spacing: .02em;
  color: var(--cream); background: var(--umber);
  padding: .6rem 1.1rem; border-radius: 6px; text-decoration: none;
  transition: background .25s, color .25s;
}
.tag-cta:hover { background: var(--iron); color: var(--cream); }

/* ============ visit ============ */
.visit { border-top: 1px solid rgba(229,213,192,.12); }
.visit-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: start;
}
.visit h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 1.4rem; }
address { font-style: normal; margin-bottom: 1.3rem; line-height: 1.8; }
.visit-hours { color: var(--cream-dim); max-width: 30rem; }
.visit-hours strong { color: var(--cream); }
.opening-list {
  background: var(--umber-lift);
  border: 1px solid rgba(229,213,192,.14);
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}
.opening-list h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.opening-list > p { color: var(--cream-dim); font-size: .95rem; margin-bottom: 1.3rem; }
.opening-list label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: .45rem; }
.list-row { display: flex; gap: .7rem; flex-wrap: wrap; margin-bottom: .9rem; }
.opening-list input {
  flex: 1 1 12rem; min-width: 0;
  background: var(--umber-deep); border: 1px solid rgba(229,213,192,.25);
  color: var(--cream); border-radius: 6px; padding: .75rem .9rem;
  font: inherit;
}
.opening-list input::placeholder { color: rgba(229,213,192,.4); }
.opening-list button {
  font: 700 .95rem var(--body); letter-spacing: .02em;
  background: var(--terra); color: var(--umber-deep);
  border: 0; border-radius: 6px; padding: .75rem 1.2rem; cursor: pointer;
  transition: background .25s;
}
.opening-list button:hover { background: var(--cream); }

/* ============ footer ============ */
.site-foot {
  border-top: 1px solid rgba(229,213,192,.12);
  padding: 2.2rem clamp(1.25rem, 6vw, 5.5rem) 2.6rem;
  display: flex; flex-wrap: wrap; gap: .8rem 2.5rem; justify-content: space-between;
  font-size: .85rem; color: var(--cream-dim);
}
.site-foot .credit a { color: var(--cream-dim); }
.site-foot .credit a:hover { color: var(--terra); }

/* ============ responsive ============ */
@media (max-width: 1024px) {
  .firing-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-head { gap: 1rem; padding: .8rem 1rem; }
  .site-head nav { display: none; }
  .head-pill { margin-left: auto; }
  .hero-copy, .form-caption { left: 1.25rem; right: 1.25rem; max-width: none; top: auto; bottom: 5vh; transform: none; }
  .js .form-caption { transform: translateY(14px); }
  .js .form-caption.on { transform: none; }
  .hero-copy .lede { max-width: 32rem; }
  .form-caption h2 { font-size: 2rem; }
  .stage::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 56%;
    z-index: 2; pointer-events: none;
    background: linear-gradient(to top, rgba(26,16,11,.92) 18%, rgba(26,16,11,.55) 55%, transparent);
  }
  .no-js .stage::after { display: none; }
  .form-rail { right: 1rem; top: auto; bottom: 46vh; gap: .7rem; }
  .piece, .piece:nth-child(even) { grid-template-columns: 1fr; }
  .piece:nth-child(even) figure { order: 0; }
  .piece:nth-child(even) .piece-meta { order: 0; text-align: left; }
  .piece:nth-child(even) dl div { flex-direction: row; }
  .firing-facts { grid-template-columns: 1fr 1fr; }
  .fire-band img { aspect-ratio: 3 / 2; }
  .tag { margin-top: 2.6rem; }
  .tag-kicker { font-size: .7rem; letter-spacing: .1em; }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  .hint-line { animation: none; transform: scaleX(1); }
  .js .curve .burn { stroke-dasharray: none; stroke-dashoffset: 0; }
  .js .curve.lit .burn { animation: none; }
  .js .curve .anno { opacity: 1; }
  .js .curve.lit .anno { animation: none; }
  .tag, .blob, .glaze:hover .blob, .tag:hover { transition: none; transform: rotate(var(--tilt, 0deg)); }
  .glaze:hover .blob { transform: none; }
  .js [data-stagecopy] { transition-duration: .01s; }
}
