/* ==========================================================================
   CHERRY PARK NURSERIES — CORE STYLESHEET
   Table of Contents:
   1. Reset & Base
   2. Typography
   3. Buttons & Links
   4. Layout Helpers
   5. Header & Navigation
   6. Mobile Menu
   7. Footer
   8. Hero (Home)
   9. Statistics
   10. About Preview
   11. Services Preview
   12. Why Choose Us
   13. Featured Projects
   14. Our Process
   15. Testimonials
   16. Partners
   17. Blog Preview
   18. CTA & Newsletter
   19. Back to top / misc widgets
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 1. RESET & BASE                                                        */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--color-gold); color: var(--color-dark); }

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------- */
/* 2. TYPOGRAPHY                                                          */
/* ---------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-forest);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0 0 var(--space-xs);
  font-weight: 600;
}
h1 { font-size: var(--fs-h1); font-weight: 600; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 var(--space-sm); color: var(--color-ink-60); }
p.lead { font-size: var(--fs-lead); color: var(--color-dark); }

.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--color-white); }
.on-dark p { color: rgba(255,255,255,0.78); }

/* ---------------------------------------------------------------------- */
/* 3. BUTTONS & LINKS                                                     */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease-soft),
              box-shadow var(--dur-fast) var(--ease-soft),
              background var(--dur-fast) var(--ease-soft),
              color var(--dur-fast) var(--ease-soft);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform var(--dur-fast) var(--ease-soft); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(46,125,50,0.28);
}
.btn--primary:hover { background: var(--color-forest); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(27,94,32,0.32); }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-dark);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); background: #c19d2e; }

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-3px); }

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: var(--color-white); color: var(--color-forest); transform: translateY(-3px); }

.btn--ghost {
  background: transparent;
  color: var(--color-forest);
  padding-inline: 0.2em;
}
.btn--ghost:hover { color: var(--color-gold); }

.btn--sm { padding: 0.65em 1.4em; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------------- */
/* 4. LAYOUT HELPERS                                                      */
/* ---------------------------------------------------------------------- */
.section { padding-block: var(--space-2xl); position: relative; }
.section--tight { padding-block: var(--space-xl); }
.section--overlap { margin-top: calc(-1 * var(--space-2xl)); z-index: 2; }

/* ---------------------------------------------------------------------- */
/* 5. HEADER & NAVIGATION                                                 */
/* ---------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding-block: var(--space-sm);
  transition: background var(--dur-med) var(--ease-soft),
              padding var(--dur-med) var(--ease-soft),
              box-shadow var(--dur-med) var(--ease-soft);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }

.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(26,26,26,0.08);
  padding-block: var(--space-2xs);
}

.site-header:not(.is-scrolled) { background: transparent; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-white);
  transition: color var(--dur-med) var(--ease-soft);
}
.site-header.is-scrolled .brand { color: var(--color-forest); }

.brand__logo-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 4px 14px rgba(26,26,26,0.16);
  padding: 4px;
  transition: box-shadow var(--dur-med) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.brand:hover .brand__logo-badge { transform: translateY(-2px); }
.brand__logo-badge--lg { width: 68px; height: 68px; }
.brand__mark { width: 100%; height: 100%; object-fit: contain; flex-shrink: 0; }

.brand__text-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 1.6vw, 2.25rem);
  }
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-white);
  padding-block: 0.4em;
  transition: color var(--dur-med) var(--ease-soft);
}
.site-header.is-scrolled .nav__link { color: var(--color-dark); }
.site-header.is-scrolled .nav__link::after { background: var(--color-primary); }
.nav__link:hover { color: var(--color-gold); }
.site-header.is-scrolled .nav__link.is-active { color: var(--color-forest); font-weight: 600; }

.header__actions { display: flex; align-items: center; gap: var(--space-sm); }
.header__actions .btn { display: none; }
@media (min-width: 1024px) { .header__actions .btn { display: inline-flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.14);
  border: none;
  border-radius: 50%;
  padding: 0;
}
.site-header.is-scrolled .nav-toggle { background: rgba(46,125,50,0.1); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  margin-inline: auto;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease-soft);
}
.site-header.is-scrolled .nav-toggle span { background: var(--color-forest); }

/* ---------------------------------------------------------------------- */
/* 6. MOBILE MENU                                                         */
/* ---------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile-menu);
  background: var(--color-forest);
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--container-pad);
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease-premium);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__top { display: flex; justify-content: flex-end; margin-bottom: var(--space-lg); }
.mobile-menu__close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu__list { display: flex; flex-direction: column; gap: var(--space-sm); }
.mobile-menu__list a,
.mobile-menu__list button {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  color: var(--color-white);
  font-weight: 500;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-med) var(--ease-soft), transform var(--dur-med) var(--ease-soft);
}
.mobile-menu.is-open .mobile-menu__list a,
.mobile-menu.is-open .mobile-menu__list button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0ms);
}
.mobile-menu__list a.is-active { color: var(--color-gold); }
.mobile-menu__foot {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-hairline-on-dark);
  color: rgba(255,255,255,0.7);
}
.mobile-menu__foot .btn { margin-top: var(--space-sm); cursor: pointer; }

/* ---------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-forest) 0%, var(--color-gold) 50%, var(--color-forest) 100%);
  z-index: 2;
}

/* --- CTA band --------------------------------------------------------- */
.footer__cta {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, transparent 100%);
}
.footer__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.footer__cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.footer__cta-text p {
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-small);
  margin: 0;
}
.footer__cta-btn {
  background: var(--color-gold);
  color: var(--color-dark);
  font-weight: 600;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-soft),
              transform var(--dur-fast) var(--ease-soft),
              box-shadow var(--dur-fast) var(--ease-soft);
}
.footer__cta-btn:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.25);
  color: var(--color-dark);
}

/* --- Grid layout ------------------------------------------------------ */
.footer__grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* --- Brand column ----------------------------------------------------- */
.footer__brand .brand { color: var(--color-white); margin-bottom: var(--space-sm); display: inline-block; }

.footer__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: 0.9rem;
  margin-bottom: 0.15rem;
}
.footer__name span {
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.03em;
  color: var(--color-gold);
  font-weight: 500;
}

.footer__tagline {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.footer__desc {
  max-width: 320px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

/* --- Trust metrics (replaces generic star rating) --------------------- */
.footer__trust-row {
  display: flex;
  gap: 0;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__trust-item {
  text-align: center;
  padding: 0 var(--space-md);
  flex: 1;
}
.footer__trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.footer__trust-item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--color-gold);
  font-family: var(--font-display);
  line-height: 1.2;
}
.footer__trust-item span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.15rem;
}

