/* ============================================================
   about.css — Our Story Page Styles
   ============================================================ */

/* ── ABOUT HERO ─────────────────────────────────────────────── */
.about-hero {
  align-items: flex-end;
}

.about-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-on-dark);
  margin: 16px 0 32px;
}

.about-hero-heading em {
  font-style: italic;
  color: var(--gold-main);
}

.about-hero-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.85);
  line-height: 1.8;
  max-width: 600px;
}

/* ── BEYOND BOUQUETS ─────────────────────────────────────── */
.about-beyond {
  background-color: var(--bg-primary);
  padding-top: 120px;
}

.beyond-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.beyond-images {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3.5;
}

.beyond-img-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 80%;
  background: var(--bg-muted);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.beyond-img-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.beyond-img-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65%;
  height: 75%;
  background: #FFF;
  border: 8px solid #FFF;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  z-index: 2;
}

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

.beyond-heading {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--text-primary);
  margin: 16px 0 28px;
  line-height: 1.1;
}

.beyond-body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ── OUR WORK GALLERY ────────────────────────────────────── */
.about-work {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
}

.work-header {
  text-align: center;
  margin-bottom: 64px;
}

.work-heading {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 16px;
  color: var(--text-on-dark);
}

.work-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.7);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.work-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.work-filters .filter-btn {
  background: transparent;
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid rgba(250, 248, 244, 0.2);
  color: rgba(250, 248, 244, 0.7);
}
.work-filters .filter-btn:hover,
.work-filters .filter-btn.active {
  border-color: var(--gold-main);
  color: var(--gold-main);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(250, 248, 244, 0.1);
}

.work-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 244, 0.1);
  position: relative;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
  filter: grayscale(15%) contrast(1.1);
}

.work-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1);
}

/* ── GOOD TO KNOW (FAQ) ──────────────────────────────────── */
.about-faq {
  background-color: var(--bg-primary);
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-heading {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.faq-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(24, 20, 16, 0.05);
  transition: background 0.3s;
}

.accordion-item.open {
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  color: var(--text-primary);
  text-align: left;
}

.accordion-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}

.accordion-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-dark);
  transition: transform 0.4s var(--ease-out);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.accordion-content {
  padding: 0 32px 32px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .beyond-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .beyond-images {
    max-width: 600px;
    margin: 0 auto;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-clean {
    padding: 160px 24px 80px;
  }
  .about-hero-heading {
    font-size: 42px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .accordion-trigger {
    padding: 20px;
  }
  .accordion-title {
    font-size: 18px;
  }
  .accordion-content {
    padding: 0 20px 24px;
  }
}
