/* Home page — hero, sections (paired with assets/css/style.css) */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_cinematic.webp') center/cover no-repeat;
  transform: scale(1.03);
  filter: brightness(0.65) contrast(1.1) saturate(0.9);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 8, 14, 0.4) 0%,
      rgba(5, 8, 14, 0.5) 40%,
      rgba(5, 8, 14, 0.65) 75%,
      rgba(5, 8, 14, 0.75) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.15) 65%,
      rgba(0, 0, 0, 0.35) 100%
    );
  z-index: 1;
}

.hero-tag,
.hero h1,
.hero-sub,
.hero-actions,
.hero-stats {
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F7941D;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 132px);
  line-height: 0.9;
  margin-bottom: 32px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.hero h1 span {
  color: #E8291C;
}

.hero-sub {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-stats {
  position: absolute;
  right: 48px;
  bottom: 80px;
  text-align: right;
}

.stat-num {
  font-size: 48px;
  font-weight: bold;
}

.stat-num em {
  color: #F7941D;
  font-style: normal;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* ── ABOUT ── */
.about { background: var(--offwhite); color: var(--black); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about .section-tag { color: var(--red); }
.about h2.display { color: var(--black); margin-bottom: 28px; }
.about p { font-size: 16px; line-height: 1.8; color: #5a5a4e; margin-bottom: 18px; }
.about-visual {
  background: var(--black); border-radius: 8px; padding: 48px 44px;
  display: flex; flex-direction: column; gap: 32px;
}
.about-stat { border-left: 3px solid var(--red); padding-left: 20px; }
.about-stat .n { font-family: 'Bebas Neue', sans-serif; font-size: 54px; color: var(--light); line-height: 1; }
.about-stat .n em { color: var(--orange); font-style: normal; }
.about-stat .l { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-top: 6px; }
.about-footer {
  font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 1.5px; text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; margin-top: 0;
}

/* ── MEDIA TYPES ── */
.media { background: var(--black); }
.media h2.display { color: var(--light); margin-bottom: 16px; }
.media-desc { font-size: 16px; color: rgba(255,255,255,0.45); max-width: 520px; margin-bottom: 64px; line-height: 1.75; }
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.media-card {
  background: #161616; padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s; position: relative; overflow: hidden;
}
.media-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--red); transition: width 0.25s;
}
.media-card:hover::before { width: 3px; }
.media-card:hover { background: #1c1c1c; }
.media-icon {
  width: 52px; height: 52px; border-radius: 4px; margin-bottom: 24px;
  background: rgba(232,41,28,0.1);
  display: flex; align-items: center; justify-content: center;
}
.media-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px;
  letter-spacing: 1px; margin-bottom: 12px; color: var(--light);
}
.media-card p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.38); }
.media-card-alt {
  background: #130800; border: 1px solid rgba(232,41,28,0.12);
  padding: 40px 32px;
}
.media-card-alt-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  font-size: 13px; padding: 7px 16px; border-radius: 3px;
}
.tag-muted { color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.1); }
.tag-accent { color: var(--orange); border: 1px solid rgba(247,148,29,0.3); }
.media-card-alt p { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.75; }

/* ── COVERAGE ── */
.coverage { background: #111111; padding: 120px 48px; }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.coverage h2.display { color: var(--light); margin-bottom: 16px; }
.coverage-desc { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 48px; line-height: 1.75; }
.regions { display: flex; flex-direction: column; }
.region {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.region:last-child { border-bottom: none; }
.region-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.region-name { font-size: 15px; font-weight: 500; flex: 0 0 160px; }
.region-cities { font-size: 13px; color: rgba(255,255,255,0.35); }
.map-visual {
  background: #191919; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05); padding: 40px 32px;
}

/* ── CLIENTS ── */
.clients { background: var(--offwhite); color: var(--black); }
.clients .section-tag { color: var(--red); }
.clients h2.display { color: var(--black); margin-bottom: 16px; }
.clients-desc { font-size: 16px; color: #777; max-width: 500px; margin-bottom: 64px; line-height: 1.75; }
.clients-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: #d8d6d0;
  border: 1px solid #d8d6d0; border-radius: 8px; overflow: hidden;
}
.client-tile {
  background: var(--offwhite); padding: 32px 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px;
  color: #666; text-align: center; transition: all 0.2s;
}
.client-tile:hover { background: var(--black); color: var(--orange); }
.clients-note { margin-top: 36px; font-size: 14px; color: #999; }

/* ── FOOTER (home overrides) ── */
.footer-col p + p { margin-top: 16px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag    { animation: fadeUp 0.75s ease both; }
.hero h1     { animation: fadeUp 0.75s ease 0.10s both; }
.hero-sub    { animation: fadeUp 0.75s ease 0.20s both; }
.hero-actions{ animation: fadeUp 0.75s ease 0.30s both; }
.hero-stats  { animation: fadeUp 0.75s ease 0.45s both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  section, .coverage, footer { padding: 80px 24px; }
  .hero { padding: 0 24px 64px; }
  .hero-stats { display: none; }
  .hero-wordmark { display: none; }
  .about-inner,
  .coverage-inner { grid-template-columns: 1fr; gap: 48px; }
  .media-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
