/* ————————————————————————————————————————
   Atelier Celadon — one glaze, thirty years
   ———————————————————————————————————————— */

:root {
  --porcelain: #f6f8f4;
  --mist: #e7efe6;
  --pale: #cfe0cf;
  --celadon: #aec8b0;
  --river: #7fa68c;
  --jade: #2e5847;
  --jade-deep: #1d3b31;
  --ink: #17211c;
  --ink-soft: #45544c;
  --ember: #e4622a;
  --hairline: rgba(23, 33, 28, 0.16);
  --serif: "Alegreya", "Iowan Old Style", Georgia, serif;
  --sc: "Alegreya SC", "Alegreya", serif;
  --sans: "Alegreya Sans", "Gill Sans", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--porcelain);
  overflow-x: hidden;
}

::selection { background: var(--celadon); color: var(--ink); }

a { color: var(--jade); text-decoration-color: rgba(46, 88, 71, 0.4); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--jade); }

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

img { max-width: 100%; display: block; }

/* ——— small-caps label system ——— */
.lbl {
  font-family: var(--sc);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.lbl b { font-weight: 700; color: var(--jade); }

/* ——— fixed 3D canvas ——— */
#stage {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#stage.live { pointer-events: auto; cursor: grab; }
#stage.dragging { cursor: grabbing; }

/* ——— header ——— */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.4rem clamp(1.25rem, 4vw, 3.5rem);
  pointer-events: none;
}
header.site > * { pointer-events: auto; }
.wordmark {
  font-family: var(--sc);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-decoration: none;
}
.header-cta {
  font-family: var(--sc);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--jade);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 88, 71, 0.45);
  padding-bottom: 2px;
}
.header-cta:hover { border-bottom-color: var(--jade); }
.wordmark, .header-cta { transition: color 0.4s ease, border-color 0.4s ease; }
header.site.light .wordmark { color: var(--mist); }
header.site.light .header-cta { color: var(--celadon); border-bottom-color: rgba(174, 200, 176, 0.5); }

/* ——— hero ——— */
.hero {
  /* no z-index: its background must paint BELOW the fixed canvas (z1),
     while .hero-inner (z6) rises above it */
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 6rem clamp(1.25rem, 4vw, 3.5rem) 4rem;
  pointer-events: none;
  background:
    radial-gradient(90rem 60rem at 78% 30%, rgba(174, 200, 176, 0.35), transparent 60%),
    linear-gradient(180deg, var(--porcelain) 0%, var(--mist) 100%);
}
.hero a, .hero .scroll-cue { pointer-events: auto; }
.hero-inner { max-width: 34rem; position: relative; z-index: 6; pointer-events: auto; }
@media (prefers-reduced-motion: no-preference) {
  @keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }
  .hero-inner > * { animation: rise 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) both; }
  .hero-inner > .lbl { animation-delay: 0.1s; }
  .hero-inner > h1 { animation-delay: 0.22s; }
  .hero-inner > .lede { animation-delay: 0.38s; }
  .hero-inner > .hero-ctas { animation-delay: 0.52s; }
  .hero-inner > .drag-hint { animation-delay: 0.72s; }
}
.hero .drag-hint { transition: opacity 0.8s ease; }
.hero .drag-hint.off { opacity: 0; }
.hero .lbl { display: block; margin-bottom: 1.6rem; }
.hero h1 {
  font-weight: 500;
  font-size: clamp(2.7rem, 6.2vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--jade); }
.hero p.lede {
  font-size: clamp(1.06rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 28rem;
  margin-bottom: 2.2rem;
}
.hero .drag-hint {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--river);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero .drag-hint::before {
  content: "";
  width: 2.2rem; height: 1px;
  background: var(--river);
}
.hero-ctas { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.btn {
  display: inline-block;
  font-family: var(--sc);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--porcelain);
  background: var(--jade);
  border: 1px solid var(--jade);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--jade-deep); transform: translateY(-1px); }
