:root {
  --bg: #0a0a0b;
  --bg-soft: #111114;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.06);
  --text: #f5f3ef;
  --muted: #b1aca3;
  --line: rgba(255,255,255,0.09);
  --line-strong: rgba(255,255,255,0.18);
  --gold: #c8a66b;
  --gold-soft: rgba(200,166,107,0.18);
  --shadow: 0 24px 80px rgba(0,0,0,0.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(200,166,107,0.13), transparent 28rem),
    linear-gradient(180deg, #0b0b0d 0%, #0a0a0b 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 80%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

.container,
.site-header {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10,10,11,0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-name,
.main-nav a,
.eyebrow,
.card span,
.process-item span,
.button,
.video-meta small {
  text-transform: uppercase;
  letter-spacing: .08em;
}
.brand-name { font-size: 12px; font-weight: 700; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { color: var(--muted); font-size: 12px; font-weight: 700; }
.main-nav a:hover { color: var(--text); }

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: block;
}
.moon {
  position: absolute;
  width: 26px;
  height: 26px;
  left: 0;
  top: 6px;
  border-radius: 50%;
  background: var(--text);
}
.moon::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  left: 9px;
  top: 2px;
  border-radius: 50%;
  background: #0a0a0b;
}
.mark-line {
  position: absolute;
  background: rgba(255,255,255,0.22);
}
.mark-line.top { top: 6px; left: 16px; width: 16px; height: 1px; }
.mark-line.right { top: 6px; right: 4px; width: 1px; height: 14px; }
.mark-line.bottom { right: 4px; bottom: 6px; width: 16px; height: 1px; }

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 96px 0 72px;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .94;
}

h1 {
  margin-top: 14px;
  font-size: clamp(58px, 8vw, 108px);
  max-width: 760px;
}

h2 {
  margin-top: 12px;
  font-size: clamp(42px, 5.4vw, 78px);
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

.lead,
.statement p,
.card p,
.process-item p,
.contact-panel p,
.video-copy p,
.hero-panel span,
.video-meta strong {
  color: var(--muted);
}

.lead {
  margin-top: 22px;
  max-width: 640px;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: #101010;
  background: linear-gradient(180deg, #f6efe3, #d7b980);
  box-shadow: 0 18px 50px rgba(200,166,107,0.14);
}
.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
}

.hero-panel {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 20%, rgba(200,166,107,0.16), transparent 12rem),
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-panel::before {
  top: 28px;
  left: 28px;
  width: 120px;
  height: 120px;
  border-right: none;
  border-bottom: none;
}
.hero-panel::after {
  right: 28px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  border-left: none;
  border-top: none;
}

.hero-panel-inner {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding-top: 160px;
}
.hero-panel-inner p {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.hero-panel-inner h3 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  line-height: .95;
}

.statement {
  padding: 0 0 90px;
  text-align: center;
}
.statement p {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.35;
}

.showreel,
.services,
.process,
.contact {
  padding: 92px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}
.left-align { text-align: left; }

.video-shell {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}
.video-screen {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.08), transparent 14rem),
    radial-gradient(circle at 80% 20%, rgba(200,166,107,0.18), transparent 11rem),
    linear-gradient(135deg, #171719 0%, #0f0f11 45%, #070708 100%);
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.42));
}
.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 16px rgba(255,255,255,0.03);
}
.play-button::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #f4ede3;
}
.video-copy {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 32px;
}
.video-copy span {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.video-copy h3 {
  margin: 12px 0 10px;
  max-width: 620px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: .95;
}
.video-copy p { max-width: 560px; }

.video-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 16px;
}
.video-meta > div,
.card,
.process-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.video-meta > div {
  padding: 18px 20px;
}
.video-meta small,
.card span,
.process-item span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}
.video-meta strong {
  display: block;
  font-size: 14px;
  color: #dfdad2;
}

.cards-grid,
.process-grid {
  display: grid;
  gap: 18px;
}
.cards-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card,
.process-item { padding: 28px; }
.card h3,
.process-item h3 { margin-bottom: 10px; }

.contact-panel {
  padding: 54px 32px;
  text-align: center;
}
.contact-panel h2 { margin: 10px 0 16px; }
.contact-panel p {
  max-width: 720px;
  margin: 0 auto 24px;
}

.site-footer {
  padding: 0 0 34px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { min-height: 360px; }
  .cards-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 28px;
    flex-direction: column;
    gap: 16px;
  }
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .video-screen { min-height: 380px; }
  .video-meta { grid-template-columns: 1fr; }
  .showreel,
  .services,
  .process,
  .contact { padding: 76px 0; }
}

@media (max-width: 560px) {
  .button { width: 100%; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .process-grid { grid-template-columns: 1fr; }
  .video-copy,
  .hero-panel-inner { left: 22px; right: 22px; bottom: 22px; }
  .video-copy h3,
  .hero-panel-inner h3 { font-size: 34px; }
  .play-button { width: 78px; height: 78px; }
  .play-button::before {
    left: 31px;
    top: 24px;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
  }
}
