/* ============================================================
   BRIGHT ENTERTAINMENT LLC — Main Stylesheet v2
   Palette: Black / Gold / Cream / Stone
   Type: Inter Tight + Fraunces (italic accent)
   Feature: Dark-to-light scroll transition
   ============================================================ */

:root {
  --black-primary: #000000;
  --gold-accent: #D4A843;
  --cream-off: #F5F1E8;
  --stone-mid: #1A1A1A;
  --ease-cinematic: cubic-bezier(0.6, 0.05, 0.01, 0.9);
}

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black-primary);
  color: var(--cream-off);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ============================================================
   BACKGROUND LAYER (hard section breaks, no gradient)
   ============================================================ */
.bg-transition-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--black-primary);
  transition: background 0.4s var(--ease-cinematic);
}

/* ============================================================
   PER-SECTION BACKGROUNDS (hard black/cream breaks)
   ============================================================ */
[data-theme="dark"] {
  background: var(--black-primary);
}

[data-theme="light"] {
  background: var(--cream-off);
}

/* ============================================================
   GOLD LIGHT-LEAK OVERLAY
   ============================================================ */
.light-leak {
  position: fixed;
  top: -30%;
  left: -30%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.25) 0%, rgba(212, 168, 67, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  transition: opacity 0.3s linear;
}

/* ============================================================
   THEME-ADAPTIVE TEXT COLORS (light sections)
   ============================================================ */
[data-theme="light"].theme-light-active .section-headline,
[data-theme="light"].theme-light-active .step-name,
[data-theme="light"].theme-light-active .tier-name,
[data-theme="light"].theme-light-active .tier-industries,
[data-theme="light"].theme-light-active .team-name,
[data-theme="light"].theme-light-active .number-big {
  color: var(--black-primary);
}

[data-theme="light"].theme-light-active .hero-lead,
[data-theme="light"].theme-light-active .about-para,
[data-theme="light"].theme-light-active .step-desc,
[data-theme="light"].theme-light-active .tier-desc,
[data-theme="light"].theme-light-active .team-bio,
[data-theme="light"].theme-light-active .final-cta-lead,
[data-theme="light"].theme-light-active .coverage-stat-text,
[data-theme="light"].theme-light-active .industries-lead,
[data-theme="light"].theme-light-active .case-study-text {
  color: rgba(0, 0, 0, 0.55);
}

[data-theme="light"].theme-light-active .ui-caps,
[data-theme="light"].theme-light-active .number-label {
  color: rgba(0, 0, 0, 0.4);
}

[data-theme="light"].theme-light-active .step-number {
  color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"].theme-light-active .timeline-step.step-active .step-number {
  color: rgba(212, 168, 67, 0.2);
}

[data-theme="light"].theme-light-active .timeline-step + .timeline-step {
  border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"].theme-light-active .timeline-rail {
  background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"].theme-light-active .timeline-marker-dot {
  background: rgba(0, 0, 0, 0.12);
}

[data-theme="light"].theme-light-active .timeline-step.step-active .timeline-marker-dot {
  background: #D4A843;
}

[data-theme="light"].theme-light-active .timeline-marker-ring {
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"].theme-light-active .step-duration-pill {
  border-color: rgba(212, 168, 67, 0.25);
}

[data-theme="light"].theme-light-active .tier-row {
  border-top-color: rgba(212, 168, 67, 0.25);
}

[data-theme="light"].theme-light-active .btn-outline {
  color: var(--black-primary);
  border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"].theme-light-active .btn-outline:hover {
  color: var(--gold-accent);
  border-color: var(--gold-accent);
}

[data-theme="light"].theme-light-active .footer-col a,
[data-theme="light"].theme-light-active .footer-col p {
  color: rgba(0, 0, 0, 0.45);
}

[data-theme="light"].theme-light-active .footer-col a:hover {
  color: var(--gold-accent);
}

[data-theme="light"].theme-light-active .footer-col-title {
  color: var(--black-primary);
}

[data-theme="light"].theme-light-active .footer-copy {
  color: rgba(0, 0, 0, 0.3);
}

[data-theme="light"].theme-light-active .footer-locale {
  color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"].theme-light-active .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"].theme-light-active .coverage-stat-text {
  color: var(--black-primary);
}

[data-theme="light"].theme-light-active .work-card-title {
  color: var(--black-primary);
}

[data-theme="light"].theme-light-active .urgency-line {
  color: var(--gold-accent);
}

/* Industries/services/packages on light bg need adapted text */
[data-theme="light"].theme-light-active .industries-lead,
[data-theme="light"].theme-light-active .service-desc,
[data-theme="light"].theme-light-active .service-number {
  color: rgba(0, 0, 0, 0.45);
}

[data-theme="light"].theme-light-active .service-card {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"].theme-light-active .services-grid {
  background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"].theme-light-active .vertical-name {
  color: var(--black-primary);
}

[data-theme="light"].theme-light-active .package-tier-name {
  color: var(--black-primary);
}

[data-theme="light"].theme-light-active .package-badge {
  color: rgba(0, 0, 0, 0.35);
}

[data-theme="light"].theme-light-active .package-list li {
  color: rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"].theme-light-active .package-card {
  border-color: rgba(212, 168, 67, 0.25);
}

