/* Gold Leader AI — v1 · direction A (Screening Room, hybrid) */

:root {
  --ink: #14110B;
  --ink-soft: #2B261D;
  --paper: #F5F3EC;
  --paper-alt: #EFECE2;
  --card: #FFFFFF;
  --body-muted: #6E675A;
  --dark-text: #EDE6D8;
  --dark-muted: #9A8F7C;
  --gold: #C9930A;
  --gold-deep: #A87B0B;
  --hairline-dark: rgba(237, 230, 216, 0.14);
  --hairline-light: #DDD9CC;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --pad-x: clamp(20px, 6vw, 96px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

h1, h2, h3 { margin: 0; font-weight: 400; text-wrap: balance; }
p { margin: 0 0 14px; max-width: 62ch; }

.label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: #14110B; }
.btn-gold:hover { background: #DDA61B; color: #14110B; }
.btn-ghost { border-color: rgba(237, 230, 216, 0.35); color: var(--dark-text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---- dark hero band ---- */
.site-nav {
  background: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px var(--pad-x);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--hairline-dark);
}
.brand img { display: block; width: 132px; height: auto; }
.site-nav nav { display: flex; gap: 30px; }
.site-nav nav a { color: var(--dark-muted); font-size: 14px; }
.site-nav nav a:hover { color: var(--dark-text); }

.hero {
  background: var(--ink);
  color: var(--dark-text);
  padding: clamp(48px, 8vw, 96px) var(--pad-x) clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 7.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.lede { font-size: 18px; color: var(--dark-muted); max-width: 58ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; }

.reel {
  margin-top: 22px;
  border: 1px solid var(--hairline-dark);
}

/* ---- video frames ---- */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #100D09;
  overflow: hidden;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background: rgba(16, 13, 9, 0.32);
  color: var(--dark-text);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.play-btn:hover { background: rgba(16, 13, 9, 0.12); color: var(--gold); }
.play-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.video-frame.playing .play-btn { display: none; }

/* ---- light bands ---- */
.band { padding: clamp(48px, 7vw, 84px) var(--pad-x); }
.band.light { background: var(--paper); }
.band.light.alt { background: var(--paper-alt); }

.section-head { margin-bottom: 34px; }
.band h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  margin-bottom: 12px;
}
.section-note { color: var(--body-muted); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.work-card h3 { font-size: 18px; font-weight: 600; margin: 14px 0 2px; }
.work-card .meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body-muted);
}
.work-card .video-frame { border: 1px solid var(--hairline-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 48px;
}
.service {
  padding: 22px 0;
  border-top: 1px solid var(--hairline-light);
}
.service h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 8px; }
.service p { color: var(--body-muted); font-size: 15px; margin: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}
.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chips li {
  border: 1px solid var(--hairline-light);
  background: var(--card);
  padding: 9px 16px;
  font-size: 13.5px;
  border-radius: 2px;
}

.quote-band {
  background: var(--ink);
  color: var(--dark-text);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}
.quote { margin: 0; }
.quote blockquote {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
}
.quote figcaption {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-muted);
}

/* ---- contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
address { font-style: normal; margin-top: 22px; color: var(--body-muted); }
address p { margin-bottom: 10px; }

form { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 500; }
input, select, textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--hairline-light);
  border-radius: 2px;
  padding: 12px 14px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
form .btn { align-self: flex-start; }
.form-note { color: #A33B31; font-size: 14px; }

/* ---- footer ---- */
.site-footer {
  background: var(--ink);
  color: var(--dark-muted);
  padding: 40px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer img { width: 112px; height: auto; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer nav a { color: var(--dark-muted); font-size: 13.5px; }
.site-footer nav a:hover { color: var(--dark-text); }
.site-footer p { margin: 0; font-size: 13px; }

/* ---- motion ---- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid, .quote-band { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 700px) {
  .site-nav nav { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .reel { aspect-ratio: 16 / 9; }
}

/* ---- client credits ---- */
.clients {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline-light);
}
.client-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 40px;
}
.client-list { gap: 22px 44px; }
.client-list li { display: flex; align-items: center; }
.client-list img {
  display: block;
  width: auto;
  opacity: 0.82;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.client-list li:hover img { opacity: 1; filter: none; }
.client-list .logo-short { height: 26px; }
.client-list .logo-mid   { height: 40px; }
.client-list .logo-tall  { height: 60px; }
.client-list .logo-badge { height: 54px; }
@media (max-width: 700px) {
  .client-list { gap: 18px 28px; }
  .client-list .logo-tall, .client-list .logo-badge { height: 46px; }
  .client-list .logo-mid { height: 32px; }
  .client-list .logo-short { height: 22px; }
}

/* ---- footer social ---- */
.site-footer .social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer .social a {
  color: var(--dark-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.site-footer .social a:hover { color: var(--gold); }
