/* ============================================
   Complex Capture — Design Tokens
   Color:  navy-950 #0E1B33, navy-800 #1B2A4A, teal-500 #2FBFB4,
           teal-100 #E3F6F5, slate-500 #5A6B85, paper-50 #F7F9FB
   Type:   Space Grotesk (display), Inter (body), IBM Plex Mono (data/labels)
   ============================================ */

:root {
  --navy-950: #0E1B33;
  --navy-800: #1B2A4A;
  --teal-500: #2FBFB4;
  --teal-600: #147A72;
  --teal-100: #E3F6F5;
  --slate-500: #3D4A61;
  --slate-300: #9AA7BC;
  --paper-50: #F7F9FB;
  --paper-0: #FFFFFF;
  --line: #C7D1DE;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper-50);
  color: var(--navy-800);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  margin: 0 0 0.5em 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em 0; }

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

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

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

/* -------- Blueprint grid background (signature texture) -------- */
.blueprint {
  background-image:
    linear-gradient(rgba(27,42,74,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,42,74,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* -------- Mono eyebrow / metadata labels -------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--teal-500);
  display: inline-block;
}

.meta-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}

/* -------- Top navy strip -------- */
.top-strip {
  height: 6px;
  background: linear-gradient(90deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--teal-600) 100%);
}

/* -------- Nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 251, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy-950);
}
.nav-brand img { height: 64px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  color: var(--navy-950);
  letter-spacing: -0.01em;
}
.nav-brand-tagline {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a { color: var(--navy-800); transition: color 0.15s; }
.nav-links a:hover { color: var(--teal-600); }
.nav-cta {
  background: var(--navy-950);
  color: var(--paper-0) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--teal-600); }

/* -------- Mobile nav toggle (hamburger) -------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--navy-950);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-primary {
  background: var(--teal-500);
  color: var(--navy-950);
}
.btn-primary:hover { background: var(--teal-600); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--paper-0);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--teal-500); color: var(--teal-500); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy-950);
  border: 1.5px solid var(--navy-950);
}
.btn-outline-dark:hover { border-color: var(--teal-600); color: var(--teal-600); }

/* -------- Hero -------- */
.hero {
  background: var(--navy-950);
  color: var(--paper-0);
  position: relative;
  overflow: hidden;
  padding: 72px 0 90px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-lockup img { height: 64px; width: auto; }
.hero-lockup-text { display: flex; flex-direction: column; }
.hero-lockup-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--paper-0);
  letter-spacing: -0.01em;
}
.hero-lockup-tagline {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-500);
}
.hero-copy .eyebrow { color: var(--teal-500); }
.hero-copy .eyebrow::before { background: var(--teal-500); }
.hero h1 {
  color: var(--paper-0);
  font-size: 44px;
  margin-bottom: 20px;
}
.hero-h1-stack { line-height: 1.15; }
.hero h1 span { color: var(--teal-500); }
.hero-sub {
  color: var(--slate-300);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--teal-500);
  display: block;
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-embed {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.hero-embed-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: rgba(14,27,51,0.85);
  color: var(--teal-500);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  border: 1px solid rgba(47,191,180,0.4);
}
.hero-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
}