[data-theme="light"].theme-light-active .package-card--diamond {
  background: var(--black-primary);
  border-color: rgba(212, 168, 67, 0.4);
}

[data-theme="light"].theme-light-active .package-card--diamond .package-tier-name {
  color: var(--gold-accent);
}

[data-theme="light"].theme-light-active .package-card--diamond .package-badge {
  color: var(--gold-accent);
}

[data-theme="light"].theme-light-active .package-card--diamond .package-list li {
  color: rgba(245, 241, 232, 0.75);
  border-bottom-color: rgba(212, 168, 67, 0.1);
}

[data-theme="light"].theme-light-active .package-card--silver,
[data-theme="light"].theme-light-active .package-card--gold {
  background: rgba(245, 241, 232, 0.8);
}

[data-theme="light"].theme-light-active .case-study-text,
[data-theme="light"].theme-light-active .case-study-stat-label {
  color: rgba(0, 0, 0, 0.45);
}

[data-theme="light"].theme-light-active .vertical-card {
  border-color: rgba(212, 168, 67, 0.3);
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--gold-accent);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-headline {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream-off);
  margin-bottom: 24px;
  transition: color 0.6s var(--ease-cinematic);
}

.ui-caps {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  transition: color 0.6s var(--ease-cinematic);
}

.gold-rule {
  width: 100%;
  height: 1px;
  background: var(--gold-accent);
  opacity: 0.3;
}

.stone-rule {
  width: 100%;
  height: 1px;
  background: rgba(245, 241, 232, 0.08);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-cinematic), transform 0.8s var(--ease-cinematic);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold-accent);
  color: var(--black-primary);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid var(--gold-accent);
  cursor: pointer;
  transition: background 0.4s var(--ease-cinematic), color 0.4s var(--ease-cinematic);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold-accent);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--cream-off);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid rgba(245, 241, 232, 0.25);
  cursor: pointer;
  transition: border-color 0.4s var(--ease-cinematic), color 0.4s var(--ease-cinematic);
}

.btn-outline:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

/* ============================================================
   01. STICKY NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-mid);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease-cinematic), border-color 0.5s var(--ease-cinematic);
}

.site-nav.nav-light {
  background: rgba(245, 241, 232, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.site-nav.nav-light .nav-links a {
  color: rgba(0, 0, 0, 0.5);
}

.site-nav.nav-light .nav-links a:hover {
  color: var(--black-primary);
}

/* nav-light mobile toggle styling handled by .menu-button in v9.7 */

.nav-wordmark {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(1.05) contrast(1.05);
  transition: filter 0.5s var(--ease-cinematic);
}

.site-nav.nav-light .nav-logo {
  filter: brightness(1) contrast(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245, 241, 232, 0.6);
  transition: color 0.3s var(--ease-cinematic);
}

.nav-links a:hover {
  color: var(--cream-off);
}

.nav-links .btn-gold {
  padding: 9px 22px;
  font-size: 12px;
}

/* Old nav-mobile-toggle removed in v9.7 — replaced by .menu-button */

/* ============================================================
   v9.7: FULL-VIEWPORT MOBILE MENU (first-principles rebuild)
   ============================================================ */
.menu-button {
  display: none; /* hidden on desktop, shown below 768px */
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 1100;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream-off);
  transition: transform 0.3s var(--ease-cinematic), opacity 0.3s var(--ease-cinematic), background 0.3s var(--ease-cinematic);
}

.site-nav.nav-light ~ .menu-button span {
  background: var(--black-primary);
}

/* Hamburger to X animation when active */
.menu-button.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-button.active span:nth-child(2) {
  opacity: 0;
}
.menu-button.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
/* When overlay is open, always cream lines (over black bg) */
.menu-button.active span {
  background: var(--cream-off);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--black-primary);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 32px;
  line-height: 1;
  background: none;
  border: none;
  color: var(--cream-off);
  cursor: pointer;
  padding: 4px 8px;
  z-index: 1060;
  display: none; /* hidden; the hamburger X handles close */
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.menu-nav a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--cream-off);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease-cinematic);
}

.menu-nav a:hover {
  color: var(--gold-accent);
}

.menu-nav .menu-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--gold-accent);
  color: var(--black-primary);
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  margin-top: 12px;
  transition: background 0.4s var(--ease-cinematic), color 0.4s var(--ease-cinematic);
}

.menu-nav .menu-cta:hover {
  background: transparent;
  color: var(--gold-accent);
  outline: 1px solid var(--gold-accent);
}

body.menu-open {
  overflow: hidden;
}

/* ============================================================
   02. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 0;
  overflow: hidden;
}

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

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom gradient for text readability (sits below the spotlight overlay) */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 0;
}


.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 32px 80px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.hero-folio {
  position: absolute;
  top: 100px;
  right: 48px;
  z-index: 3;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.35);
  writing-mode: horizontal-tb;
}

.hero-headline {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 7.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream-off);
  max-width: 900px;
  margin-bottom: 28px;
}

.hero-lead {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.7);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scrub {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-accent);
  opacity: 0.4;
  z-index: 3;
}

