/* ===================== FICTION WRITING PAGE SPECIFIC STYLES ===================== */

.fw-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(90,49,32,.93) 0%, rgba(136,74,48,.9) 50%, rgba(202,123,55,.87) 100%),
              url("../images/book-writing-banner.png") center/cover no-repeat;
  color: #fff;
  padding: 120px 0 110px;
  text-align: center;
  overflow: hidden;
}

.fw-hero .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
  padding: 6px 18px;
  border: 1px solid rgba(202,123,55,.55);
  border-radius: 999px;
  background: rgba(0,0,0,.18);
}

.fw-hero h1 {
  font-size: clamp(30px, 5.2vw, 48px);
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
  line-height: 1.18;
}

.fw-hero .hero-lead {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.93);
}

.fw-float {
  position: absolute;
  font-size: 42px;
  opacity: .18;
  animation: fwFloat 7s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
}
.fw-float:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
.fw-float:nth-child(2) { top: 55%; right: 9%; animation-delay: -2.2s; font-size: 36px; }
.fw-float:nth-child(3) { bottom: 14%; left: 14%; animation-delay: -4s; font-size: 30px; }
.fw-float:nth-child(4) { top: 28%; right: 18%; animation-delay: -1.5s; font-size: 28px; }

@keyframes fwFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-22px) rotate(6deg); }
}

.fw-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: fwOrb 11s ease-in-out infinite alternate;
}
.fw-hero-orb.one { width: 320px; height: 320px; background: rgba(202,123,55,.18); bottom: -120px; right: -80px; }
.fw-hero-orb.two { width: 220px; height: 220px; background: rgba(255,255,255,.08); top: 40px; left: -60px; animation-delay: -3s; }

.fw-section { padding: 90px 0; }
.fw-section.cream { background: var(--cream); }
.fw-section.white { background: #fff; }

.fw-content { max-width: 780px; margin: 0 auto; text-align: center; }
.fw-content p { font-size: 16.5px; line-height: 1.75; }

.fw-features-grid, .fw-genres-grid, .fw-benefits-grid, .fw-audience-grid, .fw-process-grid {
  display: grid;
  gap: 24px;
}

.fw-features-grid { grid-template-columns: repeat(2, 1fr); }
.fw-genres-grid { grid-template-columns: repeat(3, 1fr); }
.fw-benefits-grid { grid-template-columns: repeat(3, 1fr); }
.fw-audience-grid { grid-template-columns: repeat(2, 1fr); }
.fw-process-grid { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1100px) {
  .fw-features-grid, .fw-genres-grid, .fw-benefits-grid, .fw-audience-grid, .fw-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .fw-features-grid, .fw-genres-grid, .fw-benefits-grid, .fw-audience-grid, .fw-process-grid {
    grid-template-columns: 1fr;
  }
}

.fw-feature-card, .fw-genre-card, .fw-benefit-card, .fw-audience-card, .fw-process-step {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
  border: 1px solid #ECEBE4;
  transition: all .35s cubic-bezier(.34,1.2,.64,1);
  text-align: center;
}

.fw-feature-card:hover, .fw-genre-card:hover, .fw-benefit-card:hover, .fw-audience-card:hover, .fw-process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 48px rgba(15,23,42,.14);
  border-color: rgba(202,123,55,.35);
}

.fw-feature-icon, .fw-genre-icon, .fw-benefit-icon, .fw-audience-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
}

.fw-feature-card h3, .fw-genre-card h3, .fw-benefit-card h3, .fw-audience-card h3, .fw-process-step h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--navy-deep);
}

.fw-feature-card p, .fw-genre-card p, .fw-benefit-card p, .fw-audience-card p, .fw-process-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

.fw-step-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  transition: all .3s ease;
}

.fw-process-step:hover .fw-step-number {
  color: var(--gold);
  -webkit-text-stroke: 0;
  transform: scale(1.1);
}

.fw-cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy), #3a1f14);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.fw-cta-band h2 { color: #fff; font-size: clamp(26px,4vw,38px); margin-bottom: 14px; }
.fw-cta-band p { max-width: 620px; margin: 0 auto 24px; color: #D7DCE8; }

.fw-genres-intro { max-width: 780px; margin: 0 auto 40px; text-align: center; }