:root {
  --bg: #090909;
  --bg-2: #111111;
  --bg-3: #171717;
  --ink: #f3eee6;
  --muted: #9a9388;
  --line: rgba(243, 238, 230, 0.12);
  --accent: #c9a36a;
  --accent-2: #e8d3b0;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Helvetica Neue", sans-serif;
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: var(--pad);
  top: 0.75rem;
  z-index: 50;
  background: var(--ink);
  color: var(--bg);
  padding: 0.5rem 0.8rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad);
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

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

.nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.45rem 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font: inherit;
  font-size: 0.7rem;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2.55 / 1;
  height: auto;
  min-height: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.hero-media iframe,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 62%;
  border: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.18) 0%, rgba(9, 9, 9, 0.22) 48%, rgba(9, 9, 9, 0.88) 100%),
    linear-gradient(90deg, rgba(9, 9, 9, 0.28) 0%, rgba(9, 9, 9, 0.08) 45%, rgba(9, 9, 9, 0.35) 100%);
}

.hero-emmys {
  position: absolute;
  right: clamp(0.6rem, 3vw, 2.2rem);
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  height: 92%;
  pointer-events: none;
  user-select: none;
}

.hero-emmys img {
  display: block;
  width: auto;
  height: 72%;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.85))
    drop-shadow(0 0 18px rgba(201, 163, 106, 0.45));
}

.hero-emmys img:nth-child(2) {
  height: 92%;
}

.hero-emmys img:nth-child(1) {
  height: 78%;
  transform: translateY(-2%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 1.4rem var(--pad) 1.5rem;
  max-width: 760px;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.lede {
  margin: 1.1rem 0 1.6rem;
  max-width: 38rem;
  color: var(--accent-2);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn.solid {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn.ghost:hover,
.btn.solid:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

section {
  padding: 5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.section-title {
  margin: 0.2rem 0 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.section-note {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.featured {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.6rem;
  align-items: stretch;
}

.player {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.4rem 0.2rem;
}

.meta {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-copy h3 {
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.featured-copy p {
  margin: 0 0 1.2rem;
  color: #d7d0c5;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 163, 106, 0.45);
}

.card .thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  align-self: start;
}

.card .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9;
}

.card .thumb.letter {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent);
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 163, 106, 0.16), transparent 45%),
    var(--bg-3);
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.15rem 1.3rem 1.25rem;
}

.card-body h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about {
  background: linear-gradient(180deg, #0c0c0c, #101010);
  border-block: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2.5rem;
  align-items: center;
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 28% 12%;
  filter: grayscale(0.08) contrast(1.04);
  box-shadow: var(--shadow);
}

.about p {
  color: #d8d2c8;
  font-size: 1.05rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.awards-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.award {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.award span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: end;
  color: var(--muted);
  font-size: 0.92rem;
}

.award-icon {
  width: 18px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
}

.award b {
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.contact-panel p {
  color: var(--muted);
}

.site-footer {
  padding: 1.4rem var(--pad) 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: var(--pad);
    left: var(--pad);
    flex-direction: column;
    gap: 0;
    background: #111;
    border: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .featured,
  .about-grid,
  .contact-panel,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    aspect-ratio: 16 / 9;
  }

  .award {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .hero-emmys {
    height: 86%;
    right: 0.3rem;
  }

  .hero-emmys img {
    height: 62%;
  }

  .hero-emmys img:nth-child(2) {
    height: 80%;
  }

  .hero-copy {
    padding-right: 5rem;
  }
}
