/* =========================================================================
   3P Consulting — Site Stylesheet
   Design system: charcoal + ivory + bronze-gold
   Type: Cormorant Garamond (display) + Inter (body)
   ========================================================================= */

/* ---- 1. Reset + base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #2a2418;
  background: #f6f1e7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; }

/* ---- 2. Design tokens ---- */
:root {
  --ink: #0d1117;
  --ink-2: #161c28;
  --ivory: #f6f1e7;
  --ivory-2: #efe6d3;
  --cream: #fffaf0;
  --gold: #c68d43;
  --gold-light: #e6b573;
  --gold-mist: rgba(198,141,67,0.28);
  --body: #2a2418;
  --body-muted: #5a5040;
  --body-soft: #7a6d52;
  --line: rgba(13,17,23,0.12);
  --line-dark: rgba(198,141,67,0.28);

  --max: 1240px;
  --gutter: 40px;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- 3. Layout containers ---- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ---- 4. Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(48px, 6.4vw, 88px); line-height: 1.04; }
h2 { font-size: clamp(34px, 4.2vw, 56px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.15; font-weight: 600; }
h4 { font-size: 20px; line-height: 1.2; font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 16px;
  transform: translateY(-2px);
}

.lede {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--body-muted);
  max-width: 780px;
}
p { margin: 0 0 1em; }

em, i { font-style: italic; color: var(--body-muted); }

.gold-italic {
  font-style: italic;
  background: linear-gradient(90deg, #c68d43 0%, #e6b573 55%, #c68d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 4px;
}

/* ---- 5. Header / Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,241,231,0.94);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  height: 52px;
  width: auto;
}
.brand-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.nav-cta--light {
  background: #fff;
  color: #111;
  border-color: #fff;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  border-radius: 0;
}
.nav-cta--light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Overlay header for Sparks-style home hero */
.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
}
.site-header--overlay .nav-inner {
  position: relative;
}
.site-header--overlay .brand-text { color: #fff; }
.site-header--overlay .nav-toggle { color: #fff; display: inline-flex; }
.site-header--overlay .nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 12, 16, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  padding: 20px var(--gutter);
  gap: 16px;
}
.site-header--overlay .nav-links.open { display: flex; }
.site-header--overlay .nav-links a { color: #fff; }
.site-header--overlay .nav-links a:hover,
.site-header--overlay .nav-links a.active { color: var(--gold-light); }
.site-header--overlay .nav-links a.active::after { background: var(--gold-light); }
.site-header--overlay .nav-cta { display: inline-flex; }

/* ---- 6. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}
.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(244,237,225,0.4);
}
.btn-ghost-light:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.btn-arrow::after { content: "→"; font-family: var(--sans); font-size: 16px; letter-spacing: 0; }

/* ---- 7. Hero (dark) ---- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  padding: 120px 0 140px;
}
.hero::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -260px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,141,67,0.24) 0%, rgba(198,141,67,0.06) 42%, rgba(13,17,23,0) 72%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -260px;
  bottom: -200px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,82,115,0.22) 0%, rgba(58,82,115,0.06) 48%, rgba(13,17,23,0) 72%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--ivory); }
.hero .lede { color: #c9d1de; margin-top: 24px; }
.hero-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* Sparks-style full-bleed video hero */
.hero--fullscreen {
  min-height: 100svh;
  height: 100svh;
  padding: 0;
  display: flex;
  align-items: flex-end;
}
.hero--fullscreen::before,
.hero--fullscreen::after { display: none; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  border: 0;
  display: block;
}
.yt-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
/* Slight zoom crops YouTube captions, title bar, and prev/next chrome */
.yt-cover--hero {
  width: 200vh;
  min-width: 115%;
  min-height: 64vw;
  transform: translate(-50%, -50%) scale(1.12);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.12) 30%, rgba(0,0,0,0.72) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vh, 96px);
  padding-top: 120px;
}
.hero--fullscreen h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 14ch;
  margin: 0;
}
.hero-play {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(32px, 5vh, 56px);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.35);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-play:hover {
  background: rgba(0,0,0,0.55);
  border-color: #fff;
  transform: scale(1.05);
}
.hero-play svg { width: 18px; height: 18px; }
.hero-play .icon-play { display: none; }
.hero-play.is-paused .icon-play { display: block; }
.hero-play.is-paused .icon-pause { display: none; }

