:root {
  --paper: #ffffff;
  --ink: #1d1d1f;
  --forest: #083830;
  --muted: #6e6e73;
  --line: #e5e5e5;
  --night: #000000;
  --cream: #ffffff;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2 {
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.08;
  text-wrap: balance;
  margin: 0;
}
p { text-wrap: pretty; }

.wrap { width: min(72rem, calc(100% - 2.5rem)); margin-inline: auto; }
.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 4rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  backdrop-filter: blur(12px);
}
.site-header.is-night {
  border-bottom-color: transparent;
  background: transparent;
  color: #fff;
  backdrop-filter: none;
}
.bar {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: block; }
.logo img { height: 2.25rem; width: auto; }
.logo-light { display: none; }
.is-night .logo-dark { display: none; }
.is-night .logo-light { display: block; }
.nav-desk { display: none; align-items: center; gap: 1.5rem; }
.nav-desk a { font-size: 0.875rem; text-decoration: none; }
.is-night .nav-desk a { color: rgba(255,255,255,0.85); }
.nav-desk a:hover { color: var(--forest); }
.is-night .nav-desk a:hover { color: #fff; }
.work-btn {
  display: none;
  height: 2.5rem;
  align-items: center;
  padding: 0 1rem;
  background: var(--forest);
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
}
.is-night .work-btn { background: #fff; color: #000; }
.menu-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-btn svg { width: 1.25rem; height: 1.25rem; }
.icon-close { display: none; }
.is-open .icon-open { display: none; }
.is-open .icon-close { display: block; }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 4rem 0 0 0;
  background: #fff;
  color: var(--ink);
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
.is-open .mobile-nav { display: flex; }
.mobile-nav a {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.mobile-nav .work-mobile {
  margin-top: 1.5rem;
  border: 0;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2) 45%, rgba(0,0,0,0.35));
}
.hero .copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
}
.hero h1 { max-width: 48rem; font-size: clamp(2.6rem, 6vw, 4.5rem); }
.hero p { margin: 1.25rem 0 0; max-width: 42rem; font-size: 1.125rem; color: rgba(255,255,255,0.8); }

.originals {
  border-top: 1px solid var(--line);
  background: #000;
  color: #fff;
}
.originals .grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}
.originals .kicker { color: rgba(255,255,255,0.55); }
.originals h2 { margin-top: 0.75rem; font-size: clamp(2.2rem, 4vw, 3rem); }

.page { padding: 7rem 0 5rem; }
.page h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); margin-top: 0.75rem; }
.lede { margin-top: 1.25rem; font-size: 1.125rem; color: var(--muted); max-width: 40rem; }
.page-night { background: #000; color: #fff; padding: 7rem 0 0; }
.page-night .kicker { color: rgba(255,255,255,0.55); }
.studio { width: min(72rem, calc(100% - 2.5rem)); margin: 2rem auto 0; padding-bottom: 4rem; }

.form { margin-top: 2.5rem; display: grid; gap: 1.25rem; max-width: 36rem; }
.form label { display: block; font-size: 0.875rem; }
.form input, .form textarea {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem;
}
.form input { height: 3rem; }
.form textarea { min-height: 9rem; resize: vertical; }
.form input:focus, .form textarea:focus { outline: 2px solid var(--forest); outline-offset: 2px; }
.send {
  height: 3rem;
  width: fit-content;
  border: 0;
  background: var(--forest);
  color: #fff;
  padding: 0 1.25rem;
  font-size: 0.875rem;
}
.note { font-size: 0.875rem; color: var(--muted); }
.frame {
  margin-top: 2rem;
  width: 100%;
  height: 920px;
  border: 1px solid var(--line);
  background: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #000;
  color: #fff;
}
.foot-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
.site-footer .logo-mark { height: 3rem; width: auto; }
.site-footer .line { margin-top: 1.25rem; max-width: 22rem; color: rgba(255,255,255,0.8); }
.foot-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.site-footer ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.site-footer li { margin: 0.5rem 0; font-size: 0.875rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: rgba(255,255,255,0.7); }
.socials { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; }
.socials li { margin: 0; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.legal a { text-decoration: underline; text-underline-offset: 4px; }

@media (min-width: 768px) {
  .nav-desk, .work-btn { display: flex; }
  .menu-btn, .mobile-nav { display: none !important; }
  .originals .grid { grid-template-columns: 1fr 1fr; padding: 5rem 0; }
  .foot-grid { grid-template-columns: 5fr 3fr 4fr; }
  .hero .copy { padding-bottom: 5rem; }
}