/* --- Social icons ----------------------------------------------------- */
.footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: var(--space-md);
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-soft),
              transform var(--dur-fast) var(--ease-soft),
              border-color var(--dur-fast) var(--ease-soft);
}
.footer__social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  border-color: var(--color-primary);
}
.footer__social svg {
  width: 18px;
  height: 18px;
}

/* --- Nav columns ------------------------------------------------------ */
footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}
.footer__links li { margin-bottom: 0.65rem; }
.footer__links a {
  position: relative;
  display: inline-block;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast) var(--ease-soft);
}
.footer__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-soft);
}
.footer__links a:hover { color: var(--color-gold); }
.footer__links a:hover::after { transform: scaleX(1); }

/* --- Contact column --------------------------------------------------- */
.footer__contact li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}
.footer__contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}
.footer__contact a {
  color: rgba(255,255,255,0.7);
  transition: color var(--dur-fast) var(--ease-soft);
}
.footer__contact a:hover { color: var(--color-gold); }

/* WhatsApp pulse dot */
.footer__whatsapp-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  margin-right: 0.45rem;
  vertical-align: middle;
  animation: whatsappDotPulse 2.4s ease-in-out infinite;
}
@keyframes whatsappDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* --- Newsletter mini-form --------------------------------------------- */
.footer__newsletter {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__newsletter-label {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.footer__newsletter-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.55rem 0.85rem;
  color: var(--color-white);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-soft),
              background var(--dur-fast) var(--ease-soft);
}
.footer__newsletter-form input::placeholder {
  color: rgba(255,255,255,0.3);
}
.footer__newsletter-form input:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.09);
}
.footer__newsletter-btn {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.55rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-soft),
              border-color var(--dur-fast) var(--ease-soft),
              color var(--dur-fast) var(--ease-soft);
}
.footer__newsletter-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

/* --- Bottom bar ------------------------------------------------------- */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-block: var(--space-md);
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.45);
}
.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__bottom-links a {
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-fast) var(--ease-soft);
}
.footer__bottom-links a:hover { color: var(--color-gold); }
.footer__bottom-motto {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.3);
}

/* --- Back to top button ----------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, visibility 0.35s ease,
              transform 0.35s ease, background 0.2s ease,
              color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  z-index: 90;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  box-shadow: 0 6px 24px rgba(212,175,55,0.3);
}
.back-to-top:active {
  transform: translateY(0) scale(0.92);
}

/* ---------------------------------------------------------------------- */
/* 8. HERO (HOME)                                                         */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-canopy);
  overflow: hidden;
  padding-top: 6rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-sunbeam);
  pointer-events: none;
}
.hero__bg-image {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg-image img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.28;
  mix-blend-mode: luminosity;
}
.hero__veil { position: absolute; inset: 0; background: var(--gradient-veil); z-index: 1; }

.hero__decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__leaf { position: absolute; opacity: 0.5; }
.hero__leaf--1 { top: 18%; left: 6%; width: 46px; }
.hero__leaf--2 { top: 65%; left: 12%; width: 30px; }
.hero__leaf--3 { top: 30%; right: 8%; width: 54px; }
.hero__leaf--4 { top: 70%; right: 14%; width: 34px; }

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
  padding-block: var(--space-xl);
}
@media (max-width: 980px) {
  .hero__content { grid-template-columns: 1fr; }
}

.hero__eyebrow {
  color: var(--color-gold);
}
.hero__eyebrow::before { background: var(--color-white); }

.hero h1 {
  color: var(--color-white);
  margin-top: var(--space-sm);
}
.hero h1 em {
  font-style: normal;
  color: var(--color-gold);
}

.hero__lead {
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
  margin-top: var(--space-sm);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-white); }
.hero__trust-item span { font-size: var(--fs-small); color: rgba(255,255,255,0.7); }

/* Signature: growth-ring visual */
.hero__ring-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__ring-card {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.growth-ring { width: 88%; height: 88%; }
.growth-ring circle.ring-track { stroke: rgba(255,255,255,0.15); }
.growth-ring circle.ring-progress { stroke: var(--color-gold); }
.hero__ring-label {
  position: absolute;
  text-align: center;
  color: var(--color-white);
}
.hero__ring-label strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--color-gold); }
.hero__ring-label span { font-size: var(--fs-small); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-small);
}
.hero__scroll-cue .scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(var(--color-gold), transparent);
  animation: pulseSoft 2s ease-in-out infinite;
}

/* ---------------------------------------------------------------------- */
/* 9. STATISTICS                                                          */
/* ---------------------------------------------------------------------- */
.stats {
    background: var(--color-white);
    border-radius: 50px;
    box-shadow: var(--shadow-raised);
    margin-inline: auto;
    padding: 1.8rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 3;
    margin-top: 0.01rem;
}
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

.stat { text-align: center; padding-inline: var(--space-xs); }
.stat + .stat { border-left: 1px solid var(--color-hairline); }
@media (max-width: 860px) { .stat:nth-child(odd) { border-left: none; } }
@media (max-width: 480px) { .stat { border-left: none !important; border-top: 1px solid var(--color-hairline); padding-top: var(--space-sm); } .stat:first-child { border-top: none; padding-top: 0; } }

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--color-forest);
  font-weight: 600;
}
.stat__suffix { color: var(--color-gold); }
.stat__label { display: block; margin-top: 0.4rem; font-size: var(--fs-small); color: var(--color-ink-60); }

/* ---------------------------------------------------------------------- */
/* 10. ABOUT PREVIEW                                                      */
/* ---------------------------------------------------------------------- */
.about-preview .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
@media (max-width: 900px) { .about-preview .container { grid-template-columns: 1fr; } }

.about-preview__media { position: relative; }
.about-preview__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-raised);
}
.about-preview__frame img { aspect-ratio: 4/5; object-fit: cover; }
.about-preview__badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  width: 168px;
  box-shadow: var(--shadow-gold);
}
@media (max-width: 480px) { .about-preview__badge { right: 0; bottom: -1rem; width: 140px; } }
.about-preview__badge strong { display: block; font-family: var(--font-display); font-size: 1.6rem; }
.about-preview__badge span { font-size: var(--fs-small); }

