/* ============================================================
   Crestfitness Franchise — Design System
   Cream paper · Deep ink · Electric lime accent
   ============================================================ */

:root {
  /* palette — Crestfitness brand: black + white + brand green */
  --paper: #050505;        /* near-black background */
  --paper-soft: #121212;   /* card surface */
  --paper-line: #232323;   /* hairlines */
  --ink: #F5F5F2;          /* off-white type */
  --ink-soft: #B9B9B4;     /* secondary text */
  --ink-mute: #6E6E6A;     /* tertiary text */
  --lime: #8FC93A;         /* Crest brand green */
  --lime-deep: #6FA82A;
  --lime-shadow: rgba(143, 201, 58, 0.40);
  --on-lime: #0A0A0A;      /* always-dark text/border on lime surfaces */

  /* type */
  --font-sans: "Poppins", -apple-system, system-ui, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --font-serif: "Instrument Serif", Georgia, serif;

  /* radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* page */
  --gutter: clamp(24px, 4vw, 56px);
  --max: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--lime); color: var(--ink); }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.45;
}

body {
  /* faint atmosphere — lime glow top-right, ink wash on the left */
  background-image:
    radial-gradient(1100px 600px at 80% -10%, rgba(143,201,58,0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(143,201,58,0.04), transparent 60%);
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

a { color: inherit; text-decoration: none; }

/* ----------- helpers ----------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--ink-soft);
}
.eyebrow.no-line::before { display: none; }

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

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

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-sans);
  font-size: 13px;
}
.topbar-inner {
  padding: 9px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  color: var(--ink-soft);
  font-weight: 400;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
  transition: color .15s;
}
.topbar-item:hover { color: var(--ink); }
.topbar-item .phone-glyph {
  width: 16px; height: 16px;
  color: var(--ink-soft);
}

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav-wrap.scrolled { border-color: var(--paper-line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  line-height: 1;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--lime);
}
.nav-link .chev {
  width: 12px; height: 12px;
  opacity: 0.8;
}

.nav-search {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-left: 12px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
}
.nav-search:hover { background: rgba(255,255,255,0.06); border-color: var(--paper-line); }

.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  padding: 11px 20px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .12s ease, background .15s, color .15s, box-shadow .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-ink:hover { background: #1d1d1b; }
.btn-lime {
  background: var(--lime);
  color: var(--on-lime);
  border-color: var(--on-lime);
  box-shadow: 0 1px 0 var(--on-lime), 4px 4px 0 var(--on-lime);
}
.btn-lime:hover {
  transform: translate(-1px, -1px);
  box-shadow: 0 1px 0 var(--ink), 6px 6px 0 var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 24px; font-size: 15px; }

.btn .arrow {
  display: inline-block;
  transition: transform .15s;
}
.btn:hover .arrow { transform: translate(2px, -2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(48px, 7vw, 110px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  background-color: var(--paper);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.85) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 18%, rgba(5,5,5,0.92) 40%, rgba(5,5,5,0.55) 65%, rgba(5,5,5,0.2) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.35) 0%, transparent 25%, transparent 60%, var(--paper) 100%);
}
.hero > .shell { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 var(--lime-shadow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--lime-shadow); }
  70%  { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.97;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-h1 .lime-mark {
  background: var(--lime);
  color: var(--on-lime);
  padding: 0 0.06em;
  margin: 0 -0.02em;
  display: inline-block;
  transform: rotate(-1deg);
}
.hero-h1 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 460px;
  margin-top: 28px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-card {
  background: rgba(15, 15, 14, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(245, 245, 242, 0.12);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  color: #F5F5F2;
}
.hero-card .num-sub {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(245,245,242,0.7);
  max-width: 220px;
}
.hero-card .corner-tag {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,245,242,0.5);
}
.hero-card.dark {
  background: rgba(5, 5, 5, 0.72);
  color: #F5F5F2;
  border-color: rgba(245, 245, 242, 0.18);
}
.hero-card .num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-card.dark .num { color: var(--lime); }
.hero-card.dark .num-sub { color: rgba(245,245,242,0.7); }
.hero-card .corner-tag {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-card.dark .corner-tag { color: rgba(245,245,242,0.5); }

.hero-marquee {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.hero-marquee::before,
.hero-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1;
  pointer-events: none;
}
.hero-marquee::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.hero-marquee::after  { right: 0; background: linear-gradient(270deg, var(--paper), transparent); }
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee-item .dot { width: 6px; height: 6px; background: var(--ink); border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION FRAME
   ============================================================ */
.sec {
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--paper-line);
}
.sec-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.sec-head .left .section-label { margin-bottom: 14px; display: block; }
.sec-head .left h2 {
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.sec-head .right {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  padding-bottom: 8px;
}

/* ============================================================
   STATS / USP
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.stat {
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  position: relative;
  transition: transform .2s, box-shadow .2s, background .2s;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat:hover {
  transform: translateY(-2px);
  background: var(--paper);
  box-shadow: 0 12px 36px -18px rgba(15,15,14,0.18);
}
.stat .stat-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.stat .stat-val {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-top: auto;
}
.stat .stat-val.smaller { font-size: 38px; }
.stat .stat-label {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.stat.lime {
  background: var(--lime);
  color: var(--on-lime);
  border-color: var(--on-lime);
}
.stat.lime:hover { background: var(--lime); }
.stat.lime .stat-tag { color: rgba(10,10,10,0.55); }
.stat.lime .stat-label { color: rgba(10,10,10,0.72); }
.stat.dark {
  background: #0F0F0E;
  color: #F5F5F2;
  border-color: #1F1F1D;
}
.stat.dark .stat-tag { color: rgba(245,245,242,0.55); }
.stat.dark .stat-label { color: rgba(245,245,242,0.72); }

/* widths */
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }

/* ============================================================
   WHY (3-up)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  transition: background .2s, transform .2s;
}
.why-card:hover { transform: translateY(-3px); }
.why-card .why-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.why-card .why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  display: grid; place-items: center;
  color: var(--ink);
}
.why-card.feature {
  background: #0F0F0E;
  color: #F5F5F2;
  border-color: #1F1F1D;
}
.why-card.feature .why-num { color: rgba(245,245,242,0.5); }
.why-card.feature .why-icon {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--on-lime);
}
.why-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.why-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: auto;
}
.why-card.feature p { color: rgba(245,245,242,0.72); }

/* ============================================================
   JOURNEY
   ============================================================ */
.journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  position: relative;
}
.journey-step {
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  padding: 22px 18px 22px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  position: relative;
  transition: background .2s, transform .2s;
}
.journey-step:hover { background: var(--paper); transform: translateY(-2px); }
.journey-step .step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 10px;
}
.journey-step .step-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--paper-line);
}
.journey-step .step-title {
  margin-top: 24px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.journey-step .step-desc {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.journey-step .step-dot {
  position: absolute;
  bottom: 18px; left: 22px;
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
}
.journey-step.active {
  background: var(--lime);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.25);
}
.journey-step.active .step-num { color: rgba(255,255,255,0.85); }
.journey-step.active .step-num::after { background: rgba(255,255,255,0.4); }
.journey-step.active .step-dot { background: #FFFFFF; }
.journey-step.active .step-title { color: #FFFFFF; }
.journey-step.active .step-desc { color: rgba(255,255,255,0.92); }

/* ============================================================
   INCLUDED / PROVIDE
   ============================================================ */
.provide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.provide {
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background .2s, transform .2s;
  min-height: 110px;
}
.provide:hover { background: var(--paper); transform: translateX(2px); }
.provide .provide-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  display: grid; place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}
.provide .provide-body { display: flex; flex-direction: column; gap: 4px; }
.provide .provide-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.provide .provide-sub {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ============================================================
   ROI BANNER
   ============================================================ */
.roi {
  background: #0F0F0E;
  color: #F5F5F2;
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.roi::before {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--lime-shadow), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.roi h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.roi h2 .lime-text { color: var(--lime); }
.roi p {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245,245,242,0.72);
  max-width: 520px;
}
.roi-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-roi {
  background: var(--lime);
  color: var(--on-lime);
  border-color: var(--lime);
  box-shadow: 0 0 0 0 var(--lime-shadow);
}
.btn-roi:hover { box-shadow: 0 0 0 8px var(--lime-shadow); }

.btn-roi-ghost {
  background: transparent;
  color: #F5F5F2;
  border-color: rgba(245,245,242,0.4);
}
.btn-roi-ghost:hover {
  background: #F5F5F2;
  color: #0A0A0A;
  border-color: #F5F5F2;
}

.roi-graph {
  background: rgba(245,245,242,0.04);
  border: 1px solid rgba(245,245,242,0.12);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
}
.roi-graph .glabel {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,245,242,0.55);
  margin-bottom: 18px;
}
.roi-graph svg { width: 100%; height: auto; }

/* ============================================================
   VIDEO
   ============================================================ */
.video-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border: 1px solid var(--paper-line);
}
.video-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(217,255,61,0.05) 0 8px, transparent 8px 24px),
    radial-gradient(circle at 30% 40%, rgba(217,255,61,0.15), transparent 50%),
    linear-gradient(135deg, #1a1a18, #0a0a09);
}
.video-content { position: relative; text-align: center; color: var(--paper); padding: 24px; }
.play-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--on-lime);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  cursor: pointer;
  border: 0;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 0 0 var(--lime-shadow);
}
.play-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 16px rgba(217,255,61,0.18);
}
.video-content .vtitle {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.video-content .vsub {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(238,233,221,0.65);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.video-chips {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.video-chip {
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}
.video-chip .chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime-deep);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--paper-line);
}
.faq-item {
  border-bottom: 1px solid var(--paper-line);
  transition: background .15s;
}
.faq-item:hover { background: rgba(15,15,14,0.02); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 28px 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}
.faq-q .faq-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s, background .15s;
}
.faq-item.open .faq-q .faq-icon {
  background: var(--ink);
  color: var(--lime);
  transform: rotate(45deg);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ============================================================
   FORM
   ============================================================ */
.form-card {
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 56px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(15,15,14,0.06);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230F0F0E' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field.error input,
.field.error select,
.field.error textarea { border-color: #b04a2c; box-shadow: 0 0 0 4px rgba(176,74,44,0.08); }
.field .err-msg {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #b04a2c;
  letter-spacing: 0.04em;
}

.form-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-error-banner {
  margin-top: 18px;
  background: rgba(176, 74, 44, 0.08);
  border: 1px solid rgba(176, 74, 44, 0.3);
  color: #d97757;
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
}
button.btn:disabled {
  opacity: 0.55;
  cursor: progress;
  pointer-events: none;
}
.form-foot .meta {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-foot .meta .pulse-dot { animation-duration: 1.6s; }

.form-success {
  text-align: center;
  padding: 40px 0 8px;
}
.form-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--lime);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  color: var(--on-lime);
}
.form-success h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.form-success p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 420px;
  margin-left: auto; margin-right: auto;
}

/* ============================================================
   FOOTER — multi-column
   ============================================================ */
.foot {
  border-top: 1px solid var(--paper-line);
  background: #050505;
  margin-top: 0;
}
.foot-top {
  padding: clamp(56px, 6vw, 84px) 0 clamp(40px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 56px);
  align-items: flex-start;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.foot-logo img { height: 60px; width: auto; display: block; }
.foot-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 240px;
}
.foot-desc b { color: var(--ink); font-weight: 600; }
.foot-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.foot-social a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--ink-soft);
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.foot-social a:hover { color: var(--lime); background: rgba(143,201,58,0.08); }

