:root {
  --bg: #090909;
  --panel: #121212;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --red: #fc0311;
  --gold: #fdc054;
  --teal: #1cb7a6;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  align-items: center;
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}
.brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 30px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.site-nav { display: flex; gap: 22px; justify-content: center; }
.site-nav a, .site-footer a { color: var(--muted); font-size: 13px; font-weight: 900; }
.site-nav a:hover, .site-footer a:hover { color: #fff; }
.header-cta, .button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
}
.header-cta, .button.primary { background: var(--red); color: #fff; }
.button.secondary { border: 1px solid var(--line); color: #fff; }
.nav-toggle { background: transparent; border: 0; display: none; height: 42px; width: 42px; }
.nav-toggle span { background: #fff; display: block; height: 2px; margin: 6px auto; width: 24px; }

.hero, .split-section, .work-section, .projects-section, .notes-section, .contact-section, .site-footer {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
}
.hero {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) 420px;
  min-height: calc(100vh - 81px);
  padding-bottom: 64px;
  padding-top: 64px;
}
h1, h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0 0 22px;
  text-transform: uppercase;
}
h1 { font-size: clamp(70px, 10vw, 132px); max-width: 780px; }
h2 { font-size: clamp(50px, 7vw, 88px); }
h3, p { margin-top: 0; }
.hero-copy p, .copy-block p, .section-head p, .contact-copy p { color: var(--muted); font-size: 19px; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-portrait {
  background: linear-gradient(135deg, rgba(252, 3, 17, .45), rgba(253, 192, 84, .18));
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 10px;
}
.hero-portrait img { aspect-ratio: 1; height: 100%; object-fit: cover; width: 100%; }

.proof-strip {
  background: #fff;
  color: #111;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-strip div { border-right: 1px solid rgba(0,0,0,.12); padding: 26px; text-align: center; }
.proof-strip strong { display: block; font-family: "Bebas Neue", Impact, sans-serif; font-size: 58px; line-height: 1; }
.proof-strip span { color: #4b5563; font-weight: 900; text-transform: uppercase; }

.split-section, .notes-section, .contact-section {
  display: grid;
  gap: 44px;
  grid-template-columns: .9fr 1.1fr;
  padding-bottom: 96px;
  padding-top: 96px;
}
.work-section, .projects-section { padding-bottom: 96px; padding-top: 96px; }
.section-head { margin-bottom: 34px; }
.work-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
.work-grid article, .project-list a, .notes-grid article, .contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.work-grid p, .project-list span, .notes-grid p { color: var(--muted); }
.project-list { display: grid; gap: 12px; }
.project-list a { align-items: center; display: grid; gap: 18px; grid-template-columns: 260px 1fr; }
.project-list strong { color: var(--gold); font-size: 24px; }
.notes-grid { display: grid; gap: 14px; }
.notes-grid span { color: var(--red); display: block; font-family: "Bebas Neue", Impact, sans-serif; font-size: 46px; line-height: 1; }

.form-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
label { display: grid; font-size: 13px; font-weight: 900; gap: 8px; margin-bottom: 14px; }
input, textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #fff;
  min-height: 50px;
  outline: 0;
  padding: 12px 13px;
  width: 100%;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(253,192,84,.14); }
.form-status { color: var(--muted); font-weight: 800; min-height: 22px; }
.form-status.success { color: #65d9ad; }
.form-status.error { color: #ff8c86; }
.site-footer { align-items: center; border-top: 1px solid var(--line); display: flex; gap: 24px; justify-content: space-between; padding-bottom: 42px; padding-top: 42px; }
.site-footer nav { display: flex; gap: 18px; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: auto auto; }
  .site-nav, .header-cta { display: none; }
  .site-nav.is-open {
    background: #090909;
    border-bottom: 1px solid var(--line);
    display: grid;
    left: 0;
    padding: 16px 20px 24px;
    position: absolute;
    right: 0;
    top: 75px;
  }
  .nav-toggle { display: block; justify-self: end; }
  .hero, .split-section, .notes-section, .contact-section { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 460px; }
  .work-grid, .proof-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(58px, 17vw, 80px); }
  h2 { font-size: clamp(46px, 14vw, 62px); }
  .hero-actions, .site-footer { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .work-grid, .proof-strip, .form-grid { grid-template-columns: 1fr; }
  .project-list a { grid-template-columns: 1fr; }
  .proof-strip div { border-bottom: 1px solid rgba(0,0,0,.12); border-right: 0; }
}
