/* ============================================
   ECOG – style.css  (Responsive Rewrite)
   Breakpoints:
     Mobile  : ≤ 480px
     Tablet  : 481px – 820px
     Desktop : > 820px
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111111;
  min-height: 100vh;
  overflow-x: hidden;
}


img {
  max-width: 100%;
  display: block;
}
/* ============================================
   SECTION 1 — HERO
   ============================================ */

/* --- Animations --- */
.hero-animate {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-animate.in-view {
  opacity: 1;
  transform: translateX(0);
}
.hero-animate-delay-1 { transition-delay: 0.15s; }
.hero-animate-delay-2 { transition-delay: 0.3s; }

/* --- Wrapper --- */
.hero-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 24px 0;
  box-sizing: border-box;
}

/* --- Card --- */
.hero-card {
  background: #ddebd7;
  border-radius: 24px;
  padding: 48px 48px 44px 56px;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  width: 100%;
  max-width: 1245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* --- Left block --- */
/* Title is full-width — no max-width restriction */
.hero-left {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- TITLE: spans full card width, text goes behind video --- */
.hero-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: #111111;
  margin: 0 0 28px 0;
  white-space: nowrap;
  line-height: 1;        /* tight — no gap between lines */
  font-size: 0;          /* reset font-size so each span controls its own */
}

.hero-title-name {
  font-size: clamp(32px, 6.2vw, 90px);
  font-weight: 700;
  display: block;
  line-height: 1.08;
  margin-bottom: 0;
}

.hero-title-sub {
  font-size: clamp(26px, 5vw, 72px);
  font-weight: 700;
  display: block;
  line-height: 1.08;
  margin-bottom: 0;
}

.hero-title-ecog {
  font-size: clamp(26px, 5vw, 72px);
  font-weight: 700;
  display: block;
  line-height: 1.08;
}

/* --- Links (below ECOG Groups, left side only) --- */
.hero-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  /* Constrain links to left ~45% so they don't go under video */
  max-width: 46%;
  position: relative;
  z-index: 3;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 500;
  color: #6b4f35;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hero-link:hover { opacity: 0.72; }

.link-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #8aaa7a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.link-icon img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- VIDEO: floats top-right, tall, overlaps title rows 1 & 2 --- */
.hero-video-wrap {
  position: absolute;
  right: 40px;
  top: 36%;          /* aligns with card top padding */
  width: 662px;
  height: 400px;        /* tall — matches photo height in reference */
  overflow: hidden;
  z-index: 1;         /* sits BEHIND title text (z-index 2) */
  border-radius: 18px;
}

/* Slide in from right */
.hero-video-wrap.hero-animate {
  opacity: 0;
  transform: translateX(60px);
}
.hero-video-wrap.hero-animate.in-view {
  opacity: 1;
  transform: translateX(0);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

/* --- Custom play/pause + mute controls --- */
.hero-video-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-vid-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-vid-btn:hover { background: rgba(0, 0, 0, 0.65); transform: scale(1.06); }
.hero-vid-btn:focus-visible { outline: 2px solid #ffffff; outline-offset: 2px; }

.hero-vid-btn svg {
  width: 16px;
  height: 16px;
  display: none;
}

.hero-vid-btn.is-playing .icon-pause { display: block; }
.hero-vid-btn:not(.is-playing) .icon-play { display: block; }

.hero-vid-btn.is-muted .icon-muted { display: block; }
.hero-vid-btn:not(.is-muted) .icon-unmuted { display: block; }

/* Placeholder */
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #4a6e40 0%, #1e3318 100%);
  z-index: 2;
  gap: 14px;
}
.hero-video-placeholder svg { width: 60px; height: 60px; }
.hero-video-placeholder p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Bottom Bar --- */
.hero-bottom {
  position: relative;
  z-index: 3;
  margin-top: 32px;
}

.section-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 14px 0;
}

.firm-logos {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.firm-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.firm-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.firm-badge:hover { transform: scale(1.08); }

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(13.5rem, 0.7fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "left video"
    "bottom video";
  column-gap: clamp(2rem, 4vw, 3.5rem);
  row-gap: 2.5rem;
  align-items: start;
}

.hero-left {
  grid-area: left;
  min-width: 0;
}

.hero-bottom {
  grid-area: bottom;
  margin-top: 0;
  align-self: end;
}

.hero-video-wrap {
  grid-area: video;
  position: relative;
  right: auto;
  top: auto;
  width: min(100%, 15rem);
  aspect-ratio: 9 / 16;
  height: auto;
  justify-self: end;
  align-self: start;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  border-radius: 1.25rem;
  overflow: hidden;
  background: #244d20;
  border: 0.0625rem solid rgba(12, 60, 1, 0.12);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
}

.hero-video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  overflow: hidden;
  background: #244d20;
}

.hero-video-wrap.hero-animate {
  opacity: 0;
  transform: translateX(60px);
}

.hero-video-wrap.hero-animate.in-view {
  opacity: 1;
  transform: translateX(0);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video-placeholder {
  display: none;
}

.hero-links {
  max-width: 100%;
}

@media (max-width: 64rem) and (min-width: 48.0625rem) {
  .hero-card {
    grid-template-columns: minmax(0, 1.5fr) minmax(11rem, 0.5fr);
    column-gap: 2rem;
    row-gap: 2rem;
  }

  .hero-video-wrap {
    width: min(100%, 13.5rem);
    margin-top: 2rem;
  }

  .hero-title {
    white-space: normal;
  }
}

@media (max-width: 48rem) {
  .hero-wrapper {
    padding: 1.25rem 1rem 0;
  }

  .hero-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "bottom"
      "video";
    row-gap: 1.5rem;
    padding: 1.75rem 1.25rem 1.75rem;
    min-height: auto;
    border-radius: 1.125rem;
    align-items: stretch;
  }

  .hero-video-wrap {
    justify-self: center;
    width: min(100%, 16rem);
    margin-top: 0;
  }

  .hero-bottom {
    margin-top: 0;
  }

  .hero-title {
    white-space: normal;
    margin-bottom: 1rem;
  }

  .hero-links {
    gap: 0.75rem;
  }
}

/* ============================================
   TABLET  (481px – 900px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-card {
    padding: 36px 32px 32px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-title {
    font-size: clamp(24px, 5vw, 48px);
    white-space: normal;
  }

  .hero-links { max-width: 100%; }

  /* Video becomes block below title on tablet */
  .hero-video-wrap {
    position: relative !important;
    right: auto; top: auto;
    width: 100%;
    height: 280px;
    border-radius: 14px;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-bottom { margin-top: 0; }
}

/* ============================================
   MOBILE  (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-wrapper { padding: 20px 16px 0; }

  .hero-card {
    padding: 28px 20px 28px;
    border-radius: 18px;
    gap: 16px;
  }

  .hero-title { font-size: 26px; white-space: normal; margin-bottom: 16px; }
  .hero-title-sub,
  .hero-title-ecog { font-size: 22px; }

  .hero-links { gap: 12px; max-width: 100%; }
  .hero-link { font-size: 14px; gap: 10px; }
  .link-icon { width: 36px; height: 36px; }
  .link-icon img { width: 36px; height: 36px; }

  .hero-video-wrap {
    position: relative !important;
    right: auto; top: auto;
    width: 100%;
    height: 220px;
    border-radius: 12px;
    opacity: 1 !important;
    transform: none !important;
  }

  .section-label { font-size: 17px; }
  .firm-badge { width: 42px; height: 42px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero-animate {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
}

/* ============================================
   SECTION 2 — ABOUT ME
 /* ============================================
   SECTION 2 — ABOUT ME
   ============================================ */
.about-section {
  width: 100%;
  background: #ffffff;
  padding: 72px 40px;
  margin-top: 40px;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-photo-wrap {
  flex: 0 0 520px;
  width: 520px;
  height: 460px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #ddebd7; /* Changed to match theme if image loads slowly */
}
/* 
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fit;
  object-position: top center;
  border-radius: 0; 
  display: block;
} */


.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  display: block;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit:contain; /* CHANGED FROM CONTAIN TO COVER - THIS FILLS THE BOX */
  object-position: top center;
  border-radius: 0; /* REMOVED INNER RADIUS SO IT TOUCHES EDGES FULLY */
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-heading {
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-desc {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 34px;
  font-weight: 700;
  color: #111111;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #555555;
  line-height: 1.4;
}

.about-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 80px;
}

.about-firm-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.about-firm-badge {
  height: 36px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.about-firm-badge img {
  height: 80%;
  width: auto;
  object-fit: contain;
}
.about-firm-badge:hover { transform: scale(1.08); }

.about-cta {
  background: #e8f0e4;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #2a2a2a;
  text-align: center;
  width: 100%;
  letter-spacing: 0.2px;
  line-height: 1.6;
}

.animate-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}
.animate-left.in-view  { opacity: 1; transform: translateX(0); }
.animate-right.in-view { opacity: 1; transform: translateX(0); }

/* ============================================
   ABOUT — TABLET  (≤ 820px)
   ============================================ */
@media (max-width: 820px) {
  .about-section { padding: 40px 28px; margin-top: 28px; }

  .about-container {
    flex-direction: column;
    gap: 24px;
  }

  .about-photo-wrap {
    flex: none;
    width: 100%;
    height: 350px; /* Increased height for tablet so it fills better */
    order: -1;
    border-radius: 12px;
  }

  .about-content {
    order: 0;
  }

  .about-stats { gap: 20px; }
  .stat-number { font-size: 28px; }

  .about-firm-row { gap: 14px; }
}

/* ============================================
   ABOUT — MOBILE  (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .about-section { padding: 28px 16px; margin-top: 20px; }

  .about-photo-wrap {
    height: 220px;
    border-radius: 12px;
    order: -1;
  }

  .about-photo-wrap img,
  .photo-placeholder img {
    border-radius: 12px;
  }

  .about-content {
    order: 0;
    padding-top: 0;
  }

  .about-heading { font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; }
  .about-desc { font-size: 13px; margin-bottom: 20px; }

  .about-stats { gap: 14px; }
  .stat-number { font-size: 24px; }
  .stat-label { font-size: 12px; }

  .about-cta { font-size: 12px; padding: 12px 14px; }
}

/* ============================================
   SECTION 3 — PROFESSIONAL OVERVIEW (Accordion)
   ============================================ */
.pro-section {
  width: 100%;
  background: #ffffff;
  padding: 72px 40px;
}

.pro-container {
  max-width: 1245px;
  margin: 0 auto;
}
/* 
.pro-heading {
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
} */


.pro-heading {
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;

  opacity: 0;
  transform: translateY(-40px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.pro-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


.acc-item {
  border-radius: 10px;
  overflow: visible;
  margin-bottom: 12px;
  border: 1px solid #b8cdb4;
}

.acc-header {
  width: 100%;
  height:72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #8faf89;
  border: none;
  padding: 18px 24px;
  cursor: pointer;
  border-radius: 10px !important;
  transition: background 0.2s;
}
.acc-item.active .acc-header {
  border-radius: 10px 10px 0 0 !important;
}
.acc-header:hover { background: #7fa279; }

.acc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  color: #ffffff;
  text-align: left;
}

.acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.acc-icon-svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  transition: transform 0.35s ease;
  transform: rotate(180deg);
}
.acc-item:not(.active) .acc-icon-svg {
  transform: rotate(0deg);
}

.acc-body {
  background: #f0f4ee;
  max-height: 0;
  overflow: hidden !important;
  transition: max-height 0.45s ease, padding 0.3s ease;
  border-radius: 0 0 10px 10px;
}
.acc-item.active .acc-body {
  max-height: 700px;
}

.acc-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 24px;
}

.acc-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acc-text p {
  font-size: 19px;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.8;
}

#acc-2 .acc-text p,
#acc-3 .acc-text p,
#acc-4 .acc-text p,
#acc-6 .acc-text p {
  text-align: justify;
}

.acc-img-wrap {
  flex: 0 0 480px;
  width: 480px;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #d0d8cc;
}
.acc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ============================================
   JOURNEY — leadership timeline (hover cards)
   ============================================ */
.journey-section{
  --dark-green:#0C3C01;
  --mid-green:#5B6D49;
  --accent-green:#A3AB82;
  --bg:#F1F2ED;
  --card:#FFFFFF;
  --text:#000000;
  --text-soft:#5B5B5B;

  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: var(--bg);
  padding: 110px 34px 110px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
}

.journey-section::before{
  content:"";
  position:absolute;
  top:0; right:0; bottom:0; width:38%;
  background:
    radial-gradient(circle at 85% 20%, rgba(12,60,1,0.05) 0, transparent 45%),
    radial-gradient(circle at 95% 80%, rgba(163,171,130,0.14) 0, transparent 40%);
  pointer-events:none;
}

.journey-section .timeline-wrap{
  position:relative;
  height:290px;
  margin-top:6px;
  z-index:2;
}

.journey-section .timeline-track{
  position:absolute;
  left:0; right:36px;
  top:50%;
  height:3px;
  background:linear-gradient(90deg, var(--accent-green) 0%, var(--mid-green) 45%, var(--dark-green) 100%);
  transform:translateY(-50%);
  border-radius:3px;
}

.journey-section .arrow-end{
  position:absolute;
  right:25px;
  top:50%;
  transform:translateY(-50%);
  width:0; height:0;
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
  border-left:11px solid var(--dark-green);
}

.journey-section .milestones{
  position:relative;
  display:flex;
  justify-content:space-between;
  height:100%;
  z-index:3;
}

.journey-section .milestone{
  position:relative;
  width:9.6%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  opacity:0;
  transform:translateY(28px);
  transition:opacity 1.3s cubic-bezier(.16,1,.3,1), transform 1.3s cubic-bezier(.16,1,.3,1);
}

.journey-section.is-visible .milestone{
  opacity:1;
  transform:translateY(0);
}

.journey-section .milestone:nth-child(1)  { transition-delay: .05s; }
.journey-section .milestone:nth-child(2)  { transition-delay: .12s; }
.journey-section .milestone:nth-child(3)  { transition-delay: .19s; }
.journey-section .milestone:nth-child(4)  { transition-delay: .26s; }
.journey-section .milestone:nth-child(5)  { transition-delay: .33s; }
.journey-section .milestone:nth-child(6)  { transition-delay: .40s; }
.journey-section .milestone:nth-child(7)  { transition-delay: .47s; }
.journey-section .milestone:nth-child(8)  { transition-delay: .54s; }
.journey-section .milestone:nth-child(9)  { transition-delay: .61s; }
.journey-section .milestone:nth-child(10) { transition-delay: .68s; }

@media (prefers-reduced-motion: reduce){
  .journey-section .milestone{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.journey-section .marker{
  width:15px; height:15px;
  border-radius:50%;
  background:var(--dark-green);
  border:3px solid var(--bg);
  box-shadow:0 0 0 1.5px var(--accent-green);
  position:relative;
  z-index:4;
  transition:transform .28s ease, box-shadow .28s ease;
}
.journey-section .milestone.strong .marker{ width:19px; height:19px; }
.journey-section .milestone.today .marker{
  width:23px; height:23px;
  background:var(--dark-green);
  box-shadow:0 0 0 2px var(--accent-green), 0 0 0 6px rgba(12,60,1,0.12);
  animation:journeyMarkerPulse 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce){
  .journey-section .milestone.today .marker{ animation:none; }
}
@keyframes journeyMarkerPulse {
  0%,100%{ box-shadow:0 0 0 2px var(--accent-green), 0 0 0 6px rgba(12,60,1,0.12); }
  50%{ box-shadow:0 0 0 2px var(--accent-green), 0 0 0 10px rgba(12,60,1,0.05); }
}
.journey-section .milestone:hover .marker,
.journey-section .milestone:focus-within .marker{ transform:scale(1.25); }

.journey-section .year-label{
  font-size:11.5px;
  font-weight:700;
  color:var(--dark-green);
  margin:4px 0;
  white-space:nowrap;
}

.journey-section .connector{
  position:absolute;
  left:50%;
  width:1px;
  background:var(--accent-green);
  transform:translateX(-50%);
}
.journey-section .milestone.above .connector{ bottom:50%; height:26px; margin-bottom:8px; }
.journey-section .milestone.below .connector{ top:50%; height:26px; margin-top:8px; }

.journey-section .card{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:150px;
  background:var(--card);
  border:1px solid var(--accent-green);
  border-radius:13px;
  padding:10px 11px 9px;
  box-shadow:0 3px 10px rgba(12,60,1,0.07);
  text-align:left;
  transition:box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  cursor:default;
}
.journey-section .milestone.above .card{ bottom:calc(50% + 34px); }
.journey-section .milestone.below .card{ top:calc(50% + 34px); }

.journey-section .milestone:hover .card,
.journey-section .milestone:focus-within .card{
  box-shadow:0 8px 20px rgba(12,60,1,0.16);
  border-color:var(--dark-green);
  transform:translateX(-50%) translateY(-2px);
}

.journey-section .card-icon{
  width:22px; height:22px;
  margin-bottom:6px;
  color:var(--dark-green);
}
.journey-section .card-year{
  font-size:12px;
  font-weight:700;
  color:var(--dark-green);
  margin:0 0 2px;
}
.journey-section .card-title{
  font-size:11px;
  font-weight:600;
  color:var(--text);
  margin:0 0 4px;
  line-height:1.3;
}
.journey-section .card-desc{
  font-family:'Outfit',sans-serif;
  font-size:9.8px;
  line-height:1.4;
  color:var(--text-soft);
  margin:0;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .3s ease, opacity .3s ease, margin .3s ease;
}
.journey-section .milestone:hover .card-desc,
.journey-section .milestone:focus-within .card-desc{
  max-height:90px;
  opacity:1;
  margin-top:2px;
}

.journey-section .milestone.today .card{
  border-color:var(--dark-green);
  box-shadow:0 6px 18px rgba(12,60,1,0.18);
}

.journey-section .milestone:focus-visible{ outline:none; }
.journey-section .marker:focus-visible{ outline:2px solid var(--dark-green); outline-offset:3px; }

#acc-5 .journey-section{
  padding: 72px 26px 76px;
}

#acc-5 .timeline-wrap{
  height: 220px;
  margin-top: 0;
}

#acc-5 .journey-end-label{
  position: relative;
  display: block;
  width: 100%;
  margin: 1rem auto 0;
  color: var(--dark-green);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

#acc-5 .milestone{
  width: 18%;
}

