:root {
  --text: #1d1d1f;
  --muted: #6e6e73;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --surface: #f5f5f7;
  --line: #d2d2d7;
  --white: #fff;
  --black: #000;
  --page: min(1200px, calc(100% - 44px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 52px;
  background: rgba(250, 250, 252, .82);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: saturate(180%) blur(20px);
}
.nav-shell {
  width: var(--page);
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  gap: 4px;
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1;
}
.brand span { font-size: 22px; }
.brand small { font-size: 7px; letter-spacing: .04em; }
.nav { display: flex; align-items: center; gap: 32px; font-size: 12px; }
.nav a, .header-cta { transition: color .2s; }
.nav a:hover { color: var(--blue); }
.header-cta {
  justify-self: end;
  background: var(--blue);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
}
.header-cta:hover, .button-primary:hover { background: var(--blue-hover); }
.menu-button { display: none; }

.hero {
  min-height: calc(100svh - 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(76px, 10vw, 132px) 0 0;
  overflow: hidden;
  background: var(--surface);
  text-align: center;
}
.hero-copy { width: min(880px, calc(100% - 44px)); margin: 0 auto 64px; }
.kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; letter-spacing: -.045em; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: .98;
  font-weight: 700;
}
.hero-intro {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}
.actions { margin-top: 30px; display: flex; justify-content: center; align-items: center; gap: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; font-size: 16px; }
.button-primary { padding: 11px 22px; border-radius: 999px; color: var(--white); background: var(--blue); transition: background .2s; }
.button-link { color: var(--blue); }
.button-link span, .feature-copy a span { padding-left: 5px; font-size: 22px; line-height: 0; }
.hero-media {
  position: relative;
  width: min(1280px, 100%);
  margin: auto auto 0;
  overflow: hidden;
  background: #111;
}
.hero-media img { height: clamp(280px, 43vw, 610px); object-fit: cover; }
.media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45)); }
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #111;
  background: rgba(255,255,255,.9);
  font-size: 20px;
  transition: transform .25s, background .25s;
}
.hero-media:hover .play-button { transform: translate(-50%, -50%) scale(1.08); background: var(--white); }
.media-caption { position: absolute; left: 24px; bottom: 20px; color: var(--white); font-size: 14px; font-weight: 600; }

