/* ============================================================
   GREEN LINE MORPHS — styles.css
   Design direction: a private gallery at night, run with a
   military chain of command. Warm near-black walls, badge gold
   as the single accent, bone/cream text, museum-specimen framing.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette (Zara's direction) */
  --bg: #0D0C0A;
  --surface-1: #171410;
  --surface-2: #262319;
  --border: #3B3527;
  --text: #EDE6D6;
  --text-muted: #A49A81;
  --accent: #D4AF37;
  --accent-hover: #E2C45A;
  --accent-soft: rgba(212, 175, 55, 0.13);
  --accent-line: rgba(212, 175, 55, 0.32);
  --on-accent: #16120A;

  /* Type */
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.7rem, 0.66rem + 0.2vw, 0.8rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  --step-2: clamp(1.375rem, 1.2rem + 0.7vw, 1.875rem);
  --step-3: clamp(1.875rem, 1.5rem + 1.5vw, 2.875rem);
  --step-4: clamp(2.375rem, 1.8rem + 2.5vw, 4.125rem);
  --step-5: clamp(3rem, 2.1rem + 3.6vw, 6rem);

  /* Structure */
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 700px at 78% -8%, rgba(212, 175, 55, 0.07), transparent 62%),
    radial-gradient(900px 600px at -10% 30%, rgba(96, 90, 64, 0.08), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, p, ul, figure {
  margin: 0;
}

ul { padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

::selection { background: rgba(212, 175, 55, 0.32); color: var(--text); }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 200;
  background: var(--surface-2);
  border: 1px solid var(--accent-line);
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout utilities ---------- */
.container {
  width: min(1200px, 100% - 2 * 24px);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section[id] { scroll-margin-top: 80px; }

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  flex: none;
}
.section-head.center .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  flex: none;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: 0.015em;
  color: var(--text);
}

.h2 {
  font-size: var(--step-4);
  margin-bottom: 22px;
}

.accent { color: var(--accent); }

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s var(--ease), background-color 0.22s var(--ease),
              border-color 0.22s var(--ease), color 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
}
.btn svg { flex: none; }

