/* =========================================================
   SOUTHCOVE PEPTIDES — Design System v1
   Aesthetic: Editorial. Coastal restraint. Considered.
   Type pairing: Instrument Serif (display) + DM Sans (body)
   ========================================================= */

:root {
  /* ---- Color tokens ---- */
  --ink:           #0A0A0A;
  --ink-soft:      #2A2A2A;
  --navy:          #1B3A5F;
  --navy-dark:     #0F2747;
  --navy-soft:     #4A6585;
  --navy-tint:     #D6DEE9;
  --paper:         #F4EFE3;
  --paper-tint:    #ECE6D6;
  --paper-elev:    #FBF7EC;
  --stone:         #D6CFC1;
  --stone-soft:    #E5DFD0;
  --muted:         #6B6359;
  --muted-soft:    #8B847A;
  --white-warm:    #FCFAF3;

  /* ---- Type tokens ---- */
  --font-display:  'Instrument Serif', 'Times New Roman', serif;
  --font-body:     'DM Sans', -apple-system, sans-serif;

  /* ---- Spacing ---- */
  --gutter:        clamp(20px, 4vw, 56px);
  --section-y:     clamp(72px, 10vw, 144px);
  --section-y-sm:  clamp(48px, 6vw, 80px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  font-feature-settings: "ss01", "ss02", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* =========================================================
   Layout
   ========================================================= */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow { max-width: 980px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-sm { padding-top: var(--section-y-sm); padding-bottom: var(--section-y-sm); }

.rule { width: 100%; height: 1px; background: var(--stone-soft); border: 0; }
.rule-ink { width: 100%; height: 1px; background: var(--ink); border: 0; opacity: 0.12; }

/* =========================================================
   Typography
   ========================================================= */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-block;
}
.eyebrow-muted { color: var(--muted); }

.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 8.5vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display-xl em { font-style: italic; color: var(--navy); font-weight: 400; }

.display-l {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.display-l em { font-style: italic; color: var(--navy); }

.display-m {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--muted);
  max-width: 56ch;
}

.body { font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.body-muted { color: var(--muted); }
.small { font-size: 13px; line-height: 1.55; color: var(--muted); letter-spacing: 0.01em; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--stone-soft);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
}
.brand-lockup {
  display: flex; align-items: center; gap: 12px;
}
.brand-lockup .mark { width: 36px; height: 36px; }
.brand-lockup .wordmark {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--ink);
  line-height: 1;
}
.brand-lockup .wordmark .sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

.nav-primary { display: flex; gap: 36px; }
.nav-primary a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 200ms ease;
}
.nav-primary a:hover { color: var(--navy); }
.nav-primary a.active { color: var(--navy); }
.nav-primary a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--navy);
}

.nav-end { display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 500; }
.nav-end a { color: var(--muted); transition: color 200ms ease; }
.nav-end a:hover { color: var(--ink); }
.nav-end .cart {
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-end .cart-count {
  font-size: 11px; color: var(--muted);
  border: 1px solid var(--stone);
  padding: 2px 6px;
  border-radius: 999px;
}

.announce {
  background: var(--navy-dark); color: var(--paper);
  text-align: center; padding: 9px var(--gutter);
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
}
.announce em { font-style: normal; color: #B8C7DE; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid transparent;
  transition: all 200ms ease;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--navy); }
