/* ============================================================
   VoltariTek Labs — Industrial palette
   Bone (#f4ede1) + Charcoal (#1a1a1a) + Brand red (#fd1d25)
   ============================================================ */

:root {
  --paper:       #f4ede1;
  --paper-2:     #ece2d2;
  --paper-3:     #e0d4be;
  --ink:         #1a1a1a;
  --ink-2:       #2a2a2a;
  --mute:        #5b5650;
  --rule:        #d4c8b3;
  --rule-strong: #9a8e74;
  --brand:       #fd1d25;
  --brand-deep:  #c8121a;
  --brand-tint:  #fff3f1;
  --steel:       #4a4d52;
  --shadow-sm:   0 1px 0 rgba(26, 26, 26, 0.04);
  --shadow-md:   0 8px 24px -16px rgba(26, 26, 26, 0.25);
  --shadow-lg:   0 22px 60px -32px rgba(26, 26, 26, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: "Inter", "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--ink); }

/* legacy bg-glow shapes — make them invisible without removing markup */
.bg-glow { display: none !important; }

/* ============================================================
   Layout shells
   ============================================================ */

.site-header,
main,
footer {
  width: min(1200px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

main { padding: 0 0 5rem; }

section { margin-bottom: 5rem; }

/* ============================================================
   Header / nav
   ============================================================ */

.site-header {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.site-nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.18s ease;
}

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

.site-nav a.active {
  color: var(--ink);
  font-weight: 700;
}
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--brand);
}

.nav-toggle {
  display: none;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 0;
  padding: 0.55rem 1rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  letter-spacing: -0.018em;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

p, li {
  color: var(--mute);
  line-height: 1.62;
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand);
  font-size: 0.78rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.section-lede {
  max-width: 60ch;
  margin: 0 0 1.8rem;
  color: var(--mute);
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 56ch;
  margin-top: 1.1rem;
  font-size: 1.1rem;
  color: var(--ink-2);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
  padding: 0.95rem 1.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.cta-row {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 3rem 0 2.5rem;
}

.hero-product {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 2.5rem;
}

.hero-product-copy h1 {
  max-width: 14ch;
  margin-bottom: 0;
}

.hero-spec {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.hero-spec li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-2);
  font-size: 1rem;
  font-weight: 500;
}
.spec-dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--brand);
  display: inline-block;
  flex-shrink: 0;
  transform: rotate(45deg);
}

.hero-product-media {
  border: 1px solid var(--rule-strong);
  background: var(--ink);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page hero on interior pages */
.page-hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.8vw, 3.4rem);
  max-width: 24ch;
}

/* ============================================================
   Trust row (4 icons under hero)
   ============================================================ */

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 0 0 4rem;
  padding: 0;
}
.trust-row article {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.trust-row article:last-child { border-right: none; }
.trust-row .trust-mark {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--brand);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.trust-row .trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

/* ============================================================
   Magnet proof block
   ============================================================ */

.proof-strip {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 3rem;
  align-items: center;
  padding: 1rem 0 1.5rem;
}
.proof-strip .proof-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
}
.proof-strip .proof-copy h2 strong {
  color: var(--brand);
  font-style: normal;
}
.proof-strip .proof-copy ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.proof-strip .proof-copy li {
  display: flex;
  gap: 0.75rem;
  color: var(--ink-2);
  font-size: 1rem;
  font-weight: 500;
}
.proof-strip .proof-copy li::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 0.45rem;
  transform: rotate(45deg);
}
.proof-image {
  border: 4px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.proof-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   Why strip (3-up benefit headers)
   ============================================================ */

.why-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 3px double var(--brand);
  border-bottom: 3px double var(--brand);
  padding: 2rem 0;
}
.why-strip article {
  padding: 0.4rem 1.4rem;
  border-right: 1px solid var(--rule);
}
.why-strip article:last-child { border-right: none; }
.why-strip article h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 0.5rem;
  font-weight: 800;
}
.why-strip article p {
  color: var(--ink-2);
  font-size: 0.97rem;
  margin: 0;
}

/* ============================================================
   Pack grid
   ============================================================ */

.product-grid h2 {
  max-width: 22ch;
  margin-bottom: 0.6rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

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

.pack-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--rule-strong);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}
.pack-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.pack-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.pack-card:hover::after { transform: scaleX(1); }

.pack-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.pack-card-body {
  padding: 1.05rem 1.15rem 1.25rem;
}
.pack-card-body h3 {
  margin: 0 0 0.3rem;
  color: var(--ink);
  font-size: 1.08rem;
}
.pack-meta {
  margin: 0;
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Sora", sans-serif;
}

