/* ===========================================================
   High Life Records — main stylesheet
   Palette: burnt orange #D9682A · cream #F6EBD9 · deep brown #33231A
            · mustard #D9A521. 70s-sleeve energy, Abril Fatface display,
            Hanken Grotesk body/UI.
   =========================================================== */

@font-face {
  font-family: 'Abril Fatface';
  src: url('../fonts/abril-fatface.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/hanken-grotesk.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #F6EBD9;
  --cream-2: #ECDCBE;
  --brown: #33231A;
  --brown-2: #493425;
  --brown-3: #241811;
  --orange: #D9682A;
  --orange-2: #C0561F;
  --mustard: #D9A521;

  --display: 'Abril Fatface', 'Georgia', serif;
  --body: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;

  --wrap: min(1280px, 92vw);
  --radius: 14px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: rgba(51,35,26,.35); text-underline-offset: .18em; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.02; margin: 0; }
p { margin: 0 0 1em; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--mustard); color: var(--brown-3); }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 8px; border: 2px solid var(--cream-2); }
* { scrollbar-color: var(--orange) var(--cream-2); scrollbar-width: thin; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--mustard); color: var(--brown-3); padding: .8em 1.4em;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.cap {
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.cap--accent { color: var(--orange-2); }
.rule { display: inline-block; width: 2.2em; height: 2px; background: currentColor; margin-right: .8em; vertical-align: middle; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity .15s linear; transform: none; }
}

.content-lazy { content-visibility: auto; contain-intrinsic-size: 1200px; }

/* ============ groove-pattern divider ============ */
.groove {
  position: relative;
  height: 30px;
  background:
    repeating-linear-gradient(180deg, rgba(51,35,26,.5) 0 1.6px, transparent 1.6px 6px),
    var(--cream);
  border-top: 1px solid rgba(51,35,26,.15);
  border-bottom: 1px solid rgba(51,35,26,.15);
}
.groove::after {
  content: '';
  position: absolute; left: 50%; top: 50%; width: 9px; height: 9px;
  background: var(--orange); border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px rgba(51,35,26,.3);
}
.groove--dark { background: repeating-linear-gradient(180deg, rgba(246,235,217,.4) 0 1.6px, transparent 1.6px 6px), var(--brown-3); border-color: rgba(246,235,217,.15); }
.groove--dark::after { background: var(--mustard); box-shadow: 0 0 0 5px var(--brown-3), 0 0 0 6px rgba(246,235,217,.25); }

/* ============ header ============ */
.site-head {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .9rem var(--pad, 5vw);
  background: rgba(246,235,217,.92);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--brown);
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-word { font-family: var(--display); font-size: 1.3rem; letter-spacing: .01em; }
.brand-sub { display: none; }
.mast-nav { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.mast-nav a { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; text-decoration: none; padding: .3rem 0; border-bottom: 2px solid transparent; }
.mast-nav a:hover { border-color: var(--orange); }
.mast-nav .mast-cta { background: var(--brown); color: var(--cream); padding: .55rem 1rem; border-radius: 999px; border-bottom: none; }
.mast-nav .mast-cta:hover { background: var(--orange); }
@media (max-width: 780px) {
  .mast-nav { display: none; }
}

/* ============ hero ============ */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 20% -10%, var(--brown-2) 0%, var(--brown) 55%, var(--brown-3) 100%);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7.5rem) var(--pad, 5vw) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.hero-rings { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; align-items: center; position: relative; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
}
.hero-kicker { color: var(--mustard); margin-bottom: 1.1rem; }
.hero h1 {
  font-size: clamp(2.7rem, 3.6vw + 2rem, 6.4rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-deck { max-width: 34em; font-size: clamp(1rem, .4vw + .95rem, 1.2rem); color: rgba(246,235,217,.86); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid var(--cream);
  font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none; background: transparent; color: var(--cream); cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--orange); border-color: var(--orange); color: var(--brown-3); }
.btn--solid:hover { background: var(--mustard); border-color: var(--mustard); }
.btn--ghost:hover { background: rgba(246,235,217,.14); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

.hero-disc-wrap {
  position: relative; justify-self: center; width: min(78vw, 380px);
}
.hero-disc-wrap::before {
  content: ''; position: absolute; inset: -14px; border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(246,235,217,.14) 0 2px, transparent 2px 9px);
}
.hero-disc {
  border-radius: 50%; overflow: hidden; width: 100%; aspect-ratio: 1/1;
  box-shadow: 0 30px 70px rgba(0,0,0,.45), 0 0 0 10px var(--brown-3);
  animation: spin-slow 32s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-disc { animation: none; } }
.hero-note { margin-top: 1rem; text-align: center; color: rgba(246,235,217,.6); }

/* ============ section shells ============ */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) var(--pad, 5vw); }
.section--dark { background: var(--brown); color: var(--cream); }
.section-head { max-width: 44em; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(2rem, 1.6vw + 1.6rem, 3.4rem); margin: .5rem 0 .8rem; }
.section-head h2 em { font-style: normal; color: var(--orange); }
.section--dark .section-head h2 em { color: var(--mustard); }
.section-head p { color: rgba(51,35,26,.75); font-size: 1.05rem; max-width: 38em; }
.section--dark .section-head p { color: rgba(246,235,217,.78); }
.eyebrow { display: block; margin-bottom: .6rem; }