.about-preview__list { margin-top: var(--space-md); display: grid; gap: var(--space-sm); }
.about-preview__list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--color-dark); }
.about-preview__list svg { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

/* ---------------------------------------------------------------------- */
/* 11. SERVICES PREVIEW                                                   */
/* ---------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color var(--dur-fast) var(--ease-soft);
}
.service-card:hover { border-color: var(--color-primary); }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
  transition: transform var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon { background: var(--color-primary); color: var(--color-white); transform: rotate(-8deg); }
.service-card h3 { font-size: 1.2rem; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: 600; color: var(--color-forest);
  margin-top: var(--space-xs);
  font-size: 0.9rem;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease-soft); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ---------------------------------------------------------------------- */
/* 12. WHY CHOOSE US                                                      */
/* ---------------------------------------------------------------------- */
.why-us { background: var(--color-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.why-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gradient-canopy);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.05rem; }
.why-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------------------------------------------------------------------- */
/* 13. FEATURED PROJECTS                                                  */
/* ---------------------------------------------------------------------- */
.projects-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
@media (max-width: 980px) { .projects-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .projects-strip { grid-template-columns: 1fr; } }

.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,36,16,0) 30%, rgba(15,36,16,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-sm);
  color: var(--color-white);
}
.project-card__tag {
  align-self: flex-start;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.6rem;
}
.project-card__overlay h3 { color: var(--color-white); font-size: 1.05rem; margin-bottom: 0.2rem; }
.project-card__overlay span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ---------------------------------------------------------------------- */
/* 14. OUR PROCESS                                                        */
/* ---------------------------------------------------------------------- */
.process { background: var(--color-forest); }
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  position: relative;
}
@media (max-width: 980px) { .process-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-track { grid-template-columns: 1fr; } }

.process-track::before {
  content: '';
  position: absolute;
  top: 26px; left: 6%; right: 6%;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
@media (max-width: 980px) { .process-track::before { display: none; } }

.process-step { position: relative; text-align: left; }
.process-step__index {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-dark);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
  position: relative; z-index: 1;
}
.process-step h3 { color: var(--color-white); font-size: 1.05rem; }
.process-step p { color: rgba(255,255,255,0.72); font-size: 0.9rem; }

/* ---------------------------------------------------------------------- */
/* 15. TESTIMONIALS                                                       */
/* ---------------------------------------------------------------------- */
.testimonial-slider { position: relative; max-width: 820px; margin-inline: auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slides {
  display: flex;
  transition: transform var(--dur-med) var(--ease-premium);
}
.testimonial-slide { flex: 0 0 100%; padding: var(--space-md); }
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raised);
  padding: var(--space-lg);
  text-align: center;
}
.testimonial-card__stars { display: flex; justify-content: center; gap: 0.2rem; color: var(--color-gold); margin-bottom: var(--space-sm); }
.testimonial-card__stars svg { width: 20px; height: 20px; }
.testimonial-card__quote { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-dark); line-height: var(--lh-snug); }
.testimonial-card__person { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: var(--space-md); }
.testimonial-card__person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-card__person strong { display: block; color: var(--color-forest); font-family: var(--font-display); font-size: 0.95rem; }
.testimonial-card__person span { font-size: var(--fs-small); color: var(--color-ink-60); }

.testimonial-controls { display: flex; justify-content: center; align-items: center; gap: var(--space-sm); margin-top: var(--space-md); }
.testimonial-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-hairline);
  background: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft);
}
.testimonial-arrow:hover { background: var(--color-primary); color: var(--color-white); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--color-hairline);
  border: none;
  padding: 0;
  transition: background var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.testimonial-dots button.is-active { background: var(--color-gold); transform: scale(1.3); }

/* ---------------------------------------------------------------------- */
/* 16. PARTNERS                                                           */
/* ---------------------------------------------------------------------- */
.partners { padding-block: var(--space-lg); }
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: var(--space-xl); width: max-content; }
.marquee__track img { height: 34px; width: auto; opacity: 1; filter: grayscale(0); transition: opacity var(--dur-fast) var(--ease-soft), filter var(--dur-fast) var(--ease-soft); }
.marquee__track img:hover { opacity: 1; filter: grayscale(0); }

/* ---------------------------------------------------------------------- */
/* 17. BLOG PREVIEW                                                       */
/* ---------------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__body { padding: var(--space-sm) var(--space-sm) var(--space-md); }
.blog-card__meta { display: flex; gap: var(--space-sm); font-size: 0.78rem; color: var(--color-ink-40); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.05rem; }
.blog-card p { font-size: 0.92rem; }

/* ---------------------------------------------------------------------- */
/* 18. CTA & NEWSLETTER                                                   */
/* ---------------------------------------------------------------------- */
.cta-band {
  background: var(--gradient-canopy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--color-white); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 50ch; margin-inline: auto; }
.cta-band__actions { display: flex; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-md); }

.newsletter { background: var(--color-dark); }
.newsletter .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); flex-wrap: wrap; }
.newsletter h3 { color: var(--color-white); margin-bottom: 0.3rem; }
.newsletter p { margin-bottom: 0; color: rgba(255,255,255,0.65); }
.newsletter-form { display: flex; gap: 0.6rem; flex: 1; max-width: 420px; min-width: 260px; }
.newsletter-form input {
  flex: 1;
  padding: 0.9em 1.2em;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--color-white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form .form-msg { flex-basis: 100%; font-size: var(--fs-small); margin-top: 0.4rem; }

/* ---------------------------------------------------------------------- */
/* 19. MISC WIDGETS                                                       */
/* ---------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-raised);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
  z-index: 90;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--color-gold); color: var(--color-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   ABOUT PAGE
   Table of Contents:
   20. Inner Page Hero
   21. Breadcrumb
   22. Our Story
   23. Mission & Vision
   24. Core Values
   25. Leadership Team
   26. Achievements
   27. Timeline
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 20. INNER PAGE HERO                                                    */
/* ---------------------------------------------------------------------- */
.inner-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background: var(--gradient-canopy);
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: var(--space-xl);
}
.inner-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-sunbeam);
  pointer-events: none;
}
.inner-hero__bg-image { position: absolute; inset: 0; z-index: 0; }
.inner-hero__bg-image img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.32;
  mix-blend-mode: luminosity;
}
.inner-hero__veil { position: absolute; inset: 0; background: var(--gradient-veil); z-index: 1; }
.inner-hero .container { position: relative; z-index: 2; }
.inner-hero h1 { color: var(--color-white); margin-top: var(--space-sm); max-width: 18ch; }
.inner-hero__lead { color: rgba(255,255,255,0.85); max-width: 56ch; margin-top: var(--space-sm); margin-bottom: 0; }

