/* ============ TOKENS ============ */
:root {
  --soil-950: #150f0a;
  --soil-900: #1c150e;
  --soil-800: #241b12;
  --soil-700: #33261a;
  --bark: #4a3524;
  --line: rgba(241,230,207,0.12);
  --line-strong: rgba(241,230,207,0.22);

  --parchment: #f1e6cf;
  --parchment-dim: #c9b797;
  --parchment-faint: #8d7c62;

  --moss-700: #3f5c3a;
  --moss-500: #5c8a52;
  --leaf-400: #a8d46a;
  --leaf-300: #c3e58f;
  --clay-500: #c17f4a;
  --clay-400: #d99b64;

  --font-display: 'Spectral', Georgia, serif;
  --font-sans: 'Karla', 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;

  --space-section: clamp(5rem, 4rem + 5vw, 9rem);
  --container: 1180px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-organic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--soil-950);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

::selection { background: var(--leaf-400); color: var(--soil-950); }

/* ============ ATMOSPHERE ============ */
#atmosphere {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

.paper-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-leaf {
  position: fixed; top: 0; left: 0; z-index: 200; pointer-events: none;
  color: var(--leaf-400); opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.cursor-leaf.active { opacity: 0.9; }
@media (hover: none) {
  .cursor-leaf { display: none; }
}

/* ============ VINE SCROLL NAV ============ */
.vine-nav {
  position: fixed; left: 0; top: 0; bottom: 0; width: 60px; z-index: 40;
  display: flex; align-items: stretch;
}
.vine-svg { width: 60px; height: 100%; overflow: visible; }
.vine-path-bg { fill: none; stroke: var(--line); stroke-width: 2; }
.vine-path-fg {
  fill: none; stroke: var(--leaf-400); stroke-width: 2.4;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  filter: drop-shadow(0 0 4px rgba(168,212,106,0.5));
}
.vine-nodes { position: absolute; inset: 0; }
.vine-node {
  position: absolute; left: 30px; width: 9px; height: 9px; margin-left: -4.5px;
  border-radius: 50% 0 50% 50%; background: var(--line-strong);
  transform: rotate(45deg);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
.vine-node.is-active { background: var(--leaf-400); box-shadow: 0 0 8px rgba(168,212,106,0.7); }

@media (max-width: 860px) {
  .vine-nav { display: none; }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 3rem) 1rem clamp(1.25rem, 4vw, 4.5rem);
  background: rgba(21,15,10,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(21,15,10,0.92);
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-seal {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bark);
  border: 2px solid var(--soil-700);
  box-shadow: 0 0 0 1px var(--line), 0 3px 8px rgba(0,0,0,0.4);
  overflow: hidden;
}
.brand-seal img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-word {
  display: flex; flex-direction: column; line-height: 1.15;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.brand-sub {
  font-family: var(--font-sans); font-weight: 500; font-size: 0.66rem;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--parchment-faint);
}

.main-nav { display: flex; align-items: center; gap: 2.2rem; }
.main-nav a {
  font-size: 0.92rem; color: var(--parchment-dim); transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--parchment); }
.nav-cta {
  padding: 0.55rem 1.15rem; border: 1px solid var(--line-strong); border-radius: 100px 4px 100px 4px;
  color: var(--parchment) !important;
}
.nav-cta:hover { border-color: var(--leaf-400); background: rgba(168,212,106,0.1); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 0.5rem; z-index: 101;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--parchment); transition: 0.25s ease; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--soil-950);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 1.5rem; padding: 2rem clamp(1.5rem, 8vw, 4rem);
  transform: translateY(-100%); transition: transform 0.4s var(--ease-out-expo);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; font-weight: 500; font-style: italic; }

/* ============ HERO ============ */
.hero {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(6rem,10vw,9rem) clamp(1.5rem, 5vw, 3rem) 4rem clamp(1.5rem, 5vw, 5.5rem);
  max-width: var(--container); margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; width: fit-content;
  font-family: var(--font-hand); font-size: 1.3rem;
  color: var(--leaf-300);
  margin-bottom: 1.5rem;
}
.leaf-dot {
  width: 8px; height: 8px; border-radius: 50% 0 50% 50%; background: var(--leaf-400);
  transform: rotate(45deg); box-shadow: 0 0 8px rgba(168,212,106,0.7);
  animation: sway 3s ease-in-out infinite;
}
@keyframes sway { 0%,100%{ transform: rotate(45deg) scale(1);} 50%{ transform: rotate(35deg) scale(1.15);} }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 3rem + 4.5vw, 7.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: 18ch;
  text-wrap: balance;
}
.reveal-line { display: block; overflow: hidden; }
.reveal-line > em,
.reveal-line {
  display: block;
}
.hero-title em {
  font-style: italic; color: var(--leaf-400); font-weight: 500;
}