/* ============================================================
   03. BY THE NUMBERS
   ============================================================ */
.numbers {
  padding: 100px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.number-item {
  text-align: left;
}

.number-big {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--cream-off);
  margin-bottom: 10px;
  transition: color 0.6s var(--ease-cinematic);
}

.number-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.4);
  transition: color 0.6s var(--ease-cinematic);
}

/* ============================================================
   V9: SCROLL-PROGRESS INDICATOR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 64px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #D4A843;
  opacity: 0.7;
  z-index: 999;
  pointer-events: none;
  transition: none;
}

/* ============================================================
   04. SELECTED WORK
   ============================================================ */
.work {
  padding: 120px 0 100px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.work-card {
  overflow: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.work-card-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-cinematic);
}

.work-card:hover .work-card-img img {
  transform: scale(1.04);
}

.work-card-meta {
  margin-top: 16px;
}

.work-card-meta .ui-caps {
  margin-bottom: 6px;
}

.work-card-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--cream-off);
  line-height: 1.35;
}

.work-archive {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

.work-archive a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(245, 241, 232, 0.5);
  transition: color 0.3s var(--ease-cinematic);
}

.work-archive a:hover {
  color: var(--gold-accent);
}

/* ============================================================
   04b. FEATURED CASE STUDY
   ============================================================ */
.case-study {
  padding: 120px 0;
}

.case-study-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-bottom: 64px;
}

.case-study-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.case-study-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--cream-off);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.case-study-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.case-study-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-accent);
  margin-bottom: 14px;
}

.case-study-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.6);
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
}

.case-study-stat-num {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--cream-off);
  line-height: 1;
  margin-bottom: 8px;
}

.case-study-stat-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.4);
}

/* ============================================================
   05. INDUSTRIES
   ============================================================ */
.industries {
  padding: 120px 0 100px;
}

.industries-lead {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.65);
  max-width: 640px;
  margin-bottom: 64px;
}

.tier-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  transition: border-color 0.6s var(--ease-cinematic);
}

.tier-label .ui-caps {
  margin-bottom: 6px;
  color: var(--gold-accent);
  opacity: 0.7;
}

.tier-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--cream-off);
  transition: color 0.6s var(--ease-cinematic);
}

.tier-industries {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--cream-off);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  transition: color 0.6s var(--ease-cinematic);
}

.tier-desc {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.5);
  max-width: 520px;
  transition: color 0.6s var(--ease-cinematic);
}

/* ============================================================
   06. SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245, 241, 232, 0.06);
  margin-top: 56px;
}

.service-card {
  background: rgba(0, 0, 0, 0.04);
  padding: 48px 36px;
}

.service-number {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.35);
  margin-bottom: 24px;
}

.service-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--gold-accent);
  margin-bottom: 14px;
}

.service-desc {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.55);
}

/* ============================================================
   07. PROCESS (v5 — Cinematic Vertical Timeline)
   ============================================================ */
.process {
  padding: 120px 0 100px;
}

.process-timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 48px;
}

/* Gold timeline rail on the left */
.timeline-rail {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(212, 168, 67, 0.1);
  overflow: hidden;
}

.timeline-rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #D4A843, rgba(212,168,67,0.3));
  transition: height 0.15s linear;
  will-change: height;
}

/* Each step row */
.timeline-step {
  position: relative;
  padding: 36px 0 36px 0;
}

.timeline-step + .timeline-step {
  border-top: 1px solid rgba(245, 241, 232, 0.04);
}

/* Marker (dot + ring) on the left rail */
.timeline-marker {
  position: absolute;
  left: -48px;
  top: 44px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-marker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.3);
  position: absolute;
  transition: background 0.6s var(--ease-cinematic), transform 0.6s var(--ease-cinematic), box-shadow 0.6s var(--ease-cinematic);
  z-index: 2;
}

.timeline-marker-ring {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.15);
  position: absolute;
  transition: border-color 0.6s var(--ease-cinematic), transform 0.6s var(--ease-cinematic);
}

/* Active state — marker pulses when scrolled into view */
.timeline-step.step-active .timeline-marker-dot {
  background: #D4A843;
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.5), 0 0 24px rgba(212, 168, 67, 0.2);
}

.timeline-step.step-active .timeline-marker-ring {
  border-color: rgba(212, 168, 67, 0.5);
  animation: markerRingPulse 2.5s ease-in-out infinite;
}

@keyframes markerRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0; }
}

/* Step head — number + name + pill */
.timeline-step-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 16px;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(42px, 4.5vw, 60px);
  line-height: 1;
  color: rgba(245, 241, 232, 0.06);
  transition: color 0.6s var(--ease-cinematic);
  flex-shrink: 0;
  min-width: 70px;
}

.timeline-step.step-active .step-number {
  color: rgba(212, 168, 67, 0.15);
}

.step-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--cream-off);
  margin-bottom: 6px;
  transition: color 0.6s var(--ease-cinematic);
}

.step-duration-pill {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-accent);
  padding: 4px 14px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 100px;
  opacity: 0.8;
}

.step-desc {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.5);
  max-width: 520px;
  padding-left: 94px;
  transition: color 0.6s var(--ease-cinematic);
}

