:root {
  --ink: #090712;
  --midnight: #120b22;
  --violet: #5a2c91;
  --indigo: #4b55be;
  --blue: #2f8eeb;
  --lavender: #d8c8ff;
  --cream: #fff7e9;
  --warm: #f5d793;
  --soft-white: #fffdf8;
  --muted: #6b6077;
  --glass: rgba(255, 255, 255, 0.18);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --line: rgba(90, 44, 145, 0.16);
  --shadow: 0 30px 90px rgba(22, 11, 38, 0.24);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(255,255,255,.24), transparent 28%, rgba(90,44,145,.10) 52%, transparent 74%),
    radial-gradient(circle at 12% 6%, rgba(47, 142, 235, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 5%, rgba(90, 44, 145, 0.20), transparent 28rem),
    linear-gradient(180deg, #fff8ec 0%, #f7efff 42%, #fffaf0 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(90,44,145,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,142,235,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 52% 24%, black, transparent 64%);
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p, figure { margin-top: 0; }
::selection { background: var(--violet); color: white; }

.site-glow {
  position: fixed;
  inset: -20% -10% auto auto;
  width: 50vmax;
  aspect-ratio: 1;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255,255,255,.92), rgba(216,200,255,.42) 20%, rgba(47,142,235,.18) 42%, transparent 68%);
  filter: blur(20px);
  animation: breathe 14s ease-in-out infinite alternate;
}
.seed-stage { position: fixed; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.seed {
  position: absolute;
  width: clamp(116px, 12vw, 210px);
  height: auto;
  max-width: none;
  opacity: .84;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(18, 11, 34, .18)) drop-shadow(0 0 28px rgba(255, 255, 255, .74));
  animation: seedDrift var(--time, 26s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(calc(100% - 24px), 1220px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 250, 240, .84), rgba(255,255,255,.54));
  box-shadow: 0 18px 60px rgba(32, 19, 52, .14), inset 0 1px rgba(255,255,255,.72);
  backdrop-filter: blur(28px) saturate(1.28);
}
.brand-mark { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark img { width: clamp(72px, 7vw, 104px); height: clamp(72px, 7vw, 104px); object-fit: contain; border-radius: 28px; background: transparent; padding: 0; filter: drop-shadow(0 16px 26px rgba(90,44,145,.22)) drop-shadow(0 0 16px rgba(47,142,235,.20)); }
.brand-mark span { display: grid; line-height: 1.02; }
.brand-mark strong { font-size: clamp(1rem, 1.3vw, 1.18rem); white-space: nowrap; letter-spacing: -.03em; }
.brand-mark small { color: var(--violet); font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; }
.menu-button { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: white; cursor: pointer; }
.menu-button span { display: block; width: 21px; height: 2px; margin: 2px 0; border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-button em { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.main-nav { position: fixed; top: 78px; left: 0; right: 0; display: none; flex-direction: column; gap: 8px; padding: 16px; border-radius: 30px; background: rgba(255,250,240,.94); border: 1px solid white; box-shadow: var(--shadow); }
.main-nav.open { display: flex; }
.main-nav a { padding: 12px 16px; border-radius: 999px; color: var(--midnight); font-size: .92rem; font-weight: 850; }
.main-nav a:hover, .main-nav a:focus-visible { outline: none; background: rgba(90,44,145,.08); color: var(--violet); }
.etsy-link { background: linear-gradient(135deg, var(--violet), var(--blue)); color: white !important; box-shadow: 0 14px 34px rgba(90,44,145,.24); }
.etsy-link.needs-config::after { content: "URL needed"; margin-left: 8px; padding: 3px 7px; border-radius: 999px; color: var(--violet); background: white; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }

.hero-shell {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  width: min(calc(100% - 32px), 1320px);
  margin-inline: auto;
  padding: 112px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(47,142,235,.20), transparent 30rem),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(90,44,145,.06));
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 9vh -8vw auto auto;
  width: min(54vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(47,142,235,.20), rgba(255,247,233,.40), rgba(90,44,145,.22), rgba(47,142,235,.20));
  filter: blur(34px);
  opacity: .72;
}
.hero-image-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: min(72vh, 720px);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: clamp(34px, 5vw, 64px);
  background: var(--midnight);
  box-shadow: 0 38px 120px rgba(18,11,34,.28), inset 0 1px rgba(255,255,255,.2);
}
.hero-image-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.08) contrast(1.04) brightness(1.02); transform: scale(1.005); }
.hero-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 27%, transparent 0 16rem, rgba(18,11,34,.08) 34rem),
    linear-gradient(180deg, transparent 58%, rgba(18,11,34,.38));
}
.hero-image-shine { position: absolute; inset: 0; background: radial-gradient(circle at 52% 32%, rgba(255,255,255,.18), transparent 22rem); mix-blend-mode: screen; }
.focal-label { position: absolute; right: 18px; bottom: 24px; z-index: 2; padding: 9px 12px; border-radius: 999px; color: white; background: rgba(8,6,16,.42); backdrop-filter: blur(14px); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-copy-card {
  position: relative;
  z-index: 4;
  width: min(100%, 580px);
  margin: 0;
  padding: clamp(24px, 5vw, 44px);
  color: white;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(12,8,24,.84), rgba(42,25,70,.56)),
    radial-gradient(circle at 18% 0, rgba(47,142,235,.24), transparent 22rem);
  box-shadow: 0 34px 100px rgba(5,3,12,.36), 0 0 70px rgba(47,142,235,.16), inset 0 1px rgba(255,255,255,.20);
  backdrop-filter: blur(24px) saturate(1.22);
}
.hero-logo {
  width: clamp(220px, 26vw, 340px);
  margin: -18px 0 18px -20px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,247,233,.72));
  box-shadow: inset 0 1px rgba(255,255,255,.9), 0 24px 58px rgba(5,3,12,.20);
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.22)) drop-shadow(0 0 30px rgba(47,142,235,.24));
}
.eyebrow { margin-bottom: 13px; color: var(--warm); font-size: .73rem; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker .eyebrow,
.orders-copy > .eyebrow,
.about-copy > .eyebrow,
.contact-card > .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: clamp(.9rem, 1.25vw, 1.08rem);
  letter-spacing: .14em;
  line-height: 1.15;
}
.section-kicker.center .eyebrow { margin-inline: auto; }
.why-section .eyebrow { color: #8f255f; background: rgba(220, 71, 139, .12); }
.products-section .eyebrow { color: #17639d; background: rgba(47, 142, 235, .13); }
.custom-orders .eyebrow { color: #653095; background: rgba(90, 44, 145, .12); }
.gallery-section .eyebrow { color: #9a2b72; background: rgba(194, 52, 130, .12); }
.about-section .eyebrow { color: #4f46a5; background: rgba(75, 85, 190, .12); }
.contact-section .eyebrow { color: #176987; background: rgba(38, 143, 177, .13); }
h1 { margin-bottom: 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 5.8vw, 5.7rem); line-height: .9; letter-spacing: -.07em; text-wrap: balance; }
h2 { margin-bottom: 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.45rem, 6vw, 5.5rem); line-height: .92; letter-spacing: -.06em; text-wrap: balance; }
h3 { margin-bottom: 10px; line-height: 1.05; letter-spacing: -.04em; }
.lead { max-width: 610px; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 2.1vw, 1.34rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 16px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 950; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #120b22; background: linear-gradient(135deg, white, var(--lavender) 46%, #a9d8ff); box-shadow: 0 20px 52px rgba(47,142,235,.24); }
.button.ghost { color: white; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.12); }
.button.etsy-button { color: white; background: linear-gradient(135deg, #f1641e, var(--violet)); box-shadow: 0 20px 54px rgba(241,100,30,.22); }
.etsy-note { margin: 0; padding: 12px 14px; border-radius: 18px; color: rgba(255,255,255,.82); background: rgba(255,255,255,.10); }
.dandelion-orb { position: absolute; right: max(-6vw, -80px); top: 4vh; z-index: 1; width: min(68vw, 840px); aspect-ratio: 1; opacity: .68; transform: perspective(900px) rotateY(-18deg) rotateZ(-4deg); animation: dandelionFloat 12s ease-in-out infinite alternate; pointer-events: none; }
.dandelion-orb img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 34px 72px rgba(18,11,34,.22)) drop-shadow(0 0 38px rgba(255,255,255,.76)); }

.homepage-shell-only main > section:not(.hero-shell),
.homepage-shell-only .footer {
  display: none;
}
.homepage-shell-only .hero-shell {
  min-height: 100svh;
}
.homepage-shell-only .etsy-link.needs-config {
  cursor: not-allowed;
}

.why-section, .booking-paths, .products-section, .gallery-section, .about-section, .contact-section, .custom-orders { position: relative; z-index: 3; width: min(calc(100% - 32px), var(--max)); margin-inline: auto; padding: clamp(82px, 11vw, 150px) 0; }
.section-kicker { max-width: 920px; margin-bottom: 34px; }
.section-kicker.center { margin-inline: auto; text-align: center; }
.section-kicker p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.why-grid { display: grid; gap: 22px; align-items: stretch; }
.why-letter, .why-proof, .value-card, .product-card, .order-form, .contact-card, .about-copy {
  border: 1px solid rgba(255,255,255,.74);
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.38));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(1.05);
}
.why-letter { padding: clamp(24px, 4vw, 42px); border-radius: var(--radius-xl); }
.why-letter p { color: #362c44; font-size: clamp(1.05rem, 1.9vw, 1.24rem); }
.why-letter p:last-child { margin-bottom: 0; }
.why-proof { overflow: hidden; display: grid; border-radius: var(--radius-xl); }
.why-proof img { width: 100%; min-height: 320px; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.02); }
.why-proof div { padding: 24px; }
.why-proof span, .product-card span { color: var(--violet); font-size: .72rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.why-proof strong { display: block; margin-top: 8px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1; letter-spacing: -.045em; }

.values-band { position: relative; z-index: 3; width: min(calc(100% - 32px), var(--max)); margin: 0 auto; display: grid; gap: 16px; }
.value-card { min-height: 230px; padding: 28px; border-radius: var(--radius-lg); }
.value-card span { display: inline-flex; margin-bottom: 26px; color: white; background: linear-gradient(135deg, var(--violet), var(--blue)); border-radius: 999px; padding: 8px 11px; font-size: .78rem; font-weight: 950; }
.value-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.3rem); }
.value-card p { color: var(--muted); margin-bottom: 0; }

.booking-paths .eyebrow { color: #653095; background: rgba(90, 44, 145, .12); }
.booking-grid { display: grid; gap: 16px; }
.booking-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.44));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.78);
  backdrop-filter: blur(20px) saturate(1.05);
}
.booking-card.featured { background: linear-gradient(145deg, rgba(235,226,255,.94), rgba(207,232,255,.66)); }
.booking-card span { color: var(--violet); font-size: .72rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.booking-card h3 { margin-top: 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.4vw, 3.15rem); }
.booking-card p { color: var(--muted); font-size: 1.02rem; }
.booking-button { width: fit-content; margin-top: auto; color: white; background: linear-gradient(135deg, var(--violet), var(--blue)); box-shadow: 0 18px 42px rgba(90,44,145,.24); }

