:root {
  --bg: #000;
  --panel: #050505;
  --panel-2: #090909;
  --text: #f4f1ed;
  --muted: #9e9b96;
  --soft: #70736f;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #f02a24;
  --warm: #d9b26d;
  --radius: 2px;
  --max: 1490px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 68px;
  padding: 0 clamp(18px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.18), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: 0.25em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: var(--muted);
  font-size: 11px;
}

.site-nav a,
.nav-action,
.section-heading span,
.system-copy span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a:hover,
.nav-action:hover {
  color: var(--text);
}

.nav-action {
  padding: 0;
  color: var(--text);
  font-size: 11px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 72vh;
  place-items: end start;
  overflow: hidden;
  padding: 108px clamp(20px, 6.4vw, 92px) 56px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.96) 30%, rgba(0, 0, 0, 0.48) 62%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.92) 10%, rgba(0, 0, 0, 0.16) 38%, transparent 60%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero-copy {
  position: relative;
  width: min(720px, 100%);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(44px, 4.9vw, 68px);
  line-height: 0.98;
  font-weight: 660;
}

.hero p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(13px, 1.1vw, 15px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 650;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.section {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 96px)));
  margin: 0 auto;
  padding: 58px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-heading.inline {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading span,
.system-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.section-heading h2,
.system-copy h2,
.contact h2 {
  font-size: clamp(26px, 3.35vw, 44px);
  line-height: 1.08;
  font-weight: 620;
}

.section-heading.inline a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.about {
  border-top: 1px solid var(--line);
}

.about-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 6vw, 96px);
  max-width: 1120px;
}

.about-flow p {
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.55;
}

.experience-line {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-line span {
  padding: 14px 22px 14px 0;
  margin-right: 22px;
  color: var(--text);
  font-size: 12px;
  font-weight: 680;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-grid article {
  min-height: 190px;
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.service-grid h3 {
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 620;
}

.service-grid p,
.system-copy p,
.system-copy li {
  color: var(--muted);
}

.work-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 8px;
}

.work-strip figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.work-strip img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.work-strip figure:hover img {
  transform: scale(1.04);
  opacity: 0.96;
}

.work-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 680;
}

.credit-rail {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credit-rail span {
  padding: 13px 22px 13px 0;
  margin-right: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 620;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reel {
  border-top: 1px solid var(--line);
}

.reel-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #030303;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reel-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.system {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.portrait {
  overflow: hidden;
  background: transparent;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.system-copy p {
  max-width: 660px;
  margin-top: 18px;
  font-size: 15px;
}

.system-copy h2 {
  max-width: 820px;
}

.system-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.system-copy li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.contact {
  margin-bottom: 24px;
  padding: 58px 0 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.contact h2 {
  max-width: 780px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .service-grid,
  .work-strip,
  .system,
  .about-flow {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .section-heading.inline {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 96px 20px 54px;
  }

  .hero h1 {
    font-size: clamp(40px, 12.8vw, 50px);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
