/* ============================================================
   BUILT SAVAGE — brand tokens
   Matches the brand's own logo art: black, white, storm/lightning.
   ============================================================ */
:root {
  --ink: #0a0a0b;        /* page background — matches the logo art's black */
  --ink-2: #131315;      /* card / panel background */
  --steel: #262629;      /* borders, hairlines */
  --paper: #f2f1ee;      /* primary text (off-white) */
  --paper-dim: #a6a5a2;  /* secondary text */
  --volt: #6fe3ff;       /* electric-blue accent — the "lightning" color */
  --volt-dim: #234956;   /* muted volt, for large fills */
  --danger: #e15252;     /* errors / remove actions only — kept conventionally red */
  --line: rgba(242, 241, 238, 0.14);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-label: "Barlow Condensed", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--volt);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--volt);
  display: inline-block;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
}

h1 { font-size: clamp(40px, 7.5vw, 88px); }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(20px, 3vw, 26px); }

p { color: var(--paper-dim); margin: 0 0 1em; }

.btn {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--volt);
  background: var(--volt);
  color: var(--ink);
  padding: 14px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.btn:hover { background: transparent; color: var(--volt); transform: translateY(-2px); box-shadow: 0 0 22px rgba(111, 227, 255, 0.25); }
.btn.btn-outline { background: transparent; color: var(--paper); border-color: var(--line); }
.btn.btn-outline:hover { border-color: var(--paper); color: var(--paper); box-shadow: none; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Lightning-crack divider (signature element) ---------- */
.crack-divider {
  height: 3px;
  width: 100%;
  background: var(--volt);
  position: relative;
  box-shadow: 0 0 16px rgba(111, 227, 255, 0.5);
  clip-path: polygon(
    0 0, 4% 0, 6% 100%, 9% 0, 18% 0, 20% 100%, 24% 0, 34% 0, 37% 100%, 40% 0,
    52% 0, 55% 100%, 58% 0, 68% 0, 71% 100%, 74% 0, 84% 0, 87% 100%, 90% 0, 100% 0,
    100% 100%, 0 100%
  );
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--paper);
}
.logo img { height: 38px; width: 38px; object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.logo-text .accent { color: var(--volt); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
}
.nav-links a { text-decoration: none; color: var(--paper-dim); position: relative; padding-bottom: 4px; }
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--volt);
  box-shadow: 0 0 8px rgba(111, 227, 255, 0.7);
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.cart-btn {
  background: none; border: none; color: var(--paper); cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.06em; font-size: 15px;
}
.cart-count {
  background: var(--volt); color: var(--ink); font-weight: 700;
  border-radius: 50%; width: 20px; height: 20px; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}
.nav-toggle { display: none; background: none; border: none; color: var(--paper); }

@media (max-width: 820px) {
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; background: var(--ink); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid var(--line); transform: translateY(-150%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(111,227,255,0.08), transparent 40%),
    radial-gradient(circle at 85% 100%, rgba(111,227,255,0.06), transparent 45%),
    var(--ink);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-stamp {
  position: absolute;
  right: 6%;
  top: 14%;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--paper-dim);
  border: 1px solid var(--line);
  padding: 10px 16px;
  transform: rotate(4deg);
  opacity: 0.6;
}
.hero-wordmark { max-width: 640px; margin: 0 auto 28px 0; filter: drop-shadow(0 0 26px rgba(111,227,255,0.15)); }
.hero h1 { max-width: 900px; }
.hero h1 .accent { color: var(--volt); }
.hero-sub { max-width: 520px; font-size: 18px; margin-top: 20px; }
.hero-cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.cat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cat-strip a {
  text-decoration: none;
  padding: 26px 8px;
  text-align: center;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paper-dim);
  border-right: 1px solid var(--line);
  transition: color 0.15s ease, background 0.15s ease;
}
.cat-strip a:last-child { border-right: none; }
.cat-strip a:hover { color: var(--volt); background: rgba(111,227,255,0.05); }

