/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #0c0c0c;
  color: #e8e8e8;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Navigation ────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,12,12,0.97);
  border-bottom: 1px solid #1e1e1e;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: #fff;
  color: #0c0c0c !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: #ddd !important; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #e8e8e8; transition: all 0.2s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(12,12,12,0.99);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e8e8e8;
}
.mobile-menu.open { display: flex; }

/* ── Page wrapper ──────────────────────────────────────────────── */
.page-body { padding-top: 64px; }

/* ── Hero – homepage ───────────────────────────────────────────── */
.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 18px;
}
.hero-h1 {
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.btn { display: inline-block; padding: 14px 32px; border-radius: 4px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; transition: all 0.15s; cursor: pointer; border: none; }
.btn-white { background: #fff; color: #0c0c0c; }
.btn-white:hover { background: #ddd; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: #fff; }
.btn-green { background: #2e5c1a; color: #fff; }
.btn-green:hover { background: #3a7020; }

/* ── Section ───────────────────────────────────────────────────── */
.section { padding: 80px 32px; max-width: 1100px; margin: 0 auto; }
.section-sm { padding: 56px 32px; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 80px 32px; }
.section-full-inner { max-width: 1100px; margin: 0 auto; }

/* ── Typography ─────────────────────────────────────────────────── */
h2 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -0.5px; }
h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.lead { font-size: 17px; color: #bbb; line-height: 1.7; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #666; margin-bottom: 12px; }
.serif-italic { font-style: italic; color: #bbb; }

/* ── Three-col cards ────────────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.card { background: #141414; border: 1px solid #222; border-radius: 8px; padding: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14px; color: #999; line-height: 1.6; }

/* ── How-it-works steps ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.step-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: #555; text-transform: uppercase; margin-bottom: 10px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 14px; color: #999; }

/* ── Image gallery ──────────────────────────────────────────────── */
.img-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 48px 0; }
.img-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 48px 0; }
.img-grid-4 img, .img-grid-3 img { width: 100%; height: 240px; object-fit: cover; border-radius: 6px; }

/* ── Client logos ───────────────────────────────────────────────── */
.logos { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; margin-top: 40px; opacity: 0.6; }
.logos img { height: 36px; width: auto; filter: brightness(0) invert(1); }

/* ── Recovery CTA band ──────────────────────────────────────────── */
.recovery-band {
  background: #111;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 56px 32px;
  text-align: center;
}
.recovery-band h2 { margin-bottom: 12px; }
.recovery-band p { color: #999; max-width: 500px; margin: 0 auto 28px; }
.recovery-band a { font-size: 22px; font-weight: 800; color: #fff; }

/* ── Page hero (interior pages) ────────────────────────────────── */
.page-hero {
  padding: 80px 32px 60px;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid #1e1e1e;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -1px; margin-bottom: 20px; }
.page-hero h1 em { font-style: normal; display: block; }
.page-hero .hero-sub { font-size: 17px; color: #bbb; max-width: 580px; margin-bottom: 28px; }

/* ── Video hero (recovery) ──────────────────────────────────────── */
.video-hero { position: relative; height: 60vh; min-height: 400px; overflow: hidden; }
.video-hero video, .video-hero img.fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.video-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,12,12,0.2), rgba(12,12,12,0.7)); }
.video-hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.video-hero-content .eyebrow { color: #ff6b35; font-size: 12px; }
.video-hero-content h1 { font-size: clamp(36px, 7vw, 72px); font-weight: 800; letter-spacing: -1px; color: #fff; margin-bottom: 18px; }
.video-hero-content p { font-size: 16px; color: #bbb; max-width: 520px; margin: 0 auto 24px; }

/* ── Works / Doesn't work table ─────────────────────────────────── */
.works-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.works-col { background: #141414; border: 1px solid #222; border-radius: 8px; padding: 28px; }
.works-col.good { border-color: #2e5c1a; }
.works-col.limit { border-color: #3a2200; }
.works-col h3 { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; color: #666; }
.works-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.works-col.good li::before { content: "✓  "; color: #5a9e3a; font-weight: 700; }
.works-col.limit li::before { content: "·  "; color: #666; }
.works-col li { font-size: 14px; color: #bbb; }

/* ── Form ──────────────────────────────────────────────────────── */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 32px;
}
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; }
.form-header p { font-size: 16px; color: #aaa; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: #888; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;
  color: #e8e8e8;
  font-family: inherit;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #4a8a2e;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #141414; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; background: #fff; color: #0c0c0c; border: none; border-radius: 6px; font-size: 14px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: background 0.15s; margin-top: 8px; }
.form-submit:hover { background: #ddd; }
.form-steps { display: flex; gap: 20px; margin-bottom: 48px; }
.form-step { flex: 1; padding: 20px; background: #141414; border: 1px solid #1e1e1e; border-radius: 8px; }
.form-step-num { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #555; margin-bottom: 6px; }
.form-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.form-step p { font-size: 13px; color: #888; }
.call-instead { text-align: center; margin-top: 28px; font-size: 14px; color: #666; }
.call-instead a { color: #aaa; font-weight: 600; }

/* ── About page ─────────────────────────────────────────────────── */
.about-hero { padding: 80px 32px; max-width: 900px; margin: 0 auto; }
.about-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 10px; margin-bottom: 48px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.badge { background: #141414; border: 1px solid #222; border-radius: 4px; padding: 8px 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: #888; }

/* ── Blockquote ─────────────────────────────────────────────────── */
blockquote { border-left: 3px solid #2e5c1a; padding: 16px 24px; margin: 32px 0; background: #0f0f0f; border-radius: 0 6px 6px 0; }
blockquote p { font-size: 16px; color: #ccc; font-style: italic; line-height: 1.7; }
blockquote cite { display: block; margin-top: 10px; font-size: 12px; color: #666; font-style: normal; }

/* ── CTA section ────────────────────────────────────────────────── */
.cta-section { padding: 80px 32px; text-align: center; border-top: 1px solid #1a1a1a; }
.cta-section h2 { margin-bottom: 14px; }
.cta-section p { color: #999; max-width: 480px; margin: 0 auto 28px; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer { border-top: 1px solid #1a1a1a; padding: 32px; text-align: center; font-size: 13px; color: #555; }
footer a { color: #777; margin: 0 6px; }
footer a:hover { color: #aaa; }
.footer-top { margin-bottom: 12px; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .img-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .img-grid-3 { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-steps { flex-direction: column; }
  .logos { gap: 20px; }
  .section { padding: 60px 20px; }
  .section-sm { padding: 40px 20px; }
  .page-hero { padding: 56px 20px 40px; }
  .about-hero { padding: 56px 20px; }
  .form-wrap { padding: 48px 20px; }
  .recovery-band { padding: 40px 20px; }
  .cta-section { padding: 56px 20px; }
}

/* ── About page ──────────────────────────────────── */
.about-section { max-width: 960px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: start; }
.about-photo img { width: 100%; border-radius: 8px; object-fit: cover; }
.about-text h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; margin-bottom: 20px; }
.about-text p { color: #aaa; line-height: 1.7; margin-bottom: 16px; font-size: 16px; }
.about-text blockquote { border-left: 3px solid var(--accent); padding-left: 20px; margin: 28px 0; font-size: 18px; font-style: italic; color: #ddd; }
@media (max-width: 768px) {
  .about-section { grid-template-columns: 1fr; gap: 32px; }
  .about-photo img { max-height: 360px; }
}

/* ── Works/limits grid ───────────────────────────── */
.works-limits { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.limits-col { background: #141414; border: 1px solid #222; border-radius: 8px; padding: 28px; }
.limits-col h3 { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; color: #666; }
.limits-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.limits-col li { font-size: 14px; color: #bbb; line-height: 1.5; }
.limits-col li::before { content: "→  "; color: var(--accent); font-weight: 700; }
@media (max-width: 768px) { .works-limits { grid-template-columns: 1fr; } }

/* ── Video hero overlay content fix ─────────────── */
.video-hero-overlay { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.video-hero-overlay h1 { font-size: clamp(36px, 7vw, 72px); font-weight: 800; letter-spacing: -1px; color: #fff; margin-bottom: 18px; }
.video-hero-overlay .hero-sub { font-size: 16px; color: #bbb; max-width: 560px; margin: 0 auto 28px; }
.video-hero-overlay .eyebrow { margin-bottom: 12px; }
