:root {
  --navy: #0b1d34;
  --navy-2: #132a45;
  --teal: #1e6b73;
  --teal-dark: #154e55;
  --copper: #b87333;
  --paper: #f7f3ea;
  --paper-2: #ede4d2;
  --ink: #16202a;
  --muted: #667078;
  --line: rgba(11, 29, 52, 0.16);
  --shadow: 0 28px 80px rgba(11, 29, 52, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(11, 29, 52, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(11, 29, 52, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: var(--sans);
  line-height: 1.5;
}

body::selection {
  color: var(--paper);
  background: var(--teal);
}

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

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

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(247, 243, 234, 0.14);
  color: var(--paper);
  background: rgba(11, 29, 52, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247, 243, 234, 0.38);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 24px;
}

.brand-word {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(247, 243, 234, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--paper);
}

.cart-button,
.filter,
.button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--paper);
  background: rgba(30, 107, 115, 0.78);
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  background: var(--copper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  min-height: calc(88vh - 76px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 6vw, 82px) 72px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  left: clamp(18px, 6vw, 82px);
  right: clamp(18px, 6vw, 82px);
  bottom: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--copper), transparent 34%, rgba(11, 29, 52, 0.18));
  pointer-events: none;
}

.hero::before {
  position: absolute;
  inset: 8% 0 auto 56%;
  height: 76%;
  content: "";
  background:
    radial-gradient(circle at 42% 38%, rgba(184, 115, 51, 0.16), transparent 27%),
    linear-gradient(150deg, rgba(30, 107, 115, 0.19), transparent 55%);
  border-left: 1px solid var(--line);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 0.95;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 80px;
  font-weight: 700;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 58px;
}

h3 {
  color: var(--navy);
  font-size: 30px;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 32px;
  color: #36424c;
  font-size: 21px;
}

.hero-actions,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  color: var(--paper);
  background: var(--teal);
}

.button.secondary {
  color: var(--navy);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(11, 29, 52, 0.28);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.hero-art {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 540px);
  padding: clamp(18px, 3vw, 28px);
  background: rgba(247, 243, 234, 0.72);
  box-shadow: var(--shadow);
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(11, 29, 52, 0.2);
  pointer-events: none;
}

.hero-art::before {
  inset: 12px;
}

.hero-art::after {
  inset: -18px 24px 24px -18px;
  z-index: -1;
}

