/* ================================
   ABOUT EDITORIAL - Magazine Style Layout
   Perspectivă complet diferită
   ================================ */

.about-editorial {
  min-height: 100vh;
  background: var(--color-warm-cream);
}

/* === EDITORIAL HERO - Full Width === */
.editorial-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%);
}

.hero-content-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  z-index: 2;
}

.hero-content-overlay .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text-box {
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 182, 161, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
}

.editorial-hero .hero-title {
  font-size: clamp(3rem, 7vw, 5rem) !important;
  line-height: 1.1 !important;
  color: white !important;
  margin: 0 0 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  font-family: 'Playfair Display', serif !important;
}

.hero-tagline {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: white;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* === EDITORIAL STORY === */
.editorial-story {
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 6rem);
  background: linear-gradient(180deg,
    var(--color-warm-cream) 0%,
    rgba(232, 245, 240, 0.3) 50%,
    var(--color-warm-cream) 100%);
}

/* Intro Block */
.story-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.intro-decoration {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--sage-primary), 
    transparent);
  margin: 0 auto 2rem;
}

.intro-text {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--sage-dark);
  margin: 0;
}

/* Story Content */
.story-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Story Prose */
.story-prose {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.story-prose p {
  margin-bottom: 1.5rem;
}

.story-prose > p:first-of-type::first-letter {
  font-size: 3.5em;
  line-height: 0.9;
  font-weight: 700;
  float: left;
  margin: 0.05em 0.15em 0 0;
  color: var(--sage-primary);
  font-family: 'Playfair Display', serif;
}

.story-prose strong {
  color: var(--text-primary);
  font-weight: 600;
}

.story-prose ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  background: rgba(168, 182, 161, 0.08);
  border-left: 3px solid var(--sage-primary);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-prose ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.875rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.story-prose ul li:last-child {
  margin-bottom: 0;
}

.story-prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-primary);
  font-weight: 700;
}

/* Story CTA */
.story-cta {
  margin-top: 5rem;
  clear: both;
}

.cta-inner {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95),
    rgba(232, 245, 240, 0.9));
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  border: 1px solid rgba(168, 182, 161, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(168, 182, 161, 0.12);
}

.cta-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.cta-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn svg {
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--sage-primary), var(--sage-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(168, 182, 161, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 182, 161, 0.4);
}

.cta-btn.secondary {
  background: white;
  color: var(--sage-dark);
  border: 2px solid var(--sage-primary);
  box-shadow: 0 2px 8px rgba(168, 182, 161, 0.15);
}

.cta-btn.secondary:hover {
  background: rgba(168, 182, 161, 0.1);
  transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .editorial-hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .story-prose p:first-of-type::first-letter {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    float: none;
    margin: 0;
    color: inherit;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .editorial-story {
    padding: 3rem 0 2rem;
  }

  .story-intro {
    margin-bottom: 2.5rem;
  }

  .story-cta {
    margin-top: 3rem;
  }

  .cta-inner {
    padding: 2rem 1.5rem;
  }
}
