/* =========================================================
   Pointer Printing — design system v2
   Apple-style: light primary, strategic dark sections,
   premium typography, generous whitespace.
   ========================================================= */

:root {
  /* Dark palette (primary) */
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --text: #fafaf5;
  --text-muted: #a8a8a3;
  --text-subtle: #6b6b66;
  --border: #262624;
  --border-strong: #3a3a37;

  /* Light cinematic surfaces (used for strategic contrast moments) */
  --bg-dark: #050505;
  --surface-dark: #0f0f0f;
  --text-dark: #fafaf5;
  --text-dark-muted: #a8a8a3;
  --border-dark: #1f1f1d;

  /* Accent — warm ink orange */
  --accent: #ea580c;
  --accent-hover: #f97316;
  --accent-soft: rgba(234, 88, 12, 0.14);

  /* Typography */
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1280px;
  --maxw-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  /* Motion */
  --t: 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-slow: 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--t), opacity var(--t);
}
a:hover { color: var(--accent); }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}

p { color: var(--text-muted); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Header / nav (inverted: dark bar) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.brand:hover { color: var(--accent); }

.nav-primary {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.nav-primary a { color: inherit; opacity: 0.85; transition: opacity var(--t), color var(--t); }
.nav-primary a:hover { opacity: 1; color: var(--accent); }

/* Dropdown nav */
.nav-item { position: relative; }

.nav-item__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-item__chevron {
  width: 10px;
  height: 6px;
  transition: transform var(--t);
}

.nav-item:hover .nav-item__chevron,
.nav-item:focus-within .nav-item__chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 320px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  display: grid;
  gap: 0.15rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* invisible hover bridge so dropdown does not close when crossing the gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -0.65rem;
  left: 0;
  right: 0;
  height: 0.65rem;
}

.nav-dropdown__item {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  text-transform: none;
  letter-spacing: -0.005em;
  opacity: 1 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  transition: background var(--t), color var(--t);
}

.nav-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

.nav-dropdown__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-dropdown__icon svg { width: 16px; height: 16px; }

.nav-dropdown__text { display: flex; flex-direction: column; gap: 2px; }

.nav-dropdown__title {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.nav-dropdown__desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.cart-toggle {
  position: relative;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--t);
}

.cart-toggle:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.site-header .btn--primary {
  background: #fff;
  color: #0a0a0a;
}
.site-header .btn--primary:hover {
  background: var(--accent);
  color: #fff;
}

.cart-count {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0 0.45rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.78rem;
  min-width: 18px;
  text-align: center;
}

@media (max-width: 880px) {
  .nav-primary { display: none; }
  .site-header__inner { gap: 1rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--t);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: var(--surface);
}

.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* dark variants for buttons inside dark sections */
.is-dark .btn--primary { background: #fff; color: #0a0a0a; }
.is-dark .btn--primary:hover { background: var(--accent); color: #fff; }
.is-dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
.is-dark .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section--tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section.is-dark {
  background: var(--bg-dark);
  color: var(--text-dark);
}
.is-dark h1, .is-dark h2, .is-dark h3, .is-dark h4 { color: #fff; }
.is-dark p { color: var(--text-dark-muted); }
.is-dark a { color: #fff; }
.is-dark a:hover { color: var(--accent); }

.section__head {
  margin-bottom: 4rem;
  max-width: 56ch;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__head h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.section__head p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle ambient orange wash for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 85% 0%, rgba(234, 88, 12, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 5% 100%, rgba(234, 88, 12, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Film-grain texture so the black is not a sterile flat color */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.hero__inner { position: relative; z-index: 1; }

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.35fr 1fr;
    gap: 3rem;
  }
}

.hero__copy { max-width: 56ch; }

.hero h1 {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}

.hero p {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 1.6rem;
  max-width: 48ch;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1108 0%, #2a1d0c 50%, #3a280f 100%);
  margin-left: auto;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(234, 88, 12, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.hero__visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero__visual-content svg {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(10, 10, 10, 0.18));
}

/* small floating chips for variety */
.hero__chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0a0a0a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__chip--tl { top: 8%; left: 6%; }
.hero__chip--br { bottom: 10%; right: 6%; }

/* ---------- Marquee strip (animated social proof) ---------- */
.proof-strip {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.proof-strip__label {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
}

.proof-strip__label::before,
.proof-strip__label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--border-strong);
  vertical-align: middle;
  margin: 0 0.85rem;
}

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  transition: all var(--t);
}

.marquee__item:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.marquee__item:hover .marquee__icon {
  background: var(--accent);
  color: #fff;
}

.marquee__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
}

.marquee__icon svg { width: 14px; height: 14px; }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--t), color var(--t);
}

.service-card:hover .service-card__icon {
  background: var(--accent);
  color: #fff;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
  transition: color var(--t);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  transition: color var(--t);
}

.service-card:hover h3 { color: var(--bg); }
.service-card:hover p { color: rgba(10, 10, 10, 0.7); }
.service-card:hover .service-card__cta { color: var(--accent); }

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--t), color var(--t);
}

.service-card__cta:hover {
  color: var(--accent-hover);
  gap: 0.7rem;
}

.service-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t);
}

.service-card:hover .service-card__cta {
  gap: 0.7rem;
}