.product-grid { display: grid; gap: 16px; }
.product-card { overflow: hidden; display: grid; border-radius: var(--radius-lg); }
.product-card img { width: 100%; height: 260px; object-fit: cover; filter: saturate(1.04) contrast(1.02); transition: transform .8s ease; }
.product-card:hover img { transform: scale(1.04); }
.product-card div { padding: 22px; }
.product-card h3 { font-size: clamp(1.2rem, 2.2vw, 1.75rem); }
.card-link { display: inline-flex; margin-top: 12px; color: var(--violet); font-weight: 950; }

.custom-orders { display: grid; gap: 28px; align-items: start; }
.orders-copy ul { display: grid; gap: 8px; padding-left: 20px; color: var(--muted); font-weight: 700; }
.order-form { display: grid; gap: 14px; padding: clamp(20px, 3vw, 34px); border-radius: var(--radius-xl); }
.order-form label { display: grid; gap: 7px; color: var(--midnight); font-size: .9rem; font-weight: 900; }
.order-form .website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
input, select, textarea { width: 100%; border: 1px solid rgba(90,44,145,.18); border-radius: 16px; padding: 13px 14px; color: var(--ink); background: rgba(255,255,255,.72); outline: none; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,142,235,.12); }
.consent { grid-template-columns: auto 1fr; align-items: start; color: var(--muted) !important; line-height: 1.35; }
.consent input { width: auto; margin-top: 4px; }
.form-message { margin: 0; padding: 14px 16px; border-radius: var(--radius-md); font-weight: 850; line-height: 1.5; }
.form-message.success { color: #235d44; background: rgba(73, 178, 125, .14); border: 1px solid rgba(35, 112, 76, .18); }
.form-message.error { color: #8a2e3b; background: rgba(220, 82, 102, .12); border: 1px solid rgba(155, 48, 65, .18); }

.gallery-wall { display: grid; grid-auto-flow: dense; gap: 14px; }
.gallery-wall figure { position: relative; overflow: hidden; min-height: 270px; margin: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--midnight); }
.gallery-wall img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .8s ease; }
.gallery-wall figure:hover img { transform: scale(1.045); filter: saturate(1.08); }
.gallery-wall figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,6,16,.82)); }
.gallery-wall figcaption { position: absolute; z-index: 2; left: 18px; bottom: 16px; color: white; font-size: .76rem; font-weight: 950; text-transform: uppercase; letter-spacing: .14em; }

