:root {
  --accent: #ff2d2d;
  --accent-dark: #d71920;
  --plum: #2a0927;
  --plum-soft: #5a1c59;
  --ink: #191919;
  --muted: #67616a;
  --line: #e8e4ea;
  --paper: #f8f6f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(42, 9, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 18px clamp(20px, 7vw, 144px);
  color: var(--white);
  background: rgba(42, 9, 39, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 38px;
  color: var(--plum);
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 8px 0 var(--accent);
}

.brand-text {
  font-size: 18px;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 700;
}

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

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 92px);
  padding: clamp(44px, 7vw, 94px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 66px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(42, 9, 39, 0.96), rgba(42, 9, 39, 0.82) 48%, rgba(42, 9, 39, 0.72)),
    radial-gradient(circle at 77% 24%, rgba(255, 45, 45, 0.32), transparent 26%),
    var(--plum);
}

.hero-copy,
.section-title,
.role-card,
.format,
.cta {
  position: relative;
}

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

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 24px);
}

.agency-intro {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-role {
  max-width: 860px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1.08;
}

.hero-actions,
.cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.18);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-media {
  position: relative;
  margin: 0;
  justify-self: center;
  max-width: min(420px, 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -8% -7% 12%;
  background: var(--accent);
  border-radius: 8px;
  transform: rotate(3deg);
}

.hero-media img {
  position: relative;
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  background: #161616;
}

.about,
.role,
.details-section,
.cta {
  padding: clamp(52px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.about {
  background: var(--white);
}

.section-title {
  max-width: 930px;
  margin-bottom: 34px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 28px;
  align-items: stretch;
}

.director,
.format,
details,
.role-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(42, 9, 39, 0.08);
}

.director {
  padding: clamp(26px, 4vw, 46px);
}

.quote {
  max-width: 900px;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.16;
}

.caption {
  color: var(--plum-soft);
  font-weight: 700;
}

.stats {
  display: grid;
  gap: 16px;
}

.stats div {
  display: grid;
  align-content: center;
  min-height: 142px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-soft) 100%);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(255, 45, 45, 0.9);
}

.stats strong {
  display: block;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  font-weight: 700;
}

.role {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 24px;
  align-items: start;
}

.role-card,
.format {
  padding: clamp(26px, 4vw, 46px);
}

.role-card p,
.format p,
.details-content {
  color: #4d4d4d;
  font-size: 17px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.chips li {
  padding: 8px 12px;
  color: var(--plum);
  background: #f7eef7;
  border: 1px solid rgba(90, 28, 89, 0.16);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.format {
  background: var(--plum);
  color: var(--white);
}

.format p {
  color: rgba(255, 255, 255, 0.78);
}

.details-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 45, 45, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8f6f9);
}

.details-list {
  display: grid;
  gap: 14px;
}

details {
  overflow: hidden;
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

.details-content {
  padding: 0 24px 26px;
}

.details-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0;
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.columns div {
  padding: 18px;
  background: var(--paper);
  border-radius: 8px;
}

.columns p {
  margin-bottom: 0;
}

.cta {
  justify-content: space-between;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 45, 45, 0.28), transparent 24%),
    var(--plum);
}

.cta .eyebrow {
  color: var(--accent);
}

.cta h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #5a5a5a;
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 9, 39, 0.78);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.modal-panel h2 {
  margin-right: 44px;
  color: var(--plum);
  font-size: clamp(30px, 4vw, 46px);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.form-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.form-frame iframe {
  display: block;
  width: min(650px, 100%);
  min-height: 760px;
  margin: 0 auto;
  border: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .about-grid,
  .role,
  .columns,
  .columns.two {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    max-height: 520px;
  }

  .cta {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .hero,
  .about,
  .role,
  .details-section,
  .cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding: 0 16px;
  }

  summary {
    padding: 18px;
  }

  .details-content {
    padding: 0 18px 22px;
  }

  .footer {
    flex-direction: column;
  }

  .modal {
    padding: 12px;
  }

  .modal-panel {
    max-height: 92vh;
    padding: 18px;
  }

  .form-frame iframe {
    min-height: 700px;
  }
}