.hero-art img {
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.artifact {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 154px;
  padding: 13px 14px;
  border-left: 3px solid var(--copper);
  color: var(--paper);
  background: rgba(11, 29, 52, 0.94);
  box-shadow: 0 16px 50px rgba(11, 29, 52, 0.22);
}

.artifact span {
  color: rgba(247, 243, 234, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.artifact strong {
  font-family: var(--serif);
  font-size: 28px;
}

.artifact-a {
  right: -18px;
  top: 14%;
}

.artifact-b {
  left: -22px;
  bottom: 12%;
}

.marquee {
  display: flex;
  gap: 28px;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  white-space: nowrap;
}

.marquee span {
  color: rgba(247, 243, 234, 0.86);
}

.section {
  padding: clamp(60px, 9vw, 116px) clamp(18px, 6vw, 82px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.intro-grid p:last-child {
  color: #3f4a53;
  font-size: 19px;
}

.drop-room {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(64px, 8vw, 108px) clamp(18px, 6vw, 82px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(247, 243, 234, 0.035) 1px, transparent 1px),
    #071425;
  background-size: 42px 42px;
}

.drop-image {
  position: relative;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(247, 243, 234, 0.16);
  background: rgba(247, 243, 234, 0.07);
}

.drop-image::before {
  position: absolute;
  inset: 8% auto auto -18px;
  width: 54%;
  height: 74%;
  content: "";
  border: 1px solid rgba(184, 115, 51, 0.45);
}

.drop-image img {
  position: relative;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.drop-copy h2 {
  color: var(--paper);
}

.drop-copy p {
  max-width: 720px;
  color: rgba(247, 243, 234, 0.72);
  font-size: 20px;
}

.drop-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 34px 0;
  background: rgba(247, 243, 234, 0.18);
}

.drop-metrics span {
  display: grid;
  gap: 6px;
  min-height: 118px;
  align-content: center;
  padding: 18px;
  color: rgba(247, 243, 234, 0.72);
  background: #071425;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.drop-metrics strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 0.95;
  text-transform: none;
}

.apparel-studies {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: stretch;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 82px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(184, 115, 51, 0.12), transparent 46%),
    linear-gradient(rgba(247, 243, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 243, 234, 0.04) 1px, transparent 1px),
    #071425;
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.apparel-studies .eyebrow {
  color: #94c4c8;
}

.apparel-studies h2 {
  max-width: 720px;
  color: var(--paper);
}

.apparel-studies-copy p:last-child {
  max-width: 660px;
  color: rgba(247, 243, 234, 0.74);
  font-size: 19px;
}

.study-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(247, 243, 234, 0.18);
}

.study-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto auto auto;
  min-height: 560px;
  align-content: stretch;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(247, 243, 234, 0.1), transparent 30%),
    linear-gradient(180deg, #1b1b1a, #090c10);
}

.study-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 18px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 34%, rgba(247, 243, 234, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(247, 243, 234, 0.08), rgba(7, 20, 37, 0.18));
}

.study-card::before,
.study-card::after {
  display: none;
}

.study-card::before {
  top: 48px;
  width: 48%;
  height: 176px;
  border-radius: 24% 24% 8% 8%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%),
    #22201d;
  box-shadow:
    inset 0 0 0 1px rgba(247, 243, 234, 0.08),
    0 24px 54px rgba(0, 0, 0, 0.34);
}

.study-card::after {
  top: 86px;
  z-index: 1;
  width: 72%;
  color: #c49362;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 34px);
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
}

.study-card span,
.study-card strong,
.study-card p {
  position: relative;
  z-index: 2;
  padding-inline: 22px;
}

.study-card span {
  padding-top: 22px;
  color: #94c4c8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.study-card strong {
  margin: 12px 0 10px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: 0.12em;
  line-height: 0.95;
}

.study-card p {
  margin: 0;
  padding-bottom: 22px;
  color: rgba(247, 243, 234, 0.7);
}

.study-konservat::after {
  content: "KONSERVAT";
}

.study-endling::after {
  content: "- ENDLING -";
}

.study-limulus {
  background:
    radial-gradient(circle at 50% 20%, rgba(11, 29, 52, 0.12), transparent 30%),
    linear-gradient(180deg, #8a8172, #5f584f);
}

.study-limulus::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 38%),
    #81796c;
}