/* -------- Section shells -------- */
section { padding: 96px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 { font-size: 34px; }
.section-head p { color: var(--slate-500); font-size: 16.5px; font-weight: 500; }

/* -------- Services grid -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
  border: none;
}
.service-card {
  background: var(--paper-0);
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(14,27,51,0.06);
}
.service-card .meta-tag { display: block; margin-bottom: 18px; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 15px; font-weight: 500; color: var(--slate-500); margin: 0; line-height: 1.6; }

/* -------- Work / samples grid -------- */
.work-section { background: var(--paper-0); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* -------- Navy section variant (dark-background contrast section) -------- */
.section-navy {
  background: var(--navy-950);
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.section-navy .eyebrow { color: var(--teal-500); }
.section-navy .section-head h2 { color: var(--paper-0); }
.section-navy .section-head p { color: var(--slate-300); }
.section-navy .deliverables-subhead { color: var(--paper-0); }
.section-navy .deliverables-custom { color: var(--slate-300); }
.section-navy .deliverables-custom a { color: var(--teal-500); }
.section-navy .deliverable-card .d-icon { border-color: var(--teal-500); color: var(--teal-500); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-0);
  box-shadow: 0 2px 10px rgba(14,27,51,0.06);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.work-card:hover { border-color: var(--teal-500); box-shadow: 0 4px 16px rgba(14,27,51,0.1); }
.work-card-embed-wrap { position: relative; background: var(--navy-950); }
.work-card-embed-wrap iframe {
  width: 100%;
  height: 240px;
  border: none;
  display: none;
}
.work-card-embed-wrap.active iframe { display: block; }
.work-card-placeholder {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--teal-500);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  gap: 10px;
  background: linear-gradient(135deg, #14213D 0%, #0E1B33 100%);
}
.work-card-placeholder:hover { background: linear-gradient(135deg, #182849 0%, #101d38 100%); }
.play-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card-body { padding: 20px 22px 24px; }
.work-card-tag { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; color: var(--teal-600); text-transform: uppercase; letter-spacing: 0.08em; }
.work-card h3 { font-size: 17px; margin: 8px 0 0; }

/* -------- Process -------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step { position: relative; padding-top: 22px; border-top: 2px solid var(--navy-950); }
.process-step .meta-tag { color: var(--teal-600); }
.process-step h3 { font-size: 17px; margin: 10px 0 8px; }
.process-step p { font-size: 14.5px; font-weight: 500; color: var(--slate-500); line-height: 1.6; }

/* -------- CTA band -------- */
.cta-band {
  background: var(--navy-950);
  color: var(--paper-0);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { color: var(--paper-0); font-size: 30px; margin-bottom: 14px; }
.cta-band p { color: var(--slate-300); margin-bottom: 32px; }

/* -------- Footer -------- */
footer {
  background: var(--paper-0);
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.footer-brand img { height: 58px; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--navy-950); }
.footer-brand-tagline { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); font-weight: 600; }
.footer-contact { font-size: 15px; font-weight: 500; color: var(--slate-500); }
.footer-contact a { color: var(--navy-800); font-weight: 600; }
.footer-bottom {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-300);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* -------- Page hero (interior pages) -------- */
.page-hero {
  background: var(--navy-950);
  color: var(--paper-0);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--paper-0); font-size: 36px; }
.page-hero p { color: var(--slate-300); max-width: 560px; font-size: 16px; margin: 0; }

/* -------- Intake form -------- */
.form-shell {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(14,27,51,0.07);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.form-shell::before {
  content: 'INTAKE FORM · CC-001';
  position: absolute;
  top: -1px; left: 48px;
  transform: translateY(-50%);
  background: var(--paper-0);
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--teal-600);
}
.form-row { margin-bottom: 22px; }
.form-row-double { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy-800);
  background: var(--paper-50);
  transition: border-color 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--paper-0);
}
textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 13px; color: var(--slate-500); margin-top: -8px; margin-bottom: 22px; }
.contact-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--slate-500);
  flex-wrap: wrap;
}
.contact-strip a { color: var(--navy-800); font-weight: 600; }
.contact-strip a:hover { color: var(--teal-600); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success h3 { color: var(--teal-600); }

/* -------- Skip link / focus -------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .nav-brand img { height: 44px; }
  .nav .wrap { height: 76px; }
  .nav-brand-name { font-size: 18px; }
  .nav-brand-tagline { font-size: 9.5px; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-embed { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper-0);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a {
    width: 100%;
    padding: 14px 32px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta { margin: 12px 32px; width: calc(100% - 64px); text-align: center; }

  .form-row-double { grid-template-columns: 1fr; }
  .form-shell { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-embed-label, .carousel-slide-label { font-size: 10px; padding: 5px 9px; }
  .hero-carousel iframe, .carousel-slide iframe, .carousel-slide video, .carousel-slide img { height: 240px; }

  section { padding: 56px 0; }
  .section-head h2 { font-size: 25px; }
  .page-hero { padding: 44px 0 40px; }
  .page-hero h1 { font-size: 26px; }

  .services-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .sample-gallery-grid { grid-template-columns: 1fr; }

  .deliverables-primary { flex-direction: column; align-items: flex-start; text-align: left; }
  .deliverables-primary .btn { width: 100%; justify-content: center; }

  .footer-grid { flex-direction: column; align-items: flex-start; gap: 20px; }
  .contact-strip { flex-direction: column; gap: 14px; align-items: center; }

  .form-row-triple { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* -------- Hero carousel -------- */
.hero-carousel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  background: var(--navy-950);
}
.carousel-slide {
  display: none;
  position: relative;
}
.carousel-slide.active { display: block; }
.carousel-slide iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}
.carousel-slide video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  background: var(--navy-950);
}
.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  background: var(--navy-950);
}
.carousel-slide-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: rgba(14,27,51,0.85);
  color: var(--teal-500);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  border: 1px solid rgba(47,191,180,0.4);
}
.placeholder-slide {
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(135deg, #172846 0%, #0E1B33 100%);
  background-size: 32px 32px, 32px 32px, cover;
}
.placeholder-slide .ph-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-500);
  font-size: 22px;
}
.placeholder-slide .ph-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-300);
}
.carousel-dots {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 5;
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: var(--teal-500); }