@media (max-width: 700px) {
  .cat-strip .wrap { grid-template-columns: 1fr; }
  .cat-strip a { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 90px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; gap: 24px; flex-wrap: wrap; }
.section-head p { max-width: 460px; margin: 14px 0 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4/5;
  background: var(--ink-2);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14%;
}
.about-visual img { opacity: 0.9; filter: drop-shadow(0 0 30px rgba(111,227,255,0.12)); }
.stat-row { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.stat-row div { font-family: var(--font-display); font-size: 34px; color: var(--volt); }
.stat-row span { display: block; font-family: var(--font-label); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-dim); margin-top: 4px; }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Product grid ---------- */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper-dim);
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { color: var(--paper); border-color: var(--paper-dim); }
.filter-btn.active { background: var(--volt); border-color: var(--volt); color: var(--ink); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover { border-color: var(--volt); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(111,227,255,0.08); }
.product-media {
  aspect-ratio: 1/1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-media .swatch { position: absolute; inset: 0; opacity: 0.9; }
.product-media svg { position: relative; z-index: 1; width: 42%; height: 42%; }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--paper); background: rgba(10,10,11,0.7);
  padding: 4px 8px; border: 1px solid var(--line);
  transform: rotate(-3deg);
}
.product-gender-tag {
  position: absolute; top: 10px; right: 10px;
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: var(--paper);
  padding: 4px 8px;
}
.product-info { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-info h3 { font-size: 18px; }
.product-info .cat { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; color: var(--paper-dim); }
.product-info .price { font-family: var(--font-label); font-size: 20px; color: var(--volt); margin-top: auto; letter-spacing: 0.02em; }

/* ---------- Product modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(5,5,6,0.8);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--ink-2);
  border: 1px solid var(--line);
  max-width: 860px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
}
@media (max-width: 700px) { .modal { grid-template-columns: 1fr; } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; color: var(--paper);
  font-size: 24px; cursor: pointer; z-index: 2; line-height: 1;
}
.modal-media {
  aspect-ratio: 1/1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
}
.modal-media .swatch { position: absolute; inset: 0; }
.modal-media svg { position: relative; z-index: 1; width: 40%; height: 40%; }
.modal-body { padding: 34px; display: flex; flex-direction: column; }
.modal-body .cat { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; color: var(--volt); font-size: 13px; }
.modal-body h2 { margin-top: 6px; font-size: 32px; }
.modal-price { font-family: var(--font-label); font-size: 24px; color: var(--volt); margin: 10px 0 18px; }
.field-label { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; color: var(--paper-dim); margin-bottom: 8px; display: block; }
.size-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.size-opt {
  border: 1px solid var(--line); background: transparent; color: var(--paper);
  padding: 8px 14px; font-family: var(--font-label); cursor: pointer;
}
.size-opt.active { background: var(--volt); border-color: var(--volt); color: var(--ink); }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.qty-row button { width: 34px; height: 34px; background: var(--steel); border: 1px solid var(--line); color: var(--paper); cursor: pointer; font-size: 16px; }
.qty-row span { font-family: var(--font-label); font-size: 18px; min-width: 20px; text-align: center; }
.modal-body .desc { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(5,5,6,0.65);
  display: none; z-index: 250;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  background: var(--ink); border-left: 1px solid var(--line);
  z-index: 260; transform: translateX(100%); transition: transform 0.25s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item > div { min-width: 0; }
.cart-item .name, .cart-item .meta { overflow-wrap: anywhere; }
.cart-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item .thumb { width: 60px; height: 60px; position: relative; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.cart-item .thumb svg { width: 55%; }
.cart-item .name { font-family: var(--font-label); font-size: 15px; text-transform: uppercase; letter-spacing: 0.03em; }
.cart-item .meta { font-size: 13px; color: var(--paper-dim); }
.cart-item .remove { background: none; border: none; color: var(--danger); cursor: pointer; font-family: var(--font-label); text-transform: uppercase; font-size: 12px; letter-spacing: 0.06em; }
.cart-item .price-col { text-align: right; font-family: var(--font-label); color: var(--volt); }
.cart-empty { padding: 40px 0; text-align: center; color: var(--paper-dim); }
.cart-footer { border-top: 1px solid var(--line); padding: 20px 24px 24px; }
.cart-subtotal { display: flex; justify-content: space-between; font-family: var(--font-label); font-size: 20px; margin-bottom: 16px; }
.cart-note { font-size: 13px; color: var(--paper-dim); margin-top: 10px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
label { display: block; font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; color: var(--paper-dim); margin-bottom: 8px; }
input, textarea, select {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line); color: var(--paper);
  padding: 13px 14px; font-family: var(--font-body); font-size: 15px;
}
textarea { resize: vertical; min-height: 130px; }
.form-status { font-family: var(--font-label); letter-spacing: 0.04em; margin-top: 14px; min-height: 20px; }
.form-status.ok { color: var(--volt); }
.form-status.err { color: var(--danger); }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.contact-info-card { background: var(--ink-2); border: 1px solid var(--line); padding: 34px; }
.contact-info-card .row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-info-card .row:last-child { border-bottom: none; }
.contact-info-card .row .k { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; color: var(--volt); width: 90px; flex-shrink: 0; }
.social-row { display: flex; gap: 14px; margin-top: 20px; }
.social-row a { border: 1px solid var(--line); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.social-row a:hover { border-color: var(--volt); color: var(--volt); }

/* ============================================================
   NEWSLETTER + FOOTER
   ============================================================ */
.newsletter { background: var(--volt); }
.newsletter .wrap { padding: 64px 24px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.newsletter h2 { font-size: clamp(26px, 4vw, 40px); color: var(--ink); }
.newsletter p { color: rgba(10,10,11,0.7); margin-top: 8px; }
.newsletter-form { display: flex; gap: 0; max-width: 420px; width: 100%; }
.newsletter-form input { border: 2px solid var(--ink); background: var(--paper); color: var(--ink); min-width: 0; }
.newsletter-form button { border: 2px solid var(--ink); background: var(--ink); color: var(--paper); padding: 0 22px; font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; }

footer { padding: 60px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; color: var(--volt); margin: 0 0 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { text-decoration: none; color: var(--paper-dim); }
.footer-grid a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--paper-dim); flex-wrap: wrap; gap: 10px; }

/* ---------- Misc ---------- */
.badge-pill {
  display: inline-block; font-family: var(--font-label); text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 12px; background: var(--volt); color: var(--ink);
  padding: 4px 10px; margin-bottom: 16px;
}
.center { text-align: center; }
.mt-40 { margin-top: 40px; }


/* ============================================================
   MOBILE HARDENING
   ============================================================ */

/* The rotated hero stamp is absolutely positioned, so on narrow screens
   it sits on top of the wordmark and headline. Hide it below tablet. */
@media (max-width: 900px) {
  .hero-stamp { display: none; }
}

/* Very small handsets (320-380px): tighten gutters and cap the display
   type, which would otherwise run past the edge at clamp()'s 40px floor. */
/* Below ~320px a 260px minimum would overflow; drop to one column. */
@media (max-width: 340px) {
  .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  h1 { font-size: 34px; }
  .logo-text { font-size: 17px; }
  .logo img { height: 32px; width: 32px; }
  .nav-right { gap: 12px; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 60px 0; }
}

/* Modal padding is too generous once it's a single column. */
@media (max-width: 480px) {
  .modal-body { padding: 22px; }
  .modal-close { top: 8px; right: 8px; }
}

/* aspect-ratio is unsupported on iOS 14 and older, where these boxes would
   collapse to zero height and the product art would vanish. */
@supports not (aspect-ratio: 1 / 1) {
  .product-media, .modal-media { height: 0; padding-top: 100%; }
  .product-media svg, .modal-media svg,
  .product-media > div, .modal-media > div {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto;
  }
  .about-visual { height: 0; padding-top: 125%; }
}

/* Flex gap is unsupported on iOS 14.0-14.4; without it these buttons touch. */
@supports not (gap: 1px) {
  .hero-cta .btn { margin: 0 16px 16px 0; }
  .filters .filter-btn { margin: 0 10px 10px 0; }
}

/* ============================================================
   SOLD OUT STATES
   ============================================================ */
.product-card.is-soldout .product-media { opacity: 0.45; }
.product-card.is-soldout .product-info h3,
.product-card.is-soldout .product-info .price { opacity: 0.6; }
.soldout-flag {
  position: absolute; z-index: 2; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-label); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 13px;
  background: var(--paper); color: var(--ink);
  padding: 7px 16px; white-space: nowrap;
}
.size-opt.is-soldout {
  opacity: 0.35; cursor: not-allowed; text-decoration: line-through;
}
.size-opt.is-soldout:hover { background: transparent; }

