:root {
  color-scheme: light;
  --ink: #14110f;
  --muted: #72675f;
  --paper: #faf7f2;
  --surface: #ffffff;
  --line: rgba(20, 17, 15, 0.16);
  --accent: #9c253c;
  --accent-deep: #5f1725;
  --green: #1f5b4f;
  --gold: #c79b44;
  --shadow: 0 22px 70px rgba(33, 26, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.brand-lockup {
  display: grid;
  gap: 3px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand-tagline {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-tagline {
  display: none;
}


.nav-links {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #16110f;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero img {
  width: 104%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.9) contrast(1.04);
  transform: translateX(-2.2%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 46vw);
  margin: 0 auto 4vh clamp(36px, 5vw, 82px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(5.4rem, 7.8vw, 10rem);
  line-height: 0.84;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.social-link {
  display: inline-block;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
}

.section-social {
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--accent);
}

.hero-actions,
.contact-section address {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button.instagram-button {
  border-color: rgba(255, 255, 255, 0.34);
  background-color: #d62976;
  background-image: linear-gradient(45deg, #feda75 0%, #fa7e1e 24%, #d62976 50%, #962fbf 74%, #4f5bd5 100%);
  box-shadow: 0 12px 30px rgba(214, 41, 118, 0.34);
}

.button.dark {
  color: var(--ink);
  border-color: rgba(20, 17, 15, 0.35);
  background: transparent;
}

.intro-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-section div {
  display: grid;
  gap: 6px;
  min-height: 118px;
  align-content: center;
  padding: 22px clamp(18px, 4vw, 46px);
  background: var(--paper);
}

.stat-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
}

.stat-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(280px, 1fr);
  gap: clamp(26px, 4vw, 60px);
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.section-heading {
  align-self: start;
  position: sticky;
  top: 92px;
}

.headshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.headshot-card {
  position: relative;
  min-width: 0;
  border: 0;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #222;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  max-height: 290px;
}

.headshot-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.headshot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 48%);
}

.headshot-card span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-size: 0.75rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.headshot-card:hover img,
.headshot-card:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.headshot-card.is-active {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.feature-headshot {
  grid-column: 2;
  justify-self: start;
  width: min(100%, 820px);
  margin: 22px 0 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-headshot img {
  height: min(62svh, 860px);
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  background: #0f1111;
}

.feature-headshot figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reel-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: #ede5dc;
}

.reel-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #514840;
  font-size: 1.05rem;
  line-height: 1.7;
}

.video-frame {
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  box-shadow: var(--shadow);
}

.video-frame video,
.video-frame iframe,
.youtube-poster {
  aspect-ratio: 16 / 9;
  border: 0;
  height: auto;
  object-fit: cover;
}

.youtube-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
}

.youtube-poster img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.youtube-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  transition: background 220ms ease;
}

.youtube-poster:hover img,
.youtube-poster:focus-visible img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.youtube-poster:hover::after,
.youtube-poster:focus-visible::after {
  background: rgba(0, 0, 0, 0.06);
}

.play-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: clamp(58px, 8vw, 86px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(156, 37, 60, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
  transform: translate(-38%, -50%);
}

.credits-section {
  grid-template-columns: minmax(220px, 0.52fr) minmax(300px, 1fr);
}

.credits-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.credits-list article {
  padding: clamp(20px, 3vw, 30px);
  background: var(--surface);
}

.credits-list span {
  display: block;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 650;
  line-height: 1.22;
}

.credits-list h3 {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.credits-list p {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.2;
}

.contact-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(58px, 8vw, 90px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--accent-deep);
}

.contact-section address {
  justify-content: flex-end;
  align-content: flex-start;
  gap: 12px;
  font-style: normal;
}

.representation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.representation-actions .button {
  min-height: 44px;
}

.contact-section address a,
.contact-section address span {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  padding: 12px 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 260px;
  }

  .intro-section,
  .content-section,
  .reel-section {
    grid-template-columns: 1fr;
  }

  .intro-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    position: static;
  }

  .feature-headshot {
    grid-column: auto;
  }

  .hero img {
    width: 100%;
    object-position: 22% center;
    transform: none;
  }

  .hero-content {
    width: min(620px, calc(100% - 32px));
    margin: 0 16px 7vh;
  }

  h1 {
    font-size: clamp(4.2rem, 17vw, 7.6rem);
  }

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

  .contact-section address {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: block;
  }

  .brand-lockup {
    display: block;
    margin-bottom: 12px;
  }

  .desktop-tagline {
    display: none;
  }

  .mobile-tagline {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.56rem;
  }

  .nav-links {
    justify-content: flex-start;
    max-width: none;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
  }

  .hero img {
    object-position: 22% center;
    transform: scale(1.06) translateX(0);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08) 64%, rgba(0, 0, 0, 0)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0) 42%);
  }

  .hero-content {
    width: min(340px, calc(100% - 30px));
    margin: 0 15px 2vh;
  }

  .hero-content .eyebrow {
    font-size: 0.56rem;
  }


  h1 {
    max-width: 7.3ch;
    font-size: clamp(2.95rem, 13.2vw, 4.1rem);
  }

  .hero-copy {
    max-width: 20.5rem;
    font-size: 0.92rem;
    line-height: 1.34;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .representation-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .representation-actions .button {
    min-height: 42px;
    padding: 0 8px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .contact-section address {
    margin-top: -4px;
  }

  .intro-section,
  .headshot-grid {
    grid-template-columns: 1fr;
  }

  .feature-headshot img {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }
}
