/* =============================================
   HERO TITLE SECTION
   ============================================= */
.about-hero {
  position: relative;
  width: min(var(--max), calc(100% - 64px));
  margin: 80px auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-title-container {
  position: relative;
  display: inline-block;
  text-align: center;
}
.about-hero h1 {
  font-family: "Recoleta", Georgia, serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.15;
  margin: 0;
  max-width: 800px;
}
.hero-sticker {
  position: absolute;
  top: -30px;
  right: -130px;
  width: 140px;
  pointer-events: none;
  animation: float-sticker 6s ease-in-out infinite;
}
@keyframes float-sticker {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@media (max-width: 980px) {
  .about-hero { margin-top: 50px; }
  .hero-sticker {
    position: static;
    display: block;
    margin: 20px auto 0;
    width: 110px;
  }
}

/* =============================================
   CONTENT SECTIONS (Alternating Layouts)
   ============================================= */
.section {
  position: relative;
  padding: 60px 0;
}
.section-inner {
  width: min(var(--max), calc(100% - 64px));
  margin: auto;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section h2 {
  font-family: "Recoleta", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--petrol);
  margin: 0 0 20px;
}

.section h3 {
  font-family: "Recoleta", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--petrol);
  margin: 0 0 15px;
}

.section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.section p:last-child {
  margin-bottom: 0;
}

/* Sticker Frame layout */
.sticker-frame {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticker-frame img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Main Tote Bag Image container */
.main-photo-frame {
  border-radius: 24px;
  overflow: hidden;
}
.main-photo-frame img {
  width: 100%;
  border-radius: 24px;
}

/* Center Headings */
.center-heading {
  text-align: center;
  margin-bottom: 40px;
}
.center-heading h2 {
  font-size: clamp(38px, 6vw, 68px);
  margin: 0;
}

@media (max-width: 850px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-2col.reverse-mobile {
    direction: ltr;
  }
  .grid-2col.reverse-mobile .sticker-frame {
    order: -1;
  }
  .section h2 {
    font-size: 30px;
  }
  .section h3 {
    font-size: 22px;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