.hero-shadow {
  position: absolute;
  z-index: 0;
  left: 50%; bottom: 12vh;
  width: 34vw; max-width: 30rem; height: 3.4rem;
  transform: translateX(18%);
  background: radial-gradient(closest-side, rgba(23, 33, 28, 0.18), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.vase-fallback {
  display: none;
  position: absolute;
  right: clamp(2rem, 12vw, 14rem);
  top: 50%;
  transform: translateY(-52%);
  width: clamp(11rem, 24vw, 19rem);
  z-index: 4;
}
body.no-webgl .vase-fallback { display: block; }
body.no-webgl #stage { display: none; }

/* ——— opaque sections above the canvas ——— */
section.panel {
  position: relative;
  z-index: 5;
  background: var(--porcelain);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 3.5rem);
}
section.panel.tint { background: var(--mist); }
section.panel.dark { background: var(--jade-deep); color: var(--mist); }
section.panel.dark .lbl { color: var(--celadon); }
section.panel.dark a { color: var(--pale); }

.measure { max-width: 72rem; margin: 0 auto; }

.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); max-width: 46rem; }
.section-head .lbl { display: block; margin-bottom: 1.1rem; }
.section-head h2 {
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
}
.section-head h2 em { font-style: italic; color: var(--jade); }
section.panel.dark .section-head h2 em { color: var(--celadon); }

/* ——— glaze-dip wipe divider ——— */
.dip {
  position: relative;
  z-index: 6;
  height: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: -1px;
  overflow: hidden;
  pointer-events: none;
}
.dip svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.dip .dip-fill {
  transition: clip-path 1.3s cubic-bezier(0.6, 0, 0.2, 1);
  clip-path: inset(0 100% 0 0);
}
.dip.wiped .dip-fill { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  .dip .dip-fill { clip-path: inset(0 0 0 0); transition: none; }
}

/* ——— the object ——— */
.object-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.object-prose p { margin-bottom: 1.2rem; color: var(--ink-soft); max-width: 32rem; }
.object-prose p strong { color: var(--ink); font-weight: 600; }

.museum-label {
  position: relative;
  background: var(--porcelain);
  border: 1px solid var(--hairline);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: 0 24px 60px -30px rgba(23, 33, 28, 0.25);
}
.museum-label .crackle-bed {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.5;
  pointer-events: none;
}
.museum-label .crackle-bed svg { width: 100%; height: 100%; }
.museum-label > .label-body { position: relative; }
.museum-label h3 {
  font-family: var(--sc);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
}
.museum-label .work-line {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.spec-table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 0.92rem; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-top: 1px solid var(--hairline);
  vertical-align: top;
}
.spec-table th {
  font-family: var(--sc);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  width: 38%;
  padding-right: 1rem;
}
.spec-table td { color: var(--ink); }

/* ——— the making ——— */
.making-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.making-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 70px -35px rgba(23, 33, 28, 0.4);
}
.making-photo img { width: 100%; height: auto; }
.making-photo figcaption {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding-top: 0.7rem;
}
.stage-list { list-style: none; counter-reset: stage; }
.stage-list li {
  counter-increment: stage;
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.2rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.stage-list li.seen { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .stage-list li { opacity: 1; transform: none; transition: none; }
}
.stage-list li:last-child { border-bottom: 1px solid var(--hairline); }
.stage-num {
  font-family: var(--sc);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--river);
  padding-top: 0.3rem;
}
.stage-list h3 {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.stage-list h3 span {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--river);
  margin-left: 0.6rem;
  letter-spacing: 0.03em;
}
.stage-list p { color: var(--ink-soft); font-size: 0.98rem; }