/* ---- Featured Work (Sparks-style: vertical scroll drives horizontal) ---- */
.featured-work {
  --featured-scroll: 0px;
  position: relative;
  background: #0a0c10;
  color: #fff;
  /* Override global section padding — height is set by JS for scrub distance */
  padding: 0;
  height: auto;
}
.featured-work__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 72px 0 80px;
  overflow: hidden;
  background: #0a0c10;
  box-sizing: border-box;
}
.featured-work__top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto 40px;
  padding: 0 var(--gutter);
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: left;
}
.featured-work__label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0c10;
  background: #c5ccd6;
  padding: 10px 16px;
  margin: 0;
  display: inline-block;
  line-height: 1;
  flex: 0 0 auto;
}
.featured-work__more {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  margin-left: auto;
  flex: 0 0 auto;
  text-align: right;
  transition: opacity 0.2s ease;
}
.featured-work__more:hover { opacity: 0.7; }
.featured-work__more span {
  display: inline-block;
  margin-left: 4px;
  font-size: 18px;
  line-height: 1;
  vertical-align: -1px;
}
.featured-work__viewport {
  overflow: hidden;
  /* Match the FEATURED WORK label's left edge (same as .wrap content) */
  padding-left: max(var(--gutter), calc((100vw - min(100vw, var(--max))) / 2 + var(--gutter)));
  width: 100%;
  box-sizing: border-box;
}
.featured-work__track {
  display: flex;
  gap: 28px;
  padding-right: var(--gutter);
  width: max-content;
  will-change: transform;
  transform: translate3d(calc(var(--featured-scroll) * -1), 0, 0);
}
.work-card {
  flex: 0 0 min(68vw, 820px);
}
.work-card__link {
  display: block;
  color: inherit;
}
.work-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #161a22;
  cursor: none;
}
.work-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: opacity 0.3s ease, transform 0.6s ease;
}
.work-card__iframe {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.6s ease;
}
.work-card__media.is-playing .work-card__poster {
  opacity: 0;
}
.work-card__media.is-playing .work-card__iframe {
  opacity: 1;
}
.work-card__media.is-hovering .work-card__poster,
.work-card__media.is-playing .work-card__poster {
  transform: scale(1.06);
}
.work-card__media.is-hovering .work-card__iframe,
.work-card__media.is-playing .work-card__iframe {
  transform: translate(-50%, -50%) scale(1.06);
}
.work-card__view {
  position: absolute;
  left: 0;
  top: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: lowercase;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 2;
}
.work-card__media.is-hovering .work-card__view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.work-card__media.is-playing .work-card__view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.work-card__title {
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 18px 0 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

@media (hover: none) {
  .work-card__media { cursor: auto; }
  .work-card__view {
    left: 50%;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Hero variant: page-header (smaller than home hero) */
.page-header {
  background: var(--ink);
  color: var(--ivory);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -220px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,141,67,0.22) 0%, rgba(198,141,67,0.06) 42%, rgba(13,17,23,0) 72%);
  pointer-events: none;
}
.page-header .wrap { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--gold); }
.page-header h1 { color: var(--ivory); }
.page-header .lede { color: #c9d1de; margin-top: 20px; }

/* ---- 8. Cards & tiles ---- */
.card {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(13,17,23,0.08);
}
.card-dark {
  background: var(--ink);
  color: var(--ivory);
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
}
.card-dark p, .card-dark .card-desc { color: #a8b1bd; }
.card-num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.card-num-label {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.card-num-rule {
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}
.card-num-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--gold-light);
  text-transform: uppercase;
  white-space: nowrap;
}
.card h3 { margin-bottom: 10px; }
.card-dark h3 { color: var(--ivory); }
.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-muted);
  margin: 0;
}