.btn-navy { background: var(--navy); color: var(--paper); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline-paper { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-outline-paper:hover { background: var(--paper); color: var(--ink); }
.btn-arrow::after {
  content: "→"; display: inline-block; transition: transform 200ms ease;
}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(4px); }

/* =========================================================
   Hero (editorial)
   ========================================================= */
.hero {
  background: var(--paper);
  padding-top: clamp(72px, 11vw, 160px);
  padding-bottom: clamp(56px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero-text .eyebrow { margin-bottom: 32px; }
.hero-text h1 { margin-bottom: 32px; }
.hero-text .lede { margin-bottom: 40px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-elev);
  border: 1px solid var(--stone-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-visual img { width: 80%; height: 90%; object-fit: contain; }
.hero-visual .caption {
  position: absolute; left: 24px; bottom: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-visual .caption .label { font-size: 10px; letter-spacing: 0.24em; color: var(--muted); text-transform: uppercase; font-weight: 500; }
.hero-visual .caption .name { font-family: var(--font-display); font-size: 22px; color: var(--ink); line-height: 1; }
.hero-visual .lot {
  position: absolute; right: 24px; top: 20px;
  font-size: 9.5px; letter-spacing: 0.24em; color: var(--muted); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.hero-visual .lot::before { content: ""; width: 6px; height: 6px; background: var(--navy); border-radius: 50%; }

/* Hero meta strip */
.hero-meta {
  margin-top: clamp(72px, 9vw, 120px);
  padding-top: 28px;
  border-top: 1px solid var(--stone-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.hero-meta-item {
  display: flex; flex-direction: column; gap: 6px;
}
.hero-meta-item .label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--muted);
}
.hero-meta-item .value {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.1; color: var(--ink);
}

/* =========================================================
   Brand statement section
   ========================================================= */
.brand-statement {
  background: var(--paper-tint);
  text-align: center;
  position: relative;
}
.brand-statement .eyebrow { margin-bottom: 32px; }
.brand-statement .quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto;
}
.brand-statement .quote em { color: var(--navy); font-style: italic; }
.brand-statement .signoff {
  margin-top: 40px;
  font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Wave divider — subtle nod to the brand mark */
.wave-divider {
  display: block;
  width: 100%;
  height: 32px;
  margin-top: 56px;
  opacity: 0.4;
}

/* =========================================================
   Featured products
   ========================================================= */
.lineup-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 768px) { .lineup-head { grid-template-columns: 1fr; gap: 24px; } }
.lineup-head .eyebrow { margin-bottom: 14px; }
.lineup-head h2 { margin-bottom: 0; }
.lineup-head .right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
@media (min-width: 769px) { .lineup-head .right { align-items: flex-end; } }
.lineup-head .right .small { max-width: 38ch; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-soft);
  border-top: 1px solid var(--stone-soft);
  border-bottom: 1px solid var(--stone-soft);
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--paper);
  padding: 28px 24px 26px;
  display: flex; flex-direction: column;
  transition: background 220ms ease;
  cursor: pointer;
}
.product-card:hover { background: var(--paper-elev); }
.product-card .vial-wrap {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--white-warm);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.product-card .vial-wrap img {
  width: 70%; height: 90%; object-fit: contain;
  transition: transform 350ms ease;
}
.product-card:hover .vial-wrap img { transform: scale(1.04); }
.product-card .vial-wrap .tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); font-weight: 500;
}
.product-card .pcat {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  margin-bottom: 8px;
}
.product-card .pname {
  font-family: var(--font-display);
  font-size: 26px; line-height: 1; letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 6px;
}
.product-card .pformat {
  font-size: 12px; color: var(--muted);
  margin-bottom: 18px;
}
.product-card .pbottom {
  margin-top: auto;
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--stone-soft);
}
.product-card .price {
  font-family: var(--font-display);
  font-size: 22px; color: var(--ink); letter-spacing: -0.01em;
}
.product-card .price .strike {
  font-family: var(--font-body);
  font-size: 12px; color: var(--muted-soft);
  text-decoration: line-through;
  margin-right: 8px;
}
.product-card .cta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy); font-weight: 500;
}

/* =========================================================
   Pillars / Why Southcove
   ========================================================= */
