:root {
  color-scheme: dark;
  --bg: #1c1c1c;
  --surface: #262424;
  --surface-strong: #313131;
  --text: #f5f0e8;
  --muted: #b2a697;
  --accent: #c9a84c;
  --accent-soft: rgba(201,168,76,.2);
  --border: rgba(245,240,232,.1);
  --shadow: 0 24px 80px rgba(0,0,0,.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(201,168,76,.08), transparent 28%),
              linear-gradient(180deg, #1c1c1c 0%, #141313 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(28,28,28,.92);
  border-bottom: 1px solid rgba(245,240,232,.06);
}

.site-header .site-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color .24s ease;
}

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

.nav-cta {
  padding: .65rem 1.4rem;
  font-size: .9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

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

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,28,28,.5) 0%, rgba(28,28,28,.74) 55%, rgba(28,28,28,.96) 100%),
    radial-gradient(circle at 50% 28%, rgba(201,168,76,.14), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  padding: 0 1rem;
}

.eyebrow {
  color: var(--accent);
  font-size: .95rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -.05em;
  line-height: 0.95;
}

.hero h1 span {
  color: var(--accent);
}

.hero-copy {
  margin: 1.65rem auto 2.5rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-note {
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: .75rem;
  padding: 1rem 1.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.button-primary {
  background: var(--accent);
  color: #1c1c1c;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(201,168,76,.22);
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(245,240,232,.18);
  color: var(--text);
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 6rem 0;
}

.section-shell {
  position: relative;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-label {
  color: var(--accent);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 1rem;
}

.section h2,
.audience-card h3,
.contact-copy h2 {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -.04em;
  line-height: 1.05;
}

.section p,
.audience-card p,
.contact-copy p {
  max-width: 42rem;
  color: var(--muted);
}

.section-dark {
  background: #111;
}

.section-showreel {
  text-align: center;
}

.section-showreel .section-shell {
  max-width: 640px;
}

.section-showreel p {
  margin-left: auto;
  margin-right: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-top: .5rem;
  padding: .65rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.35);
  background: rgba(201,168,76,.08);
  color: var(--accent);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.audience-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.audience-card {
  padding: 2.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(245,240,232,.06);
  border-radius: 1.75rem;
}

.audience-card--warm {
  background: rgba(201,168,76,.07);
}

.audience-card h3 {
  margin-top: .9rem;
  margin-bottom: 1rem;
}

.proof-shell,
.contact-shell {
  display: grid;
  gap: 2rem;
}

.section-proof {
  padding-top: 6rem;
}

.proof-grid {
  display: grid;
  gap: 1.5rem;
}

.quote-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(245,240,232,.08);
}

.quote-card p {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: 1.01rem;
}

.quote-card footer {
  color: var(--muted);
  font-size: .95rem;
}

.section-contact {
  padding-bottom: 8rem;
}

.contact-copy h2 {
  max-width: 18ch;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  margin-top: .5rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,.4);
  padding-bottom: 2px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(245,240,232,.08);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: .65rem;
  font-size: .95rem;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(245,240,232,.1);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(201,168,76,.35);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.site-footer {
  padding: 3.5rem 0 3rem;
  border-top: 1px solid rgba(245,240,232,.06);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: block;
  height: 44px;
  width: auto;
  border-radius: .5rem;
}

.footer-brand-block > div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.footer-brand {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .92rem;
  color: var(--text);
}

.footer-tagline {
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245,240,232,.12);
  color: var(--muted);
  transition: color .24s ease, border-color .24s ease, background .24s ease, transform .24s ease;
}

.footer-social a:hover {
  color: var(--accent);
  border-color: rgba(201,168,76,.4);
  background: rgba(201,168,76,.08);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
}

.footer-rule {
  height: 1px;
  background: rgba(245,240,232,.08);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem .8rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: .88rem;
}

.footer-legal {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 540px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-shell {
    grid-template-columns: 1.1fr .9fr;
  }
}

@media (max-width: 767px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