/* ---------- Verticals (Who we serve) ---------- */
.verticals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.vertical {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  transition: all var(--t);
  cursor: default;
}

.vertical:hover {
  transform: translateY(-3px);
  border-color: var(--text);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.vertical__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vertical__bg--biz {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.vertical__bg--church {
  background: linear-gradient(135deg, #4a3a5c 0%, #2d2540 100%);
}
.vertical__bg--athletics {
  background: linear-gradient(135deg, #7B0F1B 0%, #0A2240 100%);
}
.vertical__bg--schools {
  background: linear-gradient(135deg, #1d4ed8 0%, #0c2461 100%);
}
.vertical__bg--events {
  background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
}

.vertical__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.18) 0%, transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
}

.vertical__title,
.vertical__sub {
  position: relative;
  z-index: 1;
}

.vertical__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 11ch;
}

.vertical__sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: process;
}

.process__step {
  position: relative;
  padding-top: 2.5rem;
}

.process__step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.process__step::after {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 2.5rem;
  right: 0;
  height: 1px;
  background: var(--border);
}

.process__step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process__step p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.is-dark .process__step::after { background: var(--border-dark); }

/* ---------- Featured work (dark cinematic) ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 880px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.work-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  transition: all var(--t);
}

.work-tile:hover { transform: translateY(-3px); }

.work-tile__visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-tile__visual--1 { background: linear-gradient(135deg, #1a1a1a 0%, #2a1f1f 100%); }
.work-tile__visual--2 { background: linear-gradient(135deg, #1f1a2e 0%, #2a1a3e 100%); }
.work-tile__visual--3 { background: linear-gradient(135deg, #1a2a1f 0%, #2a3a2a 100%); }
.work-tile__visual--4 { background: linear-gradient(135deg, #2a1a1a 0%, #3a2a1a 100%); }
.work-tile__visual--5 { background: linear-gradient(135deg, #1a2a2f 0%, #1f3a4a 100%); }
.work-tile__visual--6 { background: linear-gradient(135deg, #2f1a2a 0%, #4a1f3a 100%); }

.work-tile__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.work-tile__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.work-tile__caption h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.work-tile__caption span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* SVG accent inside work tile */
.work-tile__svg {
  width: 50%;
  opacity: 0.85;
  position: relative;
  z-index: 0;
}

/* ---------- School store hub (lighter, smaller priority now) ---------- */
.stores-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.store-card-v2 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.store-card-v2:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.store-card-v2__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.store-card-v2__pill {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
}

.store-card-v2__pill--soon {
  background: var(--surface-2);
  color: var(--text-muted);
}

.store-card-v2__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.store-card-v2__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.store-card-v2--placeholder {
  border-style: dashed;
  background: transparent;
}

/* ---------- Quote CTA section (strategic light moment) ---------- */
.cta-block {
  background: linear-gradient(135deg, #fafaf5 0%, #f0e8e5 100%);
  color: #0a0a0a;
  border-radius: calc(var(--radius) * 1.5);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(234, 88, 12, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.08) 0%, transparent 50%);
}

.cta-block > * { position: relative; z-index: 1; }

.cta-block h2 {
  color: #0a0a0a;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.cta-block p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 2rem;
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; max-width: 720px; }

.form__row { display: grid; gap: 0.5rem; }

.form__row--two { grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 600px) {
  .form__row--two { grid-template-columns: 1fr; }
}

.form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.form input,
.form select,
.form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--t), box-shadow var(--t);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.form textarea { min-height: 140px; resize: vertical; }

.form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23fafaf5' stroke-width='2' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ---------- Filter chips ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.filter-bar__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--t);
}

.filter-chip:hover { border-color: var(--text); color: var(--text); }

.filter-chip.is-active {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--text);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.product-card__image {
  aspect-ratio: 1 / 1;
  background: #fafaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

a.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__image:not(.has-image)::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(0,0,0,0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,0.04) 25%, transparent 25%);
  background-size: 14px 14px;
  pointer-events: none;
}

.product-card__image-fallback {
  position: relative;
  z-index: 1;
}

.product-card__variants {
  font-size: 0.78rem;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}

a.product-card {
  text-decoration: none;
  color: inherit;
}

.product-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-card__price {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.product-card__price--pending {
  color: var(--text-subtle);
  font-style: italic;
  font-weight: 400;
}

.product-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

/* ---------- Page banner (sub-pages) ---------- */
.page-banner {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-banner.is-dark {
  background: var(--bg-dark);
  color: var(--text-dark);
  border-bottom: none;
}

.page-banner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.page-banner p {
  font-size: 1.1rem;
  max-width: 56ch;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  letter-spacing: -0.005em;
}

.breadcrumb a:hover { color: var(--accent); }

/* ---------- Cart drawer ---------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__head h3 { font-size: 1.2rem; }

.cart-drawer__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: all var(--t);
}

.cart-drawer__close:hover { background: var(--text); color: #fff; }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-drawer__empty {
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.95rem;
}

.cart-drawer__foot {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Notice ---------- */
.notice {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent);
}

.notice strong { color: var(--text); font-weight: 600; }
.notice a { color: var(--accent); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-dark);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter) 2.5rem;
  margin-top: 0;
}

.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.site-footer h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  font-size: 0.92rem;
}

.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: #fff; }

.site-footer__legal {
  max-width: var(--maxw);
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