.btn-gold {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 10px 30px -12px rgba(212, 175, 55, 0.45);
}
.btn-gold:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(212, 175, 55, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-nav { padding: 11px 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 12, 10, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid #556b2f;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(13, 12, 10, 0.94);
  border-bottom-color: #556b2f;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4), 0 4px 14px rgba(0, 0, 0, 0.55);
  background: var(--surface-2);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-motto {
  margin-top: 5px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px 22px;
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.6);
}
.site-nav.open { display: flex; }
.site-nav a:not(.btn) {
  padding: 12px 8px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid rgba(59, 53, 39, 0.55);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.site-nav a:not(.btn):hover {
  color: var(--accent);
  padding-left: 14px;
}
.site-nav .btn-nav { margin-top: 14px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 60%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(212, 175, 55, 0.06), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: var(--step-5);
  margin-bottom: 26px;
  max-width: 12ch;
}

.hero-sub {
  color: var(--text-muted);
  font-size: var(--step-1);
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-badges li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* Breeder program line — placard style under the hero headline */
.program-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 26px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.program-label {
  color: var(--text-muted);
}
.program-sep {
  color: var(--text-muted);
}
.program-genes {
  color: var(--accent);
  letter-spacing: 0.12em;
}

/* Framed marquee specimen */
.hero-figure {
  position: relative;
  margin: 0;
  width: min(100%, 500px);
  margin-inline: auto;
}
.hero-figure::before {
  content: "";
  position: absolute;
  inset: -12%;
  background: radial-gradient(52% 52% at 50% 46%, rgba(212, 175, 55, 0.13), transparent 70%);
  animation: spotlight-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-frame {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.85);
}
.plate-photo {
  position: relative;
  border: 1px solid var(--accent-line);
}
.plate-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.plate-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(var(--accent), var(--accent)) 10px 10px / 20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 10px 10px / 1px 20px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(100% - 30px) 10px / 20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(100% - 11px) 10px / 1px 20px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 10px calc(100% - 11px) / 20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 10px calc(100% - 30px) / 1px 20px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(100% - 30px) calc(100% - 11px) / 20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(100% - 11px) calc(100% - 30px) / 1px 20px no-repeat;
}

.hero-placard {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 14px;
  padding: 14px 4px 4px;
  border-top: 1px solid var(--accent-line);
}
.placard-no {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.placard-desc {
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.placard-credit {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}

@keyframes spotlight-drift {
  from { transform: translate(-3%, -2%) scale(0.98); }
  to   { transform: translate(3%, 2%) scale(1.02); }
}

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, var(--bg) 0%, var(--surface-1) 100%); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

.about-copy p + p { margin-top: 20px; }
.about-copy p { color: var(--text-muted); }
.about-copy p strong { color: var(--text); font-weight: 600; }
.about-copy .h2 { color: var(--text); }

.about-quote {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(212, 175, 55, 0.07), transparent 55%),
    var(--surface-1);
  padding: 48px 40px;
}
.about-quote .display {
  font-size: var(--step-3);
  margin-bottom: 22px;
}
.about-quote p {
  color: var(--text-muted);
  font-size: var(--step-1);
  line-height: 1.6;
}
.about-quote::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-line), transparent 70%);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 40px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-1);
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.value-item:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.value-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.07);
}
.value-item h3 {
  font-size: var(--step-0);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.value-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- Morphs collection ---------- */
.morphs { background: var(--bg); }

.morphs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.specimen {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.specimen:hover {
  transform: translateY(-4px);
  border-color: var(--accent-line);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
}

.specimen-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid var(--accent-line);
  background:
    radial-gradient(70% 55% at 50% 30%, rgba(212, 175, 55, 0.11), transparent 62%),
    linear-gradient(180deg, var(--surface-2), var(--surface-1) 70%);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.specimen-art::before,
.specimen-art::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--accent-line);
  z-index: 2;
}
.specimen-art::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.specimen-art::after { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.specimen-glyph {
  width: 96px;
  height: 96px;
  color: var(--accent);
  opacity: 0.38;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.specimen:hover .specimen-glyph {
  opacity: 0.62;
  transform: scale(1.05);
}

.specimen-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.specimen-eggs {
  position: relative;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--accent-line);
  background: var(--surface-2);
  overflow: hidden;
}
.specimen-eggs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.specimen-eggs-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: 2px;
  padding: 5px 10px;
  background: rgba(13, 12, 10, 0.6);
  z-index: 1;
}

.specimen-no {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1;
}

.specimen-status {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: 2px;
  padding: 7px 12px;
  background: rgba(13, 12, 10, 0.55);
  z-index: 1;
}

