/* Jennifer Duka — static clone of jenniferduka.com */
@font-face {
  font-family: "Instrument Sans";
  src: url("https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kywN2u7YUwU.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kywN2u7YUwU.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 500;
}

:root {
  --bg: #ffffff;
  --ink: #111111;
  --ink-soft: #1f1f1f;
  --muted: #6c7179;
  --muted-2: #71767f;
  --line: #d1d3d6;
  --soft: #f7f7f7;
  --green: #00c047;
  --purple: #7430f7;
  --shadow-btn: 0.474223px 0.474223px 0.670652px -0.2px rgba(0,0,0,.05),
    1.29143px 1.29143px 1.82636px -0.4px rgba(0,0,0,.06),
    2.83552px 2.83552px 4.01004px -0.6px rgba(0,0,0,.08),
    6.29421px 6.29421px 8.90136px -0.8px rgba(0,0,0,.11),
    16px 16px 22.6274px -1px rgba(0,0,0,.2);
  --shadow-card: 0.671842px 0.671842px 0.950128px -0.125px rgba(0,0,0,.05),
    1.59238px 1.59238px 2.25197px -0.25px rgba(0,0,0,.06),
    2.90467px 2.90467px 4.10783px -0.375px rgba(0,0,0,.06),
    4.82901px 4.82901px 6.82925px -0.5px rgba(0,0,0,.07),
    7.79846px 7.79846px 11.0287px -0.625px rgba(0,0,0,.08),
    12.7653px 12.7653px 18.0529px -0.75px rgba(0,0,0,.1),
    21.981px 21.981px 31.0858px -0.875px rgba(0,0,0,.13),
    40px 40px 56.5685px -1px rgba(0,0,0,.2);
  --shadow-soft: 0 0.722625px 0.722625px -0.833333px rgba(0,0,0,.08),
    0 2.74624px 2.74624px -1.66667px rgba(0,0,0,.08),
    0 12px 12px -2.5px rgba(0,0,0,.08);
  --container: 1120px;
  --page-pad: 160px;
  --radius-lg: 40px;
  --radius-md: 16px;
  --font: "Instrument Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container {
  width: min(100% - 80px, var(--container));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 80px, 1360px);
  margin-inline: auto;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== NAV ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  pointer-events: none;
  background-color: #ffffff;
}
.site-header > * { pointer-events: auto; }
.nav-inner {
  width: 100%;
  padding: 10px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.logo {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 26px;
  color: var(--ink);
  justify-self: start;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 18px;
  padding: 6px 12px;
  color: var(--ink);
  border-radius: 10px;
  transition: opacity .2s ease;
}
.nav-links a:hover { opacity: .55; }
.nav-links a.active { opacity: 1; }
.nav-cta {
  justify-self: end;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 16px auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 16px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
}
.mobile-nav a:hover { background: var(--soft); }

/* ===== BUTTONS ===== */
.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1;
  border: 1px solid transparent;
  box-shadow: var(--shadow-btn);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.btn-dark,
.nav-cta {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover,
.nav-cta:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-1px);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
  border-color: rgba(0, 0, 0, 0.12);
}
.btn-arrow::after { content: "→"; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 900px;
  padding-top: 100px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  left: 50%;
  top: 100px;
  width: min(1117px, calc(100vw - 80px));
  height: min(886px, 61.5vw);
  z-index: 0;
  pointer-events: none;
  /* keep translateX even after .reveal.in clears transform */
  translate: -50% 0;
}
.hero-media.reveal {
  opacity: 1;
  transform: none;
}
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-media img {
  object-fit: cover;
  object-position: center 10%;
  /* soft fade into the white page — image itself is transparent PNG/WebP */
  mask-image: linear-gradient(to bottom, #000 50%, rgba(0,0,0,.75) 74%, transparent 97%);
  -webkit-mask-image: linear-gradient(to bottom, #000 50%, rgba(0,0,0,.75) 74%, transparent 97%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 80px, 1360px);
  margin: 0 auto;
  padding-top: 578px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 600px) 300px;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.availability .dot {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0,192,71,.15);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,192,71,.25); }
  50% { box-shadow: 0 0 0 6px rgba(0,192,71,.08); }
}
.availability span {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 22.4px;
}
.hero h1 {
  margin: 0;
  max-width: 600px;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.2px;
  color: var(--ink);
}
.hero-side p {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: -0.48px;
  color: var(--ink-soft);
}

