/* ============================================================
   Magnolia Studios — Homepage Styles
   Design system matching magnoliastudio.vercel.app
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --bg-dark: #131f24;
  --bg-lighter: #1a2b32;
  --bg-card: #1e2f37;
  --text-cream: #e8dcc8;
  --text-white: #f5f0ea;
  --accent-gold: #b8a88a;
  --accent-gold-light: #d4c5a9;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-faint: rgba(255, 255, 255, 0.05);
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --section-py: 6rem;
  --section-py-md: 8rem;
  --container-max: 1280px;
  --transition-base: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-cream);
  background-color: var(--bg-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-gold-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--text-white);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Section Label (small gold uppercase) --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

/* --- Section Heading --- */
.section-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 2rem;
}

/* --- Section Padding --- */
.section {
  padding: var(--section-py) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-py-md) 0;
  }
}

.section--border-top {
  border-top: 1px solid var(--border-faint);
}

/* --- CTA Button --- */
.btn-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background-color: var(--text-cream);
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-cta:hover {
  background-color: var(--text-white);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-cream);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}

.nav--scrolled {
  background-color: rgba(19, 31, 36, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.8rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__brand {
  text-decoration: none;
  line-height: 1;
}

.nav__brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-white);
  display: block;
}

.nav__brand-sub {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 234, 0.75);
  text-decoration: none;
  transition: color var(--transition-base);
}

.nav__link:hover {
  color: var(--text-white);
}

.nav__book-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-cream);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.nav__book-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text-white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__hamburger--active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: rgba(19, 31, 36, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--accent-gold);
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 31, 36, 0.88) 0%,
    rgba(19, 31, 36, 0.35) 40%,
    rgba(19, 31, 36, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem 5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero__title em {
  font-style: italic;
  color: var(--accent-gold-light);
}

.hero__cta {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero__content {
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }
}

/* ============================================================
   SESSION TYPES
   ============================================================ */
.sessions__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .sessions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sessions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.session-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.session-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.session-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.session-card:hover .session-card__bg img {
  transform: scale(1.05);
}

.session-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 31, 36, 0.92) 0%,
    rgba(19, 31, 36, 0.4) 50%,
    rgba(19, 31, 36, 0.15) 100%
  );
  z-index: 1;
}

.session-card__content {
  position: relative;
  z-index: 2;
}

.session-card__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.session-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.session-card__desc {
  font-size: 0.85rem;
  color: rgba(232, 220, 200, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.session-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.session-card__price {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.session-card__link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-cream);
  text-decoration: none;
  transition: color var(--transition-base);
}

.session-card__link:hover {
  color: var(--accent-gold);
}

/* ============================================================
   BUY EVENT PHOTOS
   ============================================================ */
.event-photos {
  background-color: var(--bg-lighter);
}

.event-photos__inner {
  max-width: 720px;
}

.event-photos__text {
  font-size: 1rem;
  color: rgba(232, 220, 200, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ============================================================
   RECENT EVENTS
   ============================================================ */
.recent-events__scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.recent-events__scroll::-webkit-scrollbar {
  height: 4px;
}

.recent-events__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.recent-events__scroll::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.event-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background-color: var(--bg-lighter);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: inherit;
}

.event-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.event-card__placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 3rem;
}

.event-card__body {
  padding: 1.25rem;
}

.event-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-card__meta {
  font-size: 0.8rem;
  color: rgba(232, 220, 200, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.event-card__meta span {
  display: block;
}

.recent-events__empty {
  text-align: center;
  padding: 3rem;
  color: rgba(232, 220, 200, 0.45);
  font-size: 0.95rem;
}

.recent-events__footer {
  margin-top: 2.5rem;
  text-align: center;
}

.link-arrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

.link-arrow:hover {
  color: var(--text-white);
}

.link-arrow::after {
  content: ' →';
}

@media (max-width: 640px) {
  .event-card {
    flex: 0 0 85vw;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .gallery__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery__filter-btn {
  background: none;
  border: 1px solid var(--border-subtle);
  color: rgba(232, 220, 200, 0.6);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-base);
}

.gallery__filter-btn:hover,
.gallery__filter-btn--active {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.05);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 31, 36, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white);
}

/* Hidden by filter */
.gallery__item--hidden {
  display: none;
}

/* ============================================================
   ABOUT / MEET THE PHOTOGRAPHER
   ============================================================ */
.about__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about__portrait {
  border-radius: 12px;
  overflow: hidden;
}

.about__portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--text-white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent-gold);
}

.about__text {
  font-size: 0.95rem;
  color: rgba(232, 220, 200, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__signature {
  max-width: 180px;
  opacity: 0.8;
  filter: invert(1) brightness(0.85);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps__grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.step {
  text-align: center;
}

.step__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 1rem;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.step__desc {
  font-size: 0.9rem;
  color: rgba(232, 220, 200, 0.65);
  line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background-color: var(--bg-lighter);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-white);
  line-height: 1;
}

.pricing-card__price-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.pricing-card__desc {
  font-size: 0.88rem;
  color: rgba(232, 220, 200, 0.65);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-card .btn-cta {
  width: 100%;
  text-align: center;
}

.pricing__footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   REVIEWS / TESTIMONIAL
   ============================================================ */
.reviews {
  text-align: center;
}

.reviews__stars {
  font-size: 1.5rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.reviews__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: var(--text-white);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.reviews__attribution {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.reviews__date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(232, 220, 200, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  background-color: var(--bg-dark);
}

.footer__inner {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.footer__address {
  font-size: 0.9rem;
  color: rgba(232, 220, 200, 0.6);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.footer__map {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.footer__map img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.6);
}

.footer__map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 31, 36, 0.3);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.footer__map-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-white);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.footer__nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, 0.5);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer__nav a:hover {
  color: var(--text-white);
}

.footer__copyright {
  font-size: 0.78rem;
  color: rgba(232, 220, 200, 0.35);
}

/* ============================================================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-stagger--visible > *:nth-child(1) { transition-delay: 0.05s; }
.fade-in-stagger--visible > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger--visible > *:nth-child(3) { transition-delay: 0.15s; }
.fade-in-stagger--visible > *:nth-child(4) { transition-delay: 0.2s; }
.fade-in-stagger--visible > *:nth-child(5) { transition-delay: 0.25s; }

.fade-in-stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}
