/* Premium About page styling inspired by the existing brand palette */
:root {
  --gold: #f8b400;
  --orange: #ff6b00;
  --coral: #ff3d4a;
  --black: #212121;
  --cream: #fff5c7;
  --text: #341c08;
  --panel: rgba(255, 248, 234, 0.72);
  --border: rgba(255, 255, 255, 0.36);
  --shadow: 0 24px 70px rgba(41, 24, 5, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #FFFDF7;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
  background: transparent;
}

header.scrolled {
  background: rgba(255, 251, 234, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(41, 24, 5, 0.1);
  padding: 0.8rem 1.5rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--black);
}

.desktop-nav {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.desktop-nav a {
  font-weight: 500;
  position: relative;
  color: var(--black);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(33, 33, 33, 0.15);
  border-radius: 14px;
  background: rgba(255, 248, 232, 0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.open span {
  transform: rotate(45deg);
}

.mobile-toggle.open span::before {
  opacity: 0;
  transform: translateY(6px);
}

.mobile-toggle.open span::after {
  opacity: 0;
  transform: translateY(-6px);
}

.mobile-menu {
  position: fixed;
  inset: 72px 1.25rem auto 1.25rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 248, 232, 0.98);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

main {
  padding-top: 4rem;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 219, 118, 0.26), transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(255, 107, 0, 0.18), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-size: 0.78rem;
}

.hero-copy h1,
.section-heading h2,
.story-copy h2,
.stats-copy h2,
.cta-card h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  color: var(--black);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  margin-bottom: 1rem;
  max-width: 620px;
}

.hero-text,
.story-copy p,
.mission-grid p,
.feature-card p,
.value-card p,
.stats-copy p,
.timeline-step p,
.team-card p,
.trust-card p,
.cta-card p,
.footer-grid p {
  color: rgba(52, 28, 8, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.4rem 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff8c2b);
  color: white;
  box-shadow: 0 18px 45px rgba(255, 107, 0, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--black);
  box-shadow: 0 12px 35px rgba(34, 17, 0, 0.08);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights span {
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.hero-card {
  position: relative;
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card img {
  border-radius: 24px;
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-card:hover img {
  transform: scale(1.03);
}

.hero-card-badge {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  background: rgba(255, 249, 232, 0.9);
  padding: 0.8rem 1rem;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.hero-card-badge strong {
  display: block;
  font-size: 1rem;
}

.hero-card-badge span {
  color: rgba(52, 28, 8, 0.76);
  font-size: 0.9rem;
}

section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.stats-copy h2,
.cta-card h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.story-card {
  position: relative;
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.story-card img {
  border-radius: 24px;
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  animation: storyFloat 5s ease-in-out infinite;
}

.story-card:hover img {
  transform: scale(1.03) translateY(-3px);
  filter: brightness(1.03);
}

@keyframes storyFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.story-copy blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  font-style: italic;
  color: var(--black);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.story-copy blockquote span {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  color: rgba(52, 28, 8, 0.78);
}

.story-media img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  width: 600px;
  max-width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.mission-grid,
.feature-grid,
.values-grid,
.team-grid,
.gallery-grid {
  display: grid;
  gap: 1.4rem;
}

.mission-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.glass-card,
.feature-card,
.value-card,
.team-card,
.stat-card,
.timeline-step,
.trust-card,
.cta-card {
  position: relative;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.glass-card,
.feature-card,
.value-card,
.team-card,
.timeline-step {
  padding: 1.5rem;
}

.glass-card:hover,
.feature-card:hover,
.value-card:hover,
.team-card:hover,
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(41, 24, 5, 0.2);
}

.glass-card h3,
.feature-card h3,
.value-card h3,
.team-card h3,
.timeline-step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
  color: var(--black);
}

.card-icon,
.feature-icon,
.value-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(248, 180, 0, 0.2));
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-section {
  padding-top: 2rem;
}

.stats-shell {
  padding: 2.2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 249, 232, 0.9), rgba(255, 184, 74, 0.85));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.25rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--coral);
  margin-bottom: 0.3rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  padding-left: 1.35rem;
  border-left: 3px solid rgba(255, 107, 0, 0.28);
}

.timeline-step span {
  font-weight: 700;
  color: var(--orange);
  font-size: 0.95rem;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
  transition: transform 0.35s ease;
}

.team-card:hover img {
  transform: scale(1.03);
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.trust-card {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badges span {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cta-card {
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 250, 239, 0.95), rgba(255, 203, 98, 0.95));
}

.cta-card .btn {
  margin-top: 1rem;
}

footer {
  padding: 2.5rem 0 1.5rem;
  background: rgba(33, 33, 33, 0.92);
  color: rgba(255, 255, 255, 0.82);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 16px 35px rgba(18, 140, 126, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 45px rgba(18, 140, 126, 0.34);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1rem;
}

.footer-logo {
  color: #fff;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .story-grid,
  .stats-shell,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .values-grid,
  .timeline,
  .team-grid,
  .gallery-grid,
  .mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  header {
    padding: 1rem 1rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 1rem;
    bottom: 1rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-section {
    padding-top: 7rem;
  }

  .hero-card img {
    height: 380px;
  }

  .stats-grid,
  .feature-grid,
  .values-grid,
  .timeline,
  .team-grid,
  .gallery-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }
}