/* ============================================================
   Shop wall band (full-bleed image with overlay text)
   ============================================================ */

.shop-wall-band {
  position: relative;
  margin-left: calc((100vw - min(1200px, 92vw)) / -2);
  margin-right: calc((100vw - min(1200px, 92vw)) / -2);
  margin-bottom: 5rem;
  background: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
  min-height: 520px;
}
.shop-wall-image {
  width: 100%;
  height: 100%;
  max-height: 720px;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
}
.shop-wall-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 520px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0) 100%);
  padding: 4rem 0 3rem;
}
.shop-wall-overlay-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  max-width: 100%;
}
.shop-wall-overlay .eyebrow {
  color: #ffd6d8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.shop-wall-overlay h2 {
  color: #ffffff;
  max-width: 22ch;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  line-height: 1.05;
}
.shop-wall-lede {
  color: rgba(255, 255, 255, 0.92);
  max-width: 56ch;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

/* ============================================================
   Three Colors section
   ============================================================ */

.three-colors > .eyebrow,
.three-colors > h2,
.three-colors > .section-lede {
  text-align: left;
}
.three-colors h2 { max-width: 22ch; margin-bottom: 0.5rem; }
.color-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.color-card {
  background: #fff;
  border: 1px solid var(--rule-strong);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.color-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.color-card-media {
  background: var(--ink);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--rule-strong);
}
.color-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.color-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  position: relative;
}
.color-card-body h3 {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 1.1rem;
  padding-left: 1.6rem;
}
.color-card-body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  padding-left: 1.6rem;
}
.color-swatch {
  position: absolute;
  left: 1.25rem;
  top: 1.45rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: inline-block;
}
.color-swatch.swatch-red   { background: var(--brand); }
.color-swatch.swatch-black { background: #111; }
.color-swatch.swatch-blue  { background: #11196b; }

/* ============================================================
   Real-toolboxes (charcoal stripe)
   ============================================================ */

.real-toolboxes {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 4.5rem;
  margin-left: calc((100vw - min(1200px, 92vw)) / -2);
  margin-right: calc((100vw - min(1200px, 92vw)) / -2);
  margin-bottom: 5rem;
}
.real-toolboxes-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.real-toolboxes h2 {
  color: var(--paper);
  margin-bottom: 0.5rem;
}
.real-toolboxes .eyebrow { color: var(--brand); }
.real-toolboxes p { color: rgba(244, 237, 225, 0.78); }
.real-toolboxes .section-lede { color: rgba(244, 237, 225, 0.78); }

.toolbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.toolbox-card {
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.toolbox-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0e0e0e;
  display: block;
}
.toolbox-card .tb-body {
  padding: 1rem 1.1rem 1.2rem;
}
.toolbox-card .tb-tag {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--brand);
  margin: 0 0 0.3rem;
}
.toolbox-card h3 {
  color: var(--paper);
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.toolbox-card p {
  color: rgba(244, 237, 225, 0.7);
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================================
   Pillars (Why VoltariTek)
   ============================================================ */

.pillars h2 { margin-bottom: 0.5rem; }
.pillars .card-grid { margin-top: 1.5rem; }

.card {
  background: #fff;
  border: 1px solid var(--rule-strong);
  padding: 1.4rem 1.4rem 1.5rem;
  position: relative;
}
.card h3 {
  color: var(--ink);
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}
.card p {
  color: var(--mute);
  margin: 0.5rem 0 0;
  font-size: 0.97rem;
}

/* ============================================================
   Founder card
   ============================================================ */

.founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.6rem;
  align-items: center;
  background: var(--paper-2);
  padding: 2.5rem;
  border: 1px solid var(--rule-strong);
}
.founder-photo {
  background: var(--ink);
  aspect-ratio: 4 / 5;
  border: 4px solid var(--ink);
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  max-width: 18ch;
}
.founder-copy .signature {
  margin-top: 1.2rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--brand);
}

/* ============================================================
   Custom CTA tease
   ============================================================ */

.custom-tease {
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
  border-left: 6px solid var(--brand);
  padding: 2.2rem 2.5rem;
  position: relative;
}
.custom-tease-inner { max-width: 64ch; }
.custom-tease p {
  color: var(--ink-2);
  margin: 0.4rem 0 1.3rem;
  font-size: 1.02rem;
}
.custom-tease h2 { margin-bottom: 0.3rem; max-width: 22ch; }

/* ============================================================
   Guarantee strip
   ============================================================ */

.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: center;
  padding: 2rem 2.4rem;
  border: 3px double var(--brand);
  background: var(--brand-tint);
}
.guarantee-seal {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  border: 4px solid var(--brand);
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  flex-shrink: 0;
}
.guarantee-seal span {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
}
.guarantee-seal small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  margin-top: 0.3rem;
  font-weight: 700;
}
.guarantee-copy h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin-bottom: 0.3rem;
}
.guarantee-copy p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1rem;
}

