/* ==========================================================================
   Erymanthian Media — Services page ("The Forge")
   Source of truth: design_handoff_erymanthian_media/The Forge.dc.html
   Shared chrome (header, footer, buttons, eyebrows, reveal) lives in
   css/styles.css — this file holds only Forge-specific rules.
   ========================================================================== */

/* Hero --------------------------------------------------------------------- */
.forge-hero {
  position: relative;
  min-height: min(88vh, 880px);
  overflow: hidden;
  background: #1a0d06;
  display: flex;
  align-items: center;
}
.forge-hero .bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/forge-hero.webp');
  background-size: cover;
  background-position: center;
}
.forge-hero .scrim-a {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(16, 8, 4, 0.9) 0%,
    rgba(16, 8, 4, 0.62) 36%,
    rgba(16, 8, 4, 0.18) 62%,
    rgba(16, 8, 4, 0) 80%);
}
.forge-hero .scrim-b {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(16, 8, 4, 0.5) 0%,
    rgba(16, 8, 4, 0) 30%,
    rgba(16, 8, 4, 0) 64%,
    rgba(16, 8, 4, 0.55) 100%);
}
.forge-hero .inner {
  position: relative;
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) var(--gutter);
}
.forge-hero .content { max-width: 760px; }
.forge-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--surface);
  margin: 0 0 22px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6), 0 14px 48px rgba(0, 0, 0, 0.55);
}
.forge-hero .hero-eyebrow { margin: 0 0 30px; }
.forge-hero .eyebrow--gold { text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8); }
.forge-hero .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.2;
  color: var(--paper);
  margin: 0 0 20px;
  max-width: 18ch;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.forge-hero .sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: #F5F3EE;
  margin: 0;
  max-width: 560px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 6px 22px rgba(0, 0, 0, 0.5);
}

/* Overview ------------------------------------------------------------------ */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.overview-grid .eyebrow { margin-bottom: 24px; }
.overview-grid h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}
.overview-grid h2 em { font-style: italic; color: var(--terracotta); }
.overview-grid .lede-copy {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.72;
  color: var(--body);
  margin: 0 0 22px;
}
.overview-grid .sub-copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* Services ------------------------------------------------------------------ */
.forge-services { padding: 0 0 clamp(40px, 6vw, 72px); background: var(--paper); }
.service {
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--hairline);
}
.service--last { padding-bottom: clamp(12px, 2vw, 24px); }
.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.service-head .lead { max-width: 540px; }
.service-head .eyebrow { margin-bottom: 14px; }
.service-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.service-head .desc {
  max-width: 420px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* Media grids + portfolio slots */
.media-grid { display: grid; gap: clamp(14px, 1.6vw, 22px); }
.media-grid--reels   { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.media-grid--product { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.media-grid--scenes  { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.media-grid--brand   { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

.media-slot { position: relative; width: 100%; }
.media-slot--9x16  { aspect-ratio: 9 / 16; }
.media-slot--4x5   { aspect-ratio: 4 / 5; }
.media-slot--16x11 { aspect-ratio: 16 / 11; }
.media-slot--1x1   { aspect-ratio: 1 / 1; }
.media-slot > img,
.media-slot > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-slot--empty {
  background: var(--surface);
  border: 1px dashed var(--hairline);
}
.media-slot .ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
}
.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(27, 22, 18, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
/* Matches the design: play button appears only once real media fills the slot */
.media-slot--empty .play-circle { display: none; }
.reel-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-caps);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--surface);
  background: rgba(27, 22, 18, 0.6);
  padding: 5px 10px;
  border-radius: 999px;
  pointer-events: none;
}

/* Pricing ------------------------------------------------------------------- */
.forge-pricing {
  padding: var(--section-pad) 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}
.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.pricing-head .lead { max-width: 480px; }
.pricing-head .eyebrow { margin-bottom: 18px; }
.pricing-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.pricing-head .aside { max-width: 360px; }
.pricing-head .aside p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: clamp(8px, 1.5vw, 20px) clamp(24px, 3.5vw, 44px);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid var(--hairline-2);
}
.price-row:first-child { border-top: none; }
.price-row .info { flex: 1 1 360px; min-width: 240px; }
.price-row h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.price-row .info p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 48ch;
}
.price-row .price { text-align: right; white-space: nowrap; }
.price-row .amount {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: -0.01em;
}
.price-row .unit {
  display: block;
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 2px;
}
.pricing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(32px, 4vw, 48px);
}
.pricing-cta p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  max-width: 50ch;
}

/* Something Else? band -------------------------------------------------------- */
.forge-more {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.forge-more .eyebrow { margin-bottom: 22px; }
.forge-more p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

/* CTA ------------------------------------------------------------------------ */
.forge-cta {
  padding: clamp(80px, 11vw, 128px) 0;
  background: var(--ink);
  color: var(--surface);
  text-align: center;
}
.forge-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--surface);
  margin: 0 0 36px;
}
.forge-cta h2 em { font-style: italic; color: var(--gold); }
.forge-cta .btn--lg { padding: 17px 34px; font-size: 15px; }