.hero-lede {
  margin: 2.2rem 0 2.5rem;
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.22rem);
  color: var(--parchment-dim);
  max-width: 48ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: clamp(3.5rem, 3rem + 3vw, 6rem); }

.btn {
  appearance: none; -webkit-appearance: none;
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  padding: 0.95rem 1.7rem; border-radius: 100px 6px 100px 6px;
  transition: transform 0.3s var(--ease-organic), background 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease;
  position: relative;
  background: none; box-shadow: none; margin: 0;
  cursor: pointer; text-align: left; line-height: 1.2;
}
.btn-primary {
  background: var(--leaf-400); color: var(--soil-950); border: 1px solid var(--leaf-400);
}
.btn-primary:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: 0 12px 26px -10px rgba(168,212,106,0.55); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--parchment); }
.btn-ghost:hover { border-color: var(--parchment-dim); transform: translateY(-2px) rotate(1deg); }
.btn:focus-visible { outline: 2px solid var(--leaf-400); outline-offset: 3px; }

.btn-dark {
  background: var(--soil-950); color: var(--parchment); border: 1px solid var(--soil-950);
}
.btn-dark:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: 0 12px 26px -10px rgba(21,15,10,0.4); }
.btn-ghost-dark {
  border: 1px solid rgba(21,15,10,0.35); color: var(--soil-950);
}
.btn-ghost-dark:hover { background: rgba(21,15,10,0.08); transform: translateY(-2px) rotate(1deg); }

.hero-plaques {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px dashed var(--line-strong);
  padding-top: 1.85rem;
}
.plaque { display: flex; flex-direction: column; gap: 0.4rem; padding-right: 1rem; }
.plaque-num { font-family: var(--font-display); font-style: italic; font-size: clamp(1.8rem, 1.6rem + 1vw, 2.5rem); color: var(--clay-400); font-weight: 500; font-variant-numeric: tabular-nums; }
.plaque-label { font-size: 0.82rem; color: var(--parchment-faint); line-height: 1.35; }

.scroll-cue {
  position: absolute; bottom: 2rem; right: clamp(1.5rem, 5vw, 3rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-family: var(--font-hand); font-size: 1.1rem; color: var(--parchment-faint);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* ============ SECTION SHARED ============ */
.section-head { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem) 0 clamp(1.5rem, 5vw, 5.5rem); }
.section-tag {
  font-family: var(--font-hand); font-size: 1.25rem;
  color: var(--clay-400); margin-bottom: 1rem;
}
.section-tag.light { color: rgba(21,15,10,0.65); }
.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 1.7rem + 1.7vw, 3.2rem);
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin-bottom: 1.1rem;
  text-wrap: balance;
}
.section-sub { color: var(--parchment-dim); max-width: 58ch; font-size: 1.06rem; }

/* ============ WORK / SPECIMENS ============ */
.work { position: relative; z-index: 2; padding: var(--space-section) 0; border-top: 1px solid var(--line); }
.specimen-list {
  max-width: var(--container); margin: clamp(3rem,3vw,4.5rem) auto 0;
  padding: 0 clamp(1.5rem, 5vw, 3rem) 0 clamp(1.5rem, 5vw, 5.5rem);
  display: flex; flex-direction: column; gap: clamp(2.5rem, 3vw, 4rem);
}

.specimen {
  opacity: 0; transform: translateY(30px) rotate(-0.6deg);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.specimen.is-visible { opacity: 1; transform: translateY(0) rotate(0deg); }
.specimen--alt { align-self: flex-end; }
.specimen--alt .specimen-card { transform: rotate(0.5deg); }
.specimen:not(.specimen--alt) .specimen-card { transform: rotate(-0.4deg); }

.specimen-card {
  position: relative;
  background: linear-gradient(160deg, var(--soil-800), var(--soil-900));
  border: 1px solid var(--line);
  border-radius: 4px 22px 4px 22px;
  padding: clamp(2rem, 3vw, 3rem);
  max-width: 780px;
  box-shadow: 0 20px 40px -24px rgba(0,0,0,0.6);
  transition: transform 0.4s var(--ease-organic), box-shadow 0.4s ease;
}
.specimen-card:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow: 0 28px 50px -22px rgba(0,0,0,0.65);
}
.specimen--alt .specimen-card { margin-left: auto; }

.specimen-tape {
  position: absolute; top: -14px; left: 40px; width: 84px; height: 26px;
  background: rgba(193,127,74,0.28);
  border: 1px solid rgba(193,127,74,0.35);
  transform: rotate(-3deg);
}
.specimen--alt .specimen-tape { left: auto; right: 40px; transform: rotate(3deg); }