/* ============================================================
   Real-customer proof block
   ============================================================ */

.real-proof {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.6rem;
  align-items: center;
}
.real-proof-image {
  border: 4px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.real-proof-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.real-proof-copy h2 {
  max-width: 18ch;
  margin-bottom: 0.6rem;
}
.real-proof-copy p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.02rem;
}

/* ============================================================
   Brand-compatibility row
   ============================================================ */

.brand-compat {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.brand-compat .compat-eyebrow {
  margin: 0 0 0.85rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
}
.brand-compat .compat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  font-size: 0.92rem;
}
.brand-compat .compat-row span { white-space: nowrap; }

/* ============================================================
   Contact
   ============================================================ */

.contact {
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
  padding: 2.2rem 2.5rem;
}
.contact h2 { margin-bottom: 0.4rem; }
.contact p {
  margin: 0 0 1.2rem;
  color: var(--ink-2);
}

/* ============================================================
   Stats / services / industries / process / faq (services page)
   ============================================================ */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.stats-strip article {
  background: #fff;
  border: 1px solid var(--rule-strong);
  padding: 1.4rem;
}
.stats-strip article h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

.about {
  background: #fff;
  border: 1px solid var(--rule-strong);
  padding: 2rem;
}

.pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.pill-list li {
  border: 1px solid var(--ink);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

.process ol {
  list-style: none;
  margin: 0;
  padding: 1rem 1.4rem;
  display: grid;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--rule-strong);
}
.process li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink-2);
  font-size: 1rem;
}
.process span {
  min-width: 2.4rem;
  text-align: center;
  border-radius: 0;
  padding: 0.32rem 0.6rem;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  background: var(--brand);
  color: #fff;
}

.faq details {
  background: #fff;
  border: 1px solid var(--rule-strong);
  padding: 1.05rem 1.2rem;
  margin-bottom: 0.6rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  color: var(--brand);
  font-weight: 800;
  transition: transform 0.18s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 0.7rem;
  color: var(--mute);
}

.case-studies .card,
.leadership .card { background: #fff; }

/* ============================================================
   Color swatches / legend
   ============================================================ */

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 1.5rem;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  cursor: pointer;
  background: #888;
  padding: 0;
  display: inline-block;
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.swatch:hover { transform: scale(1.08); }
.swatch.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(253, 29, 37, 0.22);
}
.swatch-red   { background: #fd1d25; }
.swatch-black { background: #111111; }
.swatch-blue  { background: #11196b; }

/* ============================================================
   Product detail (catalog rows)
   ============================================================ */

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
  align-items: center;
  padding: 2.4rem 0;
  border-top: 1px solid var(--rule);
}
.product:first-of-type { border-top: 3px double var(--brand); }
.product.alt { direction: rtl; }
.product.alt > * { direction: ltr; }
.product-media {
  background: #fff;
  border: 1px solid var(--rule-strong);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}
.product-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.4rem;
}
.product-meta {
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
}
.label-list {
  font-size: 0.95rem;
  color: var(--mute);
  margin: 0.85rem 0 0;
  line-height: 1.65;
}
.color-picker {
  display: flex;
  gap: 0.65rem;
  margin: 1.3rem 0;
}
.buy-now {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  padding: 1rem 1.6rem;
}

/* ============================================================
   Custom-order form
   ============================================================ */

.custom-rules {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.custom-rules li {
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 0.5rem 0.95rem;
  font-size: 0.92rem;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
.custom-rules li strong { color: var(--brand); }

.custom-form-wrap {
  background: #fff;
  border: 1px solid var(--rule-strong);
  padding: 2rem;
}
.custom-form { display: grid; gap: 1.4rem; }
.form-field { display: grid; gap: 0.5rem; }
.form-field label {
  font-weight: 700;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 0.78rem 0.95rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(253, 29, 37, 0.18);
}
.color-picker-form { margin: 0; }
.cf-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.cf-label-row {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Sora", sans-serif !important;
  font-weight: 700;
}
.labels-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-btn {
  background: none;
  border: none;
  color: var(--brand);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
}
.link-btn:hover { text-decoration: underline; }
.form-hint {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  color: var(--mute);
}
.cf-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  flex-wrap: wrap;
}
.cf-summary-label {
  display: block;
  font-size: 0.78rem;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}
.cf-summary-amt {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--brand);
}
.form-fineprint {
  font-size: 0.85rem;
  color: var(--mute);
  margin: 0;
}

.custom-faq h2 { margin-bottom: 1rem; }
.custom-faq details {
  background: #fff;
  border: 1px solid var(--rule-strong);
  padding: 1.05rem 1.2rem;
  margin-bottom: 0.6rem;
}
.custom-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.custom-faq summary::-webkit-details-marker { display: none; }
.custom-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  color: var(--brand);
  font-weight: 800;
  transition: transform 0.18s ease;
}
.custom-faq details[open] summary::after { transform: rotate(45deg); }
.custom-faq p {
  margin-top: 0.7rem;
  color: var(--mute);
}