.foot-col h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.foot-col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.foot-col a:hover { color: var(--lime); }

.foot-bottom {
  padding: 22px 0 28px;
  border-top: 1px solid var(--paper-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.foot-links-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  color: var(--lime);
}
.foot-links-bottom .sep { color: var(--paper-line); }
.foot-links-bottom a:hover { color: var(--ink); }

/* address card next to form */
.form-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.address-card {
  background: #0E0E0E;
  border: 1px solid var(--paper-line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--ink);
}
.address-card .ac-block .ac-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  color: var(--ink);
}
.address-card .ac-block .ac-value {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.address-card .ac-block .ac-value a {
  display: block;
  color: var(--ink-soft);
  transition: color .15s;
}
.address-card .ac-block .ac-value a:hover { color: var(--lime); }

@media (max-width: 1080px) {
  .foot-top { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ROI MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,15,14,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper);
  border-radius: var(--r-xl);
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--paper-line);
  transform: translateY(20px) scale(0.98);
  transition: transform .25s ease;
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal .close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  display: grid; place-items: center;
  color: var(--ink);
}
.modal h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.modal .modal-sub {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}
.calc-row {
  margin-top: 24px;
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  padding: 22px;
}
.calc-row label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; justify-content: space-between;
}
.calc-row label .val {
  color: var(--ink);
  font-weight: 500;
}
.calc-row input[type="range"] {
  width: 100%;
  margin-top: 14px;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  background: var(--paper-line);
}
.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--on-lime);
  cursor: pointer;
}
.calc-row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--on-lime);
  cursor: pointer;
}
.calc-results {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.calc-result {
  background: #0F0F0E;
  color: #F5F5F2;
  border-radius: var(--r-lg);
  padding: 22px;
}
.calc-result .crtag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,245,242,0.55);
}
.calc-result .crval {
  margin-top: 12px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.calc-result .crval.lime { color: var(--lime); }
.calc-result .crsub {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(245,245,242,0.6);
}
.calc-cta { margin-top: 20px; }

/* ============================================================
   MOBILE NAV TOGGLE (WordPress)
   ============================================================ */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--paper-line);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WordPress nav menu compatibility — make wp_nav_menu output match the design. */