/* ——— the firing ——— */
.fire-track {
  position: relative; /* z-index auto so the gradient paints below the canvas */
  height: 420vh;
  background: linear-gradient(180deg, var(--mist) 0%, var(--porcelain) 8%, var(--porcelain) 92%, var(--jade-deep) 100%);
}
.fire-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  pointer-events: none;
}
.fire-head {
  position: absolute;
  top: clamp(4.6rem, 9vh, 6.5rem);
  left: clamp(1.25rem, 4vw, 3.5rem);
  max-width: 20rem;
  z-index: 3;
}
.fire-head .lbl { display: block; margin-bottom: 0.7rem; }
.fire-head h2 { font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1.15; }
.fire-temp {
  position: absolute;
  top: clamp(4.6rem, 9vh, 6.5rem);
  right: clamp(1.25rem, 4vw, 3.5rem);
  text-align: right;
  z-index: 3;
}
.fire-temp .t {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  transition: color 0.6s ease;
}
.fire-temp.hot .t { color: var(--ember); }
.fire-temp .lbl { display: block; margin-top: 0.4rem; }
.fire-caption {
  position: absolute;
  left: 50%;
  bottom: clamp(1.4rem, 4vh, 3rem);
  transform: translateX(-50%);
  width: min(34rem, calc(100vw - 2.5rem));
  text-align: center;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  z-index: 3;
}
.kiln-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  width: min(46rem, 92vw);
  z-index: 1;
}
.kiln-wrap svg { width: 100%; height: auto; display: block; }
.kiln-wrap path, .kiln-wrap line {
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.kiln-glow {
  position: absolute;
  left: 50%;
  top: 63%;
  width: 58%;
  aspect-ratio: 1.9;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(228, 98, 42, 0.85), rgba(228, 98, 42, 0.25) 55%, transparent 75%);
  filter: blur(14px);
  opacity: 0;
  z-index: 0;
}
.fire-milestones {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3.5rem);
  top: 50%;
  transform: translateY(-42%);
  list-style: none;
  z-index: 3;
  width: 15.5rem;
}
.fire-milestones li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 0.8rem;
  padding: 0.42rem 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.32;
  border-top: 1px solid var(--hairline);
  transition: opacity 0.4s ease, color 0.4s ease;
}
.fire-milestones li .mt { font-variant-numeric: tabular-nums; color: var(--ink); }
.fire-milestones li.past { opacity: 1; }
.fire-milestones li.now { opacity: 1; color: var(--jade); font-weight: 500; }
.fire-milestones li.now .mt { color: var(--jade); }
.spyhole {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.5rem);
  bottom: clamp(4.5rem, 12vh, 7rem);
  z-index: 3;
  text-align: center;
}
.spyhole .hole {
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, #3a2018, var(--ink) 75%);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.spyhole .hole::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 78%, rgba(228, 98, 42, 0.9), transparent 62%);
  opacity: var(--spy-glow, 0);
  transition: opacity 0.6s ease;
}
.spyhole svg { width: 74%; position: relative; margin-bottom: 0.6rem; }
.spyhole .cone {
  fill: #d8cfb8;
  stroke: none;
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transition: transform 1.4s cubic-bezier(0.5, 0, 0.3, 1);
}
.spyhole .cone.bent { transform: rotate(var(--bend)); }
.spyhole .lbl { display: block; margin-top: 0.6rem; font-size: 0.68rem; }

/* ——— the glaze ——— */
.glaze-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.glaze-photo {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.5);
}
.glaze-photo figcaption {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--pale);
  padding-top: 0.7rem;
  opacity: 0.8;
}
.swatch-list { list-style: none; }
.swatch-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(231, 239, 230, 0.18);
}
.swatch-list li:last-child { border-bottom: 1px solid rgba(231, 239, 230, 0.18); }
.swatch {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(23, 33, 28, 0.25);
  box-shadow: inset 0 -6px 12px rgba(23, 33, 28, 0.12), inset 0 4px 8px rgba(255, 255, 255, 0.35);
}
.swatch-list h3 { font-weight: 600; font-size: 1.08rem; color: var(--porcelain); }
.swatch-list h3 span { font-family: var(--sc); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.14em; color: var(--celadon); margin-right: 0.55rem; }
.swatch-list p { font-family: var(--sans); font-size: 0.85rem; color: var(--pale); opacity: 0.85; }
.swatch-iron {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--celadon);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.glaze-note { margin-top: 2rem; color: var(--pale); font-style: italic; max-width: 30rem; }

/* ——— the list ——— */
.list-section .measure { max-width: 44rem; text-align: center; }
.list-section .section-head { margin-left: auto; margin-right: auto; }
.list-section p.body { color: var(--ink-soft); margin-bottom: 2.4rem; }
.list-form {
  display: flex;
  gap: 0.7rem;
  max-width: 30rem;
  margin: 0 auto 1rem;
}
.list-form input[type="email"] {
  flex: 1;
  min-width: 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--porcelain);
  border: 1px solid var(--ink-soft);
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
}
.list-form input[type="email"]::placeholder { color: var(--ink-soft); opacity: 0.7; }
.list-form input[type="email"]:focus-visible { outline-offset: 1px; }
.list-note {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.list-confirm {
  display: none;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--jade);
  margin-bottom: 1rem;
}
.list-section.done .list-form, .list-section.done .list-note { display: none; }
.list-section.done .list-confirm { display: block; }

