/* SALSA — About Page Styles (aligned with catering design system) */

/* ─── HERO (full-bleed photo, same pattern as catering) ─── */
.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
  to {
    transform: scale(1);
  }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(38,38,38, 0.35) 0%, rgba(38,38,38, 0.80) 100%);
  z-index: 1;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
}

/* Reuse .hero-badge from catering (defined in catering.css); redeclare here so
   about.css is self-contained when loaded independently */
.about-hero .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-hero h1 span {
  color: var(--red);
  text-shadow: 0 2px 10px rgba(192, 24, 46, 0.35);
}

.about-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 620px;
  margin-inline: auto;
}

.about-hero .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-hero .hero-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  padding: 16px 32px;
  box-shadow: 0 8px 24px rgba(192, 24, 46, 0.4);
}

.about-hero .hero-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.about-hero .hero-btn-wa:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}


/* ─── STORY ─── */
.story-section {
  padding: 80px 20px;
  background: var(--white);
}

.story-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.story-text .section-heading {
  margin-bottom: 24px;
}

.story-text p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Highlights — elevated white card on cream, matching estimator-container style */
.story-highlights {
  background: var(--cream);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(38,38,38, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(38,38,38, 0.07);
}

.highlight-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.highlight-item:first-child {
  padding-top: 0;
}

.highlight-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  box-shadow: 0 4px 12px rgba(38,38,38, 0.06);
}

.highlight-text .hl-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--black);
  margin-bottom: 2px;
}

.highlight-text .hl-desc {
  font-size: 0.82rem;
  color: var(--gray-text);
}

/* ─── VALUES (dark section) ─── */
.values-section {
  background: var(--black);
  padding: 80px 20px;
  color: var(--white);
  text-align: center;
}

.values-header {
  max-width: 560px;
  margin: 0 auto 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.25s ease, transform 0.25s ease;
  text-align: center;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.value-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(192, 24, 46, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--red);
  transition: background 0.25s ease;
}

.value-card:hover .value-icon-wrap {
  background: rgba(192, 24, 46, 0.25);
}

.value-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ─── CTA BANNER (same pattern as catering custom-card) ─── */
.about-cta-section {
  padding: 80px 20px 80px;
  background: var(--white);
}

.about-cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--red);
  color: var(--white);
  border-radius: 24px;
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 16px 40px rgba(192, 24, 46, 0.25);
}

.about-cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.about-cta-text p {
  opacity: 0.88;
  font-size: 1rem;
  line-height: 1.5;
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

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



/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .about-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 70vh;
  }

  .about-hero .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .values-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 20px 40px;
    margin: 0 -20px;
    grid-template-columns: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .values-grid::-webkit-scrollbar {
    display: none;
  }

  .value-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }



  .about-cta-section {
    padding-bottom: 60px;
  }
}