/* ============ the crate ============ */
.crate-shell { position: relative; }
.crate-controls { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.crate-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--brown);
  background: var(--cream); cursor: pointer; font-size: 1.1rem; flex: none;
  transition: background .2s, color .2s;
}
.crate-arrow:hover { background: var(--brown); color: var(--cream); }
.crate-dots { display: flex; gap: .5rem; }
.crate-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(51,35,26,.25); cursor: pointer; padding: 0;
}
.crate-dot.is-active { background: var(--orange); width: 22px; border-radius: 5px; }
@media (prefers-reduced-motion: reduce) { .crate-dot { transition: none; } }

.crate-track {
  display: flex; gap: 1.8rem; overflow-x: auto; scroll-snap-type: x proximity;
  padding: .4rem .4rem 1.6rem; margin: 0 -.4rem; cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.crate-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.crate-track:focus-within { scroll-snap-type: none; }

.sleeve {
  flex: 0 0 min(76vw, 320px);
  scroll-snap-align: start;
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: .9rem .9rem 1.3rem;
  box-shadow: 0 14px 28px rgba(36,24,17,.14);
  position: relative;
}
.sleeve-art { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,.25) inset; }
.sleeve-art canvas { width: 100%; aspect-ratio: 1/1; }
.sleeve-art::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-radial-gradient(circle at 72% 28%, rgba(51,35,26,.16) 0 2px, transparent 2px 15px);
  mix-blend-mode: multiply; opacity: .55;
}
.sticker {
  position: absolute; top: -14px; right: -10px; width: 62px; height: 62px; border-radius: 50%;
  background: var(--mustard); color: var(--brown-3); display: flex; align-items: center; justify-content: center;
  text-align: center; font-weight: 800; font-size: .62rem; text-transform: uppercase; letter-spacing: .03em;
  transform: rotate(-9deg); box-shadow: 0 4px 10px rgba(0,0,0,.3); outline: 2px dashed rgba(51,35,26,.4); outline-offset: -5px;
  z-index: 2; line-height: 1.15; padding: 4px;
}
.sleeve-info { padding-top: 1rem; }
.sleeve-cat { color: var(--orange-2); display: block; margin-bottom: .4rem; }
.sleeve-title { font-size: 1.5rem; margin-bottom: .15rem; }
.sleeve-artist { font-weight: 700; font-size: .95rem; margin-bottom: .35rem; }
.sleeve-genre {
  display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  border: 1.5px solid var(--brown); border-radius: 999px; padding: .18em .7em; margin-bottom: .6rem;
}
.sleeve-blurb { font-size: .88rem; color: rgba(51,35,26,.75); margin-bottom: .9rem; }
.sleeve-play {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--brown); color: var(--cream); border: none; border-radius: 999px; padding: .75rem 1rem;
  font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; cursor: pointer;
  transition: background .2s;
}
.sleeve-play:hover { background: var(--orange); }
.sleeve-play::before { content: '▶'; font-size: .7em; }

/* ============ the turntable ============ */
.tt-shell { display: grid; gap: 2.4rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .tt-shell { grid-template-columns: .95fr 1.05fr; } }

.tt-deck {
  background: linear-gradient(155deg, var(--brown-2), var(--brown-3));
  border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  position: relative;
}
.tt-deck-plate { position: relative; width: min(100%, 420px); margin: 0 auto; aspect-ratio: 1/1; }
.platter {
  position: absolute; inset: 6%; border-radius: 50%;
  background: repeating-conic-gradient(rgba(0,0,0,.35) 0deg 1.2deg, rgba(30,30,30,.85) 1.2deg 2.4deg);
  box-shadow: 0 0 0 10px var(--brown-3), 0 20px 40px rgba(0,0,0,.5) inset, 0 10px 30px rgba(0,0,0,.4);
  display: grid; place-items: center;
}
.vinyl-label-wrap {
  width: 46%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 3px var(--brown-3), 0 6px 14px rgba(0,0,0,.4);
  opacity: .35; transition: opacity .3s;
}
.platter.has-record .vinyl-label-wrap { opacity: 1; }
.platter.is-spinning { animation: spin-record 1.8s linear infinite; }
@media (prefers-reduced-motion: reduce) { .platter.is-spinning { animation: none; } }
@keyframes spin-record { to { transform: rotate(360deg); } }