.pillars { background: var(--paper-tint); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar { display: flex; flex-direction: column; gap: 16px; }
.pillar .num {
  font-family: var(--font-display);
  font-size: 18px; color: var(--navy);
  display: flex; align-items: center; gap: 12px;
}
.pillar .num::after {
  content: ""; flex: 1; height: 1px; background: var(--stone);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15; letter-spacing: -0.012em;
  font-weight: 400; color: var(--ink);
}
.pillar p {
  font-size: 15px; line-height: 1.65; color: var(--muted);
}

/* =========================================================
   Dark CTA section
   ========================================================= */
.dark-cta {
  background: var(--navy-dark);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dark-cta .eyebrow { color: #B8C7DE; margin-bottom: 28px; }
.dark-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.04; letter-spacing: -0.02em;
  color: var(--paper); max-width: 18ch; margin: 0 auto 28px;
  font-weight: 400;
}
.dark-cta h2 em { color: #D6DEE9; font-style: italic; }
.dark-cta .lede {
  color: rgba(244, 239, 227, 0.7);
  max-width: 52ch; margin: 0 auto 40px;
}
.dark-cta .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Subtle texture in dark cta */
.dark-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(184, 199, 222, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(184, 199, 222, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* =========================================================
   Editorial split block
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 48px; } }
.split-text .eyebrow { margin-bottom: 24px; }
.split-text h2 { margin-bottom: 28px; }
.split-text p { margin-bottom: 20px; max-width: 50ch; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.split-text .small { margin-bottom: 28px; }
.split-visual {
  aspect-ratio: 4 / 5;
  background: var(--white-warm);
  border: 1px solid var(--stone-soft);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.split-visual img { width: 70%; height: 85%; object-fit: contain; }
.split-visual .meta {
  position: absolute; left: 24px; bottom: 20px;
  font-size: 10px; letter-spacing: 0.24em; color: var(--muted); text-transform: uppercase;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 64px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 32ch; }
.footer-brand .footer-mark {
  display: flex; align-items: center; gap: 12px;
}
.footer-brand .footer-mark .mark { width: 38px; height: 38px; filter: invert(1); }
.footer-brand .footer-mark .wordmark {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: 0.32em; color: var(--paper);
}
.footer-brand .footer-mark .wordmark .sub {
  display: block; font-size: 9px; letter-spacing: 0.28em;
  color: rgba(244, 239, 227, 0.55); margin-top: 4px; font-weight: 400;
}
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(244, 239, 227, 0.7); }

.footer-col h4 {
  font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(244, 239, 227, 0.55); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(244, 239, 227, 0.85); transition: color 200ms ease; }
.footer-col a:hover { color: var(--paper); }

.footer-disclaimer {
  padding-top: 36px;
  border-top: 1px solid rgba(244, 239, 227, 0.12);
  font-size: 11px; line-height: 1.7; color: rgba(244, 239, 227, 0.5);
  max-width: 78ch;
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(244, 239, 227, 0.5); letter-spacing: 0.04em;
}
@media (max-width: 540px) { .footer-bottom { flex-direction: column; gap: 8px; } }

/* =========================================================
   PDP-specific styles
   ========================================================= */
.breadcrumb {
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
  margin-bottom: 56px;
}
.breadcrumb a { color: var(--muted); transition: color 200ms ease; }
.breadcrumb a:hover { color: var(--ink); }

.pdp {
  background: var(--paper);
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: var(--section-y);
}
.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 980px) { .pdp-grid { grid-template-columns: 1fr; } }

.pdp-visual-wrap {
  position: sticky; top: 112px;
  display: flex; flex-direction: column; gap: 16px;
}
@media (max-width: 980px) { .pdp-visual-wrap { position: static; } }
.pdp-visual {
  aspect-ratio: 4 / 5;
  background: var(--white-warm);
  border: 1px solid var(--stone-soft);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.pdp-visual img { width: 65%; height: 85%; object-fit: contain; }
.pdp-visual .lot-tag {
  position: absolute; top: 24px; right: 24px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.pdp-visual .lot-tag::before { content: ""; width: 6px; height: 6px; background: var(--navy); border-radius: 50%; }

.pdp-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.pdp-thumbs .thumb {
  aspect-ratio: 1; background: var(--white-warm);
  border: 1px solid var(--stone-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.pdp-thumbs .thumb img { width: 60%; height: 80%; object-fit: contain; opacity: 0.65; transition: opacity 200ms ease; }
.pdp-thumbs .thumb:hover img { opacity: 1; }
.pdp-thumbs .thumb.active { border-color: var(--ink); }
.pdp-thumbs .thumb.active img { opacity: 1; }

.pdp-info > * + * { margin-top: 20px; }
.pdp-info .pdp-category {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--navy);
}
.pdp-info .pdp-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 76px); line-height: 1; letter-spacing: -0.022em;
  font-weight: 400; color: var(--ink);
}
.pdp-info .pdp-format {
  font-family: var(--font-body); font-size: 14px;
  color: var(--muted); letter-spacing: 0.02em;
}

.pdp-price-row {
  padding-top: 24px; padding-bottom: 24px;
  border-top: 1px solid var(--stone-soft);
  border-bottom: 1px solid var(--stone-soft);
  display: flex; align-items: baseline; gap: 16px;
}
.pdp-price-row .price {
  font-family: var(--font-display);
  font-size: 44px; line-height: 1; letter-spacing: -0.018em; color: var(--ink);
}
.pdp-price-row .price-meta { display: flex; flex-direction: column; gap: 3px; }
.pdp-price-row .price-meta .strike {
  font-size: 13px; color: var(--muted-soft); text-decoration: line-through;
}
.pdp-price-row .price-meta .save {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); font-weight: 500;
}

.pdp-lot {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.pdp-lot::before { content: ""; width: 6px; height: 6px; background: var(--navy); border-radius: 50%; }

.qty-row {
  display: flex; gap: 12px; align-items: stretch;
  padding-top: 8px;
}
.qty-control {
  display: flex; align-items: center;
  border: 1px solid var(--stone);
}
.qty-control button {
  width: 44px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 16px;
  transition: background 150ms ease;
}
.qty-control button:hover { background: var(--paper-tint); }
.qty-control input {
  width: 50px; text-align: center;
  border: none; background: transparent;
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  font-weight: 500;
}
.qty-control input:focus { outline: none; }

.add-cart {
  flex: 1;
  background: var(--ink); color: var(--paper);
  padding: 16px 28px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 200ms ease;
}
.add-cart:hover { background: var(--navy); }

.coa-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--navy); font-weight: 500;
  border-bottom: 1px solid var(--stone); padding-bottom: 6px;
}
.coa-link::before { content: "↓"; font-size: 14px; }

.pdp-callouts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--stone-soft);
}
.pdp-callouts > div {
  padding: 18px 16px;
  border-right: 1px solid var(--stone-soft);
  text-align: center;
}
.pdp-callouts > div:last-child { border-right: none; }
.pdp-callouts .label {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 6px;
}
.pdp-callouts .value {
  font-family: var(--font-display);
  font-size: 17px; color: var(--ink);
}

