/* ============================================================
   ABOUT PAGE — Editorial Wildlife Magazine Aesthetic
   Deep forest greens + aged ivory + raw gold accents
   ============================================================ */

/* ── Reset scoped to about page ── */
.about-body {
  background: #f5f0e8;
}

/* ── HERO ─────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/background/elepha.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0);  }
}

.about-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 28, 15, 0.25) 0%,
    rgba(10, 28, 15, 0.1) 40%,
    rgba(10, 28, 15, 0.75) 75%,
    rgba(10, 28, 15, 0.95) 100%
  );
}

.about-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 64px;
}

.about-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
}

.about-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
  animation: fadeSlideUp 1s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

.about-hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold, #c9a84c);
}

.about-hero__eyebrow-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
}

.about-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: #f5f0e8;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 1s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}

.about-hero__title em {
  font-style: italic;
  color: var(--gold, #c9a84c);
}

.about-hero__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.8;
  max-width: 500px;
  animation: fadeSlideUp 1s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}

.about-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeSlideUp 1s cubic-bezier(0.16,1,0.3,1) 0.75s both;
}

.about-hero__scroll-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  writing-mode: vertical-rl;
}

.about-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.4; transform: scaleY(0.5); transform-origin: top; }
}

/* ── STATS TICKER ─────────────────────────────────────────── */
.about-stats-bar {
  background: var(--forest, #1a4a2e);
  padding: 0;
  overflow: hidden;
}

.about-stats-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(201,168,76,0.2);
}

.about-stat {
  padding: 36px 32px;
  border-right: 1px solid rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.about-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold, #c9a84c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.about-stat:hover { background: rgba(201,168,76,0.06); }
.about-stat:hover::before { transform: scaleX(1); }

.about-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold, #c9a84c);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat__num sup {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: super;
}

.about-stat__label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

/* ── STORY SECTION ────────────────────────────────────────── */
.about-story {
  padding: 120px 0;
  background: #f5f0e8;
  position: relative;
  overflow: hidden;
}

.about-story::before {
  content: 'STORY';
  position: absolute;
  top: 60px; right: -20px;
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(26,74,46,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.about-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.about-story__label-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold, #c9a84c);
}

.about-story__label-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest, #1a4a2e);
}

.about-story__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--forest, #1a4a2e);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about-story__title em {
  font-style: italic;
  color: var(--forest-mid, #2e7d32);
}

.about-story__body p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #5a5040;
  margin-bottom: 1.4rem;
}

.about-story__body p:last-child { margin-bottom: 0; }

.about-story__pull {
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--gold, #c9a84c);
}

.about-story__pull p {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.3rem !important;
  font-style: italic;
  color: var(--forest, #1a4a2e) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Image side */
.about-story__visual {
  position: relative;
}

.about-story__img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.about-story__img-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold, #c9a84c);
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.about-story__img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.about-story__img-frame:hover img {
  transform: scale(1.04);
}

.about-story__badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 100px;
  height: 100px;
  background: var(--forest, #1a4a2e);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(26,74,46,0.3);
}

.about-story__badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold, #c9a84c);
  line-height: 1;
}

.about-story__badge-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  text-align: center;
}

/* ── MISSION / VISION / APPROACH ─────────────────────────── */
.about-mvs {
  background: var(--forest, #1a4a2e);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-mvs::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(46,125,50,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-mvs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-section-header {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 2rem;
}

.about-section-header--center {
  grid-template-columns: 1fr;
  text-align: center;
}

.about-section-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold, #c9a84c);
}

.about-section-header--center .about-section-eyebrow {
  justify-content: center;
}

.about-section-header--center .about-section-eyebrow::before {
  display: none;
}

.about-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
}