.specimen-icon {
  position: absolute; top: clamp(1.6rem, 3vw, 2.4rem); right: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--moss-500); opacity: 0.9;
}
.specimen--alt .specimen-icon { right: auto; left: clamp(1.6rem, 3vw, 2.4rem); }

.specimen-heading { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.5rem; padding-right: 4.5rem; }
.specimen--alt .specimen-heading { padding-right: 0; padding-left: 4.5rem; }
.specimen-heading h3 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
}
.specimen-status {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.32rem 0.75rem; border-radius: 100px; border: 1px solid;
}
.status-live { color: var(--leaf-400); border-color: rgba(168,212,106,0.35); background: rgba(168,212,106,0.1); }
.status-build { color: var(--clay-400); border-color: rgba(217,155,100,0.35); background: rgba(217,155,100,0.1); }

.specimen-role { font-family: var(--font-hand); font-size: 1.15rem; color: var(--leaf-300); margin-bottom: 1.1rem; }
.specimen-desc { color: var(--parchment-dim); margin-bottom: 1.4rem; font-size: 1rem; }

.specimen-points { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.6rem; }
.specimen-points li {
  position: relative; padding-left: 1.5rem; color: var(--parchment-dim); font-size: 0.94rem;
}
.specimen-points li::before {
  content: ''; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px;
  background: var(--moss-500); border-radius: 50% 0 50% 50%; transform: rotate(45deg);
}

.specimen-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.specimen-tags span {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; color: var(--parchment-dim);
  border: 1px solid var(--line-strong); padding: 0.34rem 0.7rem; border-radius: 5px;
}

/* ---- Proof: live links, photos, private notes ---- */
.proof-link {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.88rem;
  color: var(--leaf-300);
  border: 1px dashed rgba(168,212,106,0.4);
  background: rgba(168,212,106,0.06);
  padding: 0.6rem 1rem; border-radius: 100px 6px 100px 6px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-organic);
}
.proof-link:hover { background: rgba(168,212,106,0.14); border-color: var(--leaf-400); transform: translateY(-2px) rotate(-0.5deg); }
.proof-link svg { flex-shrink: 0; }

.proof-note {
  margin-top: 1.5rem;
  font-family: var(--font-hand); font-size: 1.1rem; line-height: 1.4;
  color: var(--parchment-faint);
  border-left: 2px dashed var(--line-strong);
  padding-left: 1rem;
  max-width: 52ch;
}

.proof-photo {
  display: inline-flex; flex-direction: column; gap: 0.6rem;
  margin-top: 1.5rem; padding: 0.6rem 0.6rem 0.9rem;
  background: var(--parchment); border-radius: 2px;
  box-shadow: 0 14px 28px -14px rgba(0,0,0,0.55);
  transform: rotate(-1.5deg);
  max-width: 100%;
}
.specimen--alt .proof-photo { transform: rotate(1.5deg); }
.proof-photo img {
  display: block; width: 100%; max-width: 360px; height: auto;
  border: 1px solid rgba(21,15,10,0.1);
}
.proof-caption {
  font-family: var(--font-hand); font-size: 1.05rem; color: var(--soil-800);
  padding: 0 0.2rem;
}
.proof-caption--block {
  color: var(--parchment-faint); margin-top: 1rem;
}

.proof-gallery {
  display: flex; align-items: flex-start;
  margin-top: 1.75rem; padding-left: 0.5rem;
}
.polaroid {
  flex-shrink: 0; width: 128px;
  background: var(--parchment); padding: 6px 6px 10px;
  border-radius: 2px;
  box-shadow: 0 14px 24px -12px rgba(0,0,0,0.55);
  transition: transform 0.35s var(--ease-organic), box-shadow 0.35s ease, z-index 0s;
  cursor: default;
}
.polaroid:nth-child(1) { transform: rotate(-7deg) translateY(6px); z-index: 1; margin-right: -34px; }
.polaroid:nth-child(2) { transform: rotate(4deg); z-index: 2; }
.polaroid:nth-child(3) { transform: rotate(-3deg) translateY(10px); z-index: 1; margin-left: -34px; }
.polaroid:hover {
  transform: translateY(-10px) rotate(0deg) scale(1.12) !important;
  box-shadow: 0 22px 36px -14px rgba(0,0,0,0.6);
  z-index: 5;
}
.polaroid img {
  display: block; width: 100%; height: 180px; object-fit: cover; object-position: top;
  border: 1px solid rgba(21,15,10,0.1);
}