.specimen-placard {
  padding: 22px 24px 26px;
  background: var(--surface-1);
}
.specimen-name {
  font-family: var(--font-display);
  font-size: var(--step-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 6px;
}
.specimen-line {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.specimen-traits {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- Pairing card photo gallery ---------- */
/* Collage treatment: the pairing plate sits large on top; the secondary
   photos (dam-on-eggs left, clutch result right) are small captioned
   thumbnails centered beneath it. No full-width strips — the pair keeps
   generous air around it, archival record style. */
.specimen-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  padding: 20px 24px 26px;
  background: var(--surface-1);
}
.specimen-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: clamp(84px, 28%, 124px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  overflow: visible;
  cursor: zoom-in;
  transition: transform 0.22s var(--ease);
}
.specimen-thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  filter: grayscale(0.9);
  opacity: 0.7;
  transition: border-color 0.22s var(--ease), filter 0.24s var(--ease), opacity 0.24s var(--ease), box-shadow 0.22s var(--ease);
}
.specimen-thumb:hover,
.specimen-thumb:focus-visible {
  transform: translateY(-2px);
}
.specimen-thumb:hover img,
.specimen-thumb:focus-visible img {
  border-color: var(--accent-line);
  filter: grayscale(0.35);
  opacity: 0.95;
  box-shadow: 0 14px 28px -16px rgba(0, 0, 0, 0.9);
}
.specimen-thumb.is-active img {
  border-color: var(--accent);
  filter: grayscale(0);
  opacity: 1;
  box-shadow: 0 0 0 1px var(--accent), 0 14px 28px -16px rgba(0, 0, 0, 0.9);
}
.specimen-thumb-label {
  display: block;
  padding: 0;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  transition: color 0.22s var(--ease);
}
.specimen-thumb:hover .specimen-thumb-label,
.specimen-thumb.is-active .specimen-thumb-label {
  color: var(--accent);
}
.specimen-plate-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  background: rgba(13, 12, 10, 0.72);
  color: var(--accent);
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), transform 0.22s var(--ease);
}
.specimen-art.is-zoom .specimen-plate-close {
  display: flex;
}
.specimen-plate-close:hover,
.specimen-plate-close:focus-visible {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.06);
}
.specimen-photo {
  transition: opacity 0.18s var(--ease);
}
.specimen-art.is-swapping .specimen-photo {
  opacity: 0.35;
}
@media (prefers-reduced-motion: reduce) {
  .specimen-thumb,
  .specimen-thumb img,
  .specimen-thumb-label,
  .specimen-plate-close,
  .specimen-photo {
    transition: none;
  }
}

/* ---------- Quality & health promise ---------- */
.quality {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(212, 175, 55, 0.06), transparent 65%),
    linear-gradient(180deg, var(--surface-1) 0%, var(--bg) 100%);
}