.pdp-disclaimer {
  background: var(--paper-tint);
  padding: 20px 22px;
  font-size: 12.5px; line-height: 1.65;
  color: var(--ink-soft);
}
.pdp-disclaimer strong {
  display: block;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy); font-weight: 500; margin-bottom: 8px;
}

.pdp-section { padding-top: 36px; }
.pdp-section .eyebrow { margin-bottom: 18px; }
.pdp-section h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 28px; letter-spacing: -0.012em; line-height: 1.1;
  margin-bottom: 16px;
}
.pdp-section p {
  font-size: 16px; line-height: 1.7; color: var(--ink-soft);
  max-width: 56ch;
}

.pdp-specs {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-top: 8px;
}
.spec-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--stone-soft);
}
.spec-row:first-child { border-top: 1px solid var(--stone-soft); }
.spec-row .spec-label {
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
}
.spec-row .spec-value {
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  letter-spacing: 0.02em;
}

/* =========================================================
   Page-load reveal
   ========================================================= */
@keyframes reveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: reveal 800ms ease-out both; }
.reveal-1 { animation-delay: 0ms; }
.reveal-2 { animation-delay: 100ms; }
.reveal-3 { animation-delay: 200ms; }
.reveal-4 { animation-delay: 300ms; }
.reveal-5 { animation-delay: 400ms; }