/* ============================================================
   LEGAL / CONTENT PAGES
   ============================================================ */
.doc-page { max-width: 780px; margin: 0 auto; padding: 60px 24px 90px; }
.doc-page h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 10px; }
.doc-page .updated { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; color: var(--paper-dim); margin-bottom: 40px; }
.doc-page h2 { font-size: clamp(20px, 3vw, 26px); margin: 40px 0 14px; color: var(--paper); }
.doc-page h3 { font-size: 17px; margin: 26px 0 10px; }
.doc-page p, .doc-page li { color: var(--paper-dim); line-height: 1.65; }
.doc-page ul { padding-left: 20px; margin-bottom: 1em; }
.doc-page li { margin-bottom: 8px; }
.doc-page a { color: var(--volt); }
.doc-page strong { color: var(--paper); }
.doc-page .lede { font-size: 18px; color: var(--paper); }

/* ============================================================
   404
   ============================================================ */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-code { font-family: var(--font-display); font-size: clamp(80px, 18vw, 180px); line-height: 1; color: var(--volt); }

.newsletter-status { font-family: var(--font-label); letter-spacing: 0.04em; margin-top: 10px; min-height: 20px; color: rgba(10,10,11,0.75); }
.newsletter-status.ok { color: var(--ink); font-weight: 600; }
.newsletter-status.err { color: #7a1f1f; }
.newsletter-smallprint { font-size: 12px; color: rgba(10,10,11,0.6); margin-top: 4px; }