.quality-quote {
  text-align: center;
  padding: 72px 24px;
  margin-bottom: 72px;
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
  position: relative;
}
.quality-quote .display {
  font-size: var(--step-5);
  letter-spacing: 0.04em;
}
.quality-quote p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: var(--step-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.quality-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-1);
  padding: 34px 30px;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease);
}
.quality-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-line);
}
.quality-card .value-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}
.quality-card h3 {
  font-family: var(--font-display);
  font-size: var(--step-1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.quality-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.quality-note {
  margin-top: 56px;
  text-align: center;
  color: var(--text-muted);
  font-size: var(--step-1);
  line-height: 1.6;
  max-width: 640px;
  margin-inline: auto;
}
.quality-note strong { color: var(--text); font-weight: 600; }

/* ---------- Footer gear — quiet trust bar ----------
   Jay's standing rule: no free ad space for suppliers. The four brand
   marks live INSIDE the footer as a slim flat logo bar — small-caps
   label, sharp-cornered white tiles (the logo files have white
   backgrounds baked in), muted opacity, no cards, no rounding, no lift. */
.footer-gear {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.footer-gear-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-gear-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-gear-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 56px;
  padding: 0;
  background: #FFFFFF;
  opacity: 0.8;
  transition: opacity 0.2s var(--ease);
}
.footer-gear-logos a:hover { opacity: 1; }
.footer-gear-logos a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.footer-gear-logos img {
  max-width: 76%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ============================================================
   OPERATION: DEEDS, NOT WORDS — veteran campaign page
   Same dark theme, same Anton/Archivo, same gold GLM chrome.
   The campaign's own identity is black / red / white (per the
   approved banner): deep red is the campaign accent, gold stays
   reserved for the Green Line Morphs brand. All op-* styles are
   scoped under body.op-root so nothing leaks into other pages.
   ============================================================ */
body.op-root {
  --op-red: #B3202A;
  --op-red-hover: #C63A43;
  --op-red-soft: rgba(179, 32, 42, 0.15);
  --op-red-line: rgba(179, 32, 42, 0.5);
  --op-red-glow: rgba(179, 32, 42, 0.12);
  background-image:
    radial-gradient(1100px 700px at 50% -6%, rgba(179, 32, 42, 0.1), transparent 62%),
    radial-gradient(900px 600px at 92% 48%, rgba(96, 90, 64, 0.07), transparent 60%);
}

.op-red { color: var(--op-red); }
.op-root .kicker { color: var(--op-red); }
.op-root .kicker::before { background: var(--op-red); }
.op-root .section-head.center .kicker::after { background: var(--op-red); }

/* Campaign button — deep red, not gold */
.btn-op-red {
  background: var(--op-red);
  color: #FFFFFF;
  box-shadow: 0 10px 30px -12px rgba(179, 32, 42, 0.55);
}
.btn-op-red:hover {
  background: var(--op-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(179, 32, 42, 0.6);
}

/* --- Nav logo plate -----------------------------------------
   The approved banner ships as a JPEG with a baked-in white
   background (no real alpha), so it's framed as a white archival
   tile — the same plate language the site uses for specimen
   photos — instead of being knocked out onto the dark header.
   Desktop shows the plate only; the mobile dropdown adds a red
   label beside it. */
.op-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.op-nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  background: #FFFFFF;
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
}
.op-nav-logo img {
  height: 34px;
  width: auto;
  display: block;
}
.op-nav-item:hover .op-nav-logo {
  border-color: var(--op-red);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}
.op-nav-label {
  display: inline;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--op-red);
}
/* Mobile dropdown: match the other link rows; no gold slide-underline. */
.site-nav .op-nav-item {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(59, 53, 39, 0.55);
}
.site-nav .op-nav-item:hover { padding-left: 8px; }
.site-nav .op-nav-item::after { display: none; }

/* --- Bang Project elite nav link -----------------------------
   The headliner of the nav: gold text everywhere, a gold hairline
   plate on desktop, subtle gold glow on hover. On the mobile
   dropdown it keeps the shared row rhythm — the gold text alone
   marks it, so the list never crowds. */
.site-nav a.bang-nav-item { color: var(--accent); }
.site-nav a.bang-nav-item:hover { color: var(--accent-hover); }
.site-nav a.bang-nav-item::after { display: none; }

/* --- Hero --- */
.op-hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
  text-align: center;
}
.op-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 55%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(179, 32, 42, 0.1), transparent 70%);
  pointer-events: none;
}
.op-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.op-hero-kicker { margin-bottom: 26px; }
.op-hero-mark {
  position: relative;
  width: min(100%, 600px);
  aspect-ratio: 16 / 9;
  background: #FFFFFF;
  border: 1px solid var(--accent-line);
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
}
.op-hero-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--accent), var(--accent)) 10px 10px / 20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 10px 10px / 1px 20px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(100% - 30px) 10px / 20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(100% - 11px) 10px / 1px 20px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 10px calc(100% - 11px) / 20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 10px calc(100% - 30px) / 1px 20px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(100% - 30px) calc(100% - 11px) / 20px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) calc(100% - 11px) calc(100% - 30px) / 1px 20px no-repeat;
}
.op-hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.op-hero-title {
  font-size: var(--step-4);
  margin-bottom: 20px;
}
.op-hero-mission {
  max-width: 46ch;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: var(--step-1);
  line-height: 1.6;
  margin-bottom: 36px;
}
.op-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* --- Why --- */
.op-why {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-1) 100%);
}
.op-why-inner { max-width: 760px; margin-inline: auto; }
.op-why-copy p {
  color: var(--text-muted);
  font-size: var(--step-1);
  line-height: 1.65;
}
.op-why-copy p + p { margin-top: 20px; }
.op-why-copy strong { color: var(--text); font-weight: 600; }
.op-entity-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.op-entity-note::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--op-red);
  box-shadow: 0 0 0 4px var(--op-red-soft);
}