#acc-5 .marker{
  width: 4rem;
  height: 4rem;
  background: #ffffff;
  border: 0.125rem solid var(--accent-green);
  box-shadow: 0 0 0 0.0625rem rgba(12,60,1,0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
}

#acc-5 .marker img{
  width: 2.95rem;
  height: 2.95rem;
  object-fit: contain;
  display: block;
}

#acc-5 .year-label{
  display: none;
}

#acc-5 .card{
  width: 14rem;
}

#acc-5 .milestone.above .card{
  bottom: calc(50% + 30px);
}

#acc-5 .milestone.below .card{
  top: calc(50% + 30px);
}

#acc-5 .milestone.above .connector,
#acc-5 .milestone.below .connector{
  height: 28px;
  margin: 0;
}

#acc-5 .card-desc{
  max-height: none;
  opacity: 1;
  margin-top: 0.125rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

#acc-5 .milestone:hover .card,
#acc-5 .milestone:focus-within .card{
  transform: translateX(-50%) translateY(-1px);
}

#acc-5 .card-year{
  font-size: 1rem;
}

#acc-5 .card-title{
  font-size: 1.08rem;
  line-height: 1.2;
}

@media (max-width: 1100px) and (min-width: 601px){
  #acc-5 .journey-section{
    padding: 64px 18px 68px;
  }

  #acc-5 .timeline-wrap{
    height: 200px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  #acc-5 .timeline-track{
    right: 24px;
  }

  #acc-5 .arrow-end{
    right: 13px;
  }

  #acc-5 .milestones{
    width: 980px;
  }

  #acc-5 .milestone{
    width: 8.75rem;
    scroll-snap-align: start;
  }

  #acc-5 .card{
    width: 11rem;
    padding: 0.85rem 0.95rem 0.85rem;
  }

  #acc-5 .marker{
    width: 3.35rem;
    height: 3.35rem;
  }

  #acc-5 .marker img{
    width: 2.2rem;
    height: 2.2rem;
  }

  #acc-5 .card-year{
    font-size: 0.92rem;
  }

  #acc-5 .card-title{
    font-size: 1rem;
  }

  #acc-5 .card-desc{
    font-size: 0.78rem;
  }

  #acc-5 .milestone.above .connector,
  #acc-5 .milestone.below .connector{
    height: 24px;
  }

  #acc-5 .milestone.above .card{
    bottom: calc(50% + 36px);
  }

  #acc-5 .milestone.below .card{
    top: calc(50% + 36px);
  }
}