/* ---- 9. Grids ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- 10. Section headers ---- */
.section-header { margin-bottom: 56px; max-width: 900px; }
.section-header h2 em { color: var(--body-muted); }
.section-header .lede { margin-top: 20px; }

/* Dark-section variant */
.section-dark {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 800px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, rgba(198,141,67,0.10) 0%, rgba(13,17,23,0) 60%);
  pointer-events: none;
}
.section-dark .wrap { position: relative; z-index: 2; }
.section-dark h2 { color: var(--ivory); }
.section-dark h2 em { color: var(--gold-light); }
.section-dark .lede { color: #a8b1bd; }

/* Ivory section (default look, but often needs slight bg shift) */
.section-ivory {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
}

/* ---- 11. Rule divider ---- */
.rule {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0;
}

/* ---- 12. Footer ---- */
.site-footer {
  background: var(--ink);
  color: #a8b1bd;
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  right: -300px;
  top: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,141,67,0.14) 0%, rgba(198,141,67,0.04) 45%, rgba(13,17,23,0) 72%);
  pointer-events: none;
}
.site-footer .wrap { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-light);
  line-height: 1.4;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #a8b1bd;
  max-width: 380px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; }
.footer-list a { font-size: 14px; color: #c9d1de; transition: color 0.2s; }
.footer-list a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(198,141,67,0.22);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7a8494;
}

/* ---- 13. Utility ---- */
.center { text-align: center; }
.text-muted { color: var(--body-muted); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* ---- 14. CTA strip ---- */
.cta-strip {
  background: var(--ink);
  color: var(--ivory);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,141,67,0.16) 0%, rgba(198,141,67,0.04) 45%, rgba(13,17,23,0) 72%);
  pointer-events: none;
}
.cta-strip .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--ivory); max-width: 680px; }
.cta-strip h2 em { color: var(--gold-light); }

/* ---- 15. Responsive ---- */
@media (max-width: 960px) {
  section { padding: 72px 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero:not(.hero--fullscreen) { padding: 96px 0 112px; }
  .page-header { padding: 80px 0 64px; }
  .work-card { flex-basis: min(80vw, 720px); }
  .featured-work__pin { padding: 56px 0 64px; }
}

@media (max-width: 720px) {
  :root { --gutter: 24px; }
  body { font-size: 16px; }
  section { padding: 56px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .site-header:not(.site-header--overlay) .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px var(--gutter);
    gap: 16px;
  }
  .site-header:not(.site-header--overlay) .nav-links.open { display: flex; }
  .site-header:not(.site-header--overlay) .nav-toggle { display: inline-flex; }
  .site-header:not(.site-header--overlay) .nav-cta { display: none; }

  .brand img { height: 44px; }
  .brand-text { font-size: 18px; }

  .hero:not(.hero--fullscreen) { padding: 72px 0 88px; }
  .hero--fullscreen h1 { max-width: 12ch; }
  .hero-play { width: 44px; height: 44px; }
  .page-header { padding: 64px 0 48px; }
  .cta-strip { padding: 56px 0; }
  .cta-strip .wrap { flex-direction: column; align-items: flex-start; }

  .featured-work__pin { padding: 48px 0 56px; }
  .featured-work__top {
    margin-bottom: 28px;
  }
  .work-card { flex-basis: 85vw; }
  .work-card__view {
    width: 76px;
    height: 76px;
    font-size: 10px;
  }

  .lede { font-size: 17px; }
}

/* ---- Our Work page ---- */

/* Sizzle reel placeholder */
.reel {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.reel iframe,
.reel video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.reel-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px var(--gutter);
  background:
    radial-gradient(ellipse at center, rgba(198,141,67,0.14) 0%, rgba(13,17,23,0) 60%),
    var(--ink);
}
.reel-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}
.reel-play svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  margin-left: 4px;
}
.reel-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.reel-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
  max-width: 520px;
}
.reel-note {
  font-size: 15px;
  line-height: 1.6;
  color: #a8b1bd;
  max-width: 520px;
  margin: 0;
}
.roster-caption {
  margin-top: 20px;
  font-size: 13px;
  font-style: italic;
  color: var(--body-muted);
  text-align: center;
}
.roster-caption a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* Client roster grid image */
.client-roster-grid {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(198,141,67,0.24);
}