/* --- Ethos pull-quote --- */
.op-ethos {
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(179, 32, 42, 0.07), transparent 62%),
    var(--bg);
}
.op-ethos-mark {
  width: min(300px, 72%);
  margin: 0 auto 36px;
  display: block;
}
.op-ethos-rule {
  width: 64px;
  height: 2px;
  background: var(--op-red);
  border: 0;
  margin: 0 auto 26px;
}
.op-ethos-quote {
  font-size: var(--step-4);
  letter-spacing: 0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.op-ethos p {
  max-width: 560px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: var(--step-1);
  line-height: 1.65;
}

/* --- Support CTA --- */
.op-support {
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(800px 420px at 50% 110%, rgba(179, 32, 42, 0.09), transparent 62%),
    var(--bg);
}
.op-support-lede {
  max-width: 560px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: var(--step-1);
  line-height: 1.65;
}
.op-support-actions { margin-top: 32px; }
.op-support-note {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 460px;
  margin-inline: auto;
}

/* --- Footer strip (modest, campaign-specific) --- */
.op-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-1);
  padding: 44px 0 32px;
}
.op-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.op-footer-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.1;
}
.op-footer-tagline {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.op-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.op-footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}
.op-footer-links a:hover { color: var(--accent); }
.op-footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .op-hero { padding: 96px 0 128px; }
  .op-why, .op-ethos, .op-support { padding: 112px 0; }
  .op-footer-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(1100px 600px at 30% 120%, rgba(212, 175, 55, 0.06), transparent 60%),
    var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-1);
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.channel:hover {
  border-color: var(--accent-line);
  transform: translateX(4px);
}
.channel .value-icon { width: 44px; height: 44px; }
.channel strong {
  display: block;
  font-size: var(--step-0);
  font-weight: 600;
  margin-bottom: 2px;
}
.channel span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-1);
  padding: 34px 30px;
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: #6E6653; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-1);
  padding: 72px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 340px;
}
.footer-brand .brand-mark { width: 64px; height: 64px; }
.footer-brand .brand-name { font-size: 1.35rem; }
.footer-brand .brand-motto { font-size: 0.68rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom .veteran-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.footer-bottom .veteran-line::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .section { padding: 112px 0; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .about-values .value-item:last-child { grid-column: 1 / -1; }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .quality-card:last-child { grid-column: 1 / -1; }
  .morphs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .hero { padding: 96px 0 128px; }
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 72px;
  }
  .hero-title { max-width: none; }

  .about-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
  }
  .about-values { grid-template-columns: 1fr 1fr; }

  .morphs-grid { grid-template-columns: repeat(3, 1fr); }
  .quality-grid { grid-template-columns: repeat(3, 1fr); }
  .quality-card:last-child { grid-column: auto; }

  .contact-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
  }
}

/* Desktop nav row — visible from 1024px up. The brand never shrinks and
   every label is nowrap, so at widths where the full set can't fit on one
   line the links flow onto a clean right-aligned second row instead of
   crushing, wrapping mid-phrase, or overlapping the logo. */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .header-inner { gap: 28px; }

  /* The brand lockup is untouchable: no flex compression, so the wordmark
     can never bleed into the first nav link at any desktop width. */
  .brand { flex: none; }

  .site-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 8px 24px;
    min-width: 0;
    position: static;
    background: transparent;
    border-bottom: 0;
    padding: 0;
    box-shadow: none;
  }
  .site-nav a:not(.btn) {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 0;
    position: relative;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
  .site-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
  }
  .site-nav a:not(.btn):hover { color: var(--accent); padding-left: 0; }
  .site-nav a:not(.btn):hover::after { transform: scaleX(1); }
  .site-nav .btn-nav { margin-top: 0; flex: none; white-space: nowrap; }

  /* Operation link: white plate only at desktop widths, never compressed. */
  .site-nav .op-nav-item {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 4px;
    border-bottom: 0;
  }
  .op-nav-label { display: none; }

  /* Bang Project: the elite headliner — gold hairline plate with a
     soft glow on hover. Declared after the generic link rules so the
     plate padding and glow win the cascade at equal specificity. */
  .site-nav a.bang-nav-item {
    padding: 7px 14px;
    border: 1px solid var(--accent-line);
    border-radius: 8px;
    letter-spacing: 0.14em;
    transition: color 0.22s var(--ease), border-color 0.22s var(--ease),
                background-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
  }
  .site-nav a.bang-nav-item:hover,
  .site-nav a.bang-nav-item:focus-visible {
    color: var(--accent-hover);
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.08);
    padding-left: 14px;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.16), 0 0 22px rgba(212, 175, 55, 0.22);
  }
  .site-nav a.bang-nav-item[aria-current="page"] {
    background: var(--accent-soft);
    border-color: var(--accent);
  }
}