/* ============================================================
   About page split
   ============================================================ */

.about-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.6rem;
  align-items: center;
}
.about-copy .lead {
  font-size: 1.25rem;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.35;
}
.about-photo {
  background: var(--ink);
  border: 4px solid var(--ink);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.principles { margin-top: 3rem; }
.principles h2 { margin-bottom: 1.4rem; }
.about-cta {
  text-align: center;
  padding: 2.2rem 1rem;
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
}
.about-cta .hero-actions { justify-content: center; margin-top: 1.2rem; }

/* ============================================================
   Footer
   ============================================================ */

footer {
  border-top: 4px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
  width: 100%;
}
footer .footer-grid,
footer .footer-fineprint {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid > div { display: grid; gap: 0.45rem; }
.footer-brand {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}
.footer-tag {
  margin: 0.4rem 0 0;
  color: rgba(244, 237, 225, 0.65);
  font-size: 0.92rem;
  max-width: 32ch;
}
.footer-heading {
  margin: 0 0 0.4rem;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brand);
}
.footer-grid a {
  color: rgba(244, 237, 225, 0.78);
  text-decoration: none;
  font-size: 0.94rem;
}
.footer-grid a:hover { color: var(--brand); }
.footer-fineprint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(244, 237, 225, 0.55);
  border-top: 1px solid #2a2a2a;
  padding-top: 1.2rem;
}

/* ============================================================
   Reveal animation
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .hero-product,
  .product,
  .about-split,
  .proof-strip,
  .real-proof,
  .founder { grid-template-columns: 1fr; gap: 2rem; }
  .product.alt { direction: ltr; }
  .pack-grid,
  .why-strip,
  .three-col,
  .toolbox-grid,
  .color-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-wall-band,
  .shop-wall-overlay { min-height: 460px; }
  .shop-wall-image { min-height: 460px; max-height: 600px; }
}

@media (max-width: 980px) {
  .card-grid,
  .stats-strip,
  .two-col { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-row article:nth-child(2) { border-right: none; }
  .trust-row article:nth-child(1),
  .trust-row article:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--paper-2);
    border: 1px solid var(--rule-strong);
    padding: 0.85rem;
    margin-top: 0.6rem;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .site-nav.open { display: flex; }
  .site-header { flex-wrap: wrap; align-items: flex-start; }

  .pack-grid,
  .why-strip,
  .three-col,
  .footer-grid,
  .cf-labels,
  .card-grid,
  .stats-strip,
  .two-col,
  .toolbox-grid,
  .color-grid { grid-template-columns: 1fr; }
  .shop-wall-band,
  .shop-wall-overlay { min-height: 400px; }
  .shop-wall-image { min-height: 400px; max-height: 480px; }
  .shop-wall-overlay { padding: 2.5rem 4vw 2rem; }

  .why-strip article { border-right: none; border-bottom: 1px solid var(--rule); padding: 1rem 0; }
  .why-strip article:last-child { border-bottom: none; }

  .trust-row { grid-template-columns: 1fr; }
  .trust-row article { border-right: none; border-bottom: 1px solid var(--rule); }
  .trust-row article:last-child { border-bottom: none; }

  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee-seal { margin-inline: auto; }

  .hero-product-media,
  .product-media { aspect-ratio: 4 / 3; }

  .real-toolboxes {
    margin-left: -4vw;
    margin-right: -4vw;
  }

  .custom-tease,
  .contact,
  .custom-form-wrap,
  .founder { padding: 1.6rem; }
}