.study-limulus::after {
  content: "";
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50% 50% 46% 46%;
  background:
    linear-gradient(180deg, transparent 0 76%, #2d2f31 76% 80%, transparent 80%),
    radial-gradient(ellipse at 50% 38%, #35393b 0 34%, transparent 35%),
    repeating-linear-gradient(90deg, transparent 0 12%, rgba(45, 47, 49, 0.72) 12% 14%);
  opacity: 0.9;
}

.field-table {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 0.72fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(62px, 9vw, 116px) clamp(18px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(184, 115, 51, 0.08), transparent 42%),
    var(--paper);
}

.field-table-copy p:last-child {
  max-width: 620px;
  color: #46525d;
  font-size: 19px;
}

.field-drawer {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(11, 29, 52, 0.2);
  background:
    linear-gradient(rgba(11, 29, 52, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 29, 52, 0.045) 1px, transparent 1px),
    #ebe0cc;
  background-size: 28px 28px;
  box-shadow:
    inset 0 0 0 18px rgba(247, 243, 234, 0.72),
    0 30px 80px rgba(11, 29, 52, 0.16);
  overflow: hidden;
}

.field-drawer::before,
.field-drawer::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.field-drawer::before {
  inset: 34px;
  border: 1px solid rgba(11, 29, 52, 0.16);
}

.field-drawer::after {
  left: 11%;
  right: 11%;
  bottom: 21%;
  height: 12px;
  background: rgba(11, 29, 52, 0.82);
  box-shadow: 0 12px 0 rgba(184, 115, 51, 0.32);
}

.drawer-label {
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 2;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer-pin {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 8px rgba(184, 115, 51, 0.16);
}

.pin-a {
  right: 20%;
  top: 22%;
}

.pin-b {
  left: 22%;
  bottom: 28%;
}

.drawer-object {
  position: absolute;
  display: block;
}

.object-shell {
  left: 50%;
  top: 44%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 20deg, #3f2a1e, #c69a66, #f1d3a4, #533326, #b67542, #3f2a1e);
  box-shadow:
    inset 0 0 0 16px rgba(11, 29, 52, 0.16),
    0 28px 54px rgba(11, 29, 52, 0.24);
  transform: translate(-50%, -50%) rotate(-9deg);
}

.object-slab {
  right: 12%;
  bottom: 13%;
  width: 28%;
  height: 24%;
  border-radius: 44% 52% 38% 48%;
  background: radial-gradient(ellipse at center, #f4e0bf 0 18%, #8fb4ad 18% 32%, #d7ad74 32% 46%, #4e6f70 46% 62%, #f7f3ea 62%);
  box-shadow: 0 18px 34px rgba(11, 29, 52, 0.18);
  transform: rotate(12deg);
}

.object-label {
  left: 13%;
  top: 18%;
  width: 28%;
  height: 18%;
  background:
    linear-gradient(90deg, transparent 0 72%, var(--copper) 72% 78%, transparent 78%),
    repeating-linear-gradient(180deg, var(--paper) 0 28%, rgba(11, 29, 52, 0.2) 28% 30%, var(--paper) 30% 58%);
  box-shadow: 10px 10px 0 rgba(11, 29, 52, 0.08);
  transform: rotate(-4deg);
}

.field-notes {
  display: grid;
  gap: 1px;
  background: rgba(11, 29, 52, 0.16);
}

.field-notes article {
  display: grid;
  gap: 12px;
  min-height: 156px;
  align-content: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.32);
}

.field-notes span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.field-notes h3 {
  margin-bottom: 0;
}

.field-notes p {
  margin-bottom: 0;
  color: #4d5962;
}

.section-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.filter {
  min-height: 38px;
  padding: 0 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.filter.is-active {
  color: var(--paper);
  background: var(--navy);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: grid;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px var(--line);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(11, 29, 52, 0.22), 0 22px 54px rgba(11, 29, 52, 0.13);
  transform: translateY(-4px);
}

.product-card.featured {
  grid-column: span 2;
}

.product-media {
  position: relative;
  min-height: 280px;
  background:
    radial-gradient(circle at 50% 44%, var(--media-glow), transparent 34%),
    linear-gradient(145deg, var(--media-a), var(--media-b));
  overflow: hidden;
}

.product-media img,
.product-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.product-card:hover .product-media img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.045);
}

.product-archive-tee .product-media,
.product-hoodie .product-media,
.product-coastal-pledge-tee .product-media {
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 36%, rgba(247, 243, 234, 0.1), transparent 36%),
    linear-gradient(180deg, #12161b, #071425);
}

.product-archive-tee .product-media img,
.product-hoodie .product-media img,
.product-coastal-pledge-tee .product-media img {
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
}

.product-card:hover.product-archive-tee .product-media img,
.product-card:hover.product-hoodie .product-media img,
.product-card:hover.product-coastal-pledge-tee .product-media img {
  transform: scale(1.015);
}

.product-coastal-pledge-tee .product-media {
  background:
    radial-gradient(circle at 50% 36%, rgba(11, 29, 52, 0.08), transparent 36%),
    linear-gradient(180deg, #c1b8a8, #81776a);
}

.product-media::before {
  position: absolute;
  inset: 12%;
  z-index: 1;
  content: "";
  border: 1px solid rgba(247, 243, 234, 0.28);
}

.product-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 20, 37, 0.04), rgba(7, 20, 37, 0.38)),
    radial-gradient(circle at 24% 18%, rgba(247, 243, 234, 0.18), transparent 30%);
  pointer-events: none;
}

.product-archive-tee .product-media::after,
.product-hoodie .product-media::after,
.product-coastal-pledge-tee .product-media::after,
.product-archive-tee.product-hero-media::after,
.product-hoodie.product-hero-media::after,
.product-coastal-pledge-tee.product-hero-media::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 20, 37, 0.02), rgba(7, 20, 37, 0.16)),
    radial-gradient(circle at 50% 28%, rgba(247, 243, 234, 0.08), transparent 28%);
}

.product-archive-tee .product-media::after,
.product-archive-tee.product-hero-media::after {
  content: "";
}

.product-hoodie .product-media::after,
.product-hoodie.product-hero-media::after {
  content: "";
}

.product-coastal-pledge-tee .product-media::after,
.product-coastal-pledge-tee.product-hero-media::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0.06), rgba(7, 20, 37, 0.12)),
    radial-gradient(circle at 50% 32%, rgba(247, 243, 234, 0.18), transparent 29%);
}