@media (min-width: 1200px) {
  .hero-inner { gap: 96px; }
  .about-inner { gap: 96px; }
  .contact-inner { gap: 96px; }
}

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}

/* ============================================================
   MOBILE TUNING — iPhone pass (~375–430px viewport)
   Fires only below 640px; desktop (≥1024px) is untouched.
   Cards stack single-column, pairing thumbs sit ~48% side by
   side, tap targets grow past 44px, and nothing scrolls
   sideways. Brand design direction (dark/gold) is unchanged.
   ============================================================ */
@media (max-width: 640px) {
  /* --- Rhythm & type --- */
  body { background-attachment: scroll; } /* iOS Safari paint fix */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 56px 0 72px; }
  .hero-title { font-size: 2.5rem; }
  .hero-sub { font-size: var(--step-0); margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { gap: 8px 18px; }
  .about-quote { padding: 36px 24px; }
  .about-quote .display { font-size: var(--step-2); }

  /* --- Header / nav (compact dropdown, big targets) --- */
  .header-inner { min-height: 64px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 0.92rem; letter-spacing: 0.05em; }
  .brand-motto { font-size: 0.55rem; letter-spacing: 0.24em; }
  .site-nav { padding: 10px 20px 20px; }
  .site-nav a:not(.btn) { padding: 14px 8px; font-size: 0.76rem; }
  .site-nav .op-nav-item { padding: 14px 8px; }

  /* --- Morphs / season cards --- */
  .morphs-grid { gap: 22px; }
  .specimen-placard { padding: 18px 18px 22px; }
  .specimen-name { font-size: var(--step-1); }
  .specimen-no { top: 14px; left: 16px; }
  .specimen-status { bottom: 14px; left: 14px; }
  .specimen-plate-close { width: 40px; height: 40px; }

  /* Pairing gallery on phones: big plate full width, two thumbs
     side by side at ~48% each, captions wrap, taps stay big.
     The swap-on-click behavior is unchanged (buttons, not hover). */
  .specimen-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
  }
  .specimen-thumb { width: 100%; min-width: 0; }
  /* A pairing with a single secondary photo — center it instead of
     leaving a half-empty second column. */
  .specimen-thumbs .specimen-thumb:only-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(60%, 200px);
  }
  .specimen-thumb-label {
    white-space: normal;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    line-height: 1.3;
  }

  /* --- Quality / footer gear --- */
  .quality-quote { padding: 52px 18px; margin-bottom: 48px; }
  .quality-quote .display { font-size: clamp(2.4rem, 2rem + 2.6vw, 3.2rem); }
  .quality-card { padding: 28px 24px; }
  .quality-note { margin-top: 40px; }
  .footer-gear { flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; }
  .footer-gear-logos { justify-content: center; }

  /* --- Contact --- */
  .contact-form { padding: 26px 20px; }
  .channel { padding: 16px; }

  /* --- Footer --- */
  .site-footer { padding: 56px 0 32px; }
  .footer-inner { gap: 36px; }
  .footer-bottom { margin-top: 40px; }

  /* --- Operation page --- */
  .op-hero { padding: 56px 0 72px; }
  .op-hero-mark { margin-bottom: 32px; }
  .op-hero-title { font-size: var(--step-3); }
  .op-hero-actions { flex-direction: column; align-items: stretch; }
  .op-hero-actions .btn { width: 100%; }
  .op-footer { padding: 36px 0 28px; }
}

/* Small phones (≤420px): tighten the brand lockup so the header
   never nudges the menu toggle off-screen. */
@media (max-width: 420px) {
  .brand { gap: 10px; }
  .brand-name { font-size: 0.88rem; letter-spacing: 0.03em; }
  .brand-motto { font-size: 0.52rem; letter-spacing: 0.2em; }
  .hero-title { font-size: 2.25rem; }
}