/* ===== SECTION HEADERS ===== */
.section {
  padding: 80px 0;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.section-head h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 43.2px;
  letter-spacing: -1.44px;
}

/* ===== WORK GRID ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 554px));
  justify-content: space-between;
  column-gap: 12px;
  row-gap: 24px;
}
.work-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 554 / 420;
  background: #111;
  transform: translateZ(0);
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.work-card:hover img { transform: scale(1.04); }
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 45%, transparent 70%);
  pointer-events: none;
}
.work-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.work-meta h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.2;
  min-height: calc(1.2em * 2);
  display: flex;
  align-items: flex-end;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}
.tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

/* ===== REELS EMBEDS (home) ===== */
.reels-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.reel-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
  aspect-ratio: 1120 / 640;
}
.reel-frame iframe,
.reel-frame .reel-fallback,
.reel-frame .reel-fallback img,
.reel-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.reel-frame .reel-fallback {
  display: block;
}
.reel-frame .reel-fallback .play-btn {
  z-index: 1;
}
.reel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.reel-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 530 / 270;
  cursor: pointer;
}
.reel-card .reel-inner {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
  aspect-ratio: 9 / 16;
  background: #111;
  overflow: hidden;
}
.reel-card img,
.reel-card .reel-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-card .reel-boom {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.reel-card.is-booming .reel-boom { opacity: 1; }
.reel-card.is-booming .reel-poster { opacity: 0; }
.reel-card .reel-boom iframe {
  /* crop YouTube chrome; keep subject in vertical frame */
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300%;
  height: 120%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease;
  z-index: 2;
}
.reel-card.has-boom-gif .play-btn {
  /* GIF already reads as motion — keep a light affordance */
  background: rgba(0,0,0,.35);
}
.reel-card:hover .play-btn {
  transform: scale(1.06);
  background: rgba(0,0,0,.6);
}
.play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 2px; }