.nav-links .nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
}
.nav-links .nav-menu li { list-style: none; }
.nav-links .nav-menu a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links .nav-menu a:hover { color: var(--ink); }
.nav-links .nav-menu .current-menu-item > a,
.nav-links .nav-menu .current_page_item > a { color: var(--ink); }
.nav-links .nav-menu .current-menu-item > a::after,
.nav-links .nav-menu .current_page_item > a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--lime);
}

/* WordPress admin bar offset */
.admin-bar .nav-wrap { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .nav-wrap { top: 46px; }
}

/* Skip-link a11y */
.skip-link {
  position: absolute; left: -9999px; top: -9999px;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px;
  background: var(--lime); color: var(--on-lime);
  padding: 8px 14px; border-radius: 6px;
  z-index: 10000;
}
.screen-reader-text:not(:focus):not(:active) {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   ABOUT PAGE — clean editorial layout
   ============================================================ */

/* Compact hero — much shorter than the franchise hero */
.about-hero {
  position: relative;
  overflow: hidden;
  background: #050505;
  min-height: clamp(240px, 32vw, 360px);
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--paper-line);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.about-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 65%;
  filter: saturate(0.6) contrast(1.05) brightness(0.55);
}
.about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.45) 60%, rgba(5,5,5,0.85) 100%),
    radial-gradient(900px 360px at 70% 50%, rgba(143,201,58,0.10), transparent 65%);
}
.about-hero > .shell {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.about-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.about-hero-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}