/* ---------------------------------------------------------------------- */
/* 21. BREADCRUMB                                                         */
/* ---------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--dur-fast) var(--ease-soft); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span[aria-current] { color: var(--color-gold); font-weight: 600; }
.breadcrumb svg { width: 14px; height: 14px; opacity: 0.6; }

/* ---------------------------------------------------------------------- */
/* 22. OUR STORY                                                          */
/* ---------------------------------------------------------------------- */
.story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 900px) { .story .container { grid-template-columns: 1fr; } }

.story__media { position: relative; }
.story__frame-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  max-width: 78%;
}
.story__frame-main img { aspect-ratio: 4/5; object-fit: cover; }
.story__frame-accent {
  position: absolute;
  right: 0;
  bottom: -10%;
  width: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  border: 6px solid var(--color-white);
}
.story__frame-accent img { aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 560px) {
  .story__frame-main { max-width: 100%; }
  .story__frame-accent { display: none; }
}

.story__signature { margin-top: var(--space-md); display: flex; align-items: center; gap: 0.9rem; }
.story__signature-mark { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-forest); }
.story__signature span { display: block; font-size: var(--fs-small); color: var(--color-ink-60); }
.story__signature strong { display: block; font-family: var(--font-display); color: var(--color-forest); font-size: 0.95rem; }

/* ---------------------------------------------------------------------- */
/* 23. MISSION & VISION                                                   */
/* ---------------------------------------------------------------------- */
.mission-vision { background: var(--color-light); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 780px) { .mv-grid { grid-template-columns: 1fr; } }

.mv-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.mv-card--dark { background: var(--gradient-canopy); }
.mv-card--dark h3, .mv-card--dark p { color: var(--color-white); }
.mv-card--dark p { color: rgba(255,255,255,0.82); }
.mv-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
}
.mv-card--dark .mv-card__icon { background: rgba(255,255,255,0.14); color: var(--color-gold); }
.mv-card__icon svg { width: 30px; height: 30px; }
.mv-card h3 { font-size: 1.3rem; }
.mv-card p { margin-bottom: 0; }

/* ---------------------------------------------------------------------- */
/* 24. CORE VALUES                                                        */
/* ---------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 980px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  transition: border-color var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.value-card:hover { border-color: var(--color-primary); transform: translateY(-4px); }
.value-card__index {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gold);
  flex-shrink: 0;
  line-height: 1;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.value-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ---------------------------------------------------------------------- */
.leader-spotlight {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.leader-spotlight__media {
  position: relative;
}

.leader-spotlight__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.leader-spotlight__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.leader-spotlight__content {
  padding: 2rem;
}

.leader-spotlight__role {
  display: block;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.leader-spotlight h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.leader-spotlight__bio {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.leader-spotlight__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
  text-align: center;
}

.leader-spotlight__meta-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-forest);
}

.leader-spotlight__actions {
  margin-top: 1rem;
}
/* ---------------------------------------------------------------------- */
/* 26. ACHIEVEMENTS                                                       */
/* ---------------------------------------------------------------------- */
.achievements { background: var(--color-forest); }
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
@media (max-width: 860px) { .achievements-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .achievements-grid { grid-template-columns: 1fr; } }

.achievement-card {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.achievement-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(212,175,55,0.14);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-sm);
}
.achievement-card__icon svg { width: 24px; height: 24px; }
.achievement-card .stat__number { color: var(--color-white); }
.achievement-card .stat__label { color: rgba(255,255,255,0.68); }

/* ---------------------------------------------------------------------- */
/* 27. TIMELINE                                                           */
/* ---------------------------------------------------------------------- */
.timeline { position: relative; max-width: 900px; margin-inline: auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 6px; bottom: 6px;
  width: 2px;
  background: var(--color-hairline);
}
@media (min-width: 768px) {
  .timeline::before { left: 50%; transform: translateX(-1px); }
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: var(--space-lg);
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item__dot {
  position: absolute;
  left: 11px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-gold);
  z-index: 1;
}
@media (min-width: 768px) {
  .timeline-item { width: 50%; padding-left: 0; padding-right: var(--space-lg); text-align: right; }
  .timeline-item__dot { left: auto; right: -10px; }
  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: var(--space-lg);
    text-align: left;
  }
  .timeline-item:nth-child(even) .timeline-item__dot { right: auto; left: -10px; }
}
.timeline-item__year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-gold);
  background: var(--color-forest);
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.9rem; margin-bottom: 0; }

/* ==========================================================================
   SERVICES PAGE
   Table of Contents:
   28. Services Intro / Chips
   29. Service Detail (zig-zag)
   30. Pricing Packages
   31. FAQ Accordion
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 28. SERVICES INTRO / CHIPS                                             */
/* ---------------------------------------------------------------------- */
.service-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: var(--space-md);
}
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1.1em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-hairline);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-forest);
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft), border-color var(--dur-fast) var(--ease-soft);
}
.service-chip:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

/* ---------------------------------------------------------------------- */
/* 29. SERVICE DETAIL (ZIG-ZAG)                                           */
/* ---------------------------------------------------------------------- */
.service-detail { scroll-margin-top: 100px; }
.service-detail + .service-detail { border-top: 1px solid var(--color-hairline); }

.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 900px) { .service-detail .container { grid-template-columns: 1fr; } }

.service-detail--reverse .container { direction: rtl; }
.service-detail--reverse .container > * { direction: ltr; }
@media (max-width: 900px) { .service-detail--reverse .container { direction: ltr; } }

.service-detail__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-raised);
}
.service-detail__frame img { aspect-ratio: 4/5; object-fit: cover; }
.service-detail__index {
  position: absolute;
  top: var(--space-sm); left: var(--space-sm);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--color-forest);
  font-family: var(--font-display);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

.service-detail__features {
  margin-top: var(--space-md);
  display: grid;
  gap: 0.7rem;
}
.service-detail__features li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--color-dark); font-size: 0.95rem; }
.service-detail__features svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.service-detail__actions { margin-top: var(--space-md); display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* ---------------------------------------------------------------------- */
/* 30. PRICING PACKAGES                                                   */
/* ---------------------------------------------------------------------- */
.pricing { background: var(--color-light); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.pricing-card--featured {
  background: var(--gradient-canopy);
  box-shadow: var(--shadow-raised);
  transform: scale(1.03);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .pricing-card--featured { transform: none; } }
.pricing-card--featured h3,
.pricing-card--featured p,
.pricing-card--featured .pricing-card__price { color: var(--color-white); }
.pricing-card--featured .pricing-card__price span { color: rgba(255,255,255,0.7); }
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.88); }
.pricing-card--featured .pricing-card__features svg { color: var(--color-gold); }