/* ============================================================
   LIGHTBOX — full-screen photo viewer (shared across pages)
   Thumbnails marked .specimen-thumb or [data-lightbox] pop the
   full photo open over a dark overlay. Gold hairline frame and
   placard caption carry the same plate language as the site.
   Markup is built once by js/lightbox.js on first open.
   ============================================================ */
body.lightbox-open { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px) clamp(16px, 8vw, 110px);
  /* iOS: stop background scroll leaking through the overlay while open;
     the class on <body> is removed on close so page scroll is restored. */
  touch-action: none;
  overscroll-behavior: contain;
  background: rgba(13, 12, 10, 0.93);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.24s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox-figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: min(1080px, 100%);
  padding: 10px 10px 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.9);
  transform: scale(0.965) translateY(10px);
  transition: transform 0.28s var(--ease);
}
.lightbox.is-open .lightbox-figure { transform: none; }

.lightbox-img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(74vh, 860px);
  margin-inline: auto;
  object-fit: contain;
  border: 1px solid var(--accent-line);
  background: var(--surface-2);
  opacity: 1;
  transition: opacity 0.18s var(--ease);
}
.lightbox-img.is-loading { opacity: 0.3; }

.lightbox-caption {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--accent-line);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-muted);
}
.lightbox-count {
  margin-left: 12px;
  color: var(--accent);
  letter-spacing: 0.22em;
}
.lightbox-count[hidden] { display: none; }

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  background: rgba(13, 12, 10, 0.72);
  color: var(--accent);
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: scale(1.06);
}
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 18px; top: 50%; margin-top: -22px; }
.lightbox-next { right: 18px; top: 50%; margin-top: -22px; }
.lightbox-arrow[hidden] { display: none; }

/* Clickable plates (hero photo on the homepage) */
.hero-lightbox {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.hero-lightbox::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4'/%3E%3C/svg%3E")
    center / 16px 16px no-repeat,
    rgba(13, 12, 10, 0.72);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  pointer-events: none;
}
.hero-lightbox:hover::after,
.hero-lightbox:focus-visible::after {
  opacity: 1;
  transform: none;
}

/* Phones: arrows dock under the plate, flanking the caption */
@media (max-width: 720px) {
  .lightbox { padding: 14px 14px 88px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-img { max-height: 62vh; }
  .lightbox-prev,
  .lightbox-next { top: auto; bottom: 20px; margin-top: 0; }
  .lightbox-prev { left: calc(50% - 56px); }
  .lightbox-next { right: calc(50% - 56px); }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox-figure,
  .lightbox-img,
  .lightbox-close,
  .lightbox-arrow,
  .hero-lightbox::after {
    transition: none;
  }
}

/* ============================================================
   PRODUCED HERE AT GLM — bang.html proof gallery (Sept 2026
   A6400 hatchling batch). Photos are Jay's originals, byte-exact
   copies of the uploads — no pixel edits; lightbox shows full frame.
   ============================================================ */
.produced-group {
  margin-top: clamp(40px, 6vw, 64px);
}
.produced-group:first-of-type {
  margin-top: clamp(28px, 4vw, 40px);
}
.produced-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.produced-name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}
.produced-count {
  flex: none;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: 2px;
  padding: 5px 10px;
}
.produced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.produced-shot {
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2);
  cursor: zoom-in;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.produced-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.produced-shot::before,
.produced-shot::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent-line);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.24s var(--ease);
}
.produced-shot::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.produced-shot::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.produced-shot:hover,
.produced-shot:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent-line);
  box-shadow: 0 22px 44px -22px rgba(0, 0, 0, 0.9);
}
.produced-shot:hover::before,
.produced-shot:hover::after,
.produced-shot:focus-visible::before,
.produced-shot:focus-visible::after {
  opacity: 1;
}
.produced-note {
  margin-top: clamp(32px, 5vw, 48px);
}
@media (max-width: 480px) {
  .produced-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
}