.media-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: rgba(247, 243, 234, 0.82);
  background: rgba(11, 29, 52, 0.52);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-rule {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  height: 1px;
  background: rgba(247, 243, 234, 0.28);
}

.product-info {
  display: grid;
  gap: 16px;
  align-content: space-between;
  padding: 18px;
}

.product-kicker {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-info h3 {
  margin-bottom: 8px;
  font-size: 32px;
}

.product-info p {
  margin-bottom: 0;
  color: #4d5962;
  font-size: 14px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.price {
  color: var(--navy);
  font-weight: 900;
}

.add-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.add-button {
  color: var(--paper);
  background: var(--teal);
}

.ghost-button {
  color: var(--navy);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(11, 29, 52, 0.22);
}

.specimen-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(240px, 0.5fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding: clamp(62px, 9vw, 118px) clamp(18px, 6vw, 82px);
  color: var(--paper);
  background:
    linear-gradient(rgba(247, 243, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 243, 234, 0.04) 1px, transparent 1px),
    var(--navy);
  background-size: 34px 34px;
}

.specimen-band .eyebrow,
.conservation-card .eyebrow {
  color: #94c4c8;
}

.specimen-band h2,
.specimen-band h3 {
  color: var(--paper);
}

.specimen-copy p {
  max-width: 680px;
  color: rgba(247, 243, 234, 0.74);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-bottom: 2px solid var(--copper);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.specimen-band .text-link {
  color: var(--paper);
}

.specimen-plate {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
  border: 1px solid rgba(247, 243, 234, 0.17);
  background:
    radial-gradient(circle at 50% 44%, rgba(184, 115, 51, 0.22), transparent 34%),
    rgba(247, 243, 234, 0.05);
}

.specimen-plate::before,
.specimen-plate::after {
  position: absolute;
  content: "";
}

.specimen-plate::before {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 10deg, #3a281e, #c99863, #efd1a3, #4d3325, #b87542, #3a281e);
  box-shadow:
    inset 0 0 0 18px rgba(11, 29, 52, 0.2),
    0 30px 70px rgba(0, 0, 0, 0.28);
}

.specimen-plate::after {
  left: 17%;
  right: 17%;
  bottom: 17%;
  height: 12px;
  background: var(--copper);
  opacity: 0.72;
}

.specimen-plate span {
  position: absolute;
  display: block;
  border: 1px solid rgba(247, 243, 234, 0.32);
}

.specimen-plate span:nth-child(1) {
  inset: 24px;
}

.specimen-plate span:nth-child(2) {
  width: 42%;
  height: 1px;
  right: 24px;
  top: 34%;
}

.specimen-plate span:nth-child(3) {
  width: 1px;
  height: 36%;
  left: 34%;
  bottom: 24px;
}

.facts-panel {
  margin: 0;
  border-top: 1px solid rgba(247, 243, 234, 0.24);
}

.facts-panel div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(247, 243, 234, 0.24);
}

.facts-panel dt {
  color: #94c4c8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-panel dd {
  margin: 0;
}

.conservation {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.95fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: stretch;
  background: var(--paper-2);
}

.conservation-card {
  padding: clamp(26px, 4vw, 42px);
  color: var(--paper);
  background: var(--navy);
}

.conservation-card h2 {
  color: var(--paper);
}

.conservation-card p:last-child {
  color: rgba(247, 243, 234, 0.78);
  font-size: 18px;
}

.ledger {
  display: grid;
  align-content: center;
  border-top: 1px solid rgba(11, 29, 52, 0.22);
}

.ledger-row {
  display: grid;
  grid-template-columns: 1fr 0.55fr 0.85fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11, 29, 52, 0.22);
}

.ledger-row.head {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sourcing .section-heading {
  align-items: start;
}

.sourcing .section-heading > p {
  max-width: 420px;
  color: #4d5962;
  font-size: 18px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(11, 29, 52, 0.16);
}

.policy-grid article {
  display: grid;
  min-height: 330px;
  align-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(30, 107, 115, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.28);
}

.policy-grid span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
}

.policy-grid h3 {
  max-width: 320px;
  margin: auto 0 14px;
  font-size: 36px;
}

.policy-grid p {
  margin-bottom: 0;
  color: #4d5962;
}

.launch-state {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 6vw, 82px);
  color: var(--paper);
  background: var(--navy);
}