.pricing-card__badge {
  align-self: flex-start;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.pricing-card__price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--color-forest); margin-bottom: var(--space-xs); }
.pricing-card__price span { font-size: 0.85rem; font-weight: 500; color: var(--color-ink-60); font-family: var(--font-body); }
.pricing-card__desc { font-size: 0.9rem; margin-bottom: var(--space-md); }
.pricing-card__features { flex: 1; display: grid; gap: 0.65rem; margin-bottom: var(--space-md); }
.pricing-card__features li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--color-dark); }
.pricing-card__features svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.pricing-note { text-align: center; margin-top: var(--space-md); font-size: 0.88rem; color: var(--color-ink-60); }

/* ---------------------------------------------------------------------- */
/* 31. FAQ ACCORDION                                                      */
/* ---------------------------------------------------------------------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 0.3rem var(--space-md);
  transition: border-color var(--dur-fast) var(--ease-soft);
}
.faq-item[open] { border-color: var(--color-primary); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding-block: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-forest);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft);
}
.faq-item__icon svg { width: 14px; height: 14px; }
.faq-item[open] .faq-item__icon { transform: rotate(180deg); background: var(--color-primary); color: var(--color-white); }
.faq-item__body { padding-bottom: var(--space-sm); font-size: 0.93rem; color: var(--color-ink-60); }

/* ==========================================================================
   PROJECTS PAGE
   Table of Contents:
   32. Stats Overlap (reuse .stats)
   33. Category Filter Pills
   34. Project Showcase (alternating, cinematic)
   35. Transformation Reveal (signature interaction)
   36. Project Mini Timeline
   37. Testimonial Spotlight
   38. County Chips ("Where We Work")
   39. Related / Browse Projects Grid
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 33. CATEGORY FILTER PILLS (shared: Projects + Gallery)                 */
/* ---------------------------------------------------------------------- */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}
.filter-pill {
  padding: 0.65em 1.5em;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-hairline);
  background: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--color-dark);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft), border-color var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.filter-pill:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.filter-pill.is-active { background: var(--gradient-canopy); border-color: transparent; color: var(--color-white); box-shadow: var(--shadow-soft); }

/* ---------------------------------------------------------------------- */
/* 34. PROJECT SHOWCASE (ALTERNATING, CINEMATIC)                          */
/* ---------------------------------------------------------------------- */
.showcase { scroll-margin-top: 100px; }
.showcase + .showcase { margin-top: var(--space-2xl); }

.showcase .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 980px) { .showcase .container { grid-template-columns: 1fr; } }
.showcase--reverse .container { direction: rtl; }
.showcase--reverse .container > * { direction: ltr; }
@media (max-width: 980px) { .showcase--reverse .container { direction: ltr; } }

.showcase__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: var(--space-sm) 0 var(--space-md); }
.showcase__meta span {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 0.35em 0.9em; border-radius: var(--radius-pill);
  background: var(--color-light); color: var(--color-forest);
}
.showcase__stack { display: grid; gap: var(--space-md); margin-top: var(--space-md); }
.showcase__stack-item h4 { font-size: 0.95rem; color: var(--color-forest); margin-bottom: 0.25rem; }
.showcase__stack-item p { font-size: 0.9rem; margin-bottom: 0; color: var(--color-ink-60); }
.showcase__actions { margin-top: var(--space-md); }

/* ---------------------------------------------------------------------- */
/* 35. TRANSFORMATION REVEAL (SIGNATURE INTERACTION)                      */
/* ---------------------------------------------------------------------- */
.reveal-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  aspect-ratio: 16/10;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.reveal-frame__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.reveal-frame__after { z-index: 1; }
.reveal-frame__before { z-index: 2; clip-path: inset(0 0 0 50%); }
.reveal-frame__divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--color-white);
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
  pointer-events: none;
}
.reveal-frame__handle {
  position: absolute; top: 50%; left: 50%;
  width: 52px; height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-forest);
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-raised);
  z-index: 4;
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft);
}
.reveal-frame__handle svg { width: 16px; height: 16px; }
.reveal-frame:hover .reveal-frame__handle,
.reveal-frame:focus-within .reveal-frame__handle { background: var(--color-gold); color: var(--color-dark); }
.reveal-frame__tag {
  position: absolute; z-index: 3;
  top: var(--space-sm);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35em 0.9em; border-radius: var(--radius-pill);
  background: rgba(15,36,16,0.6); color: var(--color-white);
  backdrop-filter: blur(4px);
}
.reveal-frame__tag--before { left: var(--space-sm); }
.reveal-frame__tag--after { right: var(--space-sm); }
.reveal-frame__complete {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,36,16,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-soft);
}
.reveal-frame.is-complete .reveal-frame__complete { opacity: 1; }
.reveal-frame__complete span {
  font-family: var(--font-display); font-weight: 600; color: var(--color-white);
  background: rgba(27,94,32,0.55); border: 1px solid rgba(255,255,255,0.3);
  padding: 0.6em 1.4em; border-radius: var(--radius-pill); backdrop-filter: blur(6px);
  font-size: 0.95rem; letter-spacing: 0.02em;
}
.reveal-frame__hint {
  text-align: center; font-size: 0.82rem; color: var(--color-ink-40);
  margin-top: var(--space-xs);
}

/* ---------------------------------------------------------------------- */
/* 36. PROJECT MINI TIMELINE                                              */
/* ---------------------------------------------------------------------- */
.mini-timeline { display: flex; flex-wrap: wrap; gap: 0; margin-top: var(--space-md); }
.mini-timeline__step {
  flex: 1 1 110px;
  text-align: center;
  position: relative;
  padding-top: var(--space-md);
}
.mini-timeline__step::before {
  content: '';
  position: absolute; top: 6px; left: -50%; width: 100%; height: 2px;
  background: var(--color-hairline);
}
.mini-timeline__step:first-child::before { display: none; }
.mini-timeline__step::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-white); border: 3px solid var(--color-gold);
}
.mini-timeline__step span { display: block; font-size: 0.78rem; color: var(--color-ink-60); font-weight: 600; }