.about-section-title em {
  font-style: italic;
  color: var(--gold, #c9a84c);
}

.about-section-title--dark {
  color: var(--forest, #1a4a2e);
}

.about-mvs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
}

.about-mv-card {
  background: rgba(10, 28, 15, 0.6);
  backdrop-filter: blur(8px);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.about-mv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.about-mv-card:hover {
  background: rgba(10, 28, 15, 0.8);
}

.about-mv-card:hover::after { opacity: 1; }

.about-mv-card__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #c9a84c);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  transition: all 0.4s;
}

.about-mv-card:hover .about-mv-card__icon {
  background: var(--gold, #c9a84c);
  color: var(--forest, #1a4a2e);
  border-color: var(--gold, #c9a84c);
}

.about-mv-card__num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  user-select: none;
}

.about-mv-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 1rem;
}

.about-mv-card__body {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.6);
}

/* ── VALUES ────────────────────────────────────────────────── */
.about-values {
  padding: 100px 0;
  background: #f5f0e8;
  position: relative;
}

.about-values__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.about-value-card {
  background: #fff;
  border-radius: 2px;
  padding: 44px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  box-shadow: 0 1px 0 #ddd6c4, 0 4px 24px rgba(26,74,46,0.04);
  cursor: default;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest, #1a4a2e), var(--gold, #c9a84c));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26,74,46,0.12);
}

.about-value-card:hover::before { transform: scaleX(1); }

.about-value-card__ghost {
  position: absolute;
  bottom: -10px; right: -8px;
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(26,74,46,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.about-value-card__icon {
  width: 44px;
  height: 44px;
  background: var(--forest, #1a4a2e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #c9a84c);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s, transform 0.3s;
}

.about-value-card:hover .about-value-card__icon {
  background: var(--gold, #c9a84c);
  color: var(--forest, #1a4a2e);
  transform: rotate(8deg) scale(1.1);
}

.about-value-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest, #1a4a2e);
  margin-bottom: 0.75rem;
}

.about-value-card__body {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #7a6e5a;
}

/* ── TEAM INTRO (optional atmosphere strip) ─────────────────── */
.about-atmosphere {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.about-atmosphere__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/background/zebra.jpg');
  background-size: cover;
  background-position: center 60%;
  transition: transform 0.1s linear;
}

.about-atmosphere__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,28,15,0.9) 0%,
    rgba(10,28,15,0.6) 50%,
    rgba(10,28,15,0.2) 100%
  );
}

.about-atmosphere__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-atmosphere__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 600px;
}

.about-atmosphere__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: #f5f0e8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-atmosphere__attr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-atmosphere__attr-line {
  width: 32px;
  height: 1px;
  background: var(--gold, #c9a84c);
}

.about-atmosphere__attr-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.about-cta {
  background: #f5f0e8;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(26,74,46,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}

.about-cta__tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-cta__tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold, #c9a84c);
}

.about-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--forest, #1a4a2e);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-cta__title em {
  font-style: italic;
  color: var(--forest-mid, #2e7d32);
}

.about-cta__body {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #7a6e5a;
  max-width: 500px;
}

.about-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--forest, #1a4a2e);
  color: var(--gold, #c9a84c);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.about-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold, #c9a84c);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}

.about-btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }

.about-btn-primary:hover {
  color: var(--forest, #1a4a2e);
  box-shadow: 0 8px 32px rgba(26,74,46,0.2);
}

.about-btn-primary span, .about-btn-primary i {
  position: relative; z-index: 1;
}

.about-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: var(--forest, #1a4a2e);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(26,74,46,0.3);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}

.about-btn-outline:hover {
  border-color: var(--forest, #1a4a2e);
  background: var(--forest, #1a4a2e);
  color: #f5f0e8;
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .about-story__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-story__visual { max-width: 480px; }
  .about-mvs__grid { grid-template-columns: 1fr; gap: 1px; }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-cta__actions { flex-direction: row; align-self: flex-start; }
}

@media (max-width: 768px) {
  .about-hero__inner { grid-template-columns: 1fr; }
  .about-hero__scroll { display: none; }
  .about-stats-bar__inner { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .about-stat { padding: 28px 24px; }
  .about-stat__num { font-size: 2rem; }
  .about-story { padding: 80px 0; }
  .about-story::before { display: none; }
  .about-mvs { padding: 72px 0; }
  .about-values { padding: 72px 0; }
  .about-values__grid { grid-template-columns: 1fr 1fr; }
  .about-section-header { grid-template-columns: 1fr; }
  .about-section-num { display: none; }
  .about-atmosphere { height: 320px; }
  .about-cta { padding: 72px 0; }
  .about-cta__actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .about-hero__inner { padding: 0 20px; }
  .about-story__inner, .about-mvs__inner,
  .about-values__inner, .about-cta__inner { padding: 0 20px; }
  .about-stats-bar__inner { padding: 0; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-mv-card { padding: 36px 24px; }
}
