/* Self-hosted fonts — no external dependency, faster + more reliable */
@font-face { font-family: 'Anton'; src: url('fonts/anton-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Work Sans'; src: url('fonts/work-sans-latin-400-normal.woff2') format('woff2'); font-weight: 400 500; font-display: swap; }
@font-face { font-family: 'Work Sans'; src: url('fonts/work-sans-latin-700-normal.woff2') format('woff2'); font-weight: 600 800; font-display: swap; }

/* ============================================================
   DARYL D. BROOKS — Official Site Stylesheet
   "Modern Stage" — bold contemporary poster style
   Palette: White #FFFFFF | Ink #141414 | Stage Red #C8102E
            Gray #6B6B6B | Paper #F4F4F2
   Type: Anton (display) + Work Sans (body)
   ============================================================ */

:root {
  --white: #FFFFFF;
  --paper: #F4F4F2;
  --ink: #141414;
  --red: #C8102E;
  --red-deep: #9E0C24;
  --gray: #6B6B6B;
  --gray-light: #A9A9A6;
  --line: #141414;
  --line-soft: rgba(20, 20, 20, 0.16);
  --ink-soft: #4A4A48;      /* used by inline styles across pages */
  --ink-faint: #8C8C89;
  --serif: "Anton", "Arial Narrow", sans-serif;   /* display slot */
  --sans: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--red-deep); }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(40px, 5.6vw, 68px);
  margin-bottom: 24px;
}

.lead {
  font-size: clamp(18px, 2vw, 21px);
  color: var(--ink-soft);
  max-width: 720px;
}

.gold-rule {
  width: 84px; height: 4px;
  background: var(--red);
  border: 0;
  margin: 28px 0;
}

.center { text-align: center; }
.center .gold-rule, .center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--ink);
}
.site-header.scrolled { background: rgba(255,255,255,0.98); }
.nav-bar {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
}
.brand {
  font-family: var(--serif);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand span { color: var(--red); }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--red);
  border-bottom-color: var(--red);
}
.nav-toggle {
  display: none;
  background: none; border: 2px solid var(--ink);
  color: var(--ink); font-size: 22px; line-height: 1;
  padding: 8px 12px; cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 17px 32px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--white); }
.btn-solid { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-solid:hover { background: var(--red-deep); border-color: var(--red-deep); color: var(--white); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--white);
}
.hero-bg { position: absolute; inset: 0; background: var(--white); }
.hero-curtain { display: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  padding: 140px 28px 0;
  width: 100%;
}
.hero .eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 9px 16px;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
}
.hero-name {
  font-size: clamp(72px, 13vw, 176px);
  line-height: 0.92;
  margin: 0 0 26px;
  color: var(--ink);
}
.hero-name .outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
}
.hero-roles {
  font-family: var(--sans);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.hero-org {
  font-size: 13px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 40px;
}
.hero-scroll { display: none; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--paper); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.section-burgundy {
  background: var(--ink);
  color: var(--white);
}
.section-burgundy h1, .section-burgundy h2, .section-burgundy h3,
.section-burgundy blockquote { color: var(--white); }
.section-burgundy .lead, .section-burgundy p { color: rgba(255,255,255,0.8); }
.section-burgundy .eyebrow, .section-burgundy .quote-attr { color: var(--red); }
.section-burgundy .eyebrow { background: none; }
.section-burgundy .gold-rule { background: var(--red); }
.section-burgundy .btn { border-color: var(--white); color: var(--white); }
.section-burgundy .btn:hover { background: var(--white); color: var(--ink); }
.section-burgundy .btn-solid { background: var(--red); border-color: var(--red); color: var(--white); }
.section-burgundy .btn-solid:hover { background: var(--red-deep); }
.section-burgundy .quote-mark { color: var(--red); }
.section-burgundy [style*="--ink-soft"] { color: rgba(255,255,255,0.8) !important; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ---------- Photo placeholders ---------- */
.photo {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(200,16,46,0.05), transparent 60%),
    var(--paper);
  border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    rgba(20,20,20,0.025) 0 2px, transparent 2px 18px);
}
.photo-label {
  position: relative; z-index: 1;
  text-align: center;
  padding: 24px;
  color: var(--gray);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  line-height: 2;
}
.photo-label strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px; letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}
.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-32 { aspect-ratio: 3 / 2; }
.ratio-169 { aspect-ratio: 16 / 9; }
.ratio-11 { aspect-ratio: 1 / 1; }