/* ---------------------------------------------------------------------- */
/* 37. TESTIMONIAL SPOTLIGHT                                              */
/* ---------------------------------------------------------------------- */
.spotlight {
  background: var(--gradient-canopy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: '\201C';
  position: absolute; top: -0.3em; left: var(--space-md);
  font-family: var(--font-display); font-size: 10rem; line-height: 1;
  color: rgba(255,255,255,0.06);
}
@media (max-width: 760px) { .spotlight { grid-template-columns: 1fr; text-align: center; } }
.spotlight__avatar { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,0.3); margin-inline: auto; }
.spotlight__avatar img { width: 100%; height: 100%; object-fit: cover; }
.spotlight__stars { display: flex; gap: 0.15rem; color: var(--color-gold); margin-bottom: var(--space-sm); }
@media (max-width: 760px) { .spotlight__stars { justify-content: center; } }
.spotlight__stars svg { width: 20px; height: 20px; }
.spotlight blockquote { font-family: var(--font-display); font-size: clamp(1.2rem, 1.4vw + 1rem, 1.7rem); color: var(--color-white); line-height: 1.4; margin: 0 0 var(--space-sm); }
.spotlight__person strong { display: block; color: var(--color-white); font-family: var(--font-display); }
.spotlight__person span { color: rgba(255,255,255,0.72); font-size: 0.9rem; }

/* ---------------------------------------------------------------------- */
/* 38. COUNTY CHIPS ("WHERE WE WORK")                                     */
/* ---------------------------------------------------------------------- */
.county-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.county-chip {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.55em 1.1em; border-radius: var(--radius-pill);
  background: var(--color-light); color: var(--color-forest);
  font-size: 0.85rem; font-weight: 600;
}
.county-chip svg { width: 14px; height: 14px; color: var(--color-gold); }

/* ---------------------------------------------------------------------- */
/* 39. RELATED / BROWSE PROJECTS GRID                                     */
/* ---------------------------------------------------------------------- */
.browse-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); }
@media (max-width: 980px) { .browse-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .browse-grid { grid-template-columns: 1fr; } }
.browse-grid .project-card { aspect-ratio: 3/3.7; }
[data-project-item].is-hidden { display: none; }

/* ==========================================================================
   GALLERY PAGE
   Table of Contents:
   40. Masonry Grid
   41. Lightbox
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 40. MASONRY GRID                                                       */
/* ---------------------------------------------------------------------- */
.masonry { columns: 4 220px; column-gap: var(--space-sm); }
@media (max-width: 1080px) { .masonry { columns: 3 200px; } }
@media (max-width: 720px) { .masonry { columns: 2 160px; } }
@media (max-width: 460px) { .masonry { columns: 1; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--space-sm);
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  display: block;
}
.masonry-item img { width: 100%; display: block; transition: transform var(--dur-med) var(--ease-soft); }
.masonry-item:hover img, .masonry-item:focus-visible img { transform: scale(1.08); }
.masonry-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,36,16,0) 35%, rgba(15,36,16,0.88) 100%);
  opacity: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-sm);
  transition: opacity var(--dur-fast) var(--ease-soft);
}
.masonry-item:hover .masonry-item__overlay,
.masonry-item:focus-visible .masonry-item__overlay { opacity: 1; }
.masonry-item__cat {
  align-self: flex-start;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 0.3rem;
}
.masonry-item__overlay h3 { color: var(--color-white); font-size: 1rem; margin-bottom: 0.15rem; }
.masonry-item__overlay span.loc { color: rgba(255,255,255,0.72); font-size: 0.8rem; display: block; margin-bottom: 0.35rem; }
.masonry-item__view { display: inline-flex; align-items: center; gap: 0.35em; color: var(--color-white); font-size: 0.82rem; font-weight: 600; }
.masonry-item__view svg { width: 14px; height: 14px; }

/* ---------------------------------------------------------------------- */
/* 42. PARTNER ITEM (hover caption, Projects page Trusted-By)             */
/* ---------------------------------------------------------------------- */
.partner-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
}
.partner-item img { filter: grayscale(0) opacity(1); transition: filter var(--dur-fast) var(--ease-soft); }
.partner-item:hover img { filter: grayscale(0) opacity(0.9); }
.partner-item__tag {
  position: absolute; bottom: -1.6rem; left: 50%; transform: translateX(-50%) translateY(4px);
  white-space: nowrap; font-size: 0.72rem; font-weight: 600; color: var(--color-gold);
  background: var(--color-forest); padding: 0.25em 0.8em; border-radius: var(--radius-pill);
  opacity: 0; transition: opacity var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
  pointer-events: none;
}
.partner-item:hover .partner-item__tag { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------------------------------------------------------------------- */
/* 41. LIGHTBOX                                                           */
/* ---------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  background: rgba(10,16,10,0.95);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-lg);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-fast) var(--ease-soft), visibility var(--dur-fast) var(--ease-soft);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__wrap { max-width: min(1100px, 92vw); max-height: 86vh; text-align: center; }
.lightbox__wrap img { max-width: 100%; max-height: 76vh; border-radius: var(--radius-md); object-fit: contain; box-shadow: var(--shadow-raised); }
.lightbox__caption { color: var(--color-white); margin-top: var(--space-sm); font-family: var(--font-display); }
.lightbox__caption span { display: block; color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 0.85rem; margin-top: 0.2rem; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--color-gold); color: var(--color-dark); }
.lightbox__close { top: var(--space-md); right: var(--space-md); }
.lightbox__prev { left: var(--space-md); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: var(--space-md); top: 50%; transform: translateY(-50%); }
@media (max-width: 620px) {
  .lightbox__prev, .lightbox__next { width: 40px; height: 40px; }
  .lightbox__prev { left: var(--space-xs); } .lightbox__next { right: var(--space-xs); }
}

/* ==========================================================================
   TEAM PAGE
   Table of Contents:
   43. Leader Spotlight (Managing Director)
   44. Department Grid
   45. Certification Grid
   46. CTA — Image Background variant
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 43. LEADER SPOTLIGHT (Managing Director — large premium card)          */
/* ---------------------------------------------------------------------- */
.leader-spotlight {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raised);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .leader-spotlight { grid-template-columns: 1fr; padding: var(--space-md); } }

.leader-spotlight__media { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; }
.leader-spotlight__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-med) var(--ease-soft); }
.leader-spotlight__media:hover img { transform: scale(1.05); }
.leader-spotlight__badge {
  position: absolute; bottom: var(--space-sm); left: var(--space-sm);
  background: rgba(15,36,16,0.7); backdrop-filter: blur(6px);
  color: var(--color-white); font-size: 0.78rem; font-weight: 600;
  padding: 0.45em 1em; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 0.4em;
}
.leader-spotlight__badge svg { width: 14px; height: 14px; color: var(--color-gold); }