/* Step stagger reveal */
.timeline-step.reveal {
  opacity: 0;
  transform: translateY(30px) translateX(-8px);
}

.timeline-step.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.timeline-step:nth-child(2) { transition-delay: 0.05s; }
.timeline-step:nth-child(3) { transition-delay: 0.1s; }
.timeline-step:nth-child(4) { transition-delay: 0.15s; }
.timeline-step:nth-child(5) { transition-delay: 0.2s; }
.timeline-step:nth-child(6) { transition-delay: 0.25s; }

/* ============================================================
   07b. MEET THE OWNERS
   ============================================================ */
.team {
  padding: 120px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.team-card {
  text-align: left;
}

.team-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 28px;
}

.team-portrait-main,
.team-portrait-bts {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease-cinematic);
}

.team-portrait-bts {
  opacity: 0;
}

.team-card:hover .team-portrait-main {
  opacity: 0;
}

.team-card:hover .team-portrait-bts {
  opacity: 1;
}

.team-role {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold-accent);
  margin-bottom: 8px;
}

.team-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--cream-off);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  transition: color 0.6s var(--ease-cinematic);
}

.team-bio {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.55);
  max-width: 320px;
  transition: color 0.6s var(--ease-cinematic);
}

/* v9.7: Placeholder "Coming Soon" team card */
.team-portrait--placeholder {
  background: rgba(245, 241, 232, 0.03);
  border: 1px dashed rgba(212, 168, 67, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.team-placeholder-plus {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 200;
  font-size: 56px;
  color: rgba(212, 168, 67, 0.25);
  line-height: 1;
  user-select: none;
}

[data-theme="light"].theme-light-active .team-portrait--placeholder {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(212, 168, 67, 0.2);
}

[data-theme="light"].theme-light-active .team-placeholder-plus {
  color: rgba(212, 168, 67, 0.3);
}

/* ============================================================
   08. ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-headline {
  margin-bottom: 28px;
}

.about-para {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.6);
  margin-bottom: 20px;
  transition: color 0.6s var(--ease-cinematic);
}

.about-img {
  height: 640px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   08b. DMV COVERAGE MAP (v7 — Real Map + HTML Pin Overlay)
   ============================================================ */
.coverage-map {
  padding: 100px 0 80px;
}

.coverage-map-wrap {
  max-width: 760px;
  margin: 0 auto 48px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* Real map container */
.real-map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.real-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  /* Dark tint: invert + hue-rotate gives a dark map from standard OSM tiles */
  filter: invert(0.92) hue-rotate(180deg) saturate(0.3) brightness(0.65) contrast(1.2);
}

/* Overlay to add gold tint + block iframe interactions */
.real-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, rgba(212,168,67,0.06) 50%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  z-index: 2;
}

/* 60mi radius ring */
.map-radius-ring {
  position: absolute;
  /* Centered on Rockville HQ */
  left: 46.2%;
  top: 46.2%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 0;
  padding-bottom: 55%;
  border: 1px dashed rgba(212, 168, 67, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

.map-radius-label-html {
  position: absolute;
  top: -2px;
  right: 10%;
  transform: translateY(-100%);
  font-family: 'Inter Tight', sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: rgba(212, 168, 67, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* HTML Pin base styles */
.map-pin-html {
  position: absolute;
  z-index: 4;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s var(--ease-cinematic), transform 0.5s var(--ease-cinematic);
}

.map-pin-html.pin-visible {
  opacity: 1;
}

/* Standard dot pin */
.pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4A843;
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.4);
  margin: 0 auto;
}

.pin-dot--lg {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.5), 0 0 4px rgba(212, 168, 67, 0.3);
}

/* Pin labels */
.pin-label {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #D4A843;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
  white-space: nowrap;
  opacity: 0.65;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.5);
}

.map-pin-html:hover .pin-label {
  opacity: 1;
}

.pin-label--hq {
  font-weight: 700;
  font-size: 10px;
  opacity: 1;
  color: #D4A843;
}

/* HQ diamond marker */
.map-pin-html--hq {
  z-index: 5;
}

.pin-hq-diamond {
  width: 14px;
  height: 14px;
  background: #D4A843;
  transform: rotate(45deg);
  margin: 0 auto;
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.5), 0 0 24px rgba(212, 168, 67, 0.2);
}

.pin-hq-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.3);
  animation: hqPulseHtml 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hqPulseHtml {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Tooltip */
.map-tooltip-html {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -100%);
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(212, 168, 67, 0.5);
  color: #D4A843;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.map-tooltip-html.tooltip-visible {
  opacity: 1;
}

.coverage-stat-strip {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.coverage-stat-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--cream-off);
  letter-spacing: -0.01em;
  transition: color 0.6s var(--ease-cinematic);
}

/* ============================================================
   04c. WHO WE WORK WITH (VERTICALS)
   ============================================================ */
.verticals {
  padding: 120px 0 100px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.vertical-card {
  padding: 40px 32px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  transition: border-color 0.4s var(--ease-cinematic), transform 0.15s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
}

.vertical-card:hover {
  border-color: var(--gold-accent);
}

.vertical-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--cream-off);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.vertical-outcome {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--gold-accent);
  line-height: 1.5;
  opacity: 0.85;
}