.launch-state .eyebrow {
  color: #94c4c8;
}

.launch-state h2 {
  color: var(--paper);
}

.launch-state ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(247, 243, 234, 0.22);
}

.launch-state li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(247, 243, 234, 0.22);
  color: rgba(247, 243, 234, 0.76);
}

.launch-state li span {
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journal article {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px var(--line);
}

.journal article span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal article h3 {
  margin: 16px 0 12px;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.68fr);
  gap: 34px;
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 6vw, 82px);
  color: var(--paper);
  background: var(--teal-dark);
}

.newsletter h2 {
  margin-bottom: 0;
  color: var(--paper);
}

.newsletter .eyebrow {
  color: #c9e4e5;
}

.signup label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247, 243, 234, 0.38);
  padding: 0 14px;
  color: var(--paper);
  background: rgba(11, 29, 52, 0.24);
  outline: none;
}

.signup input::placeholder {
  color: rgba(247, 243, 234, 0.56);
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(247, 243, 234, 0.14);
}

.support-strip span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 16px;
  color: rgba(247, 243, 234, 0.74);
  background: #071425;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.record-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(7, 20, 37, 0.72);
}

.record-modal.is-open {
  display: grid;
}

.record-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  width: min(100%, 980px);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  padding: clamp(20px, 3vw, 34px);
  background: var(--paper);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.record-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--paper);
  background: var(--navy);
  cursor: pointer;
  font-size: 24px;
}

.record-media {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 50% 44%, var(--media-glow), transparent 34%),
    linear-gradient(145deg, var(--media-a), var(--media-b));
  overflow: hidden;
}

.record-media::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(247, 243, 234, 0.32);
}

.record-media::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--object-w);
  height: var(--object-h);
  content: "";
  background: var(--object);
  border-radius: var(--object-radius);
  box-shadow: var(--object-shadow);
  transform: translate(-50%, -50%) rotate(var(--object-rotate));
}

.record-copy {
  align-self: center;
  padding-right: 26px;
}

.record-copy h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.record-copy p {
  color: #44515b;
  font-size: 18px;
}

