@font-face {
  font-family: "Site Serif";
  src: url("fonts/LiberationSerif-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Site Serif";
  src: url("fonts/LiberationSerif-Italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Site Sans";
  src: url("fonts/LiberationSans-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --bg: #07080b;
  --panel: #0d0f14;
  --ink: #eef2f6;
  --mute: #9aa3ad;
  --line: rgba(255,255,255,.12);
  --accent: #8fd6ff;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 17px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Site Sans", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { display: block; max-width: 100%; }
.skip { position: absolute; left: -999px; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 4;
}
.site-header.solid {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(7,8,11,.92);
}
.header-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
}
.mark { display: inline-flex; align-items: center; gap: 10px; font-size: 28px; letter-spacing: .03em; font-weight: 700; }
.mark img { width: 54px; height: 54px; object-fit: contain; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.nav-list a { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }
.nav-list a[aria-current="page"] { color: var(--ink); }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  background: #05060a;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,8,11,.15), rgba(7,8,11,.18) 40%, rgba(7,8,11,.78));
}
.hero-inner { position: relative; z-index: 2; padding: 0 0 80px; }
.hero h1 {
  margin: 0 0 12px;
  max-width: 21ch;
  font-family: "Site Sans", Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: .96;
  letter-spacing: -.01em;
  color: #f7f9fc;
}
.hero .tag {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero .sub {
  margin: 0;
  font-family: "Site Serif", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: #e8eef3;
}

.band { padding: 88px 0; border-top: 1px solid var(--line); }
.words {
  font-family: "Site Serif", Georgia, serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  max-width: 18ch;
  margin: 0;
}
.do-list { list-style: none; margin: 0; padding: 0; }
.do-list li {
  display: grid; grid-template-columns: 220px 1fr; gap: 24px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.do-list li:last-child { border-bottom: 1px solid var(--line); }
.do-list h3 { margin: 0; font-size: 22px; font-weight: 400; }
.do-list p { margin: 0; color: var(--mute); max-width: 36ch; }

.page-head { padding: 120px 0 40px; }
.page-head h1 {
  font-family: "Site Serif", Georgia, serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 400; letter-spacing: -.03em; margin: 0 0 14px;
}
.page-head .lede { margin: 0; max-width: 28ch; font-size: 22px; color: #d5dde4; }
.prose { padding: 20px 0 60px; }
.prose p { max-width: 48ch; color: #c8d0d7; }
.facts { list-style: none; margin: 0; padding: 0 0 80px; }
.facts li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  max-width: 36ch;
  color: #d5dde4;
  line-height: 1.45;
}
.facts .k {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mute);
}

.studio { padding: 130px 0 90px; max-width: 720px; }
.studio h1 {
  font-family: "Site Serif", Georgia, serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 400; margin: 8px 0 12px;
}
.kicker { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.studio-lede { font-family: "Site Serif", Georgia, serif; font-size: 24px; margin: 0 0 28px; }
.studio-body p { max-width: 38ch; color: #c8d0d7; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  color: var(--mute);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-brand { text-transform: none; font-size: 15px; letter-spacing: .03em; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 30px; margin-top: 28px; }
.text-link { display: inline-block; padding: 5px 0; border-bottom: 1px solid rgba(143,214,255,.45); font-size: 15px; }
.text-link span { margin-left: 5px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; border-radius: 2px; }
.nav-list a:hover { color: var(--ink); }
.section-intro { max-width: 56ch; color: #c8d0d7; margin: 28px 0 0; }
.project-links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 40px; margin-top: 44px; }
.project-links > a { border-top: 1px solid var(--line); padding-top: 22px; }
.project-links h3 { font-size: 28px; font-weight: 400; margin: 0 0 10px; }
.project-links p { color: var(--mute); max-width: 33ch; }
.prose h2 { font-family: "Site Serif", Georgia, serif; font-size: 28px; font-weight: 400; margin: 38px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.contact-topics { margin: 0 0 60px; }
.contact-topics h2 { font-family: "Site Sans", Helvetica, Arial, sans-serif; font-size: 22px; font-weight: 400; margin: 0; }
.contact-topics .text-link { margin-top: 14px; }
.contact-email { font-size: clamp(18px, 3vw, 26px); overflow-wrap: anywhere; }
.contact-hint { color: var(--mute); max-width: 48ch; font-size: 15px; margin-top: 18px; }
.studio-body h3 { margin-top: 32px; font-size: 20px; font-weight: 400; max-width: 32ch; }
.product { scroll-margin-top: 24px; }
.page-head h1 { max-width: 19ch; line-height: 1.06; }

@media (max-width: 720px) {
  .do-list li { grid-template-columns: 1fr; gap: 6px; }
  .header-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .project-links { grid-template-columns: 1fr; gap: 32px; }
  .nav-list { flex-wrap: wrap; gap: 14px 20px; }
  .nav-list a { display: inline-block; padding: 5px 0; }
  .page-head { padding-top: 70px; }
}

/* Field homepage — full-bleed video playlist */
body.has-field {
  background: #030408;
  overflow-x: hidden;
  color: #f4f7fb;
}
.field-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #030408;
}
.field-bg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 72px;
  background: #030408;
}
.field-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.field-video.is-on { opacity: 1; }
.has-field .site-header {
  z-index: 4;
  background: linear-gradient(180deg, rgba(3,4,8,.86) 0%, rgba(3,4,8,.48) 62%, transparent 100%);
}
.has-field main,
.has-field .site-footer { position: relative; z-index: 2; }
.has-field .mark { color: #f7f9fc; }
.has-field .nav-list a { color: rgba(247,249,252,.68); }
.has-field .nav-list a[aria-current="page"] { color: #fff; }
.has-field .hero {
  background: none;
  min-height: 100vh;
  align-items: center;
}
.has-field .hero::after { display: none; }
.has-field .hero-inner {
  z-index: 2;
  padding: 0;
  margin-top: 0;
  transform: none;
  text-shadow: 0 1px 16px rgba(0,0,0,.4);
}
.field-veil { display: none; }
.field-title-cover { display: none; }
.has-field .band,
.has-field .site-footer {
  background: linear-gradient(180deg, rgba(3,4,8,0.55), rgba(3,4,8,0.88));
}

@media (prefers-reduced-motion: reduce) {
  .field-video { display: none !important; }
  .field-bg,
  .field-bg.is-still {
    background: #030408;
  }
}
.field-bg.is-still .field-video { display: none; }
@media (max-width: 720px) {
  .has-field .hero-inner { padding-top: 175px; padding-bottom: 60px; }
}

.product { padding: 40px 0 80px; max-width: 720px; border-top: 1px solid var(--line); }
.product:first-of-type { border-top: 0; padding-top: 0; }
.product h2 {
  font-family: "Site Serif", Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; margin: 8px 0 12px;
}
.product-shot {
  margin: 22px 0 26px;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #10131a;
  border: 1px solid var(--line);
}
.product-shot.is-empty { background: linear-gradient(180deg, #12151c, #0b0d12); }
.product-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
