/* ===== PRODUCTION PAGE ===== */

/* HERO */
.prod-hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(170deg, var(--teal-dark) 0%, var(--teal-deep) 40%, var(--teal) 100%);
}
.prod-hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--teal-dark), transparent);
  z-index: 1;
}
.prod-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}
.prod-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.prod-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.prod-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-pale);
  letter-spacing: 1px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.prod-hero .section-label {
  opacity: 0;
  animation: fadeUp 1s 0.1s forwards;
}
.prod-hero .hero-divider {
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

/* NAV ACTIVE */
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ===== STORY ===== */
.prod-story {
  background: var(--teal-dark);
  padding-top: 100px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
.prod-story-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.prod-story-decoration {
  position: absolute;
  right: -180px;
  top: -40px;
  width: 300px;
  height: 300px;
  color: var(--gold);
  opacity: 0.08;
  animation: rotateSlow 60s linear infinite;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.prod-story-text p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(245,240,232,0.8);
  font-weight: 300;
  margin-bottom: 24px;
}
.prod-story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-top: 40px;
  line-height: 1.7;
}
.prod-story-result {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--cream);
  margin-top: 48px;
  letter-spacing: 1px;
}

/* ===== EQUIPMENT ===== */
.prod-equipment {
  background: var(--cream);
  color: var(--text-dark);
  padding-bottom: 140px;
}
.prod-equipment-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.prod-equipment .section-label {
  color: var(--teal);
}
.prod-equipment .section-title {
  color: var(--teal-deep);
}
.prod-equipment-lead {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 20px;
}
.prod-equipment-text {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 60px;
}
.prod-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.prod-stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 8px;
  background: rgba(26,94,108,0.04);
  border: 1px solid rgba(26,94,108,0.1);
  transition: transform 0.4s, box-shadow 0.4s;
}
.prod-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,94,108,0.08);
}
.prod-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--teal);
}
.prod-stat-icon svg {
  width: 100%;
  height: 100%;
}
.prod-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.prod-stat-label {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
  font-weight: 300;
}

/* ===== PIPELINE TIMELINE ===== */
.prod-pipeline {
  background: linear-gradient(170deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  padding-bottom: 140px;
  overflow: hidden;
  position: relative;
}
.prod-pipeline::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,152,90,0.04), transparent 70%);
}
.prod-pipeline-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.prod-pipeline-lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245,240,232,0.7);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 80px;
}

.prod-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
.prod-timeline-line {
  position: absolute;
  top: 52px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}
.prod-timeline-step {
  text-align: center;
  position: relative;
  padding-top: 20px;
}
.prod-timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(181,152,90,0.15);
}
.prod-timeline-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--gold-pale);
  opacity: 0.7;
}
.prod-timeline-icon svg {
  width: 100%;
  height: 100%;
}
.prod-timeline-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.prod-timeline-step p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
}

/* ===== CERTIFICATION ===== */
.prod-cert {
  background: var(--white);
  color: var(--text-dark);
}
.prod-cert-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.prod-cert .section-label {
  color: var(--teal);
}
.prod-cert .section-title {
  color: var(--teal-deep);
}
.prod-cert-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 60px;
}
.prod-cert-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.prod-cert-badge {
  text-align: center;
  padding: 40px 24px;
  border-radius: 8px;
  border: 1px solid rgba(26,94,108,0.1);
  background: rgba(26,94,108,0.02);
  transition: transform 0.4s, box-shadow 0.4s;
}
.prod-cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,94,108,0.06);
}
.prod-cert-badge-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--teal);
}
.prod-cert-badge-icon svg {
  width: 100%;
  height: 100%;
}
.prod-cert-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.prod-cert-badge-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
  font-weight: 300;
}

/* ===== FINAL CTA ===== */
.prod-final {
  background: var(--teal-dark);
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prod-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.prod-final-inner {
  max-width: 700px;
  margin: 0 auto;
}
.prod-final-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.3;
}
.prod-final p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  margin-bottom: 48px;
}
.prod-final-btn {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.4s, color 0.4s;
}
.prod-final-btn:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .prod-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
  }
  .prod-timeline-line {
    display: none;
  }
  .prod-cert-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .prod-hero {
    height: 60vh;
    min-height: 420px;
  }
  .prod-stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .prod-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .prod-cert-badges {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .prod-final {
    padding: 80px 24px;
  }
  .prod-story-decoration {
    display: none;
  }
}