/* Age gate */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate.hidden { display: none; }
.age-gate-inner {
  background: var(--paper);
  max-width: 480px; width: 100%;
  padding: 48px 40px 40px;
  text-align: center;
  border: 1px solid var(--stone);
}
.age-gate-mark { width: 56px; height: 56px; margin: 0 auto 24px; display: block; }
.age-gate h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 30px; letter-spacing: -0.012em; line-height: 1.1;
  margin-bottom: 16px;
}
.age-gate p { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.age-gate-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.age-gate-fine { font-size: 11px; color: var(--muted-soft); line-height: 1.55; letter-spacing: 0.02em; }
.age-gate-fine a { color: var(--navy); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 24px; right: 24px; max-width: 360px;
  background: var(--ink); color: var(--paper);
  padding: 18px 20px; z-index: 100;
  font-size: 12.5px; line-height: 1.55;
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin-bottom: 14px; }
.cookie-banner-actions { display: flex; gap: 8px; }
.cookie-banner button {
  flex: 1;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  padding: 9px 12px; border: 1px solid rgba(244, 239, 227, 0.3); color: var(--paper);
  background: transparent; cursor: pointer; transition: all 200ms ease;
}
.cookie-banner button:hover { border-color: var(--paper); }
.cookie-banner button.primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cookie-banner button.primary:hover { background: transparent; color: var(--paper); }

/* Shop / catalog */
.shop-hero {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--stone-soft);
}
.shop-hero .eyebrow { margin-bottom: 18px; }
.shop-hero h1 { margin-bottom: 18px; }
.shop-hero .lede { max-width: 60ch; }
.catalog-section { padding-top: clamp(56px, 7vw, 96px); }
.catalog-section .section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 36px; gap: 24px;
}
.catalog-section .section-header h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.015em; line-height: 1.1;
}
.catalog-section .section-header .count {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500;
}
/* Catalog-page product grids auto-fit to fill available width.
   Prevents empty grid cells when a category has fewer than 4 products. */
.catalog-section .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
@media (max-width: 1080px) {
  .catalog-section .product-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
@media (max-width: 768px) {
  .catalog-section .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .catalog-section .product-grid { grid-template-columns: 1fr; }
}

/* Page hero (about, education, contact, legal) */
.page-hero {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(48px, 6vw, 88px);
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(46px, 6.5vw, 88px); letter-spacing: -0.022em; line-height: 1;
  margin-bottom: 28px;
}
.page-hero h1 em { font-style: italic; color: var(--navy); }
.page-hero .lede { max-width: 56ch; }

/* About */
.about-section { padding-top: var(--section-y-sm); padding-bottom: var(--section-y-sm); }
.about-section + .about-section { border-top: 1px solid var(--stone-soft); }
.about-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 24px; } }
.about-grid .label { display: flex; flex-direction: column; gap: 6px; }
.about-grid .label .num { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.about-grid h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.08; letter-spacing: -0.018em;
  margin-bottom: 24px;
}
.about-grid h2 em { font-style: italic; color: var(--navy); }
.about-grid p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 18px; max-width: 56ch; }

/* Philosophy block (dark) */
.philosophy {
  background: var(--navy-dark); color: var(--paper);
  padding-top: clamp(80px, 10vw, 144px);
  padding-bottom: clamp(80px, 10vw, 144px);
  text-align: center;
}
.philosophy .eyebrow { color: #B8C7DE; margin-bottom: 28px; }
.philosophy h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--paper); max-width: 22ch; margin: 0 auto 24px;
}
.philosophy h2 em { color: #D6DEE9; font-style: italic; }
.philosophy p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3; color: rgba(244, 239, 227, 0.75);
  max-width: 38ch; margin: 0 auto;
  font-style: italic;
}