.record-facts {
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.record-facts div {
  display: grid;
  grid-template-columns: minmax(96px, 0.45fr) 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.record-facts dt {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.record-facts dd {
  margin: 0;
}

.record-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  justify-content: end;
  background: rgba(11, 29, 52, 0.42);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 430px);
  min-height: 100%;
  background: var(--paper);
  box-shadow: -28px 0 70px rgba(11, 29, 52, 0.22);
}

.cart-head,
.cart-foot {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h2 {
  margin: 0;
  font-size: 36px;
}

.cart-head button {
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--paper);
  background: var(--navy);
  cursor: pointer;
  font-size: 24px;
}

.cart-items {
  padding: 22px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item strong {
  display: block;
}

.cart-item span {
  color: var(--muted);
}

.cart-line-actions {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.cart-line-actions button {
  border: 0;
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 900;
}

.cart-total span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: auto auto minmax(0, 560px);
  gap: 28px;
  justify-content: space-between;
  align-items: start;
  padding: 36px clamp(18px, 6vw, 82px);
  color: rgba(247, 243, 234, 0.74);
  background: #071425;
}

.footer strong {
  display: block;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.18em;
}

.footer p {
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 280px;
  color: rgba(247, 243, 234, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--paper);
}

.product-page-shell {
  background:
    linear-gradient(90deg, rgba(11, 29, 52, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(11, 29, 52, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.product-page-shell::before {
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: -1;
  height: 42vh;
  content: "";
  background: linear-gradient(180deg, rgba(30, 107, 115, 0.11), transparent);
  pointer-events: none;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px clamp(18px, 6vw, 82px) 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-breadcrumb a {
  color: var(--teal-dark);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(30px, 6vw, 78px) clamp(18px, 6vw, 82px) clamp(54px, 7vw, 96px);
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-hero-media {
  position: relative;
  min-height: clamp(440px, 58vw, 720px);
  border: 1px solid rgba(11, 29, 52, 0.18);
  background:
    radial-gradient(circle at 50% 44%, var(--media-glow), transparent 34%),
    linear-gradient(145deg, var(--media-a), var(--media-b));
  box-shadow:
    inset 0 0 0 18px rgba(247, 243, 234, 0.16),
    var(--shadow);
  overflow: hidden;
}

.product-archive-tee.product-hero-media,
.product-hoodie.product-hero-media,
.product-coastal-pledge-tee.product-hero-media {
  min-height: clamp(520px, 64vw, 780px);
}

.product-archive-tee.product-hero-media img,
.product-hoodie.product-hero-media img,
.product-coastal-pledge-tee.product-hero-media img {
  inset: clamp(18px, 3vw, 34px);
  width: calc(100% - clamp(36px, 6vw, 68px));
  height: calc(100% - clamp(36px, 6vw, 68px));
  object-fit: contain;
}

.product-hero-media::before {
  position: absolute;
  inset: clamp(18px, 3vw, 34px);
  z-index: 1;
  content: "";
  border: 1px solid rgba(247, 243, 234, 0.32);
}

.product-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 20, 37, 0.02), rgba(7, 20, 37, 0.26)),
    radial-gradient(circle at 76% 18%, rgba(184, 115, 51, 0.22), transparent 26%);
  pointer-events: none;
}

.product-hero-media .specimen-scale {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  height: 10px;
}

.product-hero-media .specimen-scale span {
  border-left: 1px solid rgba(247, 243, 234, 0.72);
  border-bottom: 1px solid rgba(247, 243, 234, 0.72);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.gallery-strip span {
  display: grid;
  place-items: center;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.3);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buy-panel {
  position: sticky;
  top: 104px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(247, 243, 234, 0.78);
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 22px 70px rgba(11, 29, 52, 0.12);
  backdrop-filter: blur(10px);
}

.buy-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(52px, 6vw, 86px);
}

.product-description {
  color: #3f4a53;
  font-size: 18px;
}

.buy-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.buy-meta span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buy-meta strong {
  color: var(--navy);
  font-size: 22px;
}

.placeholder-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.placeholder-selects button {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 0 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.placeholder-selects button.is-selected {
  color: var(--paper);
  background: var(--navy);
}

.buy-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(11, 29, 52, 0.16);
}

.product-proof-strip span {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.product-record-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 82px);
  color: var(--paper);
  background: var(--navy);
}

.product-record-section h2 {
  color: var(--paper);
}

.product-facts {
  margin: 0;
  border-top: 1px solid rgba(247, 243, 234, 0.24);
}

.product-facts div {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 243, 234, 0.24);
}

.product-facts dt {
  color: #94c4c8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  color: rgba(247, 243, 234, 0.82);
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(11, 29, 52, 0.16);
}

.product-info-grid article {
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper-2);
}

.product-info-grid span,
.related-card span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info-grid h3 {
  margin: 20px 0 14px;
}

.product-info-grid p {
  color: #4a5660;
}

.product-story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
}

.product-story-band p:last-child {
  color: #3f4a53;
  font-size: 19px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-card {
  display: grid;
  gap: 12px;
  min-height: 180px;
  align-content: space-between;
  padding: 22px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px var(--line);
}

.related-card strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 0.98;
}

.related-card small {
  color: var(--muted);
  font-weight: 900;
}

.not-found-page {
  min-height: 100vh;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(247, 243, 234, 0.035) 1px, transparent 1px),
    var(--navy);
  background-size: 42px 42px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: clamp(44px, 8vw, 88px);
  padding: clamp(28px, 6vw, 82px);
}

.not-found .brand {
  width: fit-content;
}

.not-found .brand-mark {
  border-color: rgba(247, 243, 234, 0.38);
}

.not-found h1 {
  max-width: 820px;
  color: var(--paper);
  font-size: clamp(62px, 9vw, 126px);
}

.not-found p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(247, 243, 234, 0.74);
  font-size: 20px;
}

.not-found .button.secondary {
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(247, 243, 234, 0.32);
}

.static-page {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(247, 243, 234, 0.035) 1px, transparent 1px),
    var(--navy);
  background-size: 42px 42px;
}

.static-header {
  position: relative;
}

.static-shell {
  display: grid;
  gap: clamp(42px, 7vw, 86px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 6vw, 82px) clamp(70px, 10vw, 128px);
}

.static-hero {
  display: grid;
  gap: 20px;
  max-width: 980px;
}

.static-hero h1 {
  max-width: 980px;
  color: var(--paper);
  font-size: clamp(66px, 11vw, 142px);
}

.static-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(247, 243, 234, 0.74);
  font-size: 21px;
}

.static-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(247, 243, 234, 0.18);
}

