:root {
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(220, 30%, 12%);
  --primary: hsl(220, 50%, 15%);
  --primary-foreground: hsl(0, 0%, 100%);
  --accent: hsl(40, 70%, 50%);
  --accent-warm: hsl(40, 70%, 60%);
  --muted: hsl(210, 15%, 93%);
  --card: hsl(0, 0%, 100%);
  --border: hsl(220, 15%, 88%);
  --silhouette-bg: rgb(28, 26, 16);
  --hero-grad: linear-gradient(180deg, #0d1626 0%, #101a2e 50%, #0d1626 100%);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1280px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ============================================================ NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(15, 26, 46, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--accent);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .nav-brand { font-size: 1.4rem; }
}

/* Mobile hamburger toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  gap: 4px;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--accent);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.nav-links {
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  background: rgba(15, 26, 46, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  flex-direction: column;
  gap: 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  padding: 1rem 0;
  transform: translateY(-110%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.32s;
  display: flex;
  visibility: hidden;
  pointer-events: none;
}
body.nav-open .nav-links {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}
.nav-links a {
  transition: color 0.2s;
  position: relative;
  display: block;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-links a:last-child { border-bottom: none; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active {
  color: var(--accent);
}
.nav-links a.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.nav-cta {
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-warm); transform: translateY(-1px); }
@media (min-width: 1024px) {
  .nav-inner { padding: 1.25rem 2rem; }
  .nav-links {
    position: static;
    flex-direction: row;
    gap: 2rem;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 0;
    transform: none;
    font-size: 0.875rem;
  }
  .nav-links a { padding: 0; border: none; display: inline; }
  .nav-links a.active::before { display: none; }
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0; right: 0;
    height: 1px;
    background: var(--accent);
  }
  .nav-cta { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
}

/* ============================================================ HERO (homepage) */
.hero {
  position: relative;
  min-height: 720px;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: var(--hero-grad);
  isolation: isolate;
}
@media (min-width: 1024px) { .hero { min-height: 880px; padding: 9rem 0 6rem; } }
.hero-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 1;
}
/* Wrapper around visual layers (video, rain, lightning, veil, accents).
   Desktop: invisible fill, layers stack as before via absolute positioning. */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Mobile: stack layout. Franklin video sits as a fixed-height block at the
   top of the hero (right under the nav), then the eyebrow + h1 + body + CTAs
   render in a separate block below it. */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    /* No top padding: Franklin block fills from the very top under the
       transparent nav. Brand text overlays the storm scene cleanly. */
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: 380px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .hero-video {
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: 40% 30%;
  }
  .hero-placeholder,
  .hero-storm,
  .rain-glass,
  .hero-veil,
  .hero-accents {
    inset: 0;
  }
  .hero-content {
    padding: 2.5rem 1.5rem 3rem;
    /* Same base navy as the rest of the dark sections so the page reads
       as a continuous palette with subtle depth, not a series of distinct
       blue panels. */
    background: var(--hero-grad);
    /* Center alignment to match Sound Familiar + the rest of the dark
       sections on mobile. Hero was the outlier at left-align. */
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-body {
    margin-left: auto;
    margin-right: auto;
  }
  /* Unified center alignment across all section headers on mobile so the
     page reads as a consistent vertical column instead of flip-flopping
     between left and center. */
  .section-eyebrow,
  .section-title,
  .section-lede {
    text-align: center;
  }
  .section-lede {
    margin-left: auto;
    margin-right: auto;
  }
  .logo-strip-label {
    text-align: center;
    width: 100%;
  }
}
.hero.has-video .hero-placeholder { display: none; }
.hero-storm {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
}
.rain-glass {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.glass-haze {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(1.2px) saturate(0.95);
  -webkit-backdrop-filter: blur(1.2px) saturate(0.95);
}
.drop {
  position: absolute;
  border-radius: 50%;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.08) 35%, rgba(0,0,0,0.18) 100%);
  box-shadow: inset -1px -2px 2px rgba(0,0,0,0.18), inset 0.5px 1px 1px rgba(255,255,255,0.35), 0 1px 2px rgba(0,0,0,0.25);
}
.drop.runner {
  border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
  animation: drip 4.5s cubic-bezier(0.55, 0.05, 0.7, 0.95) forwards;
}
@keyframes drip {
  0%   { transform: translateY(0); opacity: 0.85; }
  80%  { opacity: 0.85; }
  100% { transform: translateY(420px); opacity: 0; }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(15, 26, 46, 0.65) 0%, transparent 55%),
    linear-gradient(180deg, rgba(15, 26, 46, 0.3) 0%, rgba(15, 26, 46, 0.55) 100%);
}
.hero-accents { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-accents::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse at top right, hsla(40, 70%, 55%, 0.18), transparent 55%);
}
.hero-accents::after {
  content: '';
  position: absolute;
  bottom: 0; right: 15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, hsla(40, 70%, 50%, 0.12), transparent 70%);
}
.hero-content { position: relative; z-index: 10; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }

.hero-eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--primary-foreground);
  line-height: 1.0;
  letter-spacing: normal;
  margin-bottom: 1.5rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.9s ease-out 0.1s forwards;
}
.hero-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 580px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s ease-out 0.2s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================ PAGE HEADER (sub-pages) */
.page-header {
  position: relative;
  padding: 9rem 0 4.5rem;
  background: var(--hero-grad);
  color: var(--primary-foreground);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 1024px) { .page-header { padding: 11rem 0 6rem; } }

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, hsla(40, 70%, 55%, 0.18), transparent 55%),
    radial-gradient(circle at 75% 100%, hsla(40, 70%, 50%, 0.1), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-header-eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  color: var(--primary-foreground);
  line-height: 1.1;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 660px;
  margin: 0 auto;
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: normal;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  height: 44px;
}
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-warm); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3); }
.btn-ghost { background: transparent; color: var(--primary-foreground); border-color: rgba(255, 255, 255, 0.25); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.5); }
.btn::after { content: '→'; transition: transform 0.25s ease; }
.btn:hover::after { transform: translateX(3px); }

/* Lightning streak side decorations */
.lightning-streak {
  position: absolute;
  top: 0;
  height: 100%;
  width: 6rem;
  opacity: 0.1;
  pointer-events: none;
  z-index: 4;
}
.lightning-streak.left { left: 0; }
.lightning-streak.right { right: 0; }
.lightning-streak svg { width: 100%; height: 100%; }

/* ============================================================ SOUND FAMILIAR (rotating pain-points) */
.sound-familiar {
  background: var(--hero-grad);
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .sound-familiar { padding: 6rem 0 5.5rem; } }

/* Reusable section-divider ornament: gold rules + lightning bolt centered
   between two thin gradient lines. Drops in at the top of any section
   that needs a clean chapter break. Works on dark navy AND light cream. */
.section-divider,
.sf-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 240px;
  margin: 0 auto 2.5rem;
}
.section-divider .rule,
.sf-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.6), transparent);
}
.section-divider .bolt,
.sf-bolt {
  width: 10px;
  height: 16px;
  fill: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

.sound-familiar-eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.sf-stage {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}
.sf-statement {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--primary-foreground);
  line-height: 1.4;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem;
  letter-spacing: normal;
  font-weight: 400;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.sf-statement.is-active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s ease 0.35s;
}

.sf-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.sf-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sf-dot:hover { background: rgba(255, 255, 255, 0.5); }
.sf-dot.is-active {
  background: var(--accent);
  width: 24px;
}
.sf-cta {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}
.sf-cta:hover { opacity: 0.8; }
.sf-cta::after { content: '→'; transition: transform 0.2s; }
.sf-cta:hover::after { transform: translateX(3px); }

/* ============================================================ LOGO STRIP */
.logo-strip {
  padding: 2rem 0;
  background: var(--hero-grad);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.logo-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.6;
}
.logo-strip-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}
.logo-strip-item {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* ============================================================ SECTIONS */
.section { padding: 5rem 0; position: relative; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

.section-eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 1rem;
}
.section-lede {
  color: hsl(220, 15%, 35%);
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 700px;
  margin-bottom: 3.5rem;
}

/* SERVICES (homepage card grid) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(15, 26, 46, 0.08);
}
.service-card:hover::before { height: 100%; }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: normal;
  font-weight: 400;
  line-height: 1.2;
}
.service-card p { color: hsl(220, 15%, 38%); font-size: 1rem; line-height: 1.625; }

.services-side-streak {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
}
.services-side-streak svg { width: 100%; height: 100%; }

/* SERVICES DETAIL (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: 80px 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 0;
  }
}
.service-detail:last-child { border-bottom: none; }

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: -0.5rem;
}
@media (min-width: 1024px) {
  .service-num { font-size: 2.5rem; margin-bottom: 0; }
}
.service-detail h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-detail-body p {
  color: hsl(220, 15%, 35%);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.deliverables-card {
  background: hsl(210, 25%, 97%);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
}
.deliverables-card h4 {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.deliverables-card ul { list-style: none; }
.deliverables-card li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: hsl(220, 20%, 25%);
  border-bottom: 1px solid hsl(220, 15%, 92%);
}
.deliverables-card li:last-child { border-bottom: none; }
.deliverables-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* WHY (dark navy, 3 columns) */
.why { background: var(--hero-grad); color: var(--primary-foreground); }
.why .section-title { color: var(--primary-foreground); }
.why .section-lede { color: rgba(255, 255, 255, 0.7); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-item { padding: 2rem 0; border-top: 1px solid rgba(201, 168, 76, 0.3); }
.why-item-num { color: var(--accent); font-family: var(--serif); font-style: italic; font-size: 0.95rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.why-item h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--primary-foreground); margin-bottom: 0.75rem; }
.why-item p { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }

/* AUDIENCE CARDS (who-we-help page) */
.audience-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }

.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--accent);
  transition: height 0.45s ease;
}
.audience-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 26, 46, 0.08);
}
.audience-card:hover::before { height: 100%; }
.audience-card h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.005em;
}
.audience-row { margin-bottom: 1.25rem; }
.audience-row:last-child { margin-bottom: 0; }
.audience-row-label {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.audience-row p { color: hsl(220, 15%, 35%); font-size: 0.95rem; line-height: 1.6; }

/* INSIGHTS (article cards) */
.insights-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }

.insight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.insight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.insight-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 26, 46, 0.08);
}
.insight-card:hover::before { height: 100%; }
.insight-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.insight-tag { color: var(--accent); font-weight: 600; }
.insight-date { color: hsl(220, 15%, 50%); }
.insight-card h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.85rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.insight-card p {
  color: hsl(220, 15%, 35%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.insight-readmore {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.insights-empty {
  text-align: center;
  padding: 4rem 0 1rem;
}
.insights-empty h3 {
  font-family: var(--serif);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.insights-empty p {
  color: hsl(220, 15%, 45%);
  margin-bottom: 1.5rem;
}

/* SPEAKING */
.topic-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .topic-grid { grid-template-columns: repeat(2, 1fr); } }

.topic-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}
.topic-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 26, 46, 0.07);
}
.topic-card h3 {
  font-family: var(--serif);
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.topic-card p {
  color: hsl(220, 15%, 38%);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing table */
.pricing-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
}
.pricing-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.pricing-table thead th {
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  padding: 1.1rem 1.5rem;
  text-align: left;
}
.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: hsl(210, 25%, 97%); }
.pricing-table td {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
}
.pricing-table td:first-child {
  font-family: var(--serif);
  color: var(--primary);
  font-weight: 500;
  font-size: 1.05rem;
}
.pricing-table td:nth-child(2) {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  font-family: var(--sans);
}
.pricing-table td:last-child { color: hsl(220, 15%, 38%); }

/* Venues list */
.venues-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
@media (min-width: 768px) { .venues-list { grid-template-columns: repeat(2, 1fr); gap: 0.8rem 2.5rem; } }
.venues-list li {
  position: relative;
  padding-left: 1.5rem;
  color: hsl(220, 15%, 30%);
  font-size: 1rem;
}
.venues-list li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

/* CONTACT / FORMS */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 5rem; } }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.25rem;
}
.contact-form h2 {
  font-family: var(--serif);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--foreground);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 120px; }

.contact-side h3 {
  font-family: var(--serif);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.contact-meta { margin-bottom: 2rem; }
.contact-meta-item { margin-bottom: 1rem; }
.contact-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-meta-value { color: var(--primary); font-size: 1.02rem; }
.contact-meta-value a { color: var(--accent); }

.expect-list {
  list-style: none;
  counter-reset: expect;
  margin-top: 1rem;
}
.expect-list li {
  counter-increment: expect;
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1.1rem;
  color: hsl(220, 15%, 30%);
  font-size: 0.97rem;
  line-height: 1.55;
}
.expect-list li::before {
  content: counter(expect, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
}

/* SILHOUETTE STORY */
.silhouette-story {
  background: var(--silhouette-bg);
  color: hsl(40, 30%, 88%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 1024px) { .silhouette-story { padding: 7rem 0; } }

.silhouette-radial {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(15, 13, 7, 0.55) 100%);
}
.silhouette-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}
.silhouette-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.03;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(201, 168, 76, 0.5) 3px, rgba(201, 168, 76, 0.5) 4px);
}
.silhouette-topfade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6rem;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(rgb(24, 35, 57) 0%, transparent 100%);
}

