/* Agendo - about.html only.  Loads after assets/css/site.css. */

/* ========================
   SECTIONS
   ======================== */
.panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ========================
   ABOUT HERO
   ======================== */
.about-hero {
  background: linear-gradient(160deg, #FBFBFB 0%, #f0eaf6 55%, #F9DEDC 100%);
  text-align: center;
  flex-direction: column;
  padding-top: 9rem;
  padding-bottom: 6rem;
  min-height: 70vh;
}
.about-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 100, 143, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-hero .panel-content {
  position: relative;
  z-index: 2;
}
.about-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(229, 100, 143, 0.3);
  border-radius: 2rem;
}
.about-hero h1 {
  font-family: 'Arya', sans-serif;
  font-weight: 700;
  color: var(--body-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .about-hero h1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1024px) {
  .about-hero h1 {
    font-size: 3.5rem;
  }
}
.about-hero h1 .highlight {
  background: linear-gradient(90deg, var(--pink-primary), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-secondary);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .about-hero-subtitle {
    font-size: 1.2rem;
  }
}

/* ========================
   STORY PANELS
   ======================== */
.story-panel {
  padding: 6rem 2rem;
}
.story-panel.warm {
  background: var(--section-warm);
}
.story-panel.purple {
  background: var(--section-purple);
}
.story-panel.brown {
  background: var(--section-brown);
}
.story-panel.bg-default {
  background: var(--background);
}
.story-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .story-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }

  .story-grid.reverse {
    flex-direction: row-reverse;
  }
}
.story-photo {
  flex-shrink: 0;
  width: 220px;
  height: 280px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .story-photo {
    width: 280px;
    height: 360px;
  }
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-text {
  flex: 1;
  text-align: left;
}
.story-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 1rem;
}
.story-text h2 {
  font-family: 'Arya', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .story-text h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .story-text h2 {
    font-size: 2.5rem;
  }
}
.story-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--body-secondary);
  font-weight: 300;
  margin-bottom: 1rem;
}
.story-text p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .story-text p {
    font-size: 1.05rem;
  }
}

/* ========================
   MISSION (centered story)
   ======================== */
.mission-panel {
  padding: 7rem 2rem;
  background: var(--section-brown);
  text-align: center;
}
.mission-panel .panel-content {
  max-width: 780px;
}
.mission-panel .story-label {
  margin-bottom: 1.25rem;
}
.mission-panel h2 {
  font-family: 'Arya', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mission-panel h2 {
    font-size: 2.75rem;
  }
}
.mission-panel p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-secondary);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.mission-panel p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .mission-panel p {
    font-size: 1.15rem;
  }
}
.mission-pullquote {
  font-family: 'Arya', sans-serif;
  font-style: italic;
  color: var(--blue-secondary);
  font-size: 1.5rem !important;
  line-height: 1.4 !important;
  margin-top: 2rem !important;
  font-weight: 400 !important;
}
@media (min-width: 768px) {
  .mission-pullquote {
    font-size: 2rem !important;
  }
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
  background: linear-gradient(160deg, #FBFBFB 0%, #F9DEDC 100%);
  padding: 6rem 2rem;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Arya', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
}
.cta-section .cta-subtitle {
  font-size: 1rem;
  color: var(--body-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.store-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: #1a1a1a;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.store-badge:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
}
.store-badge-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.store-badge-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