/* ============================================================
   06b. WHAT YOU GET (PACKAGES) — 3-Tier Silver/Gold/Diamond
   ============================================================ */
.packages {
  padding: 120px 0;
}

.packages-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.package-card {
  padding: 52px 40px 48px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, border-color 0.4s var(--ease-cinematic), box-shadow 0.4s var(--ease-cinematic);
  display: flex;
  flex-direction: column;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-accent);
  opacity: 0.5;
}

/* ---- Badge: 01 SILVER / 02 GOLD / 03 DIAMOND ---- */
.package-badge {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.35);
  margin-bottom: 20px;
}

/* ---- Tier name (Fraunces italic) ---- */
.package-tier-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 3.2vw, 42px);
  color: var(--cream-off);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.1;
}

/* ---- Tagline ---- */
.package-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--gold-accent);
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 32px;
}

.package-list {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.package-list li {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.5;
  padding: 9px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
}

.package-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold-accent);
  border-radius: 50%;
  margin-right: 14px;
  vertical-align: middle;
}

.package-card .btn-gold {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ---- Silver tier card ---- */
.package-card--silver {
  background: rgba(245, 241, 232, 0.03);
}

/* ---- Gold tier card ---- */
.package-card--gold {
  background: rgba(212, 168, 67, 0.04);
}

/* ---- Diamond tier card (center, hero treatment) ---- */
.package-card--diamond {
  background: var(--stone-mid);
  border-color: rgba(212, 168, 67, 0.35);
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.package-card--diamond::before {
  height: 3px;
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.package-card--diamond::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.package-card--diamond .package-badge {
  color: var(--gold-accent);
  opacity: 0.7;
}

.package-card--diamond .package-tier-name {
  color: var(--gold-accent);
}

.package-card--diamond .package-list li {
  color: rgba(245, 241, 232, 0.75);
  border-bottom-color: rgba(212, 168, 67, 0.1);
}

.package-card--diamond .package-list li::before {
  background: var(--gold-accent);
}

/* Diamond hover glow */
.package-card--diamond:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.08), 0 0 80px rgba(212, 168, 67, 0.04);
}

/* ============================================================
   08b-extra. COVERAGE MAP ADDITIONS
   ============================================================ */
.coverage-sub {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.6);
  max-width: 560px;
  margin-bottom: 48px;
  transition: color 0.6s var(--ease-cinematic);
}

[data-theme="light"].theme-light-active .coverage-sub {
  color: rgba(0, 0, 0, 0.55);
}

.coverage-local-line {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: rgba(245, 241, 232, 0.6);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
  transition: color 0.6s var(--ease-cinematic);
}

[data-theme="light"].theme-light-active .coverage-local-line {
  color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"].theme-light-active .coverage-map-wrap {
  border-color: rgba(212, 168, 67, 0.25);
}

/* ============================================================
   08c. PRESS STRIP
   ============================================================ */
.press-strip {
  padding: 64px 0;
  border-top: 1px solid rgba(212, 168, 67, 0.12);
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
}

.press-headline {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.3);
  text-align: center;
  margin-bottom: 32px;
  transition: color 0.6s var(--ease-cinematic);
}

[data-theme="light"].theme-light-active .press-headline {
  color: rgba(0, 0, 0, 0.35);
}

.press-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.press-wordmark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.6s var(--ease-cinematic);
}

/* Before light theme activates, press is on dark bg */
[data-theme="dark"] .press-wordmark,
.press-wordmark {
  color: rgba(245, 241, 232, 0.25);
}

[data-theme="light"].theme-light-active .press-wordmark {
  color: rgba(0, 0, 0, 0.35);
}

/* ============================================================
   09-extra. URGENCY LINE
   ============================================================ */
.urgency-line {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--gold-accent);
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* ============================================================
   09. FINAL CTA
   ============================================================ */
.final-cta {
  padding: 140px 0 120px;
  text-align: center;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.final-cta .eyebrow {
  margin-bottom: 24px;
}

.final-cta .section-headline {
  font-size: clamp(36px, 5.5vw, 64px);
  max-width: 800px;
  margin: 0 auto 28px;
}

.final-cta-lead {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.6);
  max-width: 560px;
  margin: 0 auto 44px;
  transition: color 0.6s var(--ease-cinematic);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   10. FOOTER
   ============================================================ */
.site-footer {
  padding: 80px 0 48px;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-off);
  margin-bottom: 20px;
  transition: color 0.6s var(--ease-cinematic);
}

.footer-col a,
.footer-col p {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(245, 241, 232, 0.45);
  line-height: 1.8;
  transition: color 0.3s var(--ease-cinematic);
}

.footer-col a:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 241, 232, 0.06);
  transition: border-color 0.6s var(--ease-cinematic);
}

.footer-copy {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(245, 241, 232, 0.3);
  transition: color 0.6s var(--ease-cinematic);
}

.footer-locale {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.2);
  transition: color 0.6s var(--ease-cinematic);
}

/* ============================================================
   V8: CINEMATIC PHOTO BACKGROUNDS
   Atmospheric bg photos on key sections — same visual world as the hero.
   Heavy overlays keep type readable. Lazy-loaded.
   ============================================================ */