/* Intro paragraph */
.about-intro {
  padding: clamp(56px, 7vw, 96px) 0 clamp(24px, 3vw, 40px);
}
.shell-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.about-intro p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: center;
  text-wrap: balance;
}
.about-intro .lime-emph {
  color: var(--lime);
  font-weight: 500;
  display: inline-block;
  margin-top: 4px;
}

/* Editorial content block — image + text, alternating */
.about-block {
  padding: clamp(48px, 6vw, 88px) 0;
}
.about-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about-block.reverse .about-block-grid {
  direction: rtl;
}
.about-block.reverse .about-block-grid > * {
  direction: ltr;
}
.about-block-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-soft);
}
.about-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.about-block-media:hover img { transform: scale(1.02); }

.about-block-text h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.about-block-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.about-block-text p:last-of-type { margin-bottom: 0; }
.about-block-cta {
  margin-top: 28px;
}

/* About page responsive */
@media (max-width: 900px) {
  .about-block-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-block.reverse .about-block-grid {
    direction: ltr;
  }
  /* On mobile, image always goes on top */
  .about-block .about-block-media { order: -1; }
  .about-block-media { aspect-ratio: 16 / 10; }
  .about-block { padding: 48px 0; }
}
@media (max-width: 720px) {
  .about-hero { min-height: 220px; padding: 48px 0; }
  .about-hero-title { font-size: 36px; }
  .about-intro { padding: 40px 0 8px; }
  .about-intro p { font-size: 17px; }
  .about-block-text h2 { font-size: 26px; margin-bottom: 16px; }
  .about-block-text p { font-size: 15px; }
}


/* Large tablet / small desktop */
@media (max-width: 1180px) {
  .nav-links { gap: 24px; }
  .nav-links .nav-menu { gap: 24px; }
  .foot-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .foot-top .foot-col:last-child { display: none; }
}

/* Tablet */
@media (max-width: 1080px) {
  :root { --gutter: clamp(20px, 4vw, 40px); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-side { flex-direction: row; }
  .hero-side .hero-card { flex: 1; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .sec-head .right { padding-bottom: 0; }
  .stats { grid-template-columns: repeat(6, 1fr); }
  .col-3, .col-4, .col-5 { grid-column: span 3; }
  .col-6 { grid-column: span 6; }
  .col-7, .col-8 { grid-column: span 6; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card:last-child { grid-column: span 2; }
  .journey { grid-template-columns: repeat(3, 1fr); }
  .provide-grid { grid-template-columns: 1fr 1fr; }
  .roi { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr 1fr; }
  .foot-top .foot-brand { grid-column: 1 / -1; }
  .foot-top .foot-col:last-child { display: block; }
}

/* Tablet portrait — start collapsing nav */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-search { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--paper-line);
    padding: 18px 24px 22px;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link,
  .nav-links .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--paper-line);
    font-size: 16px;
  }
  .nav-links .nav-link:last-child { border-bottom: 0; }
  .nav-links .nav-link.active::after { display: none; }
  .nav-links .nav-link.active { color: var(--lime); }
  .nav-links .nav-menu { width: 100%; gap: 0; }
  .nav-links .nav-menu li { border-bottom: 1px solid var(--paper-line); }
  .nav-links .nav-menu li:last-child { border-bottom: 0; }
  .nav-links .nav-menu a { padding: 14px 0; font-size: 16px; display: flex; }
  .nav-wrap { position: relative; }
  .nav { position: relative; }
}

