@import "../globle.css";
@import "../components/header.css";
@import "../components/footer.css";

:root {
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --cream-deeper: #e4dbc8;
  --green: #3d5a2e;
  --green-dark: #2e4422;
  --green-mid: #4a6e36;
  --green-pale: #eaf3e0;
  --orange: #e8813a;
  --orange-light: #f09a55;
  --orange-dark: #c96a25;
  --gold: #c9a84c;
  --gold-light: #f09a55;
  --gold-dark: #9e7a2a;
  --text-dark: #1a1209;
  --text-mid: #4a3f2a;
  --text-light: #7a6e58;
  --border: #ddd5c4;
  --border-gold: #d4b87a;
  --white: #ffffff;
}


/* ══ SECTION HELPERS ═════════════════════════════════════════ */
.sec-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.sec-tag::before {
  content: "- ";
}
.sec-h2 {
  
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.18;
}
.sec-h2 em {
  font-style: italic;
  color: var(--gold-dark);
}
.sec-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.sec-li {
  
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.fancy-div {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.fancy-div::before,
.fancy-div::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-gold),
    transparent
  );
}
.fancy-div span {
  font-size: 1rem;
  color: var(--gold);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  position: sticky;
  top: 80px;
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ══ 1. HERO ══════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 6rem 5rem;
  position: relative;
  z-index: 2;
}
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 60%,
    rgba(232, 129, 58, 0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1.75rem;
  width: fit-content;
  position: relative;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-h1 {
  
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  position: relative;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--orange-light);
  display: block;
}
.hero-sub {
  
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  position: relative;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hstat-num {
  
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--orange-light);
  line-height: 1;
}
.hstat-num sup {
  font-size: 1.4rem;
  vertical-align: super;
}
.hstat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, var(--green-dark) 0%, transparent 35%),
    linear-gradient(to top, rgba(30, 50, 15, 0.6) 0%, transparent 50%);
}
/* Floating year badge */
.hero-year-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.hero-year-badge .est {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-light);
  margin-bottom: 0.25rem;
}
.hero-year-badge .year {
  
  font-size: 2.2rem;
  color: white;
  font-weight: 600;
  line-height: 1;
}
.hero-year-badge .since {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bobDown 2s ease-in-out infinite;
}
.scroll-hint .arrow {
  font-size: 1.1rem;
  animation: bobDown 2s ease-in-out infinite;
}
@keyframes bobDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══ 2. MARQUEE ══════════════════════════════════════════════ */
.marquee-bar {
  background: var(--orange);
  overflow: hidden;
  padding: 0.65rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  padding: 0 1.5rem;
}
.marquee-track span::after {
  content: " ◆ ";
  opacity: 0.5;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══ 3. MISSION BAND ═════════════════════════════════════════ */
.mission-band {
  background: url(../../images/bg/inner-bg.jpg);
  padding: 5rem 2rem;
}
.mission-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.mission-inner blockquote {
  
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  line-height: 1.55;
  position: relative;
}
.mission-inner blockquote::before {
  content: "\201C";
  font-size: 8rem;
  color: var(--orange);
  position: absolute;
  top: -2rem;
  left: -2rem;
  
  line-height: 1;
}
.mission-inner cite {
  display: block;
  margin-top: 1.75rem;

  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}
.mission-inner cite strong {
  color: var(--green);
  font-weight: 500;
}

/* ══ 4. STORY SECTION ════════════════════════════════════════ */
.story-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.story-img-col {
  position: relative;
}
.story-img-main {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 80px rgba(61, 90, 46, 0.14);
}
.story-img-main img {
  width: 100%;
  display: block;
  aspect-ratio: 4/4;
  object-fit: cover;
}
.story-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 16px 50px rgba(61, 90, 46, 0.18);
}
.story-img-float img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.story-year-pill {
  position: absolute;
  top: 1.75rem;
  left: -1.5rem;
  background: var(--orange);
  color: white;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(232, 129, 58, 0.4);
  white-space: nowrap;
}

.story-text .sec-tag {
  color: var(--orange);
}
.story-text h2 {
  margin-bottom: 1.25rem;
}
.story-text .sec-body {
  margin-bottom: 1.25rem;
}
.story-text .story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-dark);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}
.story-text .story-link:hover {
  gap: 0.75rem;
}