.tonearm {
  position: absolute; top: 6%; right: 2%; width: 46%; height: 4px; background: var(--mustard);
  border-radius: 4px; transform-origin: 100% 50%; transform: rotate(-32deg);
  transition: transform .5s var(--ease);
  box-shadow: 0 2px 4px rgba(0,0,0,.4);
}
.tonearm::before { content: ''; position: absolute; right: -10px; top: -10px; width: 24px; height: 24px; border-radius: 50%; background: var(--mustard); box-shadow: 0 2px 6px rgba(0,0,0,.4); }
.tonearm::after { content: ''; position: absolute; left: -3px; top: -5px; width: 14px; height: 14px; border-radius: 3px; background: var(--brown-3); }
.tonearm.is-down { transform: rotate(-8deg); }
@media (prefers-reduced-motion: reduce) { .tonearm { transition: none; } }

.tt-info {
  background: var(--brown-3); color: var(--cream); border-radius: 16px; padding: clamp(1.6rem, 3vw, 2.4rem);
}
.tt-info h3 { font-size: 1.7rem; margin-bottom: .3rem; }
.tt-status { color: rgba(246,235,217,.55); margin-bottom: 1.4rem; }
.np-block { border-top: 1px solid rgba(246,235,217,.2); padding-top: 1.2rem; margin-bottom: 1.4rem; min-height: 5.4em; }
.np-title { display: block; font-family: var(--display); font-size: 1.5rem; }
.np-artist { display: block; font-weight: 700; margin: .15rem 0; }
.np-cat { display: block; color: var(--mustard); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.tt-controls { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.tt-stop {
  background: var(--orange); color: var(--brown-3); border: none; border-radius: 999px; padding: .8rem 1.6rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; cursor: pointer;
}
.tt-stop:hover:not(:disabled) { background: var(--mustard); }
.tt-stop:disabled { opacity: .4; cursor: not-allowed; }
.vol-field { display: flex; align-items: center; gap: .6rem; flex: 1 1 180px; }
.vol-field label { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(246,235,217,.7); }
input[type="range"] { flex: 1; accent-color: var(--orange); }
.tt-hint { margin-top: 1.4rem; font-size: .82rem; color: rgba(246,235,217,.55); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ============ roster (sleeve type) ============ */
.roster-list { border-top: 1.5px solid rgba(51,35,26,.2); }
.roster-row {
  display: grid; grid-template-columns: 1fr; gap: .3rem;
  padding: 1.6rem 0; border-bottom: 1.5px solid rgba(51,35,26,.2);
  align-items: baseline;
}
@media (min-width: 760px) {
  .roster-row { grid-template-columns: 2.4fr 1.6fr auto; gap: 1.5rem; }
}
.roster-name { font-family: var(--display); font-size: clamp(1.6rem, 2vw + 1rem, 2.6rem); }
.roster-meta { font-size: .95rem; color: rgba(51,35,26,.7); }
.roster-cat { justify-self: start; color: var(--orange-2); font-weight: 700; font-size: .8rem; letter-spacing: .05em; }
@media (min-width: 760px) { .roster-cat { justify-self: end; text-align: right; } }
.roster-row:nth-child(even) .roster-name { color: var(--orange-2); }

/* ============ label story (liner notes) ============ */
.story-grid { display: grid; gap: 2.6rem; grid-template-columns: 1fr; }
@media (min-width: 980px) { .story-grid { grid-template-columns: 1.5fr 1fr; } }
.liner { column-gap: 2.4rem; }
@media (min-width: 640px) { .liner { columns: 2; } }
.liner p:first-of-type::first-letter {
  font-family: var(--display); font-size: 3.4em; float: left; line-height: .8; padding: .06em .1em 0 0; color: var(--orange);
}
.credits-card {
  background: var(--brown); color: var(--cream); border-radius: 16px; padding: 1.8rem 2rem; align-self: start;
}
.credits-card h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--mustard); }
.credits-card dl { display: grid; grid-template-columns: 1fr; gap: .8rem; margin: 0; }
.credits-card dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(246,235,217,.55); }
.credits-card dd { margin: 0; font-weight: 700; }
.credits-fn { margin-top: 1.2rem; font-size: .78rem; color: rgba(246,235,217,.55); }
.fn { text-decoration: none; color: var(--mustard); }