/* Mobile */
@media (max-width: 720px) {
  :root { --gutter: 18px; }
  .topbar-inner { gap: 14px; font-size: 11.5px; justify-content: center; flex-wrap: wrap; padding: 8px 0; }
  .nav { padding: 14px 0; gap: 12px; }
  .logo-img { height: 44px; }
  .logo-tag { font-size: 9px; letter-spacing: 0.2em; }

  .hero { padding: 48px 0 64px; }
  .hero-h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-sub { font-size: 15px; }
  .hero-ctas .btn { padding: 12px 18px; font-size: 14px; }
  .hero-side { flex-direction: column; }

  .hero-marquee { margin-top: 32px; }

  .sec { padding: 56px 0; }
  .sec-head .left h2 { font-size: clamp(28px, 8vw, 40px); }
  .sec-head .right { font-size: 15px; }

  .stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .col-3, .col-4, .col-5, .col-6, .col-7, .col-8 { grid-column: span 1; }
  .stat { padding: 22px 18px 20px; min-height: 0; }
  .stat .stat-val { font-size: 40px; }
  .stat .stat-val.smaller { font-size: 24px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: 0; padding: 26px 22px; }
  .why-card:last-child { grid-column: auto; }
  .why-card h3 { font-size: 20px; }

  .journey { grid-template-columns: 1fr 1fr; gap: 10px; }
  .journey-step { min-height: 0; padding: 18px 16px 22px; }
  .journey-step .step-title { font-size: 17px; margin-top: 18px; }

  .provide-grid { grid-template-columns: 1fr; }
  .provide { padding: 18px; gap: 14px; }

  .roi { padding: 32px 24px; }
  .roi h2 { font-size: clamp(24px, 6vw, 32px); }
  .roi p { font-size: 15px; }
  .roi-actions { gap: 10px; }
  .roi-actions .btn { width: 100%; justify-content: center; }
  .roi-graph { padding: 18px; }

  .video-content .vtitle { font-size: 20px; }
  .play-circle { width: 72px; height: 72px; }
  .play-circle svg { width: 24px; height: 24px; }

  .faq-q { font-size: 16px; padding: 22px 0; }
  .faq-q .faq-icon { width: 32px; height: 32px; }
  .faq-a-inner { font-size: 15px; padding-bottom: 22px; }

  .form-card { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-foot { flex-direction: column; align-items: stretch; gap: 14px; }
  .form-foot .btn { width: 100%; justify-content: center; }
  .address-card { padding: 24px; }

  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; padding: 48px 0 32px; }
  .foot-top .foot-brand { grid-column: 1 / -1; }
  .foot-top .foot-col:last-child { display: block; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .foot-logo img { height: 50px; }

  .modal { padding: 24px; max-height: 92vh; }
  .modal h3 { font-size: 22px; }
  .calc-results { grid-template-columns: 1fr; }
  .calc-result .crval { font-size: 28px; }
  .calc-cta .btn { width: 100%; justify-content: center; }
}

/* Very small phones */
@media (max-width: 420px) {
  .hero-h1 { font-size: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .topbar-item { font-size: 11px; }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info {
  padding: clamp(40px, 5vw, 64px) 0 clamp(16px, 2vw, 32px);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-card {
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  transition: transform .2s, border-color .2s, background .2s;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  display: grid;
  place-items: center;
  color: var(--lime);
  margin-bottom: 4px;
}
.contact-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-card-value {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-top: auto;
}
.contact-card-value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s, color .15s;
}
.contact-card-value a:hover {
  color: var(--lime);
  border-color: var(--lime);
}

/* Map */
.contact-map-sec {
  padding: clamp(16px, 2vw, 32px) 0 clamp(48px, 6vw, 80px);
}
.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--paper-line);
  background: var(--paper-soft);
  aspect-ratio: 21 / 9;
  position: relative;
}
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.95);
}

@media (max-width: 1080px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 16 / 11; }
}
@media (max-width: 720px) {
  .contact-card { padding: 26px 22px; min-height: 0; }
  .contact-map { aspect-ratio: 4 / 5; }
}