@media (max-width: 560px) {
  .proof-gallery { padding-left: 0; }
  .polaroid { width: 96px; }
  .polaroid img { height: 140px; }
  .polaroid:nth-child(1) { margin-right: -24px; }
  .polaroid:nth-child(3) { margin-left: -24px; }
}

/* ============ PROCESS / SEASONS ============ */
.process { position: relative; z-index: 2; padding: var(--space-section) 0; background: var(--soil-900); border-top: 1px solid var(--line); }
.season-list {
  max-width: var(--container); margin: clamp(3rem,3vw,4.5rem) auto 0;
  padding: 0 clamp(1.5rem, 5vw, 3rem) 0 clamp(1.5rem, 5vw, 5.5rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 2vw, 2rem);
}
.season {
  border-top: 2px solid var(--moss-700);
  padding-top: 1.6rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.season.is-visible { opacity: 1; transform: translateY(0); }
.season-mark {
  display: block; font-family: var(--font-hand); color: var(--clay-400); font-size: 1.15rem; margin-bottom: 1rem;
}
.season h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.7rem; }
.season p { color: var(--parchment-dim); font-size: 0.92rem; line-height: 1.6; }

/* ============ STACK / MARQUEE ============ */
.stack { position: relative; z-index: 2; padding: var(--space-section) 0 calc(var(--space-section) * 0.6); border-top: 1px solid var(--line); overflow: hidden; }
.marquee {
  margin-top: 3rem; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.6rem); width: max-content;
  animation: scroll-left 36s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 1.3rem + 1.3vw, 2.3rem);
  color: var(--parchment-faint); white-space: nowrap;
}
.marquee-sep { color: var(--moss-500) !important; font-style: normal !important; font-size: 1.2rem !important; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ CONTACT ============ */
.contact {
  position: relative; z-index: 2;
  background: var(--leaf-400); color: var(--soil-950);
  padding: var(--space-section) 0;
  overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,15,10,0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.6;
}
.contact-inner {
  position: relative; max-width: 800px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem) 0 clamp(1.5rem, 5vw, 5.5rem);
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem;
}
.contact-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 1.9rem + 2.5vw, 3.6rem);
  color: var(--soil-950); letter-spacing: -0.01em; max-width: 15ch;
  text-wrap: balance;
}
.contact-sub { color: rgba(21,15,10,0.72); font-size: 1.1rem; max-width: 50ch; }
.contact-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.contact-fine { font-size: 0.92rem; color: rgba(21,15,10,0.65); max-width: 46ch; margin-top: 0.25rem; }

.email-btn-icon {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; flex-shrink: 0;
}
.email-btn-icon svg {
  position: absolute; inset: 0;
  transition: opacity 0.25s var(--ease-organic), transform 0.35s var(--ease-organic);
}
.email-btn-icon .icon-check {
  opacity: 0; transform: scale(0.5) rotate(-20deg);
  color: var(--moss-700);
}
.email-btn-icon .icon-mail { opacity: 1; transform: scale(1) rotate(0deg); }
.email-btn.is-copied .email-btn-icon .icon-mail { opacity: 0; transform: scale(0.5) rotate(20deg); }
.email-btn.is-copied .email-btn-icon .icon-check { opacity: 1; transform: scale(1) rotate(0deg); }
.email-btn.is-copied { border-style: solid; border-color: var(--soil-950); background: rgba(21,15,10,0.08); }
.email-btn-label { transition: opacity 0.2s ease; }
.contact .btn:focus-visible { outline-color: var(--soil-950); }

/* ============ FOOTER ============ */
.site-footer {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding: 2rem clamp(1.5rem, 5vw, 3rem) 2rem clamp(1.5rem, 5vw, 5.5rem);
  font-family: var(--font-sans); font-size: 0.8rem; color: var(--parchment-faint);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero, .section-head, .specimen-list, .season-list, .contact-inner, .site-footer {
    padding-left: clamp(1.25rem, 6vw, 2rem);
    padding-right: clamp(1.25rem, 6vw, 2rem);
  }
  .hero-plaques { grid-template-columns: repeat(2, 1fr); row-gap: 1.75rem; }
  .season-list { grid-template-columns: repeat(2, 1fr); }
  .specimen--alt { align-self: stretch; }
  .specimen--alt .specimen-card { margin-left: 0; }
  .specimen-tape, .specimen--alt .specimen-tape { left: 24px; right: auto; transform: rotate(-3deg); }
  .scroll-cue { display: none; }
}

@media (max-width: 560px) {
  .season-list { grid-template-columns: 1fr; }
  .specimen-icon { display: none; }
  .specimen-heading, .specimen--alt .specimen-heading { padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
