/* =========================================================================
   about-dna-sitewide.css  —  About-page DNA applied site-wide
   v2.9.24.71 — the "light editorial" version.
   Previous version v2.9.24.70 is preserved as "the dark version" via git tag.

   Source of truth: templates/about-v2.php (the /about/ page Sohan loves).
   This file adopts its TOKENS, TYPOGRAPHY, HOVER DELTAS, CARD TREATMENTS,
   and EASING CURVE for every page except surfaces that are intentionally
   dark (hero band, footer — kept for brand punctuation like About's dark
   portrait + ratings panels).

   Scope:
   - body tone, text color warmth, near-black softened
   - typography scale + weights + letter-spacing refinements
   - card treatments (subtle borders, radius, lift hover)
   - button system (primary/secondary/ghost)
   - transitions (.18s cubic-bezier(0.2,0.8,0.2,1) uniform)
   - link + input refinements
   - mono-stamp utility for editorial metadata

   Not changed:
   - Hero dark band (#srnyc-hero, .sr-hero-cinematic) — still dark, per brand
   - Footer — still dark, per brand
   - Age gate — unique DNA, unchanged
   - Product images themselves
   - Checkout modal internals (functionality-critical)
   ========================================================================= */

/* ----- TOKENS ----- */
:root {
  --srn-ink:        #0f1511;
  --srn-ink-78:     rgba(15,21,17,.78);
  --srn-ink-65:     rgba(15,21,17,.65);
  --srn-ink-55:     rgba(15,21,17,.55);
  --srn-ink-15:     rgba(15,21,17,.15);
  --srn-ink-10:     rgba(15,21,17,.10);
  --srn-paper:      #fff;
  --srn-paper-soft: #f6f6f2;
  --srn-green:      #7ED957;
  --srn-green-deep: #209F48;
  --srn-green-tint: rgba(126,217,87,.14);
  --srn-green-border: rgba(32,159,72,.32);
  --srn-ease:       cubic-bezier(0.2, 0.8, 0.2, 1);
  --srn-t-fast:     180ms;
  --srn-t-med:      320ms;
  --srn-radius-card: 14px;
  --srn-radius-pill: 100px;
}

/* ----- BASE TYPOGRAPHY ----- */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--srn-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:not(.sr-dark) {
  background: var(--srn-paper);
}

/* Headings — About page scale */
h1, .h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--srn-ink);
}
h2, .h2 {
  font-size: clamp(26px, 3.3vw, 36px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--srn-ink);
}
h3, .h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.005em;
  color: var(--srn-ink);
}
h4, .h4 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--srn-ink);
}

/* Body copy — editorial ease */
p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--srn-ink-78);
}
small, .srn-small {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--srn-ink-65);
}

/* ----- EDITORIAL UTILITIES ----- */
.srn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--srn-green-tint);
  color: var(--srn-green-deep);
  padding: 7px 14px;
  border-radius: var(--srn-radius-pill);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--srn-green-border);
}
.srn-mono {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--srn-ink-55);
  text-transform: uppercase;
}
.srn-kicker {
  font-size: 13px;
  color: var(--srn-ink-55);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ----- LINKS ----- */
a {
  transition: color var(--srn-t-fast) var(--srn-ease);
}
body:not(.sr-dark) a:not(.sr-btn):not(.sr-m-atc):not([class*="age-gate"]) {
  color: var(--srn-green-deep);
  text-decoration-color: rgba(32,159,72,.3);
  text-underline-offset: 2px;
}
body:not(.sr-dark) a:not(.sr-btn):not(.sr-m-atc):not([class*="age-gate"]):hover {
  color: var(--srn-green);
  text-decoration-color: var(--srn-green);
}

/* ----- BUTTON SYSTEM (overlays existing buttons non-destructively) ----- */

/* Primary — green gradient lift */
.sr-btn,
.sr-btn-primary,
button.sr-btn {
  background: linear-gradient(135deg, var(--srn-green), var(--srn-green-deep));
  color: #051a09;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--srn-t-fast) var(--srn-ease),
              box-shadow var(--srn-t-fast) var(--srn-ease),
              filter var(--srn-t-fast);
  box-shadow: 0 4px 14px rgba(32,159,72,.28);
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sr-btn:hover,
.sr-btn-primary:hover,
button.sr-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(32,159,72,.42);
  filter: brightness(1.05);
}
.sr-btn:active,
.sr-btn-primary:active,
button.sr-btn:active {
  transform: translateY(0);
}

/* Ghost / secondary — outline treatment */
.sr-btn-ghost,
.sr-btn-secondary {
  background: transparent;
  color: var(--srn-ink);
  border: 1.5px solid var(--srn-ink-15);
  box-shadow: none;
}
.sr-btn-ghost:hover,
.sr-btn-secondary:hover {
  background: var(--srn-ink);
  color: var(--srn-green);
  border-color: var(--srn-ink);
  transform: translateY(-1px);
  filter: none;
}

/* ----- CARD TREATMENT (applies broadly, menu cards have their own file) ----- */
.sr-card-light,
.sr-hero-featured-cards .sr-card,
.sr-tile-card,
.sr-press-card,
body:not(.sr-dark) .sr-card {
  background: var(--srn-paper) !important;
  border: 1px solid var(--srn-ink-10) !important;
  border-radius: var(--srn-radius-card) !important;
  color: var(--srn-ink) !important;
  transition: transform var(--srn-t-fast) var(--srn-ease),
              box-shadow var(--srn-t-fast) var(--srn-ease),
              border-color var(--srn-t-fast) var(--srn-ease) !important;
}
.sr-card-light:hover,
.sr-hero-featured-cards .sr-card:hover,
.sr-tile-card:hover,
.sr-press-card:hover,
body:not(.sr-dark) .sr-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 36px rgba(15,21,17,.1) !important;
  border-color: var(--srn-green-border) !important;
}

/* ----- INPUTS ----- */
body:not(.sr-dark) input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
body:not(.sr-dark) select,
body:not(.sr-dark) textarea {
  background: var(--srn-paper);
  color: var(--srn-ink);
  border: 1.5px solid var(--srn-ink-15);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--srn-t-fast) var(--srn-ease),
              box-shadow var(--srn-t-fast) var(--srn-ease);
}
body:not(.sr-dark) input:focus,
body:not(.sr-dark) select:focus,
body:not(.sr-dark) textarea:focus {
  border-color: var(--srn-green-deep);
  box-shadow: 0 0 0 4px rgba(126,217,87,.16);
  outline: none;
}

/* ----- SECTION SPACING RHYTHM ----- */
.sr-section {
  padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 40px);
}

/* ----- FOCUS VISIBLE (reinforce a11y agent's work) ----- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--srn-green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ----- MOTION ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
    transform: none !important;
  }
}
