/* ========================================
   DRAMATIC STYLES - SECONDARY PAGES
   L'Ergonome Autonome - Editorial Luxury
   Applied to: Manifeste, À propos
   ======================================== */

/* ========================================
   DRAMATIC HERO - SHARED
   ======================================== */

.hero-dramatic {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-paper-warm) 100%);
}

/* Grain texture overlay */
.hero-dramatic::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

/* Decorative diagonal line */
.hero-dramatic::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 20%;
  width: 1px;
  height: 80%;
  background: linear-gradient(180deg, transparent, var(--color-accent-secondary), transparent);
  opacity: 0.2;
  transform: rotate(15deg);
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-dramatic {
    min-height: 60vh;
    padding: 10rem 4rem 6rem;
  }
}

.hero-dramatic-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Eyebrow text */
.hero-dramatic-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-secondary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition-elegant) 0.2s forwards;
}

.hero-dramatic-eyebrow::before,
.hero-dramatic-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-accent-secondary);
}

/* Main title */
.hero-dramatic-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition-elegant) 0.4s forwards;
}

/* Subtitle */
.hero-dramatic-subtitle {
  font-family: var(--font-headings);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--color-accent);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition-elegant) 0.6s forwards;
}

/* Decorative element under title */
.hero-dramatic-decoration {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-secondary), var(--color-accent-copper), var(--color-accent));
  margin: 2rem auto 0;
  border-radius: 2px;
  opacity: 0;
  animation: fadeUp 0.8s var(--transition-elegant) 0.8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   MANIFESTE PAGE - ENHANCED SECTIONS
   ======================================== */

/* Section backgrounds with texture */
.manifesto-section-dramatic {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .manifesto-section-dramatic {
    padding: 6rem 2rem;
  }
}

/* Alternating backgrounds with subtle gradients */
.manifesto-section-dramatic:nth-child(odd) {
  background:
    radial-gradient(ellipse 80% 50% at 10% 90%, rgba(184, 134, 11, 0.04) 0%, transparent 50%),
    var(--color-paper);
}

.manifesto-section-dramatic:nth-child(even) {
  background:
    radial-gradient(ellipse 80% 50% at 90% 10%, rgba(124, 94, 60, 0.03) 0%, transparent 50%),
    var(--color-paper-warm);
}

/* Section title with dramatic styling */
.manifesto-section-title-dramatic {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}

.manifesto-section-title-dramatic::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-secondary), var(--color-accent-copper));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Enhanced quote blocks */
.manifesto-quote-dramatic {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--color-ink);
  text-align: center;
  padding: 2.5rem 2rem;
  margin: 2.5rem -1rem;
  position: relative;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(124, 94, 60, 0.04) 100%);
  border-left: 4px solid var(--color-accent-secondary);
}

.manifesto-quote-dramatic::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent-secondary);
  opacity: 0.15;
}

/* Pull quote dark - full width */
.manifesto-pullquote-dark {
  padding: 5rem 2rem;
  background: var(--color-ink);
  color: var(--color-paper);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
}

.manifesto-pullquote-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.manifesto-pullquote-dark .quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-pullquote-dark .quote-text em {
  color: var(--color-accent-secondary);
  font-style: normal;
}

/* ========================================
   À PROPOS PAGE - ENHANCED STYLES
   ======================================== */

/* Intro section with better photo treatment */
.about-intro-dramatic {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.about-intro-dramatic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.about-intro-grid-dramatic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-intro-grid-dramatic {
    grid-template-columns: 280px 1fr;
    gap: 4rem;
  }
}

/* Photo with dramatic frame */
.about-photo-dramatic {
  position: relative;
  justify-self: center;
}

.about-photo-dramatic img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: all 0.5s var(--transition-elegant);
}

.about-photo-dramatic:hover img {
  filter: grayscale(0%) contrast(1);
}

/* Multiple decorative frames */
.about-photo-dramatic::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid var(--color-accent-secondary);
  z-index: -1;
  transition: all 0.4s var(--transition-elegant);
}

.about-photo-dramatic::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--color-border);
  z-index: -2;
  transition: all 0.4s var(--transition-elegant);
}

.about-photo-dramatic:hover::before {
  transform: translate(4px, 4px);
}

.about-photo-dramatic:hover::after {
  transform: translate(8px, 8px);
}

/* Story timeline with progressive sizing */
.story-section-dramatic {
  padding: 5rem 2rem;
  background: var(--color-paper-warm);
  position: relative;
}

.story-section-dramatic::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(124, 94, 60, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Timeline container */
.story-timeline-dramatic {
  max-width: 750px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 80px;
}

/* Vertical line with gradient */
.story-timeline-dramatic::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45px;
  width: 3px;
  background: linear-gradient(180deg,
    var(--color-accent-secondary) 0%,
    var(--color-accent-copper) 33%,
    var(--color-accent) 66%,
    var(--color-accent-dark) 100%
  );
  border-radius: 2px;
}

/* Timeline milestones */
.story-milestone-dramatic {
  position: relative;
  padding: 2.5rem 0;
}

/* Year marker on the line */
.story-milestone-dramatic .story-year-marker {
  position: absolute;
  left: -35px;
  top: 2.5rem;
  width: 50px;
  height: 50px;
  background: var(--color-paper-warm);
  border: 2px solid var(--color-accent-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.2);
  transition: all 0.4s var(--transition-elegant);
  z-index: 2;
}

.story-milestone-dramatic:hover .story-year-marker {
  background: linear-gradient(135deg, var(--color-accent-secondary), var(--color-accent-copper));
  color: var(--color-paper);
  transform: scale(1.1);
}

/* Progressive CA sizes */
.story-milestone-dramatic .story-ca {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-accent-secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.story-milestone-dramatic:nth-child(1) .story-ca { font-size: 2rem; }
.story-milestone-dramatic:nth-child(2) .story-ca { font-size: 2.5rem; }
.story-milestone-dramatic:nth-child(3) .story-ca { font-size: 3rem; }
.story-milestone-dramatic:nth-child(4) .story-ca { font-size: 3.5rem; }

@media (min-width: 768px) {
  .story-milestone-dramatic:nth-child(1) .story-ca { font-size: 2.5rem; }
  .story-milestone-dramatic:nth-child(2) .story-ca { font-size: 3rem; }
  .story-milestone-dramatic:nth-child(3) .story-ca { font-size: 3.75rem; }
  .story-milestone-dramatic:nth-child(4) .story-ca { font-size: 4.5rem; }
}

.story-milestone-dramatic .story-label {
  font-family: var(--font-headings);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.story-milestone-dramatic .story-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* CTA section enhancement */
.coaching-section-dramatic {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  background: var(--color-paper);
}

.coaching-section-dramatic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-secondary), transparent);
}

.coaching-title-dramatic {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 1.5rem;
}

.coaching-title-dramatic::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-secondary), var(--color-accent-copper));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}