/* Base: shared photo-bg treatment */
.section-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(0.4) contrast(1.1);
}

/* Ensure sections with photo bgs have relative positioning and z-stacking */
.work,
.case-study,
.process,
.final-cta {
  position: relative;
  overflow: hidden;
}

.work > .container,
.case-study > .container,
.process > .container,
.final-cta > .container {
  position: relative;
  z-index: 1;
}

/* --- Selected Work: dark film-set atmosphere --- */
.section-photo-bg--work::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.section-photo-bg--work img {
  opacity: 0.18;
}

/* --- Case Study: moody cinematography tint --- */
.section-photo-bg--case-study::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

.section-photo-bg--case-study img {
  opacity: 0.14;
}

/* --- Process: warm cream-tinted BTS atmosphere --- */
.section-photo-bg--process::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 241, 232, 0.88) 0%,
    rgba(245, 241, 232, 0.82) 50%,
    rgba(245, 241, 232, 0.9) 100%
  );
  z-index: 1;
}

.section-photo-bg--process img {
  opacity: 0.1;
  filter: saturate(0.3) contrast(1.05) sepia(0.15);
}

/* --- Final CTA: magic-hour emotional close --- */
.section-photo-bg--cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 241, 232, 0.85) 0%,
    rgba(245, 241, 232, 0.78) 40%,
    rgba(245, 241, 232, 0.88) 100%
  );
  z-index: 1;
}

.section-photo-bg--cta img {
  opacity: 0.12;
  filter: saturate(0.35) contrast(1.1) sepia(0.1);
}