/* ===== HIGHLIGHTS ===== */
.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.hl-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}
.hl-award { background: var(--soft); }
.hl-award .award-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hl-award .award-top img { width: 40px; height: 40px; object-fit: contain; }
.award-medal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe27a, #efce03 55%, #c9a000);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,.15);
  position: relative;
}
.award-medal::after {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #8a6a00;
}
.hl-award h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.25;
}
.hl-award p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted-2);
  letter-spacing: -0.2px;
}
.hl-award .award-photo {
  margin-top: auto;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 320 / 210;
  position: relative;
}
.hl-award .award-photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 145%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hl-quote {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.hl-quote .qmark {
  font-size: 72px;
  line-height: 0.8;
  color: rgba(255,255,255,.2);
  font-weight: 500;
  margin: 0 0 12px;
  font-family: Georgia, serif;
}
.hl-quote blockquote {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.6px;
}
.hl-quote .quote-foot {
  margin-top: auto;
  padding-top: 28px;
}
.hl-quote .quote-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hl-quote .quote-info img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.hl-quote .quote-info strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.hl-quote .quote-info span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.trusted {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trusted-stack {
  display: flex;
}
.trusted-stack img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink);
  margin-left: -8px;
}
.trusted-stack img:first-child { margin-left: 0; }
.trusted-pill {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 100px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 0.63695px 0.63695px -0.625px rgba(0,0,0,.13),
    0 1.9316px 1.9316px -1.25px rgba(0,0,0,.13),
    0 8px 8px -1.875px rgba(0,0,0,.13);
}
.hl-stats {
  background: var(--soft);
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.stat-chip:nth-child(1) { transform: scale(1) translateY(-8px); }
.stat-chip:nth-child(2) { transform: scale(.95) translateY(0); }
.stat-chip:nth-child(3) { transform: scale(.9) translateY(8px); }
.stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: none;
}
.stat-icon.purple { background: #f5f2ff; color: var(--purple); }
.stat-icon.green { background: #eefff3; color: var(--green); }
.stat-icon.gold { background: #fefee8; color: #c9a000; }
.stat-icon svg { width: 16px; height: 16px; }

.journey-cta {
  text-align: center;
  padding: 48px 0 16px;
}
.journey-cta p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}

/* ===== FAQ ===== */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.faq-label {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}
.faq-wrap h2 {
  margin: 0 0 24px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1.2px;
  max-width: 420px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--soft);
  border-radius: 28px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.04);
}
.faq-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border: 1px solid rgba(0,0,0,.04);
}
.faq-item.open {
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-color: rgba(0,0,0,.08);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  transition: transform .35s ease;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}
.faq-a-inner {
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.2px;
  opacity: 0;
  transition: opacity .3s ease, padding-bottom .4s ease;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-a-inner {
  opacity: 1;
  padding-bottom: 20px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== SOCIAL BAR ===== */
.social-bar {
  margin: 64px auto 24px;
  width: min(100% - 80px, var(--container));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  font-size: 15px;
  font-weight: 500;
  border-right: 1px solid rgba(0,0,0,.06);
  transition: background .2s ease;
}
.social-bar a:last-child { border-right: 0; }
.social-bar a:hover { background: var(--soft); }
.social-bar .ext { opacity: .55; font-size: 13px; }

/* ===== FOOTER CTA ===== */
.footer-cta {
  width: min(100% - 80px, var(--container));
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
  color: #fff;
  position: relative;
}
.footer-cta-photo {
  position: relative;
  overflow: hidden;
}
.footer-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.footer-cta-body {
  padding: 48px 48px 36px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1200px 400px at 80% 20%, rgba(255,255,255,.06), transparent 50%),
    #111;
  position: relative;
}
.footer-cta-body h2 {
  margin: 48px 0 24px;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.6px;
  line-height: 1.1;
}
.footer-cta-body .btn-light { align-self: flex-start; }
.footer-cols {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 48px;
}
.footer-cols a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s ease;
}
.footer-cols a:hover { color: #fff; }

/* ===== PAGE HEROES ===== */
.page {
  padding-top: 120px;
  padding-bottom: 80px;
}
.page-title {
  width: min(100% - 80px, var(--container));
  margin: 0 auto 40px;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.6px;
  line-height: 1.15;
  max-width: 900px;
}
.page-title.center {
  text-align: center;
  max-width: 980px;
}
.page-title .nyu-inline {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  vertical-align: -10px;
  margin: 0 6px;
  object-fit: cover;
}

/* ABOUT */
.about-split {
  width: min(100% - 80px, var(--container));
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}
.testimonials {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.04);
  background: var(--soft);
  padding: 12px;
  max-height: 510px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonials::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--soft));
  pointer-events: none;
  z-index: 1;
}
.testimonial {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow-soft);
}
.testimonial .who {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}
.testimonial .who span {
  color: var(--muted);
  font-weight: 400;
}
.testimonial p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: -0.2px;
}
.about-feature {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 510px;
}
.about-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-heads {
  width: min(100% - 80px, var(--container));
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-heads img {
  width: 100%;
  aspect-ratio: 365 / 510;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-bio {
  width: min(720px, 100% - 80px);
  margin: 0 auto 64px;
}
.about-bio .eyebrow {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
}
.about-bio h2 {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.25;
}
.about-bio p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  letter-spacing: -0.2px;
}
.about-bio em { font-style: italic; }
.about-mosaic {
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.about-mosaic .row {
  display: grid;
  gap: 24px;
}
.about-mosaic .row.r1 { grid-template-columns: 1.4fr 1fr; }
.about-mosaic .row.r2 { grid-template-columns: 1fr 1.4fr; }
.about-mosaic img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* CONTACT */
.contact-page {
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}
.contact-page h1 {
  margin: 0 0 32px;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.6px;
  line-height: 1.15;
  max-width: 820px;
}
.contact-card {
  background: var(--soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 640px;
}
.contact-card .top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-card .top img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
}
.contact-card .info a,
.contact-card .info p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.5;
  color: var(--ink);
  display: block;
}
.contact-card .info a:hover { opacity: .7; }

/* WORK DETAIL */
.work-detail {
  width: min(100% - 80px, 900px);
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 64px;
  position: relative;
}
.work-close {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 120;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--ink);
}
.work-detail h1 {
  margin: 0 0 40px;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.6px;
}
.detail-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.detail-row .label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  padding-top: 4px;
}
.detail-row .value {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  letter-spacing: -0.2px;
}
.detail-row .value p { margin: 0 0 14px; }
.detail-row .value p:last-child { margin-bottom: 0; }
.detail-row .value strong { color: var(--ink); font-weight: 600; }
.detail-row .value em { font-style: italic; }
.work-hero-img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 48px;
  max-height: 960px;
  overflow: hidden;
}
.work-hero-img img {
  width: 100%;
  height: min(60vh, 960px);
  object-fit: cover;
}
.work-gallery {
  width: min(100% - 80px, var(--container));
  margin: 48px auto;
  display: grid;
  gap: 24px;
}
.work-gallery .g-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work-gallery img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.work-gallery .g-wide img { height: 720px; }
.more-works { margin-top: 24px; }
.more-works h3 {
  width: min(100% - 80px, var(--container));
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.8px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.lightbox-inner iframe { width: 100%; height: 100%; border: 0; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 22px;
  z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  :root { --page-pad: 40px; }
  .nav-inner { padding: 10px 24px; }
  .hero-content {
    padding-top: 480px;
    grid-template-columns: 1fr 260px;
  }
  .hero h1 { font-size: 34px; line-height: 40px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .hl-card { min-height: auto; }
  .faq-wrap { grid-template-columns: 1fr; gap: 28px; }
  .about-split { grid-template-columns: 1fr; }
  .about-feature { min-height: 420px; }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-cta-photo { height: 360px; }
}

@media (max-width: 809px) {
  .container, .container-wide,
  .hero-content,
  .social-bar,
  .footer-cta,
  .page-title,
  .about-split,
  .about-heads,
  .about-bio,
  .about-mosaic,
  .contact-page,
  .work-detail,
  .work-gallery,
  .more-works h3 {
    width: calc(100% - 40px);
  }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-inner { grid-template-columns: 1fr auto; padding: 10px 16px; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-media {
    width: calc(100vw - 32px);
    height: 70vw;
    top: 80px;
  }
  .hero-content {
    padding-top: 320px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero h1 { font-size: 30px; line-height: 36px; letter-spacing: -0.9px; max-width: none; }
  .work-grid, .reel-grid, .about-heads { grid-template-columns: 1fr; }
  .about-mosaic .row.r1,
  .about-mosaic .row.r2,
  .work-gallery .g-row { grid-template-columns: 1fr; }
  .about-mosaic img, .work-gallery img, .work-gallery .g-wide img { height: 280px; }
  .social-bar { grid-template-columns: 1fr 1fr; }
  .social-bar a:nth-child(2) { border-right: 0; }
  .social-bar a:nth-child(1),
  .social-bar a:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,.06); }
  .page-title, .contact-page h1, .work-detail h1, .footer-cta-body h2, .faq-wrap h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .detail-row { grid-template-columns: 1fr; gap: 8px; }
  .section-head h2 { font-size: 28px; }
  .footer-cta-body { padding: 32px 24px; }
  .footer-cta-body h2 { margin-top: 8px; }
}