/* Education / article cards */
.edu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--stone-soft);
  border-bottom: 1px solid var(--stone-soft);
}
@media (max-width: 880px) { .edu-grid { grid-template-columns: 1fr; } }
.edu-card {
  padding: 36px 32px; border-right: 1px solid var(--stone-soft);
  display: flex; flex-direction: column; gap: 16px;
  transition: background 200ms ease; cursor: pointer;
}
@media (max-width: 880px) {
  .edu-card { border-right: none; border-bottom: 1px solid var(--stone-soft); }
  .edu-card:last-child { border-bottom: none; }
}
.edu-card:hover { background: var(--paper-elev); }
.edu-card .cat { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.edu-card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.012em;
}
.edu-card p { font-size: 14px; line-height: 1.6; color: var(--muted); }
.edu-card .read { margin-top: auto; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); font-weight: 500; padding-top: 16px; }

/* Newsletter */
.newsletter { background: var(--paper-tint); padding: clamp(56px, 7vw, 96px) var(--gutter); text-align: center; }
.newsletter .eyebrow { margin-bottom: 18px; }
.newsletter h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1; letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.newsletter h2 em { font-style: italic; color: var(--navy); }
.newsletter p { max-width: 46ch; margin: 0 auto 32px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.newsletter form {
  display: flex; max-width: 440px; margin: 0 auto; gap: 0;
  border: 1px solid var(--ink);
}
.newsletter input {
  flex: 1; padding: 14px 18px; border: none; background: transparent;
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
}
.newsletter input:focus { outline: none; }
.newsletter button {
  background: var(--ink); color: var(--paper); padding: 14px 24px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 200ms ease;
}
.newsletter button:hover { background: var(--navy); }

/* Article */
.article-hero {
  padding-top: clamp(72px, 9vw, 128px); padding-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--stone-soft);
  max-width: 760px; margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.article-hero .eyebrow { margin-bottom: 20px; }
.article-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 5vw, 60px); line-height: 1.06; letter-spacing: -0.018em;
  margin-bottom: 24px;
}
.article-hero .meta {
  display: flex; gap: 20px; font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
}
.article-body { max-width: 720px; margin: 0 auto; padding: clamp(56px, 7vw, 96px) var(--gutter); }
.article-body h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.15; letter-spacing: -0.012em;
  margin: 36px 0 16px;
}
.article-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.2; margin: 28px 0 12px; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 16px 0 24px 28px; }
.article-body li { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }
.article-body blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 24px; line-height: 1.35; color: var(--ink);
  border-left: 2px solid var(--navy); padding-left: 24px; margin: 32px 0;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 88px); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: var(--font-body); font-size: 15px; padding: 12px 14px;
  border: 1px solid var(--stone); background: var(--paper-elev); color: var(--ink);
  transition: border-color 200ms ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--ink);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info { padding-left: clamp(0px, 2vw, 32px); }
@media (max-width: 880px) { .contact-info { padding-left: 0; } }
.contact-info .info-block { padding: 24px 0; border-bottom: 1px solid var(--stone-soft); }
.contact-info .info-block:last-child { border-bottom: none; }
.contact-info .info-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); font-weight: 500; margin-bottom: 8px; }
.contact-info .info-value { font-size: 16px; line-height: 1.6; color: var(--ink); }
.contact-info .info-value a { color: var(--ink); border-bottom: 1px solid var(--stone); }

/* Legal pages */
.legal-page { max-width: 820px; margin: 0 auto; padding: clamp(72px, 9vw, 120px) var(--gutter); }
.legal-page .eyebrow { margin-bottom: 16px; }
.legal-page h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px); letter-spacing: -0.018em; line-height: 1.05; margin-bottom: 12px;
}
.legal-page .meta { font-size: 13px; color: var(--muted); margin-bottom: 40px; letter-spacing: 0.04em; }
.legal-page h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.01em;
  margin: 36px 0 14px;
}
.legal-page h3 { font-family: var(--font-display); font-weight: 400; font-size: 19px; margin: 24px 0 10px; }
.legal-page p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 14px; }
.legal-page ul, .legal-page ol { margin: 12px 0 18px 24px; }
.legal-page li { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 6px; }
.legal-page strong { font-weight: 600; color: var(--ink); }