/* Mobile: use smaller images, reduce opacity further for perf */
@media (max-width: 768px) {
  .section-photo-bg img {
    opacity: 0.08;
  }
  .section-photo-bg--work img { opacity: 0.1; }
  .section-photo-bg--case-study img { opacity: 0.08; }
  .section-photo-bg--process img { opacity: 0.06; }
  .section-photo-bg--cta img { opacity: 0.07; }
}

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

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    padding-left: 40px;
  }

  .timeline-marker {
    left: -40px;
  }

  .step-desc {
    padding-left: 0;
  }

  .tier-row {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .case-study-body {
    gap: 32px;
  }

  .case-study-hero {
    height: 400px;
  }

  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .site-nav {
    padding: 0 20px;
  }

  /* v9.7 — Desktop nav-links hidden on mobile; new overlay menu used instead */
  .nav-links {
    display: none;
  }

  /* Show the floating menu button on mobile */
  .menu-button {
    display: flex;
  }

  .hero-folio {
    display: none;
  }

  .hero-content {
    padding: 0 20px 48px;
  }

  .hero-headline {
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero-lead {
    margin-bottom: 24px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .numbers {
    padding: 56px 0;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .work {
    padding: 72px 0 60px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card-img {
    height: 240px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .tier-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process {
    padding: 72px 0 60px;
  }

  .process-timeline {
    padding-left: 28px;
    margin-top: 32px;
  }

  .timeline-rail {
    left: 6px;
    width: 2px;
  }

  .timeline-marker {
    left: -28px;
  }

  .timeline-marker-dot {
    width: 6px;
    height: 6px;
  }

  .timeline-marker-ring {
    width: 16px;
    height: 16px;
  }

  .timeline-step {
    padding: 16px 0;
  }

  .timeline-step-head {
    flex-direction: column;
    gap: 4px;
  }

  .step-number {
    font-size: 28px;
    min-width: auto;
  }

  .step-name {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .step-duration-pill {
    font-size: 10px;
    padding: 2px 10px;
  }

  .step-desc {
    padding-left: 0;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 4px;
  }

  /* Map: hide less important pins on mobile */
  .map-pin-html[data-city="Reston"],
  .map-pin-html[data-city="Annapolis"],
  .map-pin-html[data-city="Frederick"],
  .map-pin-html[data-city="Tysons"] {
    display: none;
  }

  .map-tooltip-html {
    display: none;
  }

  .coverage-map-wrap {
    border-radius: 6px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about {
    padding: 72px 0;
  }

  .about-img {
    height: 260px;
  }

  .about-split {
    gap: 32px;
  }

  .about-para {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .team {
    padding: 72px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  /* 6 cards: no centering needed, clean 2-col grid */

  .team-portrait {
    aspect-ratio: 4 / 3;
  }

  .team-info {
    padding-top: 8px;
  }

  .team-role {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .team-name {
    font-size: 18px;
    margin-bottom: 0;
  }

  .team-bio {
    display: none;
  }

  .case-study-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-study-hero {
    height: 280px;
  }

  .case-study-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-logos {
    justify-content: center;
    gap: 24px;
  }

  .press-wordmark {
    font-size: 17px;
  }

  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .packages {
    padding: 72px 0;
  }

  .packages-grid--3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* On mobile, Diamond first for visual hierarchy */
  .package-card--diamond {
    order: -1;
  }

  .package-card {
    padding: 28px 22px;
  }

  .package-card--diamond {
    padding: 32px 22px;
  }

  .package-tier-name {
    font-size: 22px;
  }

  .package-tagline {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .package-list li {
    font-size: 13px;
    padding: 8px 0;
  }

  /* Case study condense */
  .case-study {
    padding: 72px 0;
  }

  /* Verticals condense */
  .verticals {
    padding: 72px 0;
  }

  .vertical-card {
    padding: 20px 24px;
  }

  /* Final CTA condense */
  .final-cta {
    padding: 72px 0 60px;
  }

  /* Coverage map tighter */
  .coverage-map {
    padding: 60px 0;
  }

}

/* Small mobile — 390px */
@media (max-width: 420px) {
  .hero-headline {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .number-big {
    font-size: 36px;
  }

  .final-cta {
    padding: 60px 0 48px;
  }

  .case-study-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ============================================================
   V4: CINEMATIC MOTION PASS
   ============================================================ */

/* ---- 1. PRE-HERO LOADING SEQUENCE ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.preloader-wordmark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--cream-off);
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: preloaderFadeIn 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s forwards;
}

.preloader-wordmark::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -120%;
  width: 60%;
  height: 140%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 168, 67, 0) 20%,
    rgba(212, 168, 67, 0.45) 45%,
    rgba(212, 168, 67, 0.7) 50%,
    rgba(212, 168, 67, 0.45) 55%,
    rgba(212, 168, 67, 0) 80%,
    transparent 100%
  );
  animation: lightLeakSweep 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
  pointer-events: none;
}

@keyframes preloaderFadeIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes lightLeakSweep {
  0% { left: -120%; }
  100% { left: 160%; }
}

.preloader.preloader-exit {
  animation: preloaderOut 0.5s cubic-bezier(0.6, 0.05, 0.01, 0.9) forwards;
}

@keyframes preloaderOut {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* ---- 2. LENS FLARES (HERO ONLY, DESKTOP) ---- */
.lens-flares {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.lens-flare {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
  filter: blur(1px);
}

.lens-flare--a {
  width: 180px;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.22) 0%, rgba(212, 168, 67, 0.06) 45%, transparent 70%);
  top: 15%;
  left: -5%;
  opacity: 0.2;
  animation: flareDriftA 22s ease-in-out infinite;
}

.lens-flare--b {
  width: 120px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(245, 230, 190, 0.2) 0%, rgba(212, 168, 67, 0.05) 50%, transparent 75%);
  top: 30%;
  left: 20%;
  opacity: 0.18;
  animation: flareDriftB 25s ease-in-out 3s infinite;
}

.lens-flare--c {
  width: 240px;
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.15) 0%, rgba(212, 168, 67, 0.03) 40%, transparent 65%);
  top: 10%;
  right: 10%;
  opacity: 0.15;
  animation: flareDriftC 20s ease-in-out 1s infinite;
}

.lens-flare--d {
  width: 100px;
  height: 40px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 67, 0.2) 30%, rgba(245, 230, 190, 0.25) 50%, rgba(212, 168, 67, 0.2) 70%, transparent 100%);
  top: 55%;
  left: 40%;
  opacity: 0.2;
  border-radius: 100px;
  animation: flareDriftD 18s ease-in-out 5s infinite;
}

.lens-flare--e {
  width: 160px;
  height: 160px;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.18) 0%, rgba(212, 168, 67, 0.04) 50%, transparent 70%);
  bottom: 20%;
  right: 5%;
  opacity: 0.16;
  animation: flareDriftE 23s ease-in-out 2s infinite;
}

@keyframes flareDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30vw, 5vh) scale(1.1); }
  50% { transform: translate(55vw, -3vh) scale(0.95); }
  75% { transform: translate(25vw, 8vh) scale(1.05); }
}

@keyframes flareDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(20vw, -8vh) scale(1.15); }
  60% { transform: translate(45vw, 4vh) scale(0.9); }
  80% { transform: translate(10vw, -2vh) scale(1.05); }
}

@keyframes flareDriftC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(-25vw, 10vh) scale(1.08); }
  65% { transform: translate(-40vw, 3vh) scale(0.92); }
}

@keyframes flareDriftD {
  0%, 100% { transform: translate(0, 0) scaleX(1); }
  30% { transform: translate(-20vw, -5vh) scaleX(1.4); }
  70% { transform: translate(15vw, 3vh) scaleX(0.8); }
}

@keyframes flareDriftE {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-30vw, -8vh) scale(1.12); }
  70% { transform: translate(-15vw, 5vh) scale(0.88); }
}

/* Hide lens flares on mobile/touch for perf */
@media (max-width: 768px), (hover: none) {
  .lens-flares { display: none; }
}

/* ---- 3. 3D CARD TILT ---- */
.tilt-card {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.case-study-hero {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

/* ---- 4. SECTION ATMOSPHERIC TRANSITIONS ---- */
.section-gradient-bleed {
  position: relative;
}

.section-gradient-bleed::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 0;
}

/* Gold hairline rules between major sections */
.gold-hairline {
  display: block;
  width: 70px;
  height: 1px;
  background: var(--gold-accent);
  opacity: 0.35;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- 5. LIVE-FEEL STATS ---- */
.number-big {
  position: relative;
  display: inline-block;
}

@keyframes statPulseGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 18px rgba(212, 168, 67, 0.35), 0 0 40px rgba(212, 168, 67, 0.12); }
}