/* -------- Intro strip (broadened positioning copy) -------- */
.intro-strip {
  background: var(--paper-0);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.intro-strip p {
  font-size: 19px;
  color: var(--navy-800);
  max-width: 880px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.45;
}
.intro-strip p strong { color: var(--teal-600); font-weight: 600; }

/* -------- Differentiator strip -------- */
.diff-strip {
  background: var(--navy-950);
  color: var(--paper-0);
  padding: 64px 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.diff-item .meta-tag { color: var(--teal-500); }
.diff-item h3 { color: var(--paper-0); font-size: 18px; margin: 10px 0 8px; }
.diff-item p { color: var(--slate-300); font-size: 14.5px; margin: 0; }

/* -------- Deliverables section -------- */
.deliverables-primary {
  background: var(--navy-950);
  color: var(--paper-0);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.deliverables-primary .meta-tag { color: var(--teal-500); }
.deliverables-primary h3 { color: var(--paper-0); font-size: 24px; margin: 10px 0 8px; }
.deliverables-primary p { color: var(--slate-300); margin: 0; max-width: 520px; }
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
}
.deliverables-grid-3 { grid-template-columns: repeat(3, 1fr); }
.deliverables-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
.deliverables-subhead {
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  margin: 36px 0 16px;
}
.deliverables-custom {
  margin-top: 32px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--slate-500);
}
.deliverables-custom a { color: var(--teal-600); font-weight: 700; text-decoration: underline; }
.deliverable-card {
  background: var(--paper-0);
  padding: 26px 20px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(14,27,51,0.06);
}
.deliverable-card .d-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-600);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  margin-bottom: 14px;
}
.deliverable-card h4 { font-size: 14.5px; margin: 0 0 6px; font-family: var(--font-display); color: var(--navy-950); font-weight: 600; }
.deliverable-card p { font-size: 13px; font-weight: 500; color: var(--slate-500); margin: 0; line-height: 1.55; }

/* -------- Condition badges (subtle "we go anywhere" signal) -------- */
.condition-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.condition-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-500);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 14px;
  background: var(--paper-0);
}

/* -------- Occupancy toggle -------- */
.occupancy-toggle {
  display: flex;
  gap: 10px;
}
.occ-option {
  flex: 1;
  text-align: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate-500);
  background: var(--paper-50);
  transition: all 0.15s;
  position: relative;
}
.occ-option input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  top: 0; left: 0;
  margin: 0;
  cursor: pointer;
}
.occ-option.selected {
  border-color: var(--teal-500);
  background: var(--teal-100);
  color: var(--navy-950);
  font-weight: 600;
}

.form-row-triple { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-grid-3 { grid-template-columns: 1fr; }
  .deliverables-grid-2 { grid-template-columns: 1fr; }
  .form-row-triple { grid-template-columns: 1fr; }
}

/* -------- Hover sample report gallery -------- */
.sample-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}
.sample-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-0);
  box-shadow: 0 2px 10px rgba(14,27,51,0.06);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.sample-card:hover {
  border-color: var(--teal-500);
  box-shadow: 0 6px 18px rgba(14,27,51,0.12);
  transform: translateY(-2px);
}
.sample-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-bottom: 1px solid var(--line);
}
.sample-card-label {
  display: block;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: 0.03em;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14,27,51,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 36px;
  color: var(--paper-0);
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close:hover { color: var(--teal-500); }

@media (max-width: 900px) {
  .sample-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sample-gallery-grid { grid-template-columns: 1fr; }
}