.about-section { display: grid; gap: 24px; align-items: center; }
.about-portrait { width: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.about-copy { padding: clamp(24px, 4vw, 42px); border-radius: var(--radius-xl); }
.about-copy p { color: #3a3048; }
.contact-card { max-width: 850px; margin: 0 auto; padding: clamp(28px, 5vw, 56px); border-radius: var(--radius-xl); text-align: center; }
.contact-card .button.ghost { color: var(--violet); border-color: rgba(90,44,145,.24); background: white; }

.footer { position: relative; z-index: 3; display: grid; gap: 18px; justify-items: center; padding: 54px 16px 86px; color: var(--midnight); text-align: center; background: radial-gradient(circle at 50% 0, rgba(255,255,255,.82), transparent 30rem), linear-gradient(180deg, rgba(255,253,248,.96), rgba(247,239,255,.92)); border-top: 1px solid rgba(90,44,145,.14); box-shadow: inset 0 1px rgba(255,255,255,.86); }
.footer img { width: clamp(170px, 19vw, 260px); padding: 10px; border-radius: 28px; background: rgba(255,255,255,.66); filter: drop-shadow(0 22px 34px rgba(90,44,145,.18)); }
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.footer nav a { padding: 8px 10px; border-radius: 999px; font-weight: 850; color: var(--violet); }

.missing-asset { display: grid; place-content: center; min-height: 220px; padding: 22px; color: var(--violet); text-align: center; border: 2px dashed rgba(90,44,145,.36); border-radius: var(--radius-md); background: rgba(255,255,255,.62); font-weight: 950; }
.missing-asset span { display: block; margin-top: 8px; color: var(--muted); font-size: .86rem; word-break: break-word; }
.reveal { opacity: 1; transform: none; transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes breathe { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-9vw, 8vh, 0) scale(1.08); } }
@keyframes dandelionFloat { from { transform: perspective(900px) rotateY(-18deg) rotateZ(-4deg) translate3d(0,0,0); } to { transform: perspective(900px) rotateY(-10deg) rotateZ(3deg) translate3d(-2vw, 2vh, 0); } }
@keyframes seedDrift { from { transform: translate3d(var(--start, 0), 116vh, 0) rotate(var(--tilt, -18deg)) scale(var(--scale, 1)); } to { transform: translate3d(calc(var(--start, 0) + var(--sway, 22vw)), -36vh, 0) rotate(calc(var(--tilt, -18deg) + 120deg)) scale(var(--scale, 1)); } }

@media (min-width: 720px) {
  .values-band, .booking-grid, .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card:first-child { grid-column: span 2; }
  .gallery-wall { grid-template-columns: repeat(3, 1fr); }
  .gallery-wall .wide { grid-column: span 2; }
  .gallery-wall .tall { grid-row: span 2; min-height: 560px; }
  .order-form { grid-template-columns: repeat(2, 1fr); }
  .order-form .wide { grid-column: 1 / -1; }
}
@media (min-width: 980px) {
  .menu-button { display: none; }
  .main-nav { position: static; display: flex; flex-direction: row; align-items: center; padding: 0; border: 0; box-shadow: none; background: transparent; }
  .main-nav a { padding: 10px 12px; }
  .hero-shell { grid-template-columns: .62fr 1.38fr; }
  .hero-copy-card { grid-column: 1; grid-row: 1; }
  .hero-image-panel { grid-column: 2; grid-row: 1; }
  .why-grid { grid-template-columns: 1.08fr .92fr; }
  .custom-orders, .about-section { grid-template-columns: .88fr 1.12fr; }
  .about-section { grid-template-columns: .92fr 1.08fr; }
}
@media (max-width: 760px) {
  .topbar { top: 10px; border-radius: 28px; }
  .brand-mark img { width: 64px; height: 64px; }
  .brand-mark small { display: none; }
  .brand-mark strong { font-size: .9rem; }
  .hero-shell { min-height: 96svh; padding-top: 92px; }
  .hero-image-panel { min-height: 58vh; }
  .hero-copy-card { margin-bottom: 6vh; }
  .hero-logo { width: min(74vw, 240px); margin-left: -14px; }
  .dandelion-orb { width: 96vw; right: -36vw; top: 12vh; opacity: .30; }
  .seed { width: clamp(92px, 24vw, 142px); opacity: .74; }
  .focal-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
