/* ═══════ ABOUT — Dark Premium ═══════ */

.scene-hero {
  height: 90vh; min-height: 600px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding-top: 80px;
}

.scene-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3);
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

.scene-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.95) 100%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.scene-hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 2rem; max-width: 1100px;
}

.scene-hero-eyebrow {
  font-size: 0.78rem; color: var(--gold);
  letter-spacing: 4px; font-weight: 600;
  margin-bottom: 2rem;
  display: inline-flex; align-items: center; gap: 1rem;
  text-transform: uppercase;
}

.scene-hero-eyebrow::before, .scene-hero-eyebrow::after {
  content: ''; width: 50px; height: 1px;
  background: var(--gold); opacity: 0.6;
}

.scene-hero h1 {
  font-family: var(--font-arabic);
  font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 2rem; color: var(--text);
}

.scene-hero h1 .l1 { display: block; }
.scene-hero h1 .l2 {
  display: block;
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-weight: 400;
  margin-top: 0.3rem;
}

.scene-hero p {
  font-size: 1.15rem; color: var(--text-2);
  max-width: 650px; margin: 0 auto; line-height: 1.95;
}

/* STORY */
.scene-story { padding: 8rem 3rem; }
.scene-story-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: center;
}

.scene-num {
  font-size: 0.78rem; color: var(--gold);
  letter-spacing: 3px; font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.scene-num::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.scene-story h2 {
  font-family: var(--font-arabic);
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 2rem; color: var(--text);
}
.scene-story h2 em {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-weight: 400;
}

.scene-story p {
  color: var(--text-2); line-height: 1.95;
  margin-bottom: 1.5rem; font-size: 1rem;
}
.scene-story p strong { color: var(--gold); font-weight: 600; }

.story-img-stack { position: relative; height: 550px; }

.story-img-1 {
  position: absolute; top: 0; right: 0;
  width: 75%; height: 75%;
  background-size: cover; background-position: center;
  filter: brightness(0.85) saturate(0.9);
  border: 1px solid var(--line);
}

.story-img-2 {
  position: absolute; bottom: 0; left: 0;
  width: 55%; height: 50%;
  background-size: cover; background-position: center;
  filter: brightness(0.85) saturate(0.9);
  border: 8px solid var(--bg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.story-stat {
  position: absolute; top: 35%; left: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  padding: 1.5rem 2rem; text-align: center; z-index: 2;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.story-stat strong {
  font-family: var(--font-display); font-size: 3rem;
  line-height: 1; font-weight: 500; display: block;
}

.story-stat span {
  font-size: 0.75rem; letter-spacing: 1.5px;
  font-weight: 700; display: block; margin-top: 0.4rem;
}

/* VALUES */
.scene-values {
  padding: 8rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scene-values-header {
  max-width: 800px; margin: 0 auto 5rem;
  padding: 0 3rem; text-align: center;
}

.scene-values-header h2 {
  font-family: var(--font-arabic);
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; color: var(--text);
}
.scene-values-header h2 em {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-weight: 400;
}

.values-row {
  max-width: 1400px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}

.value-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  background: var(--bg-4);
}

.value-card:hover::before { width: 100%; }

.value-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 4rem; color: var(--gold);
  line-height: 1; margin-bottom: 1.5rem;
  font-weight: 400; opacity: 0.5;
  transition: opacity 0.4s;
}
.value-card:hover .value-num { opacity: 1; }

.value-card h3 {
  font-family: var(--font-arabic); font-size: 1.3rem;
  font-weight: 700; margin-bottom: 1rem;
  line-height: 1.4; color: var(--text);
}

.value-card p {
  color: var(--text-3); font-size: 0.92rem; line-height: 1.85;
}

/* TIMELINE */
.scene-timeline { padding: 8rem 3rem; position: relative; }

.scene-timeline::before {
  content: ''; position: absolute;
  top: 100px; right: 50%; transform: translateX(50%);
  width: 1px; height: calc(100% - 200px);
  background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.3;
}

.timeline-header { text-align: center; margin-bottom: 5rem; }

.timeline-header h2 {
  font-family: var(--font-arabic);
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; color: var(--text);
}
.timeline-header h2 em {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-weight: 400;
}

.timeline { max-width: 1100px; margin: 0 auto; position: relative; }

.timeline-entry {
  display: grid; grid-template-columns: 1fr 100px 1fr;
  gap: 3rem; margin-bottom: 4rem; align-items: center;
}

.timeline-entry .timeline-content { text-align: right; }
.timeline-entry:nth-child(even) .timeline-content { text-align: left; }

.timeline-marker {
  width: 18px; height: 18px;
  background: var(--gold);
  border: 3px solid var(--bg);
  border-radius: 50%; margin: 0 auto;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.2),
              0 0 30px rgba(212, 175, 55, 0.4);
}

.timeline-year {
  font-family: var(--font-display); font-style: italic;
  font-size: 3.5rem; color: var(--gold);
  line-height: 1; margin-bottom: 1rem; font-weight: 400;
}

.timeline-content h4 {
  font-family: var(--font-arabic); font-size: 1.5rem;
  font-weight: 700; margin-bottom: 1rem; color: var(--text);
}

.timeline-content p {
  color: var(--text-3); line-height: 1.95; font-size: 0.95rem;
}

/* QUOTE */
.scene-quote {
  padding: 8rem 3rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}

.scene-quote-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-style: italic;
  font-size: 30rem; color: var(--gold);
  opacity: 0.04; line-height: 0.5;
  pointer-events: none;
}

.scene-quote-content {
  max-width: 1000px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}

.scene-quote h2 {
  font-family: var(--font-arabic);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 600;
  line-height: 1.6; color: var(--text);
  margin-bottom: 3rem; letter-spacing: -0.3px;
}
.scene-quote h2 em {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-weight: 400;
}

.founder-info {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.founder-mark {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-size: 1.5rem;
}

.founder-text strong {
  display: block; color: var(--text);
  font-weight: 700; font-size: 1.05rem;
}
.founder-text span {
  color: var(--gold); font-size: 0.9rem;
}

/* CTA */
.scene-cta {
  padding: 8rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}

.scene-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.scene-cta-content { max-width: 800px; margin: 0 auto; position: relative; }

.scene-cta h2 {
  font-family: var(--font-arabic);
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 1.5rem; color: var(--text);
}
.scene-cta h2 em {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-weight: 400;
}

.scene-cta p {
  color: var(--text-2); font-size: 1.1rem;
  margin-bottom: 3rem; line-height: 1.95;
}

.cta-btn-dark {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  padding: 1.2rem 2.5rem; font-size: 0.92rem;
  letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-weight: 700;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.cta-btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

@media (max-width: 1024px) {
  .scene-story-grid { grid-template-columns: 1fr; gap: 4rem; }
  .story-img-stack { height: 450px; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .scene-hero { height: 75vh; min-height: 500px; }
  .scene-hero h1 { font-size: clamp(2.2rem, 10vw, 4rem); }
  .scene-hero p { font-size: 1rem; }

  .scene-story, .scene-values, .scene-timeline, .scene-quote, .scene-cta {
    padding: 5rem 1.5rem;
  }

  .scene-values-header { padding: 0 1.5rem; margin-bottom: 4rem; }
  .values-row { padding: 0 1.5rem; grid-template-columns: 1fr; }

  .scene-timeline::before { right: 30px; left: auto; transform: none; }

  .timeline-entry { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .timeline-entry .timeline-empty { display: none; }
  .timeline-entry .timeline-content {
    grid-column: 2 !important; text-align: right !important;
  }
  .timeline-entry .timeline-marker { grid-column: 1; margin: 0; }
  .timeline-year { font-size: 2.5rem; }

  .scene-quote-bg { font-size: 18rem; }
  .story-img-stack { height: 350px; }
  .story-stat strong { font-size: 2rem; }
  .story-stat { padding: 1rem 1.5rem; top: 30%; }
}