.number-item.stat-pulse .number-big {
  animation: statPulseGlow 1.2s ease-in-out;
}

/* Stat lift on scroll reveal */
.number-item.visible {
  transform: translateY(0);
}

.number-item {
  transition: transform 0.8s var(--ease-cinematic), opacity 0.8s var(--ease-cinematic), box-shadow 0.3s ease;
}

/* ---- Film grain overlay (full page, very subtle) ---- */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* Don't show film grain or preloader above nav on exit */
.preloader { pointer-events: none; }
.film-grain { pointer-events: none; }

/* ============================================================
   03b. CLIENT LOGO SLIDER (restored v9.1)
   ============================================================ */
.logo-slider {
  padding: 56px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
  overflow: hidden;
  position: relative;
}

.logo-slider::before,
.logo-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,1), transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,1), transparent);
}

.logo-slider-track {
  overflow: hidden;
}

.logo-slider-inner {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

.logo-wordmark {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.18);
  white-space: nowrap;
  transition: color 0.3s var(--ease-cinematic);
  cursor: default;
  user-select: none;
  flex-shrink: 0;
}

.logo-wordmark:hover {
  color: var(--gold-accent);
}

@media (max-width: 768px) {
  .logo-slider::before,
  .logo-slider::after {
    width: 40px;
  }
}

/* ============================================================
   WORK SUBTITLE (added v10)
   ============================================================ */
.work-subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--gold-accent);
  opacity: 0.85;
  margin-top: -12px;
  margin-bottom: 8px;
}

/* ============================================================
   CASE STUDY CTA LINE (added v10)
   ============================================================ */
.case-study-cta {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(245, 241, 232, 0.7);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.case-study-cta-link {
  color: var(--gold-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease-cinematic);
}

.case-study-cta-link:hover {
  color: var(--cream-off);
}

/* Alt case study (no bg photo) */
.case-study--alt {
  border-top: 1px solid rgba(212, 168, 67, 0.1);
}

/* 3-column stats variant */
.case-study-stats--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .case-study-stats--3 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   5-COLUMN VERTICALS GRID (added v10)
   ============================================================ */
.verticals-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
  .verticals-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .verticals-grid--5 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PLACEHOLDER MEDIA BOXES (case study slots, v10)
   ============================================================ */
.placeholder-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 56px;
}

.placeholder-grid--4 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .placeholder-grid--4 {
    grid-template-columns: 1fr;
  }
  .placeholder-grid--3 {
    grid-template-columns: 1fr !important;
  }
}

.placeholder {
  position: relative;
  background: #1a1a1a;
  border: 1.5px solid #D4A843;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder-16x9 {
  aspect-ratio: 16 / 9;
}

.placeholder-9x16 {
  aspect-ratio: 9 / 16;
}

.placeholder-4x5 {
  aspect-ratio: 4 / 5;
}

.placeholder-1x1 {
  aspect-ratio: 1 / 1;
}

.placeholder-id {
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #D4A843;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 3px;
  line-height: 1;
}

.placeholder-desc {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(245, 241, 232, 0.4);
  text-align: center;
  padding: 0 16px;
  line-height: 1.4;
}

/* ---- FAQ Section ---- */
.faq {
  padding: 140px 0 160px;
  position: relative;
}

.faq-lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  margin-top: 24px;
  color: rgba(245, 241, 232, 0.55);
}

[data-theme="light"].theme-light-active .faq-lead {
  color: rgba(0, 0, 0, 0.55);
}

.faq-list {
  margin-top: 72px;
  max-width: 880px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
}

.faq-q {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: rgba(0, 0, 0, 0.88);
  padding: 28px 56px 28px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s var(--ease-cinematic);
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.4);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.4s var(--ease-cinematic), border-color 0.3s var(--ease-cinematic);
}

.faq-item[open] .faq-q::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--gold-accent);
}

.faq-item:hover .faq-q {
  color: #000;
}

.faq-item:hover .faq-q::after {
  border-color: var(--gold-accent);
}

.faq-a {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.62);
  padding: 0 56px 32px 0;
  max-width: 760px;
}

/* Dark-section fallback colors (in case faq ever runs on dark theme) */
.faq:not(.theme-light-active) .faq-q { color: rgba(245, 241, 232, 0.92); }
.faq:not(.theme-light-active) .faq-q::after { border-color: rgba(245, 241, 232, 0.4); }
.faq:not(.theme-light-active) .faq-a { color: rgba(245, 241, 232, 0.65); }
.faq:not(.theme-light-active) .faq-list { border-top-color: rgba(245, 241, 232, 0.1); }
.faq:not(.theme-light-active) .faq-item { border-bottom-color: rgba(245, 241, 232, 0.1); }

@media (max-width: 768px) {
  .faq {
    padding: 80px 0 100px;
  }
  .faq-lead {
    font-size: 16px;
    margin-top: 16px;
  }
  .faq-list {
    margin-top: 40px;
  }
  .faq-q {
    font-size: 17px;
    padding: 22px 44px 22px 0;
  }
  .faq-a {
    font-size: 15px;
    padding: 0 16px 24px 0;
  }
}
