/* ═══════════════════════════════════════════
   about.css — About Page Styles
═══════════════════════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse,
    rgba(201, 149, 108, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.page-hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.5);
  animation: fadeInUp 0.9s ease 0.4s both;
}

.page-hero-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
  margin: 0 auto;
  margin-top: 40px;
}

/* ─── STORY SECTION ─── */
.story-section {
  padding: 100px 0;
  background: var(--deep-charcoal);
}

.story-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky image column */
.story-image-col {
  position: sticky;
  top: 100px;
}

.story-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-image-frame {
  position: relative;
}

.story-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1f1f3a, #2a2a4a);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(248, 244, 239, 0.25);
  position: relative;
  z-index: 2;
}

.story-image-border {
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, #c9956c, #e8b4a0, #d4af37);
  border-radius: 2px;
  z-index: 1;
  opacity: 0.5;
}

/* Credentials card */
.credentials-card {
  background: rgba(22, 33, 62, 0.8);
  border: 1px solid rgba(201, 149, 108, 0.2);
  border-radius: 2px;
  padding: 28px 24px;
}

.credentials-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.credentials-list li {
  font-size: 0.78rem;
  color: rgba(248, 244, 239, 0.65);
  line-height: 1.5;
}

/* Story content */
.story-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-block {
  padding: 52px 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.story-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-chapter {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 20px;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--warm-white);
  margin-bottom: 28px;
}

.story-content-col p {
  font-size: 0.95rem;
  color: rgba(248, 244, 239, 0.72);
  line-height: 1.95;
  margin-bottom: 20px;
}

.story-closing {
  font-family: var(--font-display) !important;
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--warm-white) !important;
  padding: 28px 32px;
  border-left: 2px solid var(--rose-gold);
  margin-top: 12px;
  background: rgba(201, 149, 108, 0.05);
}

.story-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
}

.story-divider::before,
.story-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 149, 108, 0.3),
    transparent
  );
}

.story-divider-symbol {
  color: var(--rose-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── METHOD BRIEF ─── */
.method-brief {
  padding: var(--section-pad);
  background: var(--midnight-noir);
  text-align: center;
}

.method-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.method-brief-card {
  padding: 44px 32px;
  border: 1px solid rgba(201, 149, 108, 0.15);
  border-radius: 2px;
  text-align: left;
  background: rgba(26, 26, 46, 0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.method-brief-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.method-brief-card:hover {
  border-color: rgba(201, 149, 108, 0.4);
  transform: translateY(-5px);
}

.method-brief-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 149, 108, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.method-brief-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.method-brief-text {
  font-size: 0.88rem;
  color: rgba(248, 244, 239, 0.65);
  line-height: 1.85;
}

/* ─── BRAND STORY SECTION ─── */
.brand-story-section {
  padding: var(--section-pad);
  background: var(--deep-charcoal);
  position: relative;
  overflow: hidden;
}

.brand-story-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 149, 108, 0.05), transparent);
  pointer-events: none;
}

.brand-story-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.brand-story-text {
  margin-top: 48px;
}

.brand-story-text p {
  font-size: 1rem;
  color: rgba(248, 244, 239, 0.72);
  line-height: 2;
  margin-bottom: 28px;
}

.brand-story-text strong {
  color: var(--warm-white);
  font-weight: 500;
}

.brand-story-gold {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  font-style: italic;
  color: var(--warm-white) !important;
  padding: 32px 40px;
  border-left: 2px solid var(--rose-gold);
  border-right: 2px solid var(--rose-gold);
  background: rgba(201, 149, 108, 0.05);
  margin: 12px 0 !important;
}

/* ─── ABOUT CTA ─── */
.about-cta {
  padding: 120px 0;
  background: var(--midnight-noir);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 149, 108, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 2;
}

.about-cta-sub {
  font-size: 1rem;
  color: rgba(248, 244, 239, 0.6);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .story-image-col {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .method-brief-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 24px 60px;
  }

  .story-section {
    padding: 60px 0;
  }

  .story-block {
    padding: 36px 0;
  }

  .brand-story-gold {
    padding: 24px 24px;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