/* ——— footer ——— */
footer.site {
  position: relative;
  z-index: 5;
  background: var(--porcelain);
  border-top: 1px solid var(--hairline);
  padding: 2.2rem clamp(1.25rem, 4vw, 3.5rem) 2.6rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
footer.site .lbl { font-size: 0.7rem; }

/* ——— crackle strokes ——— */
.crackle-line {
  stroke: var(--river);
  fill: none;
  stroke-width: 0.8;
  opacity: 0.7;
}

/* ——— guide page ——— */
.guide-body { background: var(--porcelain); }
.guide-main {
  position: relative;
  z-index: 5;
  max-width: 46rem;
  margin: 0 auto;
  padding: 7.5rem clamp(1.25rem, 4vw, 2rem) 5rem;
}
.guide-main h1 { font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08; margin: 0.8rem 0 1.2rem; }
.guide-main h2 {
  font-family: var(--sc);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--jade);
  margin: 3.2rem 0 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}
.guide-main p, .guide-main li { color: var(--ink-soft); margin-bottom: 0.9rem; }
.guide-main p strong, .guide-main li strong { color: var(--ink); font-weight: 600; }
.guide-main ol, .guide-main ul { padding-left: 1.3rem; }
.guide-main pre {
  background: var(--jade-deep);
  color: var(--mist);
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 1.1rem 1.3rem;
  border-radius: 6px;
  overflow-x: auto;
  margin: 1.1rem 0 1.5rem;
}
.guide-main code { font-family: "SF Mono", ui-monospace, Menlo, monospace; }
.guide-main p code, .guide-main li code {
  background: var(--mist);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--jade-deep);
}
.swatch-row { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.2rem 0 1.6rem; padding: 0; list-style: none; }
.swatch-row li { display: flex; flex-direction: column; gap: 0.4rem; margin: 0; }
.swatch-row .chip {
  width: 5.4rem; height: 3.6rem;
  border-radius: 4px;
  border: 1px solid var(--hairline);
}
.swatch-row .lbl { font-size: 0.62rem; letter-spacing: 0.1em; }
.type-pair { border: 1px solid var(--hairline); padding: 1.4rem 1.6rem; margin: 1.2rem 0 1.6rem; }
.type-pair .sample-serif { font-size: 1.7rem; font-weight: 500; }
.type-pair .sample-sc { font-family: var(--sc); font-weight: 700; letter-spacing: 0.18em; font-size: 0.95rem; margin-top: 0.5rem; }
.type-pair .sample-sans { font-family: var(--sans); font-size: 0.95rem; margin-top: 0.5rem; color: var(--ink-soft); }
.pass-list { list-style: none; padding: 0; }
.pass-list li { border-top: 1px solid var(--hairline); padding: 1rem 0; margin: 0; }
.pass-list .lbl { display: block; margin-bottom: 0.3rem; }

/* ——— responsive ——— */
@media (max-width: 900px) {
  .object-grid, .making-grid, .glaze-grid { grid-template-columns: 1fr; }
  .fire-milestones {
    position: absolute;
    top: auto;
    bottom: clamp(6.5rem, 16vh, 9rem);
    right: clamp(1.25rem, 4vw, 3.5rem);
    transform: none;
    width: 12.5rem;
  }
  .fire-milestones li { padding: 0.28rem 0; font-size: 0.78rem; grid-template-columns: 3.6rem 1fr; }
  .spyhole { bottom: clamp(6.5rem, 16vh, 9rem); }
  .spyhole .hole { width: 5.6rem; height: 5.6rem; }
  .kiln-wrap { width: min(34rem, 96vw); transform: translate(-50%, -52%); }
  .hero-shadow {
    left: 50%;
    top: 37svh;
    bottom: auto;
    width: 44vw;
    height: 2.2rem;
    transform: translateX(-18%);
  }
}

@media (max-width: 620px) {
  .hero { align-items: flex-end; padding-bottom: 5.5rem; }
  .hero-inner { max-width: 100%; }
  .hero p.lede { max-width: 100%; }
  .fire-temp .t { font-size: 2.6rem; }
  .fire-head { max-width: 13rem; }
  .fire-head h2 { font-size: 1.3rem; }
  .fire-milestones { display: none; }
  .spyhole { bottom: 5.4rem; left: 1.25rem; }
  .spyhole .hole { width: 4.8rem; height: 4.8rem; }
  .fire-caption { bottom: 1.1rem; font-size: 0.95rem; }
  .list-form { flex-direction: column; }
  .list-form .btn { width: 100%; }
  footer.site { flex-direction: column; gap: 0.5rem; }
}
