/* ============================================================
   DIRECTOR OF FOOTBALL — promo page
   Own brand system, distinct from the Titorama dossier theme:
   pitch green, tight condensed headings, plain dry tone.
   ============================================================ */

:root {
  --pitch: #1C8A52;
  --pitch-deep: #0F5B37;
  --ink: #14261C;
  --gold: #E3A93B;
  --ground: #F5F7F4;

  --font-head: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

h1, h2 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 700;
  line-height: 0.98;
  margin: 0 0 0.4em;
  color: var(--ink);
}

p { margin: 0 0 1em; }
a { color: var(--pitch-deep); }

.dof-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}
.dof-narrow { max-width: 640px; }

/* ---------- top bar ---------- */
.dof-topbar {
  background: var(--ink);
}
.dof-topbar-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  gap: 22px;
}
.dof-back {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(245,247,244,0.75);
  text-decoration: none;
}
.dof-back:hover { color: #fff; }

/* ---------- hero ---------- */
.dof-hero {
  background: var(--pitch);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dof-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 34px);
  pointer-events: none;
}
.dof-crest {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}
.dof-hero h1 {
  color: #fff;
  font-size: clamp(44px, 8vw, 84px);
  position: relative;
}
.dof-sub {
  max-width: 42ch;
  margin: 20px auto 0;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  position: relative;
}
.dof-play {
  display: inline-block;
  margin-top: 30px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 22px;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
}
.dof-play:hover { background: #f0bb57; }
.dof-fine {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  position: relative;
}

/* ---------- sections ---------- */
.dof-section { padding: 60px 0; }
.dof-section-alt { background: #ECEFE9; }

.dof-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pitch-deep);
  margin-bottom: 22px;
}

.dof-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 760px) {
  .dof-three { grid-template-columns: repeat(3, 1fr); }
}
.dof-block {
  border-top: 3px solid var(--pitch);
  padding-top: 16px;
}
.dof-block h2 { font-size: 26px; color: var(--pitch-deep); }
.dof-block p { color: #3B4A40; font-size: 15.5px; }

/* ---------- screenshots ---------- */
.dof-shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 22px;
}
@media (min-width: 640px) {
  .dof-shots { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .dof-shots { grid-template-columns: repeat(5, 1fr); }
}
.dof-shot { margin: 0; }
.dof-shot-frame {
  aspect-ratio: 9 / 19.5;
  background: var(--ink);
  border-radius: 18px;
  border: 3px solid var(--pitch-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.dof-shot-ph {
  font-family: var(--font-head);
  font-size: 34px;
  color: rgba(245,247,244,0.35);
}
.dof-shot figcaption {
  font-size: 13.5px;
  color: #3B4A40;
  line-height: 1.4;
}

/* ---------- footer ---------- */
.dof-footer {
  background: var(--ink);
  color: rgba(245,247,244,0.75);
  padding: 26px 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.dof-footer a { color: #fff; }
.dof-footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