.study-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.study-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 75% at 50% 50%, rgba(28, 26, 16, 0.78) 0%, rgba(28, 26, 16, 0.45) 60%, rgba(28, 26, 16, 0.15) 100%),
    linear-gradient(180deg, rgba(28, 26, 16, 0.25), rgba(28, 26, 16, 0.4));
  pointer-events: none;
}

.silhouette-inner {
  position: relative;
  z-index: 5;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .silhouette-inner { padding: 0 2rem; } }
.silhouette-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .silhouette-grid { grid-template-columns: 3fr 2fr; gap: 4rem; } }
.silhouette-content { text-align: left; }
.silhouette-content p { margin-left: 0; max-width: none; }
.silhouette-quote-block { margin-left: 0; margin-right: 0; }

.silhouette-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.silhouette-video-frame iframe,
.silhouette-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #0d111a;
}
.silhouette-eyebrow { color: var(--accent); font-size: 0.78rem; letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 500; }
.silhouette-story h2 { font-family: var(--serif); font-size: clamp(1.875rem, 3.5vw, 2.25rem); color: hsl(40, 35%, 92%); line-height: 1.1; letter-spacing: normal; font-weight: 400; margin-bottom: 1.5rem; }
.silhouette-story p { color: rgba(245, 238, 220, 0.7); font-size: 1rem; max-width: 680px; margin: 0 auto 1.25rem; line-height: 1.625; }
.silhouette-quote-block {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  max-width: 600px;
  margin: 2.5rem auto 1rem;
  text-align: left;
}
.silhouette-quote {
  font-family: 'Dancing Script', cursive;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.silhouette-attr { color: var(--accent); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-style: normal; }

/* CTA SECTION */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--background);
}
.cta-section .section-title {
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.cta-section p {
  color: hsl(220, 15%, 35%);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* CAIC */
.caic {
  background: linear-gradient(rgb(20, 29, 46) 0%, rgb(14, 22, 37) 100%);
  color: hsl(40, 30%, 88%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .caic { padding: 7rem 0; } }
.caic-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.caic-inner {
  position: relative;
  z-index: 5;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.caic-badge {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.caic h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: hsl(0, 0%, 100%);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.caic-lede {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.caic-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: left;
  margin: 0 auto 3rem;
  max-width: 900px;
}
@media (min-width: 768px) { .caic-bullets { grid-template-columns: repeat(3, 1fr); } }
.caic-bullet { display: flex; gap: 0.85rem; }
.caic-bullet svg { flex-shrink: 0; color: var(--accent); width: 22px; height: 22px; margin-top: 2px; }
.caic-bullet p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.75); line-height: 1.55; margin: 0; }

.caic-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto 0.75rem;
  flex-direction: column;
}
@media (min-width: 640px) { .caic-form { flex-direction: row; } }
.caic-form input {
  flex: 1;
  padding: 0 1rem;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--primary-foreground);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
}
.caic-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.caic-form input:focus { outline: none; border-color: var(--accent); background: rgba(255, 255, 255, 0.09); }
.caic-form button {
  padding: 0 1.5rem;
  height: 44px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.caic-form button:hover {
  background: var(--accent-warm);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.25);
}
.caic-disclaimer { font-size: 0.78rem; color: rgba(255, 255, 255, 0.4); }

/* FOOTER */
footer {
  background: hsl(220, 50%, 8%);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 4rem; } }
.footer-brand { font-family: var(--serif); font-size: 1.6rem; color: var(--accent); margin-bottom: 0.75rem; }
.footer-tag { max-width: 320px; font-size: 0.92rem; line-height: 1.6; }
.footer-col h4 { color: rgba(255, 255, 255, 0.95); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li, .footer-col a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  transition: color 0.2s;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col li:hover, .footer-col a:hover { color: var(--accent); cursor: pointer; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* GOLDEN THREAD */
.thread {
  position: absolute;
  top: 0; bottom: 0;
  right: 7%;
  width: 1px;
  pointer-events: none;
  z-index: 50;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(201, 168, 76, 0.0) 5%,
    rgba(201, 168, 76, 0.4) 12%,
    rgba(201, 168, 76, 0.25) 50%,
    rgba(201, 168, 76, 0.45) 88%,
    rgba(201, 168, 76, 0.8) 96%,
    rgba(201, 168, 76, 1) 100%);
}
.thread::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -4px;
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.7);
}
@media (max-width: 768px) { .thread { display: none; } }
.page-wrap { position: relative; }