@media (max-width: 600px){
  #acc-5 .journey-section{
    padding: 1.5rem 1rem 2rem;
    height: auto;
    border-radius: 0;
  }

  #acc-5 .timeline-wrap{
    height: auto;
    margin-top: 10px;
  }

  #acc-5 .timeline-track,
  #acc-5 .arrow-end{
    display: none;
  }

  #acc-5 .vline{
    position: absolute;
    left: 0.625rem;
    top: 0.375rem;
    bottom: 0.375rem;
    width: 0.125rem;
    background: linear-gradient(180deg, var(--accent-green), var(--dark-green));
  }

  #acc-5 .milestones{
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  #acc-5 .milestone{
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 0 1rem 0;
  }

  #acc-5 .milestone .marker{
    position: relative;
    margin-top: 0.25rem;
    flex-shrink: 0;
    order: 1;
  }

  #acc-5 .connector{
    display: none;
    order: 2;
  }

  #acc-5 .card{
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: auto;
    flex: 1;
    min-width: 0;
    margin-left: 0.625rem;
    order: 3;
    padding: 0.8rem 0.85rem;
  }

  #acc-5 .marker{
    width: 3.25rem;
    height: 3.25rem;
  }

  #acc-5 .marker img{
    width: 2.2rem;
    height: 2.2rem;
  }

  #acc-5 .card-year{
    font-size: 0.92rem;
  }

  #acc-5 .card-title{
    font-size: 1rem;
  }

  #acc-5 .card-desc{
    font-size: 0.75rem;
  }

  #acc-5 .journey-end-label{
    margin-top: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    white-space: normal;
    line-height: 1.35;
  }

  #acc-5 .milestone:hover .card,
  #acc-5 .milestone:focus-within .card{
    transform: none;
    box-shadow: 0 6px 16px rgba(12,60,1,0.12);
  }

  #acc-5 .milestone:hover .marker,
  #acc-5 .milestone:focus-within .marker{
    transform: none;
  }

  #acc-5 .milestone.above .card,
  #acc-5 .milestone.below .card{
    position: relative;
    bottom: auto;
    top: auto;
  }

  #acc-5 .card-desc{
    max-height: none;
    opacity: 1;
    margin-top: 4px;
  }
}

@media (max-width: 1100px) and (min-width: 601px){
  .acc-inner{
    padding: 18px 16px 20px;
  }

  .journey-section{
    padding:20px 14px 24px;
  }

  .journey-section .timeline-wrap{
    height:250px;
    overflow-x:auto;
    overflow-y:visible;
    scroll-snap-type:x mandatory;
    padding-bottom: 6px;
  }

  .journey-section .timeline-track{
    right: 24px;
  }

  .journey-section .arrow-end{
    right: 13px;
  }

  .journey-section .milestones{
    width: 980px;
  }

  .journey-section .milestone{
    width: 98px;
    scroll-snap-align:start;
  }

  .journey-section .card{
    width: 128px;
    padding: 8px 9px 8px;
  }

  .journey-section .card-icon{
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
  }

  .journey-section .card-year{
    font-size: 10.5px;
  }

  .journey-section .card-title{
    font-size: 9.8px;
    line-height: 1.25;
  }

  .journey-section .card-desc{
    font-size: 8.6px;
    line-height: 1.35;
  }

  .journey-section .milestone.above .connector,
  .journey-section .milestone.below .connector{
    height: 20px;
  }

  .journey-section .milestone.above .card{
    bottom: calc(50% + 30px);
  }

  .journey-section .milestone.below .card{
    top: calc(50% + 30px);
  }
}

@media (max-width: 600px){
  .journey-section{ padding:26px 18px; height:auto; border-radius:0; }

  .journey-section .timeline-wrap{ height:auto; margin-top:10px; }
  .journey-section .timeline-track{ display:none; }
  .journey-section .arrow-end{ display:none; }
  .journey-section .vline{
    position:absolute; left:10px; top:6px; bottom:6px; width:2px;
    background:linear-gradient(180deg, var(--accent-green), var(--dark-green));
  }
  .journey-section .milestones{ flex-direction:column; height:auto; gap:0; }
  .journey-section .milestone{ width:100%; flex-direction:row; align-items:flex-start; justify-content:flex-start; padding:0 0 22px 0; }
  .journey-section .milestone .marker{ position:relative; margin-top:4px; flex-shrink:0; order:1; }
  .journey-section .connector{ display:none; order:2; }
  .journey-section .year-label{ display:none; order:4; }
  .journey-section .card{ position:relative; left:auto; top:auto; bottom:auto; transform:none; width:100%; margin-left:14px; order:3; }
  .journey-section .milestone.above .card, .journey-section .milestone.below .card{ position:relative; bottom:auto; top:auto; }
  .journey-section .card-year{ display:inline; margin-right:6px; }
  .journey-section .card-title{ display:inline; }
  .journey-section .card-desc{ max-height:none; opacity:1; margin-top:4px; display:block; }

  /* Keep tapped cards anchored on touch devices */
  .journey-section .milestone:hover .marker,
  .journey-section .milestone:focus-within .marker{
    transform:none;
  }

.journey-section .milestone:hover .card,
.journey-section .milestone:focus-within .card{
  transform:none;
  box-shadow:0 6px 16px rgba(12,60,1,0.12);
  }
}

/* ============================================
   LEADERSHIP JOURNEY — vertical timeline (#acc-5 only)
   ============================================ */
/* ============================================
   ACCORDION — TABLET  (≤ 820px)
   ============================================ */
@media (max-width: 820px) {
  .pro-section { padding: 48px 28px; }

  .acc-inner {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .acc-img-wrap {
    order: 1; 
    flex: none;
    width: 100%;
    height: 220px;
  }
  
  .acc-text {
    order: 2;
    flex: none;
  }
}

/* ============================================
   ACCORDION — MOBILE  (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .pro-section {
    padding: 28px 16px;
  }

  .pro-heading {
    margin-bottom: 14px;
  }

  .acc-item {
    margin-bottom: 8px;
  }

  .acc-header {
    padding: 12px 14px;
  }

  .acc-inner {
    padding: 12px;
    gap: 12px;
  }

  .acc-img-wrap {
    order: 1;
    flex: none;
    width: 100%;
    height: 180px;
  }
  
  .acc-text {
    order: 2;
    flex: none;
  }

  .acc-text p {
    font-size: 13px;
    margin-bottom: 0;
  }

  .acc-item.active .acc-body {
    max-height: 1200px;
  }
}




/* ============================================
   SECTION 4 — VENTURES
   ============================================ */
.ventures-section {
  width: 100%;
  background: #ffffff;
  padding: 72px 40px;
  /* border:2px solid red; */
}

.ventures-container {
  max-width: 1240px;
  margin: 0 auto;
}

.ventures-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
  /* border:2px solid blue; */
}

.ventures-heading {
  font-size: clamp(18px, 2.2vw, 27px);
  font-weight: 700;
  color: #111111;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  /* border:2px solid red; */
}

.ventures-desc {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  line-height: 1.75;
  max-width: 620px;

}

.ventures-divider {
  width: 100%;
  height: 1px;
  background: #d8d8d8;
}

.venture-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, padding 0.2s;
  border-radius: 4px;
}
.venture-row:hover {
  background: #f8faf7;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
}

.venture-left { flex: 1; min-width: 0; }