/* ══ 5. VALUES ═══════════════════════════════════════════════ */
.values-section {
  background: var(--green);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(232, 129, 58, 0.12) 0%,
    transparent 60%
  );
}
.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.values-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.values-head .sec-tag {
  color: var(--orange-light);
}
.values-head h2 {
  color: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.value-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  display: block;
}
.value-card h3 {
  
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.value-card p {
  
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

/* ══ 6. TIMELINE ═════════════════════════════════════════════ */
.timeline-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.timeline-head {
  text-align: center;
  margin-bottom: 4rem;
}
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-gold) 10%,
    var(--border-gold) 90%,
    transparent
  );
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 3rem;
  align-items: start;
}
.tl-item:nth-child(odd) .tl-content {
  grid-column: 1;
  text-align: right;
  padding-right: 2rem;
}
.tl-item:nth-child(odd) .tl-dot-col {
  grid-column: 2;
}
.tl-item:nth-child(odd) .tl-empty {
  grid-column: 3;
}
.tl-item:nth-child(even) .tl-empty {
  grid-column: 1;
}
.tl-item:nth-child(even) .tl-dot-col {
  grid-column: 2;
}
.tl-item:nth-child(even) .tl-content {
  grid-column: 3;
  text-align: left;
  padding-left: 2rem;
}
.tl-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.3rem;
}
.tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--cream);
  z-index: 1;
  position: relative;
}
.tl-year {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 0.5rem;
}
.tl-content h4 {
  
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.tl-content p {
  
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ══ 7. FOUNDER SECTION ══════════════════════════════════════ */
.founder-section {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.founder-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(61, 90, 46, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* MAIN FOUNDER */
.founder-main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
  /* margin-bottom: 5rem; */
}
.founder-img-col {
  position: relative;
}
.founder-img-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 80px rgba(61, 90, 46, 0.15);
  position: relative;
}
.founder-img-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.founder-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 50, 15, 0.3) 0%,
    transparent 50%
  );
}
/* Decorative quote corner */
.founder-quote-bubble {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green);
  color: white;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  max-width: 220px;
  box-shadow: 0 12px 40px rgba(61, 90, 46, 0.3);
  border: 3px solid var(--cream-dark);
}
.founder-quote-bubble p {
  
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}
.founder-quote-bubble cite {
  font-size: 0.72rem;
  color: var(--orange-light);
  margin-top: 0.5rem;
  display: block;
}

.founder-text {
  padding-top: 1rem;
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-pale);
  border: 1px solid rgba(61, 90, 46, 0.2);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.founder-name {
  
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.founder-title {
  
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}
.founder-bio {
  
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.founder-bio strong {
  color: var(--green);
  font-weight: 600;
}

/* Achievement chips */
.founder-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.75rem 0;
}
.ach-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.ach-chip .chip-icon {
  font-size: 0.95rem;
}
.founder-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.founder-social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.8rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
}
.founder-social-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ══ 8. STATS ════════════════════════════════════════════════ */
.stats-section {
  background: var(--green);
  padding: 5rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-item:hover::before {
  opacity: 1;
}
.stat-num {
  
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  counter-reset: num;
}
.stat-num sup {
  font-size: 1.4rem;
  vertical-align: super;
}
.stat-num span {
  color: var(--orange-light);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.stat-sub {
  
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
}

/* ══ 9. PHILOSOPHY ═══════════════════════════════════════════ */
.philosophy-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophy-text h2 {
  margin-bottom: 1.25rem;
}
.philosophy-text .sec-body {
  margin-bottom: 1.5rem;
}
.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.pillar:hover {
  border-color: var(--border-gold);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.1);
}
.pillar-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--border-gold);
}
.pillar h4 {
  
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.pillar p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}
.philosophy-visual {
  position: relative;
}
.philosophy-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.phi-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.phi-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.phi-img.tall img {
  aspect-ratio: 2/3;
}
.phi-img.short img {
  aspect-ratio: 3/4;
}
.phi-img.wide {
  grid-column: 1 / -1;
}
.phi-img.wide img {
  aspect-ratio: 16/6;
}