/* ---------- Stats — scoreboard mosaic ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--ink);
  margin-top: 20px;
}
.stat {
  background: var(--white);
  padding: 52px 34px 44px;
  border: 1.5px solid var(--ink);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 220px;
  transition: transform 0.3s var(--ease);
}
.stat:hover { transform: scale(1.02); z-index: 1; }
.stat-number {
  font-family: var(--serif);
  font-size: clamp(64px, 6.5vw, 104px);
  color: var(--ink);
  line-height: 0.9;
}
.stat-number .suf { color: var(--red); }
.stat-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray);
  max-width: 240px;
}
.stat-red { background: var(--red); }
.stat-red .stat-number { color: var(--white); }
.stat-red .stat-number .suf { color: var(--ink); }
.stat-red .stat-label { color: rgba(255,255,255,0.85); }
.stat-ink { background: var(--ink); }
.stat-ink .stat-number { color: var(--white); }
.stat-ink .stat-number .suf { color: var(--red); }
.stat-ink .stat-label { color: rgba(255,255,255,0.65); }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { min-height: 170px; padding: 36px 26px 30px; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { min-height: 0; }
}

/* ---------- Production cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 56px;
}
.card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--ink);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
}
.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--red);
}
.card .photo { border: none; border-bottom: 3px solid var(--ink); }
.card-body { padding: 26px 28px 30px; }
.card-title { font-size: 28px; margin-bottom: 8px; }
.card-meta {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.card-text { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.card-link {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 3px solid var(--red);
  padding-bottom: 3px;
}
.card-link:hover { color: var(--red); }
.card-link::after { content: " →"; }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 64px auto 0;
  padding-left: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px;
  background: var(--ink);
  transform: translateX(-50%);
}
.tl-item {
  position: relative;
  width: 50%;
  padding: 0 48px 60px;
}
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; text-align: left; }
.tl-item::before {
  content: "";
  position: absolute; top: 8px;
  width: 14px; height: 14px;
  background: var(--red);
  border: 3px solid var(--ink);
}
.tl-item:nth-child(odd)::before { right: -10px; }
.tl-item:nth-child(even)::before { left: -10px; }
.tl-era {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.tl-role { font-family: var(--serif); font-size: 27px; text-transform: uppercase; margin-bottom: 8px; }
.tl-note { font-size: 15px; color: var(--ink-soft); }

/* ---------- Awards ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 56px;
}
.award {
  background: var(--white);
  border: 3px solid var(--ink);
  padding: 40px 32px 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.award:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--red);
}
.award-icon {
  width: 52px; height: 52px;
  margin-bottom: 22px;
  color: var(--red);
}
.award h3 { font-size: 26px; margin-bottom: 6px; }
.award-year {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.award p { font-size: 15px; color: var(--ink-soft); }
.award details { margin-top: 16px; }
.award summary {
  cursor: pointer;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 3px solid var(--red);
  display: inline-block;
  padding-bottom: 2px;
  list-style: none;
}
.award summary::-webkit-details-marker { display: none; }
.award summary::after { content: " +"; }
.award details[open] summary::after { content: " −"; }
.award details p { margin-top: 12px; font-size: 14.5px; }

/* ---------- Quotes / testimonials ---------- */
.quote-block {
  max-width: 880px; margin: 0 auto; text-align: center;
}
.quote-mark { font-family: var(--serif); font-size: 96px; color: var(--red); line-height: 0.4; display: block; margin-bottom: 30px; }
blockquote.big {
  font-family: var(--sans);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}
.quote-attr {
  margin-top: 28px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px; margin-top: 56px;
}
.testimonial {
  background: var(--white);
  border: 3px solid var(--ink);
  border-left: 10px solid var(--red);
  padding: 32px 30px;
}
.testimonial p { font-size: 18px; font-weight: 500; line-height: 1.6; margin-bottom: 18px; }
.testimonial cite {
  font-style: normal; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red);
}

/* ---------- Gallery ---------- */
.masonry {
  columns: 3;
  column-gap: 26px;
  margin-top: 56px;
}
.masonry .photo { margin-bottom: 26px; break-inside: avoid; }