/* Client list (accessibility + footer of roster section) */
.client-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}
.client-list li {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.client-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}
.client-list span {
  display: block;
  font-size: 13px;
  color: #a8b1bd;
  line-height: 1.4;
}

/* Project video grid */
.our-work-grid-section {
  padding-top: 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}
.work-grid--four {
  grid-template-columns: repeat(4, 1fr);
}
.work-grid--five {
  grid-template-columns: repeat(5, 1fr);
}
.work-grid .work-card__media {
  cursor: none;
}
.work-grid .work-card__view {
  position: absolute;
  left: 0;
  top: 0;
  width: 92px;
  height: 92px;
  margin: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.85);
}
.work-grid .work-card__media.is-hovering .work-card__view,
.work-grid .work-card__media.is-playing .work-card__view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.work-grid--light .work-grid__title {
  color: var(--ink);
}
.work-grid__link {
  display: block;
  color: inherit;
}
.work-grid__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #161a22;
}
.work-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.work-grid__view {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  margin: -46px 0 0 -46px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: lowercase;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.work-grid__link:hover .work-grid__view,
.work-grid__link:focus-visible .work-grid__view {
  opacity: 1;
  transform: scale(1);
}
.work-grid__link:hover .work-grid__thumb img,
.work-grid__link:focus-visible .work-grid__thumb img {
  transform: scale(1.06);
}
.work-grid__title {
  font-family: var(--sans);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: #fff;
  margin: 18px 0 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.work-grid-note {
  margin-top: 32px;
  font-size: 13px;
  font-style: italic;
  text-align: center;
  color: var(--body-muted);
}
.work-grid-note a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

@media (max-width: 960px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .work-grid--four { grid-template-columns: repeat(2, 1fr); }
  .work-grid--five { grid-template-columns: repeat(2, 1fr); }
  .client-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .work-grid { grid-template-columns: 1fr; gap: 28px; }
  .client-list { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .work-grid__view {
    opacity: 1;
    transform: scale(1);
    width: 76px;
    height: 76px;
    margin: -38px 0 0 -38px;
    font-size: 10px;
  }
  .reel-inner { padding: 32px 24px; }
}

/* ---- Video modal (work cards) ---- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--gutter);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.88);
  backdrop-filter: blur(6px);
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  background: var(--ink-2);
  border: 1px solid rgba(198,141,67,0.28);
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
  padding: 20px 20px 24px;
}
.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-modal__close:hover {
  background: rgba(255,255,255,0.16);
  transform: scale(1.04);
}
.video-modal__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.video-modal__title {
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--ivory);
  margin: 0 48px 16px 4px;
  line-height: 1.25;
}
.video-modal__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.video-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
body.video-modal-open {
  overflow: hidden;
}
.work-card__link {
  cursor: pointer;
}

@media (max-width: 720px) {
  .video-modal {
    padding: 16px;
    align-items: flex-end;
  }
  .video-modal__dialog {
    padding: 16px 16px 20px;
  }
  .video-modal__title {
    margin-right: 40px;
    font-size: 17px;
  }
}

/* ---- 16. Print (in case someone prints a page) ---- */
@media print {
  .site-header, .site-footer, .cta-strip, .nav-cta { display: none; }
  body { background: #fff; color: #000; }
  section { padding: 24px 0; }
}