.venture-name {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.venture-desc {
  font-size: 15px;
  font-weight: 400;
  color: #444444;
  line-height: 1.7;
}

.venture-arrow {
  font-size: 14px;
  color: #444444;
  margin-left: 4px;
  transition: transform 0.2s, color 0.2s;
  display: inline-block;
}
.venture-row:hover .venture-arrow {
  transform: translateX(4px);
  color: #4a7c4e;
}

.venture-numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.venture-num {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.5px;
}

/* ============================================
   VENTURES — TABLET  (≤ 820px)
   ============================================ */
@media (max-width: 820px) {
  .ventures-section { padding: 56px 28px; }

  .ventures-top {
    flex-direction: column;
    gap: 16px;
  }
  .ventures-desc { max-width: 100%; }

  .venture-row { gap: 20px; padding: 22px 0; }
  .venture-num  { font-size: 18px; }
}

/* ============================================
   VENTURES — MOBILE  (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .ventures-section { padding: 40px 16px; }

  .venture-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .venture-numbers {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .venture-desc { font-size: 13px; }
  .venture-num  { font-size: 16px; }
}

/* ============================================
   SECTION 5 — ACHIEVEMENTS
   (legacy scroll-stack rules removed — that markup
   no longer exists; the active gallery rules are
   further below, in the ACHIEVEMENTS GALLERY block)
   ============================================ */




/* ===== EXPERTISE SECTION ===== */

.expertise-section {
  width: 100%;
  padding: 36px 0 48px 0;
  background: #ffffff;
  overflow: hidden;
}
/* 
.expertise-heading {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  margin: 0 0 28px 20px;
} */



.expertise-heading {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  margin: 0 0 28px 20px;

  opacity: 0;
  transform: translateY(-40px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ── Track wrapper: clips the scrolling row ── */
.expertise-track-wrapper {
  /* width: 100%;
  max-width:1240px;
  overflow: hidden;
  margin-bottom: 14px;
  margin-left: 50px; */

  width: calc(100% - 100px);
  max-width:1240px;
  overflow: hidden;
  margin-bottom: 14px;
  margin-left: 50px;
  margin-right: 50px;

  cursor: default;
  /* Fade edges for a polished look on all screens */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

/* ── Track: the moving strip ── */
.expertise-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

/* ── Individual card ── */
.expertise-card {
  flex-shrink: 0;
  width: 230px;          /* comfortable on mobile */
  min-height: 120px;
  background: #f0f4ee;
  border-radius: 14px;
  padding: 24px 24px;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  /* Prevent text wrap from breaking card height */
  word-break: break-word;
  /* border:2px solid red; */
}

/* Lift on hover — desktop only; touch devices don't hover */
@media (hover: hover) {
  .expertise-card:hover {
    /* box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10); */
    /* transform: translateY(-2px); */
    border:2px solid #8aaa7a;
  }
}

.expertise-card h3 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.expertise-card p {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.55;
  margin: 0;
}

/* ── Tablet: 600px–1024px ── */
@media (min-width: 600px) {
  .expertise-section {
    padding: 42px 0 54px 0;
  }

  .expertise-heading {
    font-size: 25px;
    margin: 0 0 32px 32px;
  }

  .expertise-track-wrapper {
    margin-bottom: 15px;
  }

  .expertise-track {
    gap: 14px;
  }

  .expertise-card {
    width: 260px;
    min-height: 126px;
    padding: 20px 22px;
  }

  .expertise-card h3 {
    font-size: 14.5px;
  }

  .expertise-card p {
    font-size: 13px;
  }
}

/* ── Desktop: 1024px+ ── */
@media (min-width: 1024px) {
  .expertise-section {
    padding: 48px 0 60px 0;
  }

  .expertise-heading {
    font-size: 28px;
    margin: 0 0 36px 40px;
  }

  .expertise-track-wrapper {
    margin-bottom: 16px;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 4%,
      black 96%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 4%,
      black 96%,
      transparent 100%
    );
  }

  .expertise-track {
    gap: 16px;
  }

  .expertise-card {
    width: 280px;
    min-height: 130px;
    padding: 22px 24px;
  }

  .expertise-card h3 {
    font-size: 15px;
    margin: 0 0 10px 0;
  }

  .expertise-card p {
    font-size: 13.5px;
  }
}

/* ── Respect reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
  .expertise-track {
    animation: none !important;
    transform: none !important;
  }
}





/* ===== IMPACT CREATED SECTION ===== */

.impact-section {
  width: 100%;
  padding: 20px 16px;
  background: #ffffff;
  box-sizing: border-box;
}

.impact-inner {
  background: #8faa80;
  border-radius: 20px;
  padding: 32px 24px 36px;
  max-width: 1200px;
  height:510px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  /* border:2px solid red; */
}

/* ── TOP ROW ── */
.impact-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.impact-heading {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0;
  white-space: nowrap;
  /* Animation: top → down */
  opacity: 0;
  transform: translateY(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* border:2px solid red; */
}

.impact-tagline {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 14px;
  text-align: left;
  max-width: 340px;
  /* Animation: top → down */
  opacity: 0;
  transform: translateY(-32px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
  /* border:2px solid red; */
}

/* ── CARDS ── */
.impact-cards {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
}

.impact-card {
  background: #ffffff;
  border-radius: 16px;
  flex: 1;
  min-width: 0;
  padding: 20px 12px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  /* No animation — cards stay static always */
}

.impact-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.impact-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.impact-divider {
  width: 40px;
  height: 1.5px;
  background: #8faa80;
  border-radius: 2px;
  margin-bottom: 12px;
}

.impact-stat {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 8px;
  text-align: center;
  /* border:2px solid blue; */
}

.impact-stat--text {
  font-size: 24px;
  font-weight: 600;
}

.impact-label {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  text-align: center;
  line-height: 1.5;
  /* border:2px solid red; */
}

/* ── FOOTER TEXT ── */
.impact-footer {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
  margin: 24px 0 0 0;
  /* Animation: bottom → up */
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease 0.55s, transform 0.6s ease 0.55s;
  /* border:2px solid red; */
}

/* ── VISIBLE STATE (triggered by JS) ── */
.impact-section.impact-visible .impact-heading,
.impact-section.impact-visible .impact-tagline,
.impact-section.impact-visible .impact-footer {
  opacity: 1;
  transform: translateY(0);
}

/* ── TABLET: 600px–1024px ── */
@media (min-width: 600px) {
  .impact-inner {
    padding: 36px 28px 40px;
  }

  .impact-heading {
    font-size: 22px;
  }

  .impact-tagline {
    font-size: 13.5px;
  }

  .impact-stat {
    font-size: 30px;
  }

  .impact-label {
    font-size: 12.5px;
  }

  .impact-footer {
    font-size: 15.5px;
  }
}

/* ── DESKTOP: 1024px+ ── */
@media (min-width: 1024px) {
  .impact-section {
    padding: 28px 28px;
  }

  .impact-inner {
    padding: 40px 40px 44px;
  }

  .impact-heading {
    font-size: 24px;
  }

  .impact-tagline {
    font-size: 14px;
    max-width: 400px;
  }

  .impact-cards {
    gap: 16px;
  }

  .impact-card {
    padding: 24px 16px 26px;
  }

  .impact-icon-wrap {
    width: 72px;
    height: 72px;
  }

  .impact-stat {
    font-size: 34px;
  }

  .impact-stat--text {
    font-size: 28px;
  }

  .impact-label {
    font-size: 13px;
  }

  .impact-footer {
    font-size: 16px;
  }
}

/* ── MOBILE: stack top row, scroll cards ── */
@media (max-width: 599px) {
  .impact-inner {
    padding: 24px 16px 28px;
  }

  .impact-top {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .impact-tagline {
    text-align: left;
    max-width: 100%;
  }

  /* Horizontal scroll on mobile */
  .impact-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* fade right edge */
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }

  .impact-cards::-webkit-scrollbar {
    display: none;
  }

  .impact-card {
    min-width: 140px;
    flex: 0 0 140px;
    padding: 16px 10px 18px;
  }

  .impact-icon-wrap {
    width: 50px;
    height: 50px;
  }

  .impact-stat {
    font-size: 22px;
  }

  .impact-stat--text {
    font-size: 18px;
  }

  .impact-label {
    font-size: 11px;
  }

  .impact-footer {
    font-size: 13.5px;
    margin-top: 20px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .impact-heading,
  .impact-tagline,
  .impact-footer {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
}




/* ===== VENTURES SECTION ===== */

.ventures-section {
  width: 100%;
  padding: 48px 40px 60px;
  background: #ffffff;
  box-sizing: border-box;
  max-width: 1300px;
  margin: 0 auto;
}

/* ── TOP ROW ── */
.ventures-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ventures-section.ventures-animate .ventures-top {
  opacity: 0;
  transform: translateY(-24px);
}
.ventures-section.ventures-animate.ventures-visible .ventures-top {
  opacity: 1;
  transform: translateY(0);
}

.ventures-heading {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  margin: 0;
  white-space: nowrap;
}

.ventures-tagline {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin: 0;
  max-width: 580px;
  text-align: left;
  /* border:2px solid red; */
}

/* ── GRID ── */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #f5f5f0;
  border-radius: 20px;
  padding: 32px;
}

/* ── CARD — base (all cards) ── */
.ventures-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #fafafa;       /* white box — default */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

/* ── Card 1: blends with grid background ── */
.ventures-card:nth-child(1) {
  background: transparent;
}

/* Animation states */
.ventures-section.ventures-animate .ventures-card       { opacity: 0; transform: translateY(50px); }
.ventures-section.ventures-animate.ventures-visible .ventures-card { opacity: 1; transform: translateY(0); }

.ventures-section.ventures-animate .ventures-card:nth-child(1) { transition-delay: 0.05s; }
.ventures-section.ventures-animate .ventures-card:nth-child(2) { transition-delay: 0.15s; }
.ventures-section.ventures-animate .ventures-card:nth-child(3) { transition-delay: 0.25s; }
.ventures-section.ventures-animate .ventures-card:nth-child(4) { transition-delay: 0.35s; }

.ventures-card-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── LOGO AREA ── */
.ventures-logo-wrap {
  padding: 28px 24px 20px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ventures-logo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c8d8c0 0%, #8faa80 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.3;
  padding: 8px;
  box-sizing: border-box;
  animation: logoFloat 3.5s ease-in-out infinite;
}

.ventures-logo-placeholder--wide {
  width: 160px;
  height: 70px;
  border-radius: 10px;
}

.ventures-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  animation: logoFloat 3.5s ease-in-out infinite;
}

.ventures-logo--wide {
  width: 160px;
  height: 70px;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

.ventures-card:nth-child(1) .ventures-logo,
.ventures-card:nth-child(1) .ventures-logo-placeholder { animation: none; }
.ventures-card:nth-child(2) .ventures-logo,
.ventures-card:nth-child(2) .ventures-logo-placeholder { animation-delay: 0.8s; }
.ventures-card:nth-child(3) .ventures-logo,
.ventures-card:nth-child(3) .ventures-logo-placeholder { animation-delay: 1.6s; }
.ventures-card:nth-child(4) .ventures-logo,
.ventures-card:nth-child(4) .ventures-logo-placeholder { animation-delay: 2.4s; }

/* ── CARD BODY ── */
.ventures-card-body {
  padding: 0 24px 28px;
  flex: 1;
}

.ventures-card-title {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
  /* border:2px solid red; */
}

.ventures-card-desc {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.65;
  margin: 0;
}

/* ── HOVER OVERLAY ── */
.ventures-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(120, 120, 110, 0.82);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: opacity 0.35s ease;
  z-index: 10;
}

.ventures-card:hover .ventures-hover-overlay,
.ventures-card:focus .ventures-hover-overlay {
  opacity: 1;
}

.ventures-visit-btn {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  transform: scale(0.75);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.ventures-card:hover .ventures-visit-btn,
.ventures-card:focus .ventures-visit-btn {
  transform: scale(1);
  opacity: 1;
}

/* Desktop hover lift — only white cards (2,3,4) */
@media (hover: hover) {
  .ventures-card:nth-child(2):hover,
  .ventures-card:nth-child(3):hover,
  .ventures-card:nth-child(4):hover {
    /* box-shadow: 0 12px 32px rgba(0,0,0,0.12); */
    transform: translateY(-4px) !important;
  }
}

/* ── TABLET ── */
@media (max-width: 1023px) and (min-width: 600px) {
  .ventures-section { padding: 36px 24px 48px; }
  .ventures-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ventures-heading { font-size: 22px; }
  .ventures-tagline { font-size: 13px; }

  /* On tablet: card 1 gets a light background so it doesn't look odd in 2-col grid */
  .ventures-card:nth-child(1) {
    background: #f0f0eb;
  }
}

/* ── MOBILE ── */
@media (max-width: 599px) {
  .ventures-section { padding: 28px 16px 40px; }
  .ventures-top { flex-direction: column; gap: 12px; }
  .ventures-tagline { text-align: left; font-size: 13px; }
  .ventures-heading { font-size: 20px; }
  .ventures-grid { grid-template-columns: 1fr; gap: 12px; padding: 14px; }
  .ventures-logo-wrap { min-height: 110px; padding: 20px 20px 14px; }
  .ventures-logo, .ventures-logo-placeholder { width: 70px; height: 70px; }
  .ventures-logo--wide, .ventures-logo-placeholder--wide { width: 130px; height: 56px; }
  .ventures-card-body { padding: 0 20px 22px; }
  .ventures-card-title { font-size: 14px; }
  .ventures-card-desc { font-size: 12.5px; }
  .ventures-visit-btn { font-size: 20px; }

  /* On mobile: card 1 gets a light background too */
  .ventures-card:nth-child(1) {
    background: #f0f0eb;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ventures-logo, .ventures-logo-placeholder { animation: none !important; }
  .ventures-top, .ventures-card { transition: none !important; }
}





/* ===== TRUSTED BY SECTION ===== */

.tb-section {
  width: 100%;
  padding: 48px 0 56px;
  background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
  /* border:2px solid red; */
}

/* ── TOP ROW ── */
.tb-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 48px;
  margin-bottom: 32px;
  gap: 40px;

  /* Animation: top → bottom */
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.tb-section.tb-visible .tb-top {
  opacity: 1;
  transform: translateY(0);
}

.tb-heading {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin: 0;
  white-space: nowrap;
}

.tb-tagline {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.65;
  margin: 0;
  text-align: left;
  max-width: 460px;
  /* Slight delay so heading animates first */
  transition-delay: 0.12s;
}

/* ── TRACK WRAPPER ── */
/* .tb-track-wrapper {
  width: 100%;
  max-width:1240px;
  overflow: hidden;
  margin-bottom: 24px;
  margin-left:50px;
} */


.tb-track-wrapper {
  width: calc(100% - 100px);
  max-width:1240px;
  overflow: hidden;
  margin-bottom: 24px;
  margin-left:50px;
  margin-right:50px;
}

.tb-track-wrapper:last-child {
  margin-bottom: 0;
}

/* ── TRACK ── */
.tb-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* ── ITEM ── */
.tb-item {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  /* border-radius: 6px; */
  overflow: hidden;
  display: block;

  /* Hover scale */
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease;
}

@media (hover: hover) {
  .tb-item:hover {
    /* transform: scale(1.07);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    z-index: 10;
    position: relative; */
    border:2px solid #8aaa7a;
  }
}

/* Real image style */
.tb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  box-sizing: border-box;
  display: block;
  transform: scale(1.12);
  transform-origin: center;
}

/* ── TABLET ── */
@media (max-width: 1023px) and (min-width: 600px) {
  .tb-top { padding: 0 28px; }
  .tb-heading { font-size: 22px; }
  .tb-tagline { font-size: 13px; }
  .tb-item { width: 180px; height: 115px; }
}

/* ── MOBILE ── */
@media (max-width: 599px) {
  .tb-section { padding: 32px 0 40px; }
  .tb-top {
    flex-direction: column;
    padding: 0 20px;
    gap: 10px;
    margin-bottom: 24px;
  }
  .tb-heading { font-size: 20px; }
  .tb-tagline { text-align: left; font-size: 12.5px; max-width: 100%; }
  .tb-track-wrapper {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }
  .tb-item { width: 100px; height: 80px; }
  .tb-track { gap: 4px; }
  .tb-img { transform: scale(1.08); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .tb-top { transition: none !important; opacity: 1 !important; transform: none !important; }
  .tb-item { transition: none !important; }
}





/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #111;
}
/* ── Section ── */
.pp-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 28px 64px;
  overflow: hidden;
}

/* ── Header ── */
.pp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;

  opacity: 0;
  transform: translateY(-24px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-section.is-visible .pp-header {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.05s;
}
/* 
.pp-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #111;
} */



.pp-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #111;

  opacity: 0;
  transform: translateY(-40px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-title.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ── Arrow Buttons ── */
.pp-arrows {
  display: flex;
  gap: 10px;
}

.pp-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #8aaa7a;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
  flex-shrink: 0;
}

.pp-arrow:hover {
  background: #2e7d2e;
  transform: scale(1.08);
}

.pp-arrow:active {
  transform: scale(0.92);
}

/* ── Layout Grid ── */
.pp-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ══════════════════════════════
   LEFT — Image sits alone on top
   Content sits below — NO wrapper, NO card, NO shadow
══════════════════════════════ */
.pp-featured {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  border: none;
  box-shadow: none;

  opacity: 0;
  transform: translateX(-50px) scale(0.97);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-section.is-visible .pp-featured {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.2s;
}

/* Image/video — full width, no border radius */
.pp-featured-media {
  width: 100%;
  overflow: hidden;
  background: #ddd;
  line-height: 0;
  border-radius: 16px;
  position: relative;
}

.pp-featured-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
}

.pp-section.is-visible .pp-featured-media::after {
  animation: pp-shine 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s 1;
}

@keyframes pp-shine {
  to { transform: translateX(100%); }
}

.pp-featured-media img,
.pp-featured-media video {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* Content — plain, on page background, separated from image */
.pp-featured-body {
  padding: 22px 0 0 0;
  background: transparent;
}

.pp-featured-body h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #111;
}

.pp-featured-body p {
  font-size: 16;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  font-weight: 400;
}

/* ── Read More Button — outline, green on hover with animation ── */
.pp-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: transparent;
  color: #333;
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid #888;
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease, border-color 0.28s ease, transform 0.2s ease;
}

.pp-read-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #718B64;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  z-index: 0;
}

.pp-read-more span {
  position: relative;
  z-index: 1;
}

.pp-read-more:hover {
  color: #fff;
  border-color: #718B64;
  transform: translateY(-2px);
}

.pp-read-more:hover::before {
  transform: translateY(0);
}

/* ══════════════════════════════
   RIGHT — 3 small cards stacked
══════════════════════════════ */
.pp-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pp-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 0 16px;
  align-items: start;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  opacity: 0;
  transform: translateX(50px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-section.is-visible .pp-card:nth-child(1) {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.35s;
}

.pp-section.is-visible .pp-card:nth-child(2) {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.5s;
}

.pp-section.is-visible .pp-card:nth-child(3) {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.65s;
}

.pp-card:hover {
  opacity: 0.86;
  transform: translateX(0) scale(1.015) !important;
}

/* Card thumbnail */
.pp-card-thumb {
  width: 211px;
  height: 173px;
  border-radius: 16px;
  overflow: hidden;
  background: #ccc;
  flex-shrink: 0;
  position: relative;
}

.pp-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-card:hover .pp-card-thumb img {
  transform: scale(1.08);
}

/* Play icon overlay for video cards */
.pp-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  pointer-events: none;
  transition: background 0.3s ease;
}

.pp-card:hover .pp-play-icon {
  background: rgba(0,0,0,0.15);
}

.pp-play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid rgba(255,255,255,0.92);
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.pp-card:hover .pp-play-icon::after {
  transform: scale(1.15);
}

/* Card text */
.pp-card-body {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
}

.pp-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  color: #111;
}

.pp-card-body p {
  font-size: 16;
  line-height: 1.65;
  color: #555;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Read More — same animation as featured */
.pp-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 26px;
  background: transparent;
  color: #333;
  font-size: 0.81rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  border: 1.5px solid #888;
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease, border-color 0.28s ease, transform 0.2s ease;
}

.pp-card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #718B64;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  z-index: 0;
}

.pp-card-btn span {
  position: relative;
  z-index: 1;
}

.pp-card-btn:hover {
  color: #fff;
  border-color: #718B64;
  transform: translateY(-2px);
}

.pp-card-btn:hover::before {
  transform: translateY(0);
}

/* ── Crossfade transition when switching featured/cards (on arrow click / card click) ── */
.pp-fade-out {
  opacity: 0 !important;
  transform: translateX(-16px) scale(0.985) !important;
  filter: blur(4px);
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease !important;
}

.pp-fade-in {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
  filter: blur(0);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .pp-layout {
    grid-template-columns: 1fr;
  }

  .pp-featured-media img,
  .pp-featured-media video {
    height: 260px;
  }

  .pp-card {
    grid-template-columns: 140px 1fr;
  }

  .pp-card-thumb {
    width: 140px;
    height: 100px;
  }
}

@media (max-width: 600px) {
  .pp-section { padding: 32px 16px 48px; }

  .pp-title { font-size: 1.05rem; }

  .pp-arrow { width: 36px; height: 36px; font-size: 1rem; }

  .pp-featured-media img,
  .pp-featured-media video {
    height: 200px;
  }

  .pp-featured-body h3 { font-size: 1.15rem; }

  .pp-card {
    grid-template-columns: 110px 1fr;
    gap: 0 12px;
  }

  .pp-card-thumb {
    width: 110px;
    height: 80px;
  }
}





/* ================================================================
   ACHIEVEMENTS SECTION — achievements.css
   ================================================================
   SECTIONS:
   1. Section Layout & Header
   2. Thumbnail Strip
   3. Thumbnail Card (default + active states)
   4. Big Feature Card
   5. Slide & Animation
   6. Label (top-left content box)
   7. Placeholder Colors (remove when using real images)
   8. Responsive
   ================================================================ */


/* ----------------------------------------------------------------
   1. SECTION LAYOUT & HEADER
   ---------------------------------------------------------------- */

.ach-section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  box-sizing: border-box;
}

/* Title left, description right */
.ach-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 48px;
}
/* 
.ach-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #111;
  margin: 0;
  line-height: 1.2;
}
/* 
.ach-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.85;
  max-width:598px;
  /* border:2px solid red; */