/* ══ 10. AWARDS & RECOGNITION ════════════════════════════════ */
.awards-section {
  background: var(--cream-deeper);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
}
.awards-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.awards-head {
  text-align: center;
  margin-bottom: 3rem;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.award-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.award-card:hover {
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.14);
  transform: translateY(-4px);
  border-color: var(--border-gold);
}
.award-icon {
  font-size: 2.4rem;
  margin-bottom: 0.9rem;
  display: block;
}
.award-year {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}
.award-card h4 {
  
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}
.award-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ══ 11. COMMUNITY IMPACT ════════════════════════════════════ */
.impact-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.impact-img {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(61, 90, 46, 0.12);
}
.impact-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4/4;
  object-fit: contain;
}
.impact-text h2 {
  margin-bottom: 1.25rem;
}
.impact-text .sec-body {
  margin-bottom: 1.5rem;
}
.impact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0;
}
.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.impact-list li::before {
  content: "✦";
  color: var(--orange);
  font-size: 0.7rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* ══ 14. CTA BAND ════════════════════════════════════════════ */
.cta-band {
  background: var(--green);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 129, 58, 0.16) 0%,
    transparent 65%
  );
}
.cta-band .ctag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-light);
  display: block;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-band .ctag::before {
  content: "- ";
}
.cta-band h2 {
  
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: white;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-band p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-primary {
  background: var(--orange);
  color: white;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;

  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.cta-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
.cta-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;

  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cta-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .reveal-left.visible{
    position: static;
    top: 0;    
  }
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 4rem 2rem;
  }
  .founder-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founder-img-col {
    max-width: 420px;
  }
  .founder-quote-bubble {
    right: 0;
  }
  .story-grid,
  .philosophy-grid,
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-img-float {
    display: none;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .co-founders-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 768px) {
  .story-year-pill{
    left: 1rem;
  }
  .timeline-section, .story-section, .values-section, .founder-section, .stats-section, .philosophy-section, .awards-section, .impact-section{
    padding: 3rem 1rem;
    overflow-x: hidden;
  }
  .values-head{
    margin-bottom: 1.5rem;
  }
  
  .timeline::before {
    left: 24px;
  }
  .tl-item {
    grid-template-columns: 60px 1fr;
  }
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content {
    grid-column: 2;
    text-align: left;
    padding-left: 1.5rem;
    padding-right: 0;
  }
  .tl-item:nth-child(odd) .tl-dot-col,
  .tl-item:nth-child(even) .tl-dot-col {
    grid-column: 1;
  }
  .tl-empty {
    display: none;
  }
  .co-founders-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
    .hero-eyebrow{
     font-size: 0.65rem;
    }
    .hero-sub {
  font-size: 1rem;
}
  .hero-stats {
    gap: 1.5rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .awards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .philosophy-img-grid {
    grid-template-columns: 1fr;
  }
  .phi-img.wide {
    grid-column: 1;
  }
}
@media (max-width: 420px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------- */
/* ===== TESTIMONIALS SWIPER ===== */
.testimonials-section {
  background-image: url(../../images/bg/testimonial-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  position: relative;
  z-index: 2;
  max-width: 1420px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-header h2 {
  
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 400;
  color: var(--green);
}
.testimonials-header p {
  font-size: clamp(14px, 1.1vw, 18px);
  color: var(--muted);
  margin-top: 14px;
}

.reviews-swiper {
  padding-bottom: 50px !important;
}
.reviews-swiper .swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  border-radius: 4px;
  background: #ddd;
  opacity: 1;
}
.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--green);
}

.review-card {
  background: #fff;
  padding: clamp(22px, 2.5vw, 25px);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.review-stars {
  display: flex;
  gap: 4px;
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 16px;
}
.review-text {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 22px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}
.reviewer-name {
  font-size: 16px;
  font-weight: 600;
}
.reviewer-loc {
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb-wrap {
  padding: 12px 0;
  background: #f8f8f8;
  font-size: 14px;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  color: #777;
}

.breadcrumb li a {
  text-decoration: none;
  color: #385632;
  font-weight: 500;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 6px;
  color: #aaa;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb .active {
  color: #000;
  font-weight: 600;
}