.leader-spotlight__role { color: var(--color-gold); font-weight: 600; font-size: 0.95rem; display: block; margin-bottom: 0.4rem; }
.leader-spotlight__bio { color: var(--color-ink-60); }
.leader-spotlight__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
}
@media (max-width: 560px) { .leader-spotlight__meta { grid-template-columns: 1fr 1fr; } }
.leader-spotlight__meta-item strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--color-forest); }
.leader-spotlight__meta-item span { font-size: 0.8rem; color: var(--color-ink-60); }

.leader-spotlight__memberships { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--space-md); }
.leader-spotlight__memberships span {
  font-size: 0.78rem; font-weight: 600; color: var(--color-forest);
  background: var(--color-light); padding: 0.4em 0.9em; border-radius: var(--radius-pill);
}

.leader-spotlight__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.7em 1.3em; border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-hairline);
  font-weight: 600; font-size: 0.9rem; color: var(--color-dark);
  transition: border-color var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft);
}
.linkedin-btn svg { width: 18px; height: 18px; }
.linkedin-btn:hover { background: #0A66C2; border-color: #0A66C2; color: var(--color-white); }

/* ---------------------------------------------------------------------- */
/* 44. DEPARTMENT GRID                                                    */
/* ---------------------------------------------------------------------- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 980px) { .dept-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .dept-grid { grid-template-columns: 1fr; } }

.dept-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-med) var(--ease-premium), box-shadow var(--dur-med) var(--ease-premium);
}
.dept-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-raised); }
.dept-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.dept-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-med) var(--ease-soft); }
.dept-card:hover .dept-card__media img { transform: scale(1.08); }
.dept-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,36,16,0) 45%, rgba(15,36,16,0.75) 100%);
}
.dept-card__icon {
  position: absolute; top: var(--space-sm); left: var(--space-sm); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.dept-card__icon svg { width: 22px; height: 22px; }
.dept-card__exp {
  position: absolute; bottom: var(--space-sm); left: var(--space-sm); z-index: 2;
  color: var(--color-white); font-size: 0.78rem; font-weight: 600;
  background: rgba(212,175,55,0.9); color: var(--color-dark);
  padding: 0.3em 0.85em; border-radius: var(--radius-pill);
}
.dept-card__body { padding: var(--space-md); }
.dept-card__body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.dept-card__body p { font-size: 0.9rem; color: var(--color-ink-60); margin-bottom: var(--space-sm); }
.dept-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.dept-card__tags span {
  font-size: 0.72rem; font-weight: 600; color: var(--color-forest);
  background: var(--color-light); padding: 0.3em 0.75em; border-radius: var(--radius-pill);
}

/* ---------------------------------------------------------------------- */
/* 45. CERTIFICATION GRID                                                 */
/* ---------------------------------------------------------------------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
@media (max-width: 900px) { .cert-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .cert-grid { grid-template-columns: 1fr; } }

.cert-card {
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft);
}
.cert-card:hover { border-color: var(--color-gold); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.cert-card__icon {
  width: 68px; height: 68px; margin: 0 auto var(--space-sm);
  border-radius: 50%; background: var(--gradient-canopy);
  display: flex; align-items: center; justify-content: center; color: var(--color-gold);
}
.cert-card__icon svg { width: 30px; height: 30px; }
.cert-card h3 { font-size: 0.98rem; margin-bottom: 0.25rem; }
.cert-card p { font-size: 0.82rem; color: var(--color-ink-60); margin-bottom: 0; }

/* ---------------------------------------------------------------------- */
/* 46. CTA — IMAGE BACKGROUND VARIANT                                     */
/* ---------------------------------------------------------------------- */
.cta-band--image { padding: 0; background: none; }
.cta-band--image .cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band--image .cta-band__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-band--image .cta-band__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,36,16,0.55) 0%, rgba(15,36,16,0.88) 100%); }
.cta-band--image .cta-band__content { position: relative; z-index: 2; padding: var(--space-xl) var(--space-lg); }

/* ==========================================================================
   TESTIMONIALS PAGE
   Table of Contents:
   47. Testimonials Grid (filterable spotlight cards)
   48. Video Testimonial Showcase
   49. Video Modal
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 47. TESTIMONIALS GRID (filterable)                                     */
/* ---------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 980px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }
[data-testimonial-item].is-hidden { display: none; }

.tcard {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease-premium), box-shadow var(--dur-med) var(--ease-premium);
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-raised); }
.tcard__stars { display: flex; gap: 0.15rem; color: var(--color-gold); margin-bottom: var(--space-xs); }
.tcard__stars svg { width: 16px; height: 16px; }
.tcard__quote { font-size: 0.95rem; color: var(--color-dark); line-height: var(--lh-body); flex: 1; }
.tcard__person { display: flex; align-items: center; gap: 0.7rem; margin-top: var(--space-sm); padding-top: var(--space-sm); border-top: 1px solid var(--color-hairline); }
.tcard__person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.tcard__person strong { display: block; font-family: var(--font-display); font-size: 0.9rem; color: var(--color-forest); }
.tcard__person span { font-size: 0.78rem; color: var(--color-ink-60); }
.tcard__cat {
  align-self: flex-start;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--color-forest); background: var(--color-light);
  padding: 0.3em 0.75em; border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

/* ---------------------------------------------------------------------- */
/* 48. VIDEO TESTIMONIAL SHOWCASE                                         */
/* ---------------------------------------------------------------------- */
.video-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  aspect-ratio: 21/9;
  cursor: pointer;
}
.video-showcase img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease-soft); }
.video-showcase:hover img { transform: scale(1.05); }
.video-showcase::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,36,16,0.1) 0%, rgba(15,36,16,0.72) 100%); }
.video-showcase__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--color-forest);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-raised);
  transition: background var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.video-showcase__play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-showcase:hover .video-showcase__play { background: var(--color-gold); transform: translate(-50%, -50%) scale(1.08); }
.video-showcase__caption {
  position: absolute; bottom: var(--space-md); left: var(--space-md); right: var(--space-md); z-index: 2;
  color: var(--color-white);
}
.video-showcase__caption span { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 0.2rem; }

/* ---------------------------------------------------------------------- */
/* 49. VIDEO MODAL                                                        */
/* ---------------------------------------------------------------------- */
.video-modal {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  background: rgba(10,16,10,0.95);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-lg);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-fast) var(--ease-soft), visibility var(--dur-fast) var(--ease-soft);
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal__wrap { width: 100%; max-width: 960px; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-raised); background: #000; }
.video-modal__wrap iframe, .video-modal__wrap video { width: 100%; height: 100%; display: block; border: 0; }
.video-modal__close {
  position: fixed; top: var(--space-md); right: var(--space-md);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft);
}
.video-modal__close:hover { background: var(--color-gold); color: var(--color-dark); }

