:root {
  --bg: #07090b;
  --bg-soft: #0e1216;
  --bg-card: #12171c;
  --text: #f3f0ea;
  --muted: #b9b3aa;
  --line: rgba(255,255,255,.12);
  --gold: #d6a848;
  --gold-dark: #8b6524;
  --danger: #d9534f;
  --success: #4caf6d;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(214,168,72,.14), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(123,31,28,.16), transparent 38%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, auto, 100% 4px;
  z-index: -1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 54px);
  background: rgba(7,9,11,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.logo {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .45em;
  font-weight: 800;
  line-height: 1;
}
.logo span { display: block; font-size: clamp(22px, 3vw, 32px); }
.logo small { display: block; color: var(--gold); font-size: 13px; margin-top: 9px; letter-spacing: .55em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.site-nav a { text-decoration: none; color: var(--text); opacity: .88; }
.site-nav a:hover { color: var(--gold); opacity: 1; }
.nav-button {
  border: 1px solid var(--gold);
  padding: 13px 22px;
}
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 27px; height: 2px; background: var(--text); margin: 6px 0; }

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.hero-content {
  padding: clamp(70px, 8vw, 120px) clamp(22px, 5vw, 72px);
  max-width: 650px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1; margin: 0; }
h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: .025em;
}
h1 { font-size: clamp(58px, 8vw, 104px); max-width: 780px; }
h2 { font-size: clamp(42px, 5vw, 70px); }
h3 { font-size: 20px; }
.hero-copy { margin: 28px 0 34px; color: var(--muted); max-width: 520px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
}
.button-primary { background: linear-gradient(135deg, #e0b75b, var(--gold)); color: #111; }
.button-outline { background: transparent; color: var(--text); }
.button:hover { transform: translateY(-1px); }

.hero-art {
  min-height: 540px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, var(--bg), transparent 30%),
    radial-gradient(circle at 70% 30%, rgba(214,168,72,.26), transparent 20%),
    radial-gradient(circle at 78% 62%, rgba(128,28,22,.42), transparent 32%),
    linear-gradient(145deg, #18232a, #090b0d 60%);
  overflow: hidden;
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(145deg, transparent, rgba(255,255,255,.05));
}
.poster-feature {
  position: relative;
  width: min(420px, 78%);
  aspect-ratio: 2 / 3;
  display: grid;
  align-content: end;
  padding: 34px;
  text-align: center;
  background:
    linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.18)),
    radial-gradient(circle at center 22%, rgba(214,168,72,.42), transparent 25%),
    linear-gradient(150deg, #22343c, #0d1216 58%, #3a1512);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.project-label { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: 13px; }
.poster-feature strong { display: block; margin: 12px 0; font-family: 'Bebas Neue'; font-size: clamp(62px, 8vw, 104px); line-height: .9; color: #d7d1c7; }
.poster-feature small { color: var(--muted); }

.section { max-width: var(--max); margin: 0 auto; padding: 76px 22px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.text-link { color: var(--gold); text-decoration: none; text-transform: uppercase; font-size: 13px; font-weight: 800; letter-spacing: .08em; }

.portfolio-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.portfolio-card { min-width: 0; }
.poster-placeholder {
  aspect-ratio: 2 / 3;
  display: grid;
  place-items: end center;
  padding: 22px;
  text-align: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(to top, rgba(0,0,0,.85), transparent),
    radial-gradient(circle at 50% 15%, rgba(214,168,72,.25), transparent 28%),
    linear-gradient(145deg, #1a2a31, #0f1215 55%, #2d1714);
}
.poster-placeholder span { font-family: 'Bebas Neue'; font-size: 30px; letter-spacing: .06em; }
.portfolio-card h3 { margin-top: 14px; }
.portfolio-card p, .services p, .split-copy p, .process p, .cta-band p, .contact p, .site-footer p { color: var(--muted); }

.services { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: none; padding-left: max(22px, calc((100vw - var(--max))/2)); padding-right: max(22px, calc((100vw - var(--max))/2)); background: rgba(255,255,255,.02); }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin-top: 34px; background: var(--line); }
.services-grid article { background: var(--bg-soft); padding: 28px 22px; min-height: 240px; }
.icon { color: var(--gold); font-size: 34px; display: block; margin-bottom: 18px; }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 520px; border-bottom: 1px solid var(--line); }
.split-copy { padding: clamp(60px, 7vw, 96px) max(22px, calc((100vw - var(--max))/2)); padding-right: clamp(28px, 5vw, 72px); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; }
.check-list li { margin: 13px 0; color: var(--muted); }
.check-list li::before { content: '✓'; color: var(--gold); margin-right: 10px; }
.studio-image {
  display: grid;
  place-items: center;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(7,9,11,.3), rgba(7,9,11,.8)),
    radial-gradient(circle at 40% 25%, rgba(214,168,72,.16), transparent 24%),
    linear-gradient(145deg, #24282c, #07090b);
}
.studio-image span { border: 1px solid var(--line); padding: 22px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.process-grid article { border: 1px solid var(--line); background: var(--bg-card); padding: 28px; }
.process-grid strong { color: var(--gold); font-family: 'Bebas Neue'; font-size: 40px; }
.process-grid h3 { margin: 18px 0 10px; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 54px max(22px, calc((100vw - var(--max))/2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(214,168,72,.12), rgba(255,255,255,.02));
}

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.contact-form { background: var(--bg-card); border: 1px solid var(--line); padding: 30px; }
.contact-form label { display: block; margin: 18px 0 8px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: #090c0f;
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.hidden-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-status { padding: 14px 16px; border: 1px solid var(--line); margin-bottom: 8px; }
.form-status.success { border-color: var(--success); color: #c8f0d4; }
.form-status.error { border-color: var(--danger); color: #ffd1cf; }
code { color: var(--gold); }

.site-footer { border-top: 1px solid var(--line); padding: 48px max(22px, calc((100vw - var(--max))/2)); background: #050607; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 40px; }
.footer-logo span { font-size: 26px; }
.site-footer h3 { color: var(--gold); text-transform: uppercase; font-size: 14px; letter-spacing: .08em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 9px 0; }
.site-footer a { color: var(--muted); text-decoration: none; }
.small { font-size: 13px; }

@media (max-width: 1000px) {
  .portfolio-grid, .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero, .split-section, .contact-layout { grid-template-columns: 1fr; }
  .hero-art { min-height: 520px; }
}

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(7,9,11,.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px; border-bottom: 1px solid var(--line); }
  .nav-button { text-align: center; margin-top: 12px; }
  .portfolio-grid, .services-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-heading, .cta-band { align-items: flex-start; flex-direction: column; }
  .hero-content { padding-top: 58px; }
}