/* } */ 



.ach-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #111;
  margin: 0;
  line-height: 1.2;

  opacity: 0;
  transform: translateY(-40px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.ach-header.is-visible .ach-title {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.05s;
}

.ach-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.85;
  max-width: 598px;

  opacity: 0;
  transform: translateY(-40px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.ach-header.is-visible .ach-desc {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.2s;
}

/* ----------------------------------------------------------------
   2. THUMBNAIL STRIP
   ---------------------------------------------------------------- */

/* Clips scrolling content — only visible thumbs show */
.ach-strip-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* JS moves this element left via translateX to scroll */
.ach-strip {
  display: flex;
  gap: 12px;                /* NOTE: if you change this, update GAP_PX in achievements.js */
  width: max-content;
  align-items: flex-end;   /* all thumbs share the same bottom baseline */
}


/* ----------------------------------------------------------------
   3. THUMBNAIL CARD
   ---------------------------------------------------------------- */

/* DEFAULT: floating card separated from big card below */
.ach-thumb {
  flex-shrink: 0;
  width: 229px;
  height: 243px;
  border-radius: 16px;             /* fully rounded = floating look */
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #e4e7e0;
  margin-bottom: 20px;             /* gap between thumb row and big card */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  opacity: 0.78;
  user-select: none;
  transition:
    height        0.35s ease,
    margin-bottom 0.35s ease,
    border-radius 0.35s ease,
    box-shadow    0.35s ease,
    opacity       0.3s  ease;
}

.ach-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.5s ease;
}

.ach-thumb.img-loaded img {
  opacity: 1;
  transform: scale(1);
}

.ach-thumb:hover {
  opacity: 1;
}

/* ACTIVE: drops flush and connects seamlessly to big card */
.ach-thumb.active {
  height: 260px;                   /* taller than others */
  margin-bottom: 0;                /* removes gap → flush with big card */
  border-radius: 16px 16px 0 0;   /* flat bottom corners to merge */
  box-shadow: none;
  opacity: 1;
  z-index: 3;
}

/* Gradient on active thumb bottom → blends into big card dark bg */
.ach-thumb.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent 0%, #111 100%);
  pointer-events: none;
  z-index: 1;
}


