/* ========================================
   About Maisa — Page Styles
   ======================================== */

/* Active nav link */
.nav-active {
  color: var(--gold) !important;
}

/* ========================================
   About Hero
   ======================================== */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-md) var(--space-xl);
  overflow: hidden;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-hero-quote {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
  opacity: 0.9;
}

.about-hero-quote-attr {
  font-size: 0.9375rem;
  color: var(--text-dim);
  margin-bottom: var(--space-xl);
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ========================================
   Video Feature
   ======================================== */
.video-feature {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}

.about-video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* ========================================
   Story Section
   ======================================== */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
}

.story-hero-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: calc(var(--space-3xl) + 20px);
}

.story-body p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.story-body p:first-child {
  font-size: 1.125rem;
  color: var(--cream);
  font-weight: 400;
}

.story-highlight {
  font-family: var(--font-display);
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--gold) !important;
  line-height: 1.5 !important;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-top: var(--space-md);
  margin-bottom: var(--space-md) !important;
}

/* ========================================
   Maisa Loves Section
   ======================================== */
.loves-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

.loves-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.loves-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.loves-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.loves-card {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.loves-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.06);
}

.loves-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.loves-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
}

/* ========================================
   Interests Section
   ======================================== */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.interest-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.interest-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.interest-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.interest-card-body {
  padding: var(--space-md);
}

.interest-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.interest-card-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text);
}

/* CTA buttons row */
.cta-center {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
  .interests-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 60vh;
    padding: var(--space-2xl) var(--space-md) var(--space-lg);
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .loves-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .loves-img {
    max-width: 360px;
    margin: 0 auto;
  }

  .loves-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .loves-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-title {
    font-size: 1.75rem;
  }
}