.static-grid article {
  display: grid;
  min-height: 320px;
  align-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(30, 107, 115, 0.18), transparent 44%),
    #071425;
}

.static-grid span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
}

.static-grid h2 {
  max-width: 360px;
  color: var(--paper);
  font-size: clamp(34px, 4vw, 50px);
}

.static-grid p {
  color: rgba(247, 243, 234, 0.72);
}

.ledger-page {
  border-top: 1px solid rgba(247, 243, 234, 0.22);
}

.ledger-page .ledger-row {
  border-bottom-color: rgba(247, 243, 234, 0.22);
}

.ledger-page .ledger-row.head {
  color: #94c4c8;
}

.faq-list {
  display: grid;
  gap: 1px;
  max-width: 980px;
  background: rgba(247, 243, 234, 0.18);
}

.faq-list details {
  padding: 24px;
  background: #071425;
}

.faq-list summary {
  cursor: pointer;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
}

.faq-list p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(247, 243, 234, 0.72);
}

.admin-page {
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(247, 243, 234, 0.035) 1px, transparent 1px),
    var(--navy);
  background-size: 42px 42px;
}

.admin-shell {
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  padding: clamp(34px, 6vw, 82px);
  color: var(--paper);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.admin-hero h1 {
  max-width: 960px;
  color: var(--paper);
  font-size: clamp(64px, 10vw, 132px);
}

.admin-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(247, 243, 234, 0.74);
  font-size: 21px;
}

.admin-status {
  display: grid;
  gap: 1px;
  background: rgba(247, 243, 234, 0.16);
}

.admin-status span {
  display: grid;
  gap: 6px;
  min-height: 112px;
  align-content: center;
  padding: 20px;
  background: #071425;
  color: rgba(247, 243, 234, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-status strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
}

.status-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 22px;
  background: var(--line);
}