/* ============ demos form ============ */
.demo-shell { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
@media (min-width: 980px) { .demo-shell { grid-template-columns: .9fr 1.1fr; } }
.demo-card { background: var(--brown-3); color: var(--cream); border-radius: 18px; padding: clamp(1.8rem, 3vw, 2.6rem); }
.demo-card h3 { font-size: 1.6rem; margin-bottom: .6rem; }
.demo-card p { color: rgba(246,235,217,.75); }
.demo-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.field input, .field select, .field textarea {
  background: var(--cream); border: 2px solid var(--brown); border-radius: 8px; padding: .7rem .9rem;
}
.field textarea { resize: vertical; min-height: 6em; }
.demo-submit {
  justify-self: start; background: var(--orange); color: var(--brown-3); border: none; border-radius: 999px;
  padding: .9rem 1.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; cursor: pointer;
}
.demo-submit:hover { background: var(--mustard); }
.hp-field { position: absolute; left: -9999px; }
.demo-success { background: var(--cream-2); border-radius: 16px; padding: 2rem; text-align: center; }
.demo-success .fin { font-family: var(--display); font-size: 2rem; margin-bottom: .4rem; }

/* ============ footer ============ */
.site-foot { background: var(--brown-3); color: rgba(246,235,217,.75); padding: 2.4rem var(--pad, 5vw); }
.foot-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.foot-nav a { font-size: .85rem; text-decoration: none; }
.foot-nav a:hover { color: var(--mustard); }
.foot-credit a { color: var(--mustard); }
.foot-fine { font-size: .8rem; opacity: .7; }

/* ============ article pages (guide / process) ============ */
.article-hero { padding: clamp(4rem, 8vw, 6.5rem) var(--pad, 5vw) 2rem; max-width: 900px; }
.article-hero h1 { font-size: clamp(2.2rem, 2.2vw + 1.6rem, 4rem); margin: .6rem 0 1rem; }
.article-hero h1 em { font-style: normal; color: var(--orange); }
.article-hero .deck { font-size: 1.1rem; color: rgba(51,35,26,.78); max-width: 42em; }
.article { max-width: 900px; margin: 0 auto; padding: 0 var(--pad, 5vw) 5rem; }
.art-sec { padding: 2.2rem 0; border-top: 1.5px solid rgba(51,35,26,.18); }
.art-sec:first-child { border-top: none; }
.sec-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: .9rem; }
.sec-no { font-family: var(--display); font-size: 1.4rem; color: var(--orange-2); }
.sec-head h2 { font-size: clamp(1.4rem, 1vw + 1.1rem, 2rem); }
.sec-body p { color: rgba(51,35,26,.85); }
.sec-body h3 { font-family: var(--body); font-weight: 800; font-size: 1.05rem; margin: 1.2rem 0 .3rem; }
.sec-body ul { margin: .8rem 0 1.2rem; padding-left: 0; }
.sec-body li { list-style: none; padding-left: 1.6rem; position: relative; margin-bottom: .55rem; color: rgba(51,35,26,.85); }
.sec-body li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }
.sec-body code {
  background: var(--cream-2); border-radius: 4px; padding: .1em .4em; font-size: .9em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.sec-body pre {
  background: var(--brown-3); color: var(--cream); padding: 1.1rem 1.3rem; border-radius: 10px;
  overflow-x: auto; font-size: .85rem; line-height: 1.6;
}
.sec-body pre code { background: none; color: inherit; padding: 0; }
.concept-note { background: var(--cream-2); border-left: 4px solid var(--orange); padding: 1rem 1.3rem; border-radius: 0 8px 8px 0; margin-bottom: 1.2rem; }
.iteration-log { display: grid; gap: 1.2rem; }
.iteration-log > div { background: var(--cream-2); border-radius: 10px; padding: 1.2rem 1.4rem; }
.iteration-log h3 { margin-top: 0; }

/* ---- seed explorer (guide teaching widget) ---- */
.seed-lab { display: grid; gap: 1.4rem; grid-template-columns: 1fr; align-items: center; background: var(--brown); color: var(--cream); border-radius: 16px; padding: 1.6rem 1.8rem; margin: 1.4rem 0; }
@media (min-width: 700px) { .seed-lab { grid-template-columns: 220px 1fr; } }
.seed-lab canvas { border-radius: 10px; width: 100%; aspect-ratio: 1/1; box-shadow: 0 10px 24px rgba(0,0,0,.4); }
.seed-lab-controls { display: flex; flex-direction: column; gap: .8rem; }
.seed-lab-controls label { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(246,235,217,.65); }
.seed-lab-controls input { background: var(--brown-3); border: 1.5px solid rgba(246,235,217,.3); color: var(--cream); border-radius: 6px; padding: .55rem .8rem; }
.seed-lab-controls button { justify-self: start; background: var(--orange); color: var(--brown-3); border: none; border-radius: 999px; padding: .7rem 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; }
.seed-lab-controls button:hover { background: var(--mustard); }

@media (max-width: 780px) {
  .art-sec .sec-head { flex-direction: column; gap: .2rem; }
}