/* ----------------------------------------------------------------
   4. BIG FEATURE CARD
   ---------------------------------------------------------------- */

.ach-big-card {
  position: relative;
  width: 100%;
  height: 735px;
  border-radius: 0 24px 24px 24px; /* top-left flat where active thumb connects */
  overflow: hidden;
  background: #e4e7e0;
  z-index: 1;
}

/* Stacking context for all slides */
.ach-slides {
  position: relative;
  width: 100%;
  height: 100%;
}


/* ----------------------------------------------------------------
   5. SLIDE & ANIMATION
   ---------------------------------------------------------------- */

/* All slides hidden by default */
.ach-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.ach-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.45s ease, transform 0.5s ease;
}

.ach-slide.img-loaded img {
  opacity: 1;
  transform: scale(1);
}

/* Active slide shown */
.ach-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide-up entrance animation when card switches */
.ach-slide.slide-in {
  animation: achSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes achSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* ----------------------------------------------------------------
   6. LABEL — top-left content box inside big card
   ---------------------------------------------------------------- */

.ach-label {
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 14px 20px;
  z-index: 2;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ach-label-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.ach-label-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  color: #555;
}


/* ----------------------------------------------------------------
   7. PLACEHOLDER COLORS
   Delete these once you add real <img> tags in the HTML
   ---------------------------------------------------------------- */

.ph1 { background: linear-gradient(135deg, #b5c9a8, #8faa80); }
.ph2 { background: linear-gradient(135deg, #222,    #444);    }
.ph3 { background: linear-gradient(135deg, #c8a87a, #a07850); }
.ph4 { background: linear-gradient(135deg, #4a6fa5, #2a4f85); }
.ph5 { background: linear-gradient(135deg, #7a5c3a, #5a3c1a); }
.ph6 { background: linear-gradient(135deg, #3a5a4a, #1a3a2a); }

/* Shimmer skeleton — shown only while the real image is still loading;
   overrides the ph* tint (higher specificity) and is removed once the
   img-loaded class lands, so the fade-in above takes over cleanly. */
@keyframes achShimmer {
  0%   { background-position: -150% 0; }
  100% { background-position: 150% 0; }
}

.ach-thumb:not(.img-loaded),
.ach-slide:not(.img-loaded) {
  background-image: linear-gradient(100deg, #e4e7e0 30%, #f4f5f2 50%, #e4e7e0 70%);
  background-size: 250% 100%;
  animation: achShimmer 1.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ach-thumb:not(.img-loaded),
  .ach-slide:not(.img-loaded) {
    animation: none;
  }
  .ach-thumb img,
  .ach-slide img {
    transition: opacity 0.3s ease;
    transform: none;
  }
}


/* ----------------------------------------------------------------
   8. RESPONSIVE
   ---------------------------------------------------------------- */

@media (max-width: 768px) {
  .ach-section          { padding: 60px 20px 80px; }
  .ach-header           { grid-template-columns: 1fr; gap: 20px; }
  .ach-thumb            { width: 160px; height: 150px; margin-bottom: 16px; }
  .ach-thumb.active     { height: 200px; margin-bottom: 0; }
  .ach-big-card         { height: 340px; }

  /* Caption moved to a bottom bar so it doesn't cover faces in the photo */
  .ach-label {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 10px 14px;
  }
  .ach-label-title      { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .ach-thumb            { width: 130px; height: 120px; margin-bottom: 12px; }
  .ach-thumb.active     { height: 160px; margin-bottom: 0; }
  .ach-big-card         { height: 280px; }

  .ach-label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
  }
  .ach-label-title      { font-size: 0.8rem; }
  .ach-label-sub        { font-size: 0.7rem; }
}




/* ============================================
   VOICES OF TRUST — paste at bottom of style.css
   ============================================ */
.vot-section {
  width: 100%;
  background: #ffffff;
  padding: clamp(48px, 6vw, 88px) 0 clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.vot-header { text-align: center; margin-bottom: clamp(24px, 3.5vw, 48px); }
.vot-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #7a9e6f; margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.vot-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: #1a1a1a;
}
.vot-title span { color: #6b8f5e; }

/* Canvas 730×790px */
.vot-map {
  position: relative;
  width: 1100px;
  height: 850px;
  transform-origin: top center;
  flex-shrink: 0;
  background: #ffffff;
  margin: 0 auto;
}
@media (max-width: 1140px) { .vot-map { transform: scale(0.85); margin-bottom: -127px; } }
@media (max-width: 960px)  { .vot-map { transform: scale(0.7); margin-bottom: -255px; } }
@media (max-width: 768px)  { .vot-map { transform: scale(0.55); margin-bottom: -382px; } }
@media (max-width: 600px)  { .vot-map { transform: scale(0.45); margin-bottom: -467px; } }
@media (max-width: 480px)  { .vot-map { transform: scale(0.35); margin-bottom: -552px; } }

/* Semicircles (Figma Style) */
.vot-semi {
  position: absolute;
  background-color: #c5d4be;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.vot-semi--up {
  width: 44px; height: 22px;
  border-radius: 22px 22px 0 0;
}
.vot-semi--down {
  width: 44px; height: 22px;
  border-radius: 0 0 22px 22px;
}
.vot-semi--left {
  width: 22px; height: 44px;
  border-radius: 44px 0 0 44px;
}
.vot-semi--right {
  width: 22px; height: 44px;
  border-radius: 0 44px 44px 0;
}

/* Figma static green speech bubble cards */
.vot-static-card {
  position: absolute;
  background: #7a9e6f;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(122, 158, 111, 0.15);
  font-family: 'Inter', sans-serif;
  z-index: 3;
  box-sizing: border-box;
}
.vot-static-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
}
.vot-static-card span {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  text-align: right;
  opacity: 0.9;
  font-weight: 600;
}

/* Action buttons in Figma style */
.vot-btn-top {
  position: absolute;
  width: 32px; height: 32px;
  background: #8e6c50; /* Terracotta / Brown color from design */
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(142, 108, 80, 0.25);
  transition: all 0.2s ease;
  z-index: 5;
}
.vot-btn-top:hover {
  background: #76573e;
  transform: scale(1.08);
}

/* Bubble */
.vot-b {
  position: absolute;
  display: flex;
  align-items: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  animation: votFloat 4s ease-in-out infinite;
  will-change: transform;
  z-index: 2;
}
/* D-shape - Hidden to align with Figma design of standalone circles */
.vot-d {
  display: none !important;
}

/* Avatar */
.vot-av {
  position: relative;
  width: var(--sz); height: var(--avh);
  border-radius: var(--br);
  background: var(--c, #8faa80);
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  flex-shrink: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-family: 'Inter', sans-serif;
  font-size: calc(var(--sz) * 0.28);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vot-b:hover .vot-av,
.vot-b.is-active .vot-av {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(0,0,0,0.3);
}

.vot-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@keyframes votFloat {
  0%, 100% { transform: translate(-50%,-50%) translateY(0px); }
  50%       { transform: translate(-50%,-50%) translateY(-10px); }
}

/* Feedback card */
.vot-card {
  position: absolute; left: 50%;
  width: 230px; background: #fff; border-radius: 14px;
  padding: 13px 15px 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  border-left: 3px solid #A6B689;
  z-index: 999; pointer-events: none;
  opacity: 0; visibility: hidden; white-space: normal;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.vot-card--above {
  bottom: calc(100% + 14px); top: auto;
  transform: translateX(-50%) translateY(8px);
}
.vot-card--above::after {
  content: ''; position: absolute; bottom: -9px; left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-top: 9px solid #fff;
}
.vot-card--below {
  top: calc(100% + 14px); bottom: auto;
  transform: translateX(-50%) translateY(-8px);
}
.vot-card--below::after {
  content: ''; position: absolute; top: -9px; left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-bottom: 9px solid #fff;
}


.vot-b.is-active {
  z-index: 999 !important;
}

.vot-b.is-active .vot-card { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.vc-q {
  font-size: 0.7rem; color: #374151; line-height: 1.55;
  font-style: italic; margin-bottom: 10px; font-family: 'Inter', sans-serif;
}
.vc-foot { display: flex; align-items: center; gap: 8px; }
.vc-av {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--c, #8faa80); border: 2px solid #A6B689;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.54rem; font-weight: 700; color: #fff;
  font-family: 'Inter', sans-serif; flex-shrink: 0;
}
.vc-name { display: block; font-size: 0.7rem; font-weight: 700; color: #1a1a1a; font-family: 'Inter', sans-serif; }
.vc-role { display: block; font-size: 0.62rem; color: #6b8f5e; font-family: 'Inter', sans-serif; font-weight: 500; }

@media (prefers-reduced-motion: reduce) { .vot-b { animation: none !important; } }


.vot-map-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 850px;
}

.vot-map {
  position: relative;
  width: 1100px;
  height: 850px;
  flex-shrink: 0;
  background: #ffffff;
  transform-origin: top center;
}

@media (max-width: 1140px) {
  .vot-map { transform: scale(0.85); }
  .vot-map-wrap { height: calc(850px * 0.85); }
}
@media (max-width: 960px) {
  .vot-map { transform: scale(0.7); }
  .vot-map-wrap { height: calc(850px * 0.7); }
}
@media (max-width: 768px) {
  .vot-map { transform: scale(0.55); }
  .vot-map-wrap { height: calc(850px * 0.55); }
}
@media (max-width: 600px) {
  .vot-map { transform: scale(0.45); }
  .vot-map-wrap { height: calc(850px * 0.45); }
}
@media (max-width: 480px) {
  .vot-map { transform: scale(0.35); }
  .vot-map-wrap { height: calc(850px * 0.35); }
}

/* ===================== WHO AM I SECTION — STYLES ===================== */

.whoami-section {
  --whoami-green: #7C9473;
  --whoami-green-dark: #6b8362;
  --whoami-text: #2b2b2b;
  --whoami-text-soft: #4a4a4a;
  --whoami-bg: #ffffff;
  --whoami-quote-bg: #a9b89e;
  --whoami-plus-bg: #6b5640;
  --whoami-radius: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--whoami-bg);
  padding: 40px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.whoami-section * {
  box-sizing: border-box;
}

.whoami-wrap {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 608px 1fr;
  gap: 0 24px;
  align-items: stretch;
}

/* ---------- PHOTO ---------- */
.whoami-photo {
  border-radius: var(--whoami-radius);
  overflow: hidden;
  background: #eef4ea;
  width: 608px;
  height: 560px;
  min-height: 560px;
  position: relative;
  display: flex;
  /* justify-content: flex-start;
  align-items: flex-end;
  padding: 30px 0 0 72px; */

  justify-content: center;
  align-items: center;
  padding: 0 0 0 32px;

  opacity: 0;
  transform: translateX(-60px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.whoami-section.is-visible .whoami-photo {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.05s;
}

.whoami-photo img {
  height: 92%;
  width: auto;
  object-fit: contain;
  align-self: flex-end;
  display: block;
}

/* ---------- CONTENT ---------- */
.whoami-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}

.whoami-top {
  position: relative;
  padding-right: 70px;
}

.whoami-heading {
  font-size: 24px;
  font-weight: 500;
  color: var(--whoami-text);
  letter-spacing: 0.5px;
  margin: 0 0 18px 0;
  line-height: 1.2;

  opacity: 0;
  transform: translateX(50px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.whoami-section.is-visible .whoami-heading {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.2s;
}

.whoami-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--whoami-text-soft);
  text-align: justify;
  margin: 0 0 14px 0;
  max-width: 600px;

  opacity: 0;
  transform: translateX(50px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.whoami-section.is-visible .whoami-text {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.38s;
}

.whoami-text:last-of-type {
  margin-bottom: 0;
}

.whoami-btn {
  position: absolute;
  right: -20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.whoami-btn svg {
  width: 18px;
  height: 18px;
}

.whoami-btn:hover {
  transform: scale(1.06);
  opacity: 0.92;
}

.whoami-btn:focus-visible {
  outline: 2px solid var(--whoami-green-dark);
  outline-offset: 2px;
}

.whoami-btn-plus {
  top: 4px;
  background: var(--whoami-plus-bg);
  color: #fff;
}

.whoami-btn-chevron {
  top: 96px;
  background: #eeeeee;
  color: #333;
}

/* ---------- STATS ---------- */
.whoami-stats {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin: 110px 0 16px 0;
}

.whoami-stat {
  min-width: 0;
  flex: 0 1 auto;

  opacity: 0;
  transform: translateX(50px) scale(0.95);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.whoami-section.is-visible .whoami-stat:nth-child(1) {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.55s;
}

.whoami-section.is-visible .whoami-stat:nth-child(2) {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.68s;
}

.whoami-section.is-visible .whoami-stat:nth-child(3) {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.81s;
}

.whoami-number {
  display: inline-block;
  font-size: 41px;
  font-weight: 700;
  color: var(--whoami-text);
  line-height: 1;
}

.whoami-stat-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.whoami-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whoami-label {
  font-size: 20px;
  color: var(--whoami-text-soft);
  white-space: normal;
  max-width: 15rem;
}

/* ---------- QUOTE BAR ---------- */
.whoami-quote {
  background: var(--whoami-quote-bg);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--whoami-radius);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.15rem 1.25rem;
  line-height: 1.4;

  opacity: 0;
  transform: translateX(50px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.whoami-section.is-visible .whoami-quote {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition-delay: 0.95s;
}

.whoami-quote-nowrap {
  margin-left: 4px;
}

/* ---------- RESPONSIVE (legacy) ---------- */
@media (max-width: 1024px) {
  .whoami-wrap {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }

  .whoami-photo {
    width: 100%;
    max-width: 608px;
    height: 420px;
    min-height: 420px;
    padding: 26px 0 0 0;
    margin: 0 auto;
  }

  .whoami-btn {
    right: 0;
  }

  .whoami-top {
    padding-right: 0;
  }

  .whoami-content {
    justify-content: flex-start;
    gap: 18px;
  }

  .whoami-text {
    max-width: 100%;
  }

  .whoami-stats {
    justify-content: center;
    column-gap: 1.25rem;
    row-gap: 0.85rem;
    margin: 0;
  }

  .whoami-quote {
    margin-top: 0;
  }

  .whoami-photo,
  .whoami-heading,
  .whoami-text,
  .whoami-stat,
  .whoami-quote {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 480px) {
  .whoami-heading {
    font-size: 24px;
  }

  .whoami-stats {
    gap: 24px;
  }

  .whoami-number {
    font-size: 24px;
  }

  .whoami-quote {
    font-size: 14px;
  }

  .whoami-quote-nowrap {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}

/* ---------- MOBILE ONLY: Heading → Photo → Text → Stats → Quote ---------- */
@media (max-width: 600px) {
  .whoami-wrap {
    display: flex;
    flex-direction: column;
  }

  .whoami-content,
  .whoami-top {
    display: contents;
  }

  .whoami-heading { order: 1; }
  .whoami-photo   { order: 2; }
  .whoami-text    { order: 3; }
  .whoami-stats   { order: 4; }
  .whoami-quote   { order: 5; }

  .whoami-stats {
    flex-wrap: nowrap;
    gap: 8px;
    margin: 20px 0;
  }

  .whoami-stat {
    flex: 1;
    min-width: 0;
    text-align: center;
    background: #f2f5ee;
    border-radius: 12px;
    padding: 12px 6px;
  }

  .whoami-stat-top {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
  }

  .whoami-stat-top img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .whoami-number {
    font-size: 17px;
  }

  .whoami-label {
    white-space: normal;
    font-size: 10.5px;
    line-height: 1.3;
  }
}

/* ===================== EDGE WIDGETS — STYLES ===================== */

:root {
  --edge-text: #000000;
  --edge-text-soft: #000000;
  --edge-accent: #000000;
}

.edge-scrolltop,
.edge-social {
  position: fixed;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--edge-text-soft);
  pointer-events: auto;
}

.edge-scrolltop {
  left: 18px;
  bottom: 40px;
  background: none;
  border: none;
  cursor: pointer;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 0;

  opacity: 0;
  transform: rotate(180deg) translateY(16px);
  animation: edgeFadeInLeft 0.6s ease forwards;
  animation-delay: 0.3s;

  visibility: hidden;
}

.edge-scrolltop.is-visible {
  visibility: visible;
  animation: edgePopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             edgeBreathe 2.8s ease-in-out 0.6s infinite;
}

.edge-scrolltop:hover {
  animation-play-state: paused, paused;
}

@keyframes edgeFadeInLeft {
  to {
    opacity: 1;
    transform: rotate(180deg) translateY(0);
  }
}

@keyframes edgePopIn {
  0% {
    opacity: 0;
    transform: rotate(180deg) translateY(20px) scale(0.7);
  }
  60% {
    opacity: 1;
    transform: rotate(180deg) translateY(-4px) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: rotate(180deg) translateY(0) scale(1);
  }
}

@keyframes edgeBreathe {
  0%, 100% { transform: rotate(180deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-3px); }
}

.edge-scrolltop-text {
  transition: letter-spacing 0.25s ease;
  position: relative;
}

.edge-scrolltop-dash {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: edgeBounce 1.6s ease-in-out infinite;
}

.edge-scrolltop:hover .edge-scrolltop-text,
.edge-scrolltop:focus-visible .edge-scrolltop-text {
  letter-spacing: 0.12em;
}

.edge-scrolltop:hover .edge-scrolltop-dash,
.edge-scrolltop:focus-visible .edge-scrolltop-dash {
  transform: translateY(-10px) scale(1.3);
}

.edge-scrolltop:hover .edge-scrolltop-dash {
  animation-play-state: paused;
}

.edge-scrolltop:focus-visible {
  outline: 2px solid var(--edge-accent);
  outline-offset: 4px;
}

@keyframes edgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.edge-social {
  right: 18px;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);

  opacity: 0;
  animation: edgeFadeInRight 0.6s ease forwards;
  animation-delay: 0.3s;
}

@keyframes edgeFadeInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) rotate(180deg) translateX(0px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) rotate(180deg);
  }
}

.edge-social-label {
  color: var(--edge-text-soft);
  display: inline-block;
  animation: edgeLinkIn 0.4s ease forwards, edgeWiggle 3.5s ease-in-out 2s infinite;
  animation-delay: 0.35s, 2s;
}

.edge-social-dash {
  display: inline-block;
  opacity: 0;
  animation: edgeLinkIn 0.4s ease forwards;
  animation-delay: 0.35s;
}

.edge-social-sep {
  color: #000000;
  opacity: 0;
  font-size: 12px;
  animation: edgeSepIn 0.4s ease forwards;
}

.edge-social-link {
  position: relative;
  color: var(--edge-text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.edge-social-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 3px;
  height: 0%;
  background: var(--edge-accent);
  transition: height 0.25s ease;
}

.edge-social-link::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: -4px;
  bottom: -4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  z-index: -1;
}

.edge-social-link:hover,
.edge-social-link:focus-visible {
  transform: translateX(5px) scale(1.15);
}

.edge-social-link:hover::after,
.edge-social-link:focus-visible::after {
  height: 100%;
}

.edge-social-link:hover::before,
.edge-social-link:focus-visible::before {
  transform: scale(1);
  opacity: 1;
}

.edge-social-link:focus-visible {
  outline: 2px solid var(--edge-accent);
  outline-offset: 3px;
}

.edge-social-link {
  opacity: 0;
  animation: edgeLinkIn 0.4s ease forwards, edgeRipple 4s ease-in-out infinite;
}

.edge-social-link:hover {
  animation-play-state: paused, paused;
}

@keyframes edgeRipple {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(2px) scale(1.05); }
}

.edge-social a[data-platform="WhatsApp"]   { animation-delay: 0.45s, 0s; }
.edge-social a[data-platform="LinkedIn"]   { animation-delay: 0.55s, 0.15s; }
.edge-social a[data-platform="YouTube"]    { animation-delay: 0.65s, 0.3s; }
.edge-social a[data-platform="Twitter"]    { animation-delay: 0.75s, 0.45s; }
.edge-social a[data-platform="Facebook"]   { animation-delay: 0.85s, 0.6s; }
.edge-social a[data-platform="Instagram"]  { animation-delay: 0.95s, 0.75s; }

.edge-social-sep:nth-of-type(1) { animation-delay: 0.5s; }
.edge-social-sep:nth-of-type(2) { animation-delay: 0.6s; }
.edge-social-sep:nth-of-type(3) { animation-delay: 0.7s; }
.edge-social-sep:nth-of-type(4) { animation-delay: 0.8s; }
.edge-social-sep:nth-of-type(5) { animation-delay: 0.9s; }

@keyframes edgeLinkIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes edgeSepIn {
  from { opacity: 0; }
  to { opacity: 0.35; }
}

@keyframes edgeWiggle {
  0%, 85%, 100% { transform: rotate(0deg); }
  88% { transform: rotate(-4deg); }
  91% { transform: rotate(4deg); }
  94% { transform: rotate(-3deg); }
  97% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .edge-scrolltop,
  .edge-social,
  .edge-social-link,
  .edge-social-sep,
  .edge-social-label,
  .edge-social-dash,
  .edge-scrolltop-dash {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .edge-scrolltop {
    transform: rotate(180deg) !important;
  }

  .edge-social {
    transform: translateY(-50%) rotate(180deg) !important;
  }
}

@media (max-width: 640px) {
  .edge-scrolltop {
    left: 8px;
    bottom: 24px;
    font-size: 11px;
  }

  .edge-social {
    right: 8px;
    font-size: 11px;
    gap: 6px;
  }
}

/* ============================================
   SECTION 6 — CONTACT
   ============================================ */
.contact-section {
  width: 100%;
  background: #f0f0f0;
  padding: 60px 40px;
}

.contact-card {
  max-width: 1245px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-left {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-profile-name {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}
.contact-profile-title {
  font-size: 13px;
  font-weight: 400;
  color: #444444;
  margin-top: 2px;
}

.contact-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #111111;
  margin-bottom: 22px;
  line-height: 1.2;
}

.contact-details { display: flex; flex-direction: column; }

.contact-detail-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-detail-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  letter-spacing: 0.2px;
}
.contact-value {
  font-size: 12.5px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}

.contact-right { flex: 1; min-width: 0; }

.contact-right iframe {
  width: 100%;
  max-width: 610px;
  height: 800px;
  border: none;
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-row {
  display: flex;
  gap: 12px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #222222;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.contact-input::placeholder,
.contact-textarea::placeholder { color: #aaaaaa; font-size: 13px; }
.contact-input:focus,
.contact-textarea:focus {
  border-color: #8faf89;
  box-shadow: 0 0 0 3px rgba(143,175,137,0.15);
}
.contact-textarea { min-height: 100px; }

.contact-submit {
  align-self: flex-start;
  background: #8faf89;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.contact-submit:hover { background: #7fa279; transform: scale(1.02); }

/* ============================================
   CONTACT — TABLET  (≤ 820px)
   ============================================ */
@media (max-width: 820px) {
  .contact-section {
    padding: 0px 28px 48px;
  }

  .contact-card {
    flex-direction: column;
    gap: 36px;
    padding: 36px 28px;
    border-radius: 0 0 20px 20px;
  }

  .contact-left { flex: none; width: 100%; }

  .contact-form-row { flex-direction: column; }
}

/* ============================================
   CONTACT — MOBILE  (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .contact-section {
    padding: 0px 16px 36px;
  }

  .contact-card {
    padding: 28px 20px;
    border-radius: 0 0 14px 14px;
    gap: 28px;
  }

  .contact-heading { font-size: 20px; }

  .contact-detail-row { gap: 16px; }

  .contact-submit { width: 100%; text-align: center; }

  .contact-right iframe {
    height: 650px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .animate-left,
  .animate-right,
  .hero-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}




/* ════════════════════════════════════════════════════════════════
   EXTRA RESPONSIVE PATCH — Mobile & Desktop priority
   Placed last in the cascade so it safely refines spacing/sizing
   without touching any animation, keyframe, color, or layout logic.
   No UI/markup is changed — only breakpoints/fluid sizing.
   ════════════════════════════════════════════════════════════════ */

/* ---------- Global safety: stop any accidental horizontal scroll ---------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ---------- Small phones ≤ 375px (iPhone SE / small Android) ---------- */
@media (max-width: 375px) {
  .hero-wrapper { padding: 16px 12px 0; }
  .hero-card { padding: 22px 16px 22px; border-radius: 16px; }
  .hero-title-name { font-size: 24px; }
  .hero-title-sub,
  .hero-title-ecog { font-size: 19px; }
  .hero-link { font-size: 12.5px; }

  .section-label { font-size: 15px; }
  .firm-badge { width: 38px; height: 38px; }

  .ventures-heading,
  .tb-heading,
  .impact-heading,
  .ach-heading {
    white-space: normal;
  }

  .acc-title { font-size: 15px; }
  .acc-text p { font-size: 12.5px; }

  .expertise-card { width: 200px; padding: 18px; }
  .expertise-card h3 { font-size: 13px; }
  .expertise-card p { font-size: 12px; }

  .impact-card { min-width: 120px; flex: 0 0 120px; }
  .impact-stat { font-size: 19px; }

  .pp-section { padding: 24px 14px 36px; }
  .pp-card { grid-template-columns: 96px 1fr; gap: 0 10px; }
  .pp-card-thumb { width: 96px; height: 72px; }

  .whoami-heading { font-size: 20px; }
  .whoami-number { font-size: 22px; }
  .whoami-label { font-size: 13px; }
  .whoami-stats { gap: 18px; }

  .whoami-photo {
    height: 360px;
    min-height: 360px;
    padding: 20px 0 0 0;
    justify-content: center;
  }

  .vot-map { transform: scale(0.3); }
  .vot-map-wrap { height: calc(850px * 0.3); }

  .ach-thumb { width: 110px; height: 100px; }
  .ach-thumb.active { height: 135px; }
  .ach-big-card { height: 240px; }
}

/* ---------- General mobile tightening (≤ 480px) — covers gaps in earlier rules ---------- */
@media (max-width: 480px) {
  .ventures-heading,
  .tb-heading,
  .impact-heading,
  .ach-heading {
    white-space: normal;
    line-height: 1.25;
  }

  .vot-header { padding: 0 16px; }
  .vot-title { font-size: 1.5rem; }

  .pp-arrow { width: 34px; height: 34px; }

  .edge-social-label,
  .edge-social-link { font-size: 11px; }
}

/* ---------- Mid mobile / large phones (481px – 600px) ---------- */
@media (min-width: 481px) and (max-width: 600px) {
  .hero-title-name { font-size: 34px; }
  .ventures-heading,
  .tb-heading,
  .impact-heading {
    white-space: normal;
  }
}

/* ---------- Tablets/small laptops gap (768px – 1023px) — keep desktop feel ---------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-card { padding: 40px 36px 36px; }
  .ach-big-card { height: 420px; }
  .ach-thumb { width: 190px; height: 190px; }
  .ach-thumb.active { height: 220px; }

  /* Keep caption as a bottom bar here too, so it doesn't cover faces on tablets */
  .ach-label {
    top: auto;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

/* ---------- Desktop refinement (1024px – 1279px small laptops) ---------- */
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-card { padding: 44px 40px 40px; }
  .pro-section,
  .ach-section,
  .ventures-section,
  .tb-section,
  .pp-section { padding-left: 32px; padding-right: 32px; }
}

/* ---------- Large desktop (1280px+) — comfortable max readable widths ---------- */
@media (min-width: 1280px) {
  .hero-wrapper,
  .pro-section,
  .ach-section,
  .ventures-section,
  .tb-section,
  .impact-section,
  .pp-section,
  .contact-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ---------- Ultra-wide desktop (1600px+) — prevent overly stretched single column elements ---------- */
@media (min-width: 1600px) {
  .hero-wrapper { padding-top: 56px; }
  .vot-map-wrap { padding-bottom: 8px; }
}

/* ---------- Touch-friendly tap targets on mobile (no visual change, just min sizes) ---------- */
@media (max-width: 600px) {
  .pp-arrow,
  .vot-btn-top,
  .firm-badge,
  .edge-social-link {
    min-width: 28px;
    min-height: 28px;
  }
}
/* Hero landscape-video override */
.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(29rem, 1.4fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "left video"
    "bottom video";
  column-gap: 3rem;
  row-gap: 2.5rem;
  align-items: end;
}

.hero-left {
  grid-area: left;
  min-width: 0;
}

.hero-bottom {
  grid-area: bottom;
  margin-top: 0;
  align-self: end;
}

.hero-video-wrap {
  grid-area: video;
  position: relative;
  right: auto;
  top: auto;
  width: min(100%, 34rem);
  aspect-ratio: 16 / 10.5;
  height: auto;
  justify-self: end;
  align-self: end;
  margin-right: 2rem;
  margin-bottom: 1.4375rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #244d20;
  border: 2px solid #000;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video-placeholder {
  display: none;
}

.hero-links {
  max-width: 100%;
}

@media (max-width: 64rem) and (min-width: 48.0625rem) {
  .hero-card {
    grid-template-columns: minmax(0, 0.85fr) minmax(22rem, 1.15fr);
    column-gap: 2rem;
    row-gap: 2rem;
  }

  .hero-video-wrap {
    width: min(100%, 28rem);
    margin-right: 1.25rem;
  }

  .hero-title {
    white-space: normal;
  }
}

@media (max-width: 48rem) {
  .hero-wrapper {
    padding: 1.25rem 1rem 0;
  }

  .hero-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "left"
      "bottom"
      "video";
    row-gap: 1.5rem;
    padding: 1.75rem 1.25rem 1.75rem;
    min-height: auto;
    border-radius: 1.125rem;
    align-items: start;
  }

  .hero-left,
  .hero-bottom,
  .hero-video-wrap {
    align-self: start;
  }

  .hero-video-wrap {
    justify-self: center;
    width: 100%;
    margin-top: 0;
  }

  .hero-bottom {
    margin-top: 0;
  }

  .hero-title {
    white-space: normal;
    margin-bottom: 1rem;
  }

  .hero-links {
    gap: 0.75rem;
  }
}