.section { padding: clamp(90px, 11vw, 160px) 0; }
.narrow { width: min(920px, calc(100% - 44px)); margin: auto; text-align: center; }
.intro h2, .section-heading h2, .philosophy h2, .contact h2 {
  margin-bottom: 26px;
  font-size: clamp(40px, 5.7vw, 76px);
  line-height: 1.05;
  font-weight: 700;
}
.intro .narrow > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.services { background: var(--surface); }
.section-heading { width: min(840px, calc(100% - 44px)); margin: 0 auto 70px; text-align: center; }
.section-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}
.service-grid {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-grid article {
  position: relative;
  min-height: 340px;
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
}
.service-number { color: #86868b; font-size: 12px; }
.service-icon { width: 48px; margin: 56px auto 36px; color: var(--blue); }
.service-icon svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-grid h3 { margin-bottom: 10px; font-size: 23px; text-align: center; }
.service-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.45; text-align: center; }

.work { background: var(--white); }
.feature-list { width: var(--page); margin: auto; display: grid; gap: 24px; }
.feature {
  min-height: 620px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 40px;
  padding: clamp(42px, 6vw, 84px);
  border-radius: 28px;
  overflow: hidden;
}
.feature-reverse { grid-template-columns: 1.22fr .78fr; }
.feature-reverse .feature-copy { order: 2; }
.feature-dark { color: var(--white); background: var(--black); }
.feature-blue { color: var(--white); background: #0a44a2; }
.feature-light { background: var(--surface); }
.feature-copy { position: relative; z-index: 1; }
.feature-copy .kicker { color: inherit; opacity: .68; }
.feature-copy h3 { margin-bottom: 18px; font-size: clamp(38px, 4.5vw, 66px); line-height: 1.02; }
.feature-copy > p:not(.kicker) { max-width: 410px; margin: 0; color: inherit; opacity: .68; font-size: 18px; line-height: 1.45; }
.feature-copy a { display: inline-flex; align-items: center; margin-top: 24px; color: #2997ff; font-size: 17px; }
.feature-blue .feature-copy a { color: var(--white); }
.feature-image { display: block; overflow: hidden; border-radius: 20px; box-shadow: 0 25px 70px rgba(0,0,0,.25); }
.feature-image img { aspect-ratio: 16/10; object-fit: cover; transition: transform .5s ease; }
.feature-image:hover img { transform: scale(1.025); }
.all-work { margin-top: 50px; text-align: center; }

.philosophy {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
}
.philosophy-image { border-radius: 28px; overflow: hidden; background: var(--surface); }
.philosophy-image img { min-height: 570px; object-fit: cover; }
.philosophy-copy > p:not(.kicker) { color: var(--muted); font-size: 18px; line-height: 1.55; }

.team { background: var(--surface); }
.team-grid {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.team-grid article { min-height: 250px; padding: 28px 22px; border-radius: 22px; background: var(--white); text-align: center; }
.initials {
  width: 92px;
  height: 92px;
  margin: 22px auto 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #edf5ff;
  font-size: 24px;
  font-weight: 700;
}
.team-grid h3 { margin-bottom: 7px; font-size: 18px; letter-spacing: -.025em; }
.team-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.production-team { width: var(--page); margin: 65px auto 0; padding-top: 34px; border-top: 1px solid var(--line); }
.production-team > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.production-team span { font-weight: 600; }
.production-team small { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; font-weight: 400; }

.contact { background: var(--white); }
.contact-card { width: min(1050px, calc(100% - 44px)); margin: auto; padding: clamp(60px, 9vw, 115px); border-radius: 30px; background: var(--surface); text-align: center; }
.contact-card > p:not(.kicker) { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 20px; line-height: 1.45; }
.contact-details { margin-top: 54px; padding-top: 24px; display: flex; justify-content: center; gap: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

footer { width: min(980px, calc(100% - 44px)); margin: auto; padding: 40px 0 26px; color: var(--muted); font-size: 12px; }
.footer-main { display: flex; align-items: center; justify-content: space-between; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.footer-main p { margin: 0; }
.brand-footer { color: var(--text); }
.footer-bottom { display: flex; gap: 24px; padding-top: 18px; }
.footer-bottom span { margin-right: auto; }
.footer-bottom a:hover { text-decoration: underline; }

.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav, .header-cta { display: none; }
  .menu-button {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    justify-self: end;
    border: 0;
    background: transparent;
  }
  .menu-button span { width: 18px; height: 1px; background: var(--text); transition: transform .25s; }
  .menu-button.active span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button.active span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .nav.open {
    position: fixed;
    inset: 52px 0 0;
    display: flex;
    padding: 34px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(250,250,252,.98);
    font-size: 30px;
  }
  .nav.open a { width: 100%; padding: 17px 0; border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .feature, .feature-reverse { min-height: 0; grid-template-columns: 1fr; }
  .feature-reverse .feature-copy { order: initial; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy-image img { min-height: 0; aspect-ratio: 16/10; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .production-team > div { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --page: calc(100% - 28px); }
  .hero { padding-top: 64px; }
  .hero-copy { width: calc(100% - 28px); margin-bottom: 46px; }
  h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero-intro { font-size: 18px; }
  .actions { gap: 18px; flex-wrap: wrap; }
  .hero-media img { height: 310px; }
  .section { padding: 82px 0; }
  .narrow, .section-heading { width: calc(100% - 28px); }
  .intro h2, .section-heading h2, .philosophy h2, .contact h2 { font-size: 40px; }
  .section-heading { margin-bottom: 46px; }
  .section-heading > p:last-child { font-size: 17px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 300px; }
  .feature-list { gap: 14px; }
  .feature { padding: 38px 22px 22px; border-radius: 22px; gap: 34px; }
  .feature-copy h3 { font-size: 40px; }
  .feature-copy > p:not(.kicker) { font-size: 16px; }
  .feature-image { border-radius: 14px; }
  .philosophy { gap: 46px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid article { min-height: 220px; }
  .initials { width: 76px; height: 76px; margin-bottom: 30px; }
  .production-team > div { grid-template-columns: 1fr; }
  .contact-card { width: calc(100% - 28px); padding: 58px 22px; border-radius: 22px; }
  .contact-card > p:not(.kicker) { font-size: 17px; }
  .contact-details { flex-direction: column; gap: 10px; }
  .footer-main { display: block; }
  .footer-main p { margin-top: 16px; }
  .footer-bottom { flex-wrap: wrap; }
  .footer-bottom span { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .fade-up { opacity: 1; transform: none; }
}