.status-board button {
  display: grid;
  gap: 4px;
  min-height: 88px;
  border: 0;
  align-content: center;
  padding: 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.status-board strong {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.status-board span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-warning {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-left: 4px solid var(--copper);
  background: rgba(247, 243, 234, 0.08);
}

.admin-warning strong {
  color: var(--copper);
  text-transform: uppercase;
}

.admin-warning p {
  margin: 0;
  color: rgba(247, 243, 234, 0.74);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 18px;
}

.admin-card,
.inventory-panel,
.label-studio {
  padding: clamp(22px, 4vw, 38px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.admin-card h2,
.inventory-panel h2,
.label-studio h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.listing-form,
.section-manager {
  display: grid;
  gap: 18px;
}

.listing-form label,
.section-form {
  display: grid;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-form input,
.listing-form select,
.listing-form textarea,
.section-form input,
.inventory-panel select,
.admin-search {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  outline: none;
}

.inventory-panel .filters {
  align-items: center;
}

.admin-search {
  min-width: min(100%, 240px);
}

.file-import {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.file-import input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.listing-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-actions,
.section-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.section-list {
  display: grid;
  gap: 8px;
}

.section-list button {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 0 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  font-weight: 800;
}

.section-list strong {
  color: var(--teal-dark);
}

.inventory-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.inventory-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.28);
}

.inventory-table th,
.inventory-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.inventory-table th {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-table td strong,
.inventory-table td span {
  display: block;
}

.inventory-table td span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.inventory-table td button,
.inventory-table td a {
  display: inline-flex;
  margin: 0 6px 6px 0;
  border: 0;
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 8px;
  color: var(--paper) !important;
  background: var(--navy);
  font-size: 11px !important;
}

.status-ready {
  background: var(--teal) !important;
}

.status-listed {
  background: var(--copper) !important;
}

.status-sold,
.status-archived {
  background: #56616b !important;
}

.label-sheet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.label-sheet[data-label-size="compact"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.label-sheet[data-label-size="large"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qr-label {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 136px;
  padding: 14px;
  background: var(--paper-2);
  box-shadow: inset 0 0 0 1px var(--line);
  break-inside: avoid;
}

.label-sheet[data-label-size="compact"] .qr-label {
  grid-template-columns: 78px 1fr;
  min-height: 100px;
  padding: 10px;
}

.label-sheet[data-label-size="large"] .qr-label {
  grid-template-columns: 132px 1fr;
  min-height: 172px;
  padding: 18px;
}

.qr-box {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  background: var(--paper);
}

.label-sheet[data-label-size="compact"] .qr-box {
  width: 78px;
  height: 78px;
}

.label-sheet[data-label-size="large"] .qr-box {
  width: 132px;
  height: 132px;
}

.qr-box img,
.qr-box canvas {
  width: 96px !important;
  height: 96px !important;
}

.label-sheet[data-label-size="compact"] .qr-box img,
.label-sheet[data-label-size="compact"] .qr-box canvas {
  width: 72px !important;
  height: 72px !important;
}

.label-sheet[data-label-size="large"] .qr-box img,
.label-sheet[data-label-size="large"] .qr-box canvas {
  width: 124px !important;
  height: 124px !important;
}

.qr-label span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qr-label strong {
  display: block;
  margin: 6px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 0.95;
}

.qr-label small,
.empty-labels,
.qr-fallback {
  color: var(--muted);
  font-size: 12px;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(247, 243, 234, 0.16);
}

.workflow-strip article {
  min-height: 250px;
  padding: 24px;
  background: #071425;
}

.workflow-strip span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 42px;
}

.workflow-strip h3 {
  margin: 18px 0 12px;
  color: var(--paper);
}

.workflow-strip p {
  color: rgba(247, 243, 234, 0.72);
}

.sync-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: var(--paper-2);
}

.sync-panel h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.sync-panel p {
  color: #4a5660;
}

.sync-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.sync-list article,
.sync-list > p {
  padding: 18px;
  background: rgba(255, 255, 255, 0.34);
}

.sync-list span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sync-list strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.sync-list small {
  color: var(--muted);
}

@media (max-width: 1050px) {
  .hero,
  .intro-grid,
  .drop-room,
  .apparel-studies,
  .field-table,
  .admin-hero,
  .admin-grid,
  .sync-panel,
  .specimen-band,
  .conservation,
  .newsletter,
  .launch-state,
  .record-panel,
  .product-detail,
  .product-record-section,
  .product-story-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 760px;
    font-size: 68px;
  }

  h2 {
    font-size: 54px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buy-panel {
    position: static;
  }

  .policy-grid,
  .static-grid {
    grid-template-columns: 1fr;
  }

  .drop-metrics,
  .study-board,
  .support-strip,
  .product-proof-strip,
  .product-info-grid,
  .status-board,
  .related-grid,
  .label-sheet,
  .label-sheet[data-label-size="compact"],
  .label-sheet[data-label-size="large"],
  .workflow-strip {
    grid-template-columns: 1fr;
  }

  .record-media {
    min-height: 320px;
  }

  .record-copy {
    padding-right: 0;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand-word {
    font-size: 19px;
    letter-spacing: 0.14em;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 26px;
  }

  .marquee {
    justify-content: start;
    font-size: 24px;
  }

  .artifact {
    position: static;
    margin-top: 10px;
  }

  .product-grid,
  .journal-grid,
  .field-notes {
    grid-template-columns: 1fr;
  }

  .field-drawer {
    min-height: 390px;
  }

  .product-hero-media .specimen-scale {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .product-bottom {
    display: grid;
    align-items: start;
  }

  .product-actions {
    width: 100%;
  }

  .product-actions button,
  .product-actions a {
    flex: 1;
  }

  .section-heading,
  .footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .filter {
    width: 100%;
  }

  .ledger-row,
  .facts-panel div,
  .record-facts div,
  .product-facts div,
  .admin-warning,
  .form-row,
  .launch-state li,
  .signup div {
    grid-template-columns: 1fr;
  }

  .record-modal {
    padding: 12px;
  }

  .record-panel {
    max-height: calc(100vh - 24px);
  }

  .static-hero h1 {
    font-size: 58px;
  }
}

@media print {
  body {
    background: #fff;
  }

  .site-header,
  .admin-hero,
  .admin-warning,
  .admin-grid,
  .inventory-panel,
  .workflow-strip,
  .label-studio .section-heading {
    display: none !important;
  }

  .admin-shell,
  .label-studio {
    display: block;
    padding: 0;
    color: #000;
    background: #fff;
    box-shadow: none;
  }

  .label-sheet {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .label-sheet[data-label-size="compact"],
  .label-sheet[data-label-size="large"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .qr-label {
    min-height: 1.6in;
    padding: 0.12in;
    background: #fff;
    box-shadow: inset 0 0 0 1px #000;
  }

  .sync-panel,
  .status-board,
  .file-import,
  .admin-search {
    display: none;
  }
}