/* ---------- Media / news lists ---------- */
.news-list { margin-top: 48px; border-top: 3px solid var(--ink); }
.news-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 28px; align-items: center;
  padding: 30px 4px;
  border-bottom: 3px solid var(--ink);
}
.news-date { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.news-item h3 { font-size: 25px; }
.news-item h3 a { color: var(--ink); }
.news-item h3 a:hover { color: var(--red); }
.news-item p { font-size: 15px; color: var(--ink-soft); margin-top: 6px; }
.news-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border: 2px solid var(--ink); color: var(--ink);
  padding: 7px 14px; white-space: nowrap;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 40px; }
.contact-list { list-style: none; }
.contact-list li { padding: 20px 0; border-bottom: 2px solid var(--line-soft); }
.contact-list strong {
  display: block; font-family: var(--serif); font-weight: 400; text-transform: uppercase;
  font-size: 23px; margin-bottom: 4px;
}
.contact-list span { color: var(--ink-soft); font-size: 15px; }
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--sans); font-size: 16px;
  padding: 14px 16px;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 3px solid var(--red); outline-offset: 1px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  border-top: 6px solid var(--red);
  padding: 80px 0 40px;
}
.site-footer .brand { color: var(--white); }
.site-footer .brand span { color: var(--red); }
.footer-bio { font-size: 14.5px; color: rgba(255,255,255,0.7); max-width: 380px; margin-top: 14px; }
.footer-head {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px; font-family: var(--sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14.5px; font-weight: 500; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 64px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--white);
  border-bottom: 3px solid var(--ink);
}
.page-hero h1 {
  font-size: clamp(52px, 8vw, 110px);
  margin: 12px 0 18px;
  color: var(--ink);
}
.page-hero .eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 8px 15px;
  letter-spacing: 0.2em;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: rgba(255,255,255,0.98);
    padding: 24px 28px; gap: 18px;
    border-bottom: 3px solid var(--ink);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .timeline::before { left: 10px; }
  .tl-item, .tl-item:nth-child(odd), .tl-item:nth-child(even) {
    width: 100%; left: 0; text-align: left; padding: 0 0 48px 44px;
  }
  .tl-item:nth-child(odd)::before, .tl-item:nth-child(even)::before { left: 3px; right: auto; }
  .news-item { grid-template-columns: 1fr; gap: 8px; align-items: start; }
}
@media (max-width: 560px) {
  .masonry { columns: 1; }
  .section { padding: 70px 0; }
}

/* ---------- Real photos ---------- */
.photo img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- Hero photo cutout ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero-photo-wrap { position: relative; align-self: end; }
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 12%; bottom: 0;
  background: var(--red);
}
.hero-photo-wrap img {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-photo-wrap { max-width: 380px; }
}

/* ---------- Transparent cutout photos in framed tiles ---------- */
.photo img.cutout {
  object-fit: contain;
  object-position: bottom center;
  padding-top: 6%;
}

/* ---------- Fix: decorative texture overlay must never block clicks (video embeds) ---------- */
.photo::after { pointer-events: none; }
.photo iframe { z-index: 1; }

/* ---------- Cutout photo: soft fade at the bottom edge ---------- */
.photo img.fade-bottom {
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}

/* ---------- Frameless photo variant ---------- */
.photo.no-frame { border: none; outline: none; background: none; }
.photo.no-frame::after { display: none; }

/* ---------- Gallery masonry: full photos, no cropping ---------- */
.masonry .photo { aspect-ratio: auto; }
.masonry .photo img {
  height: auto;
  object-fit: unset;
  padding-top: 0;
}

/* ---------- Fix: quote text must be white on dark bands ---------- */
.section-burgundy blockquote.big { color: var(--white); }

/* ---------- Production cards: show the full photo, never crop ---------- */
.card .photo img { object-fit: contain; }

/* ---------- Pull quotes (red-rule inline quotes) ---------- */
.pull-quote {
  margin-top: 24px;
  font-style: italic;
  color: var(--ink);
  border-left: 4px solid var(--red);
  padding-left: 18px;
}
.pull-quote-attr {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 10px;
}
.section-burgundy .pull-quote { color: var(--white); }
/* Safety net: any leftover inline ink-colored text on a dark band turns white */
.section-burgundy [style*="color:var(--ink)"] { color: var(--white) !important; }