/* ---------------------------------------------------------------------- */
/* 50. STAT STRIP (compact stats row shared: Testimonials)                */
/* ---------------------------------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}
@media (max-width: 760px) { .stat-strip { grid-template-columns: 1fr 1fr; } }
.stat-strip__item strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem); color: var(--color-white);
}
.stat-strip__item span { color: rgba(255,255,255,0.75); font-size: 0.88rem; }

/* ---------------------------------------------------------------------- */
/* 51. REQUEST A QUOTE MODAL                                              */
/* ---------------------------------------------------------------------- */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-toast);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease-soft), visibility var(--dur-med) var(--ease-soft);
}
.quote-modal.is-open { opacity: 1; visibility: visible; }
.quote-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 15, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.quote-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: min(88vh, 900px);
  overflow-y: auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raised);
  padding: var(--space-lg);
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition: transform var(--dur-med) var(--ease-premium), opacity var(--dur-med) var(--ease-premium);
}
.quote-modal.is-open .quote-modal__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.quote-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-light);
  color: var(--color-forest);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.quote-modal__close:hover { background: var(--color-primary); color: var(--color-white); transform: rotate(90deg); }

.quote-modal__head { margin-bottom: var(--space-md); padding-right: var(--space-xl); }
.quote-modal__head h2 { margin-top: 0.3rem; margin-bottom: 0.4rem; }
.quote-modal__head p { color: var(--color-ink-60); margin-bottom: 0; }

/* ---- Form layout ---- */
.quote-form__section {
  border: 0;
  padding: 0;
  margin: 0 0 var(--space-md);
}
.quote-form__section legend {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-forest);
  padding: 0 0 0.6rem;
  width: 100%;
  border-bottom: 1px solid var(--color-hairline);
  margin-bottom: var(--space-sm);
}
.quote-form__hint { font-weight: 400; font-size: 0.8rem; color: var(--color-ink-40); text-transform: none; letter-spacing: 0; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.form-field { margin-bottom: var(--space-sm); }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}
.form-field .required { color: #C0392B; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-hairline);
  background: var(--color-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: border-color var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.14);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field__error {
  display: none;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: #C0392B;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #C0392B; }
.form-field.has-error .form-field__error { display: block; }

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-hairline);
  background: var(--color-light);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
}
.form-checkbox:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(46,125,50,0.08);
  color: var(--color-forest);
  font-weight: 600;
}
.form-checkbox input { accent-color: var(--color-primary); }
[data-group-error] {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #C0392B;
}
[data-group-error].is-visible { display: block; }

/* ---- File upload zone ---- */
.quote-upload {
  border: 2px dashed var(--color-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  cursor: pointer;
  color: var(--color-ink-60);
  transition: border-color var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
}
.quote-upload:hover,
.quote-upload:focus-visible,
.quote-upload.is-dragover {
  border-color: var(--color-primary);
  background: var(--color-light);
  outline: none;
}
.quote-upload__icon { width: 32px; height: 32px; color: var(--color-primary); margin-bottom: 0.4rem; }
.quote-upload p { margin-bottom: 0.2rem; font-size: 0.9rem; }
.quote-upload span { font-size: 0.78rem; }
.quote-upload__list { margin-top: var(--space-xs); text-align: left; }
.quote-upload__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}
.quote-upload__list button {
  color: #C0392B;
  font-weight: 600;
  line-height: 1;
}

/* ---- Submit button + status ---- */
.quote-form__submit {
  position: relative;
  margin-top: var(--space-xs);
}
.quote-form__spinner {
  display: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--color-white);
  margin-left: 0.6rem;
  animation: quoteSpin 700ms linear infinite;
}
@keyframes quoteSpin { to { transform: rotate(360deg); } }
.quote-form__submit.is-loading .quote-form__spinner { display: inline-block; }
.quote-form__submit.is-loading { pointer-events: none; opacity: 0.85; }
.form-status {
  margin: var(--space-xs) 0 0;
  font-size: 0.85rem;
  text-align: center;
}
.form-status.is-error { color: #C0392B; }

/* ---- Success view ---- */
.quote-success { text-align: center; padding: var(--space-sm) 0; }
.quote-success__icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: rgba(46,125,50,0.1);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.quote-success__icon svg { width: 34px; height: 34px; }
.quote-success h2 { margin-bottom: 0.5rem; }
.quote-success__message { max-width: 46ch; margin-inline: auto; color: var(--color-ink-60); }
.quote-success__details {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin: var(--space-md) 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-light);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.quote-success__details div { text-align: center; }
.quote-success__details span { display: block; font-size: 0.78rem; color: var(--color-ink-40); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.quote-success__details strong { font-family: var(--font-display); color: var(--color-forest); font-size: 1.05rem; }
.quote-success__actions { display: flex; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; }

@media (max-width: 560px) {
  .quote-modal__dialog { padding: var(--space-md); border-radius: var(--radius-md); }
  .quote-success__actions .btn { width: 100%; }
}

/* ---------------------------------------------------------------------- */
/* 52. FLOATING WHATSAPP BUTTON                                           */
/* ---------------------------------------------------------------------- */
.wa-fab {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: var(--z-fab);
  display: flex;
  align-items: center;
}
.wa-fab__button {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: linear-gradient(145deg, #34D058 0%, #1FA855 55%, #0F8A44 100%);
  box-shadow: 0 10px 26px rgba(15, 138, 68, 0.38), 0 2px 8px rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft);
}
.wa-fab__button svg { width: 30px; height: 30px; position: relative; z-index: 2; }
.wa-fab__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(52, 208, 88, 0.55);
  animation: waPulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.55; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-fab__button:hover,
.wa-fab__button:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 138, 68, 0.48), 0 4px 14px rgba(0,0,0,0.16);
  outline: none;
}
.wa-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  font-size: 0.82rem;
  line-height: 1.3;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: var(--shadow-soft);
  transition: opacity var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.wa-fab__tooltip strong { display: block; color: var(--color-gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.wa-fab__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-dark);
}
.wa-fab:hover .wa-fab__tooltip,
.wa-fab__button:focus-visible ~ .wa-fab__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .wa-fab { right: 18px; bottom: 18px; }
  .wa-fab__button { width: 52px; height: 52px; }
  .wa-fab__button svg { width: 25px; height: 25px; }
  .wa-fab__tooltip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab__ring { animation: none; display: none; }
}
