/* Designed By SyraxDev */

/* ═══════════════════════════════════════════════════
   CSS VARIABLES (:root)
   ═══════════════════════════════════════════════════ */
:root {
  /* Colors */
  --primary-blue: #002C63;
  --secondary-green: #006232;
  --accent-orange: #E7800E;
  --cream: #FBF5E4;
  --bg: #FFFFFF;
  --text: #1E293B;
  --border: #E5E7EB;

  /* Focus Section legacy color variables */
  --blue: var(--primary-blue);
  --green: var(--secondary-green);
  --orange: var(--accent-orange);
  --white: var(--bg);
  --muted: #64748b;

  /* Shared layout and motion */
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Fraunces', serif;
  --font-display: 'Playfair Display', serif;
  --container-xl: 1280px;
  --container-lg: 1280px;
  --radius-card: 16px;
  --radius-media: 20px;
  --ease-standard: 0.25s ease;
  --shadow-card-hover: 0 18px 48px rgba(0, 44, 99, 0.11);
  --header-height: 80px;

  /* Ferris wheel animation */
  --orbit-radius: 220px;
  --orbit-duration: 32s;
}

/* ═══════════════════════════════════════════════════
   GLOBAL STYLES & RESETS
   ═══════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html,
body {
  /* height: 100%; */
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

img,
svg {
  max-width: 100%;
}

a,
button {
  font: inherit;
}

section {
  width: 100%;
  padding-inline: 20px;
}

:where(.hero-inner, .about-inner, .focus-inner) {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
}

:where(.section-header, .voices-header, .voices-grid) {
  width: 100%;
  max-width: var(--container-lg);
  margin-inline: auto;
}

:where(.hero-headline, .about-headline, .section-title, .voices-title, .quote-text) {
  font-family: var(--font-serif);
  color: var(--primary-blue);
}

:where(.btn-primary, .btn-secondary, .about-cta, .rnp-btn) {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}


/* ===========================
   HEADER
=========================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;

  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);

  /* border-bottom: 1px solid rgba(0, 44, 99, 0.08);
  box-shadow: 0 4px 24px rgba(0, 44, 99, 0.04); */

  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
  max-width: 1280px;
  height: 100%;

  margin: 0 auto;
  padding-top: 12px;
  padding-inline: 24px;

  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
}

/* ===========================
   LOGO
=========================== */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;

  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;

  color: #111;

  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

/* ===========================
   NAV LINKS
=========================== */

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;

  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;

  color: #333;
  text-decoration: none;

  font-size: 1rem;
  font-weight: 500;

  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 100%;
  height: 2px;

  background: var(--orange);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ===========================
   RIGHT SIDE
=========================== */

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ===========================
   CTA BUTTON
=========================== */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  height: 52px;

  padding-inline: 28px;

  border: none;
  border-radius: 999px;

  background: var(--blue);
  color: var(--bg);

  text-decoration: none;
  white-space: nowrap;

  font-size: 1rem;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.12);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

header .nav-right .cta-btn {
  min-width: auto;
  height: 44px;
  padding-inline: 22px;
  border: 1px solid rgba(0, 44, 99, 0.12);
  border-radius: 999px;
  background: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(0, 44, 99, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
}

header .nav-right .cta-btn:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 44, 99, 0.16);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 999px;
  transition: .3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
}

/* MOBILE */
@media(max-width:768px) {

  .navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: var(--cream);
    ;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    height: calc(100dvh - var(--header-height));
    overflow-y: hidden;
    padding-bottom: 40px;

    display: none;
    flex-direction: column;

    background: var(--cream);

    background-image:
      radial-gradient(circle at 1px 1px,
        rgba(13, 43, 92, .12) 1px,
        transparent 0);

    background-size: 32px 32px;

    /* border-top:1px solid #e5e5e5; */

    overflow-y: auto;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-nav-links {
    list-style: none;
    width: 100%;
    padding: 20px 0;
  }

  .mobile-nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .mobile-nav-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 24px;

    text-decoration: none;
    color: var(--blue);

    font-size: 1.05rem;
    font-weight: 600;
  }

  .mobile-nav-links li a.active {
    color: var(--orange);
    background: rgba(231, 128, 14, 0.08);
  }

  .menu-pill {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .5px;
  }

  .green {
    background: #dff5d7;
    color: var(--green);
  }

  .orange {
    background: #ffe7cc;
    color: var(--orange);
  }

  .mobile-cta {
    padding: 24px;
    margin-top: auto;
  }

  .mobile-cta .cta-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-radius: 14px;
    background: var(--blue);
  }

  .mobile-footer {
    margin: 0 24px 24px;
    padding: 18px 20px;

    background: #ece8e0;

    border-radius: 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: .75rem;
    font-weight: 600;
    color: #6b7280;
  }

  .mobile-socials {
    display: flex;
    gap: 10px;
  }

  .mobile-socials span {
    width: 28px;
    height: 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background: #f5f5f5;
    font-size: .8rem;
  }

  /* Hover */
  .mobile-nav-links li a:hover {
    background: rgba(11, 53, 111, .06);
    color: var(--blue);
    padding-left: 32px;
  }

  /* Active Tap Effect */
  .mobile-nav-links li a:active {
    background: rgba(11, 53, 111, .1);
  }

  /* Pill Animation */
  .mobile-nav-links li a:hover .menu-pill {
    transform: scale(1.05);
  }

  .menu-pill {
    transition: all .3s ease;
  }

  /* Prevent body scrolling when mobile menu is open */
  body.menu-open,
  html.menu-open {
    overflow: hidden;
  }
}

/* ═══════════════════════════════════════════════════
    Footer
   ═══════════════════════════════════════════════════ */


/* ===================================
   FOOTER
=================================== */

.footer-section {
  background: var(--cream);
  color: var(--primary-blue);
  border-top: 1px solid rgba(0, 44, 99, 0.10);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(circle, rgba(0, 44, 99, 0.08) 1px, transparent 1.2px);
  background-size: 28px 28px;
}

/* Main Area */

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px;
  display: flex;
  gap: 72px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 0;
  min-width: 0;
}

.footer-brand {
  flex: 1.25 1 0;
}

/* Logo */

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

.footer-logo-icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(0, 44, 99, 0.08);
  color: var(--primary-blue);

  font-size: 18px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.footer-logo span {
  font-size: 13px;
  color: #475569;
}

.footer-description {
  max-width: 320px;

  font-size: 17px;
  line-height: 1.9;
  color: #475569;
}

/* Headings */

.footer-col h4 {
  margin: 4px 0 26px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;

  color: var(--primary-blue);
  text-transform: uppercase;
}

/* Links */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li:not(:last-child) {
  margin-bottom: 16px;
}

.footer-links a {
  text-decoration: none;

  color: #475569;
  font-size: 17px;

  transition: .3s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

/* Contact */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin-bottom: 22px;
}

.contact-item i {
  color: var(--accent-orange);
  font-size: 18px;
  margin-top: 4px;
}

.contact-item p {
  margin: 0;

  color: #475569;
  line-height: 1.7;
  font-size: 17px;
}

/* Social */

.social-links {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.social-links a {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  background: rgba(0, 44, 99, 0.08);
  color: var(--primary-blue);

  transition: .3s ease;
}

.social-links a:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-3px);
}

.supporters-text {
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
  max-width: 250px;
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(0, 44, 99, 0.12);
  background: rgba(255, 255, 255, 0.28);
}

.footer-bottom-content {
  padding-top: 24px;
  padding-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}

/* Responsive */

@media (max-width: 1100px) {

  .footer-container {
    flex-wrap: wrap;
    gap: 50px;
  }

  .footer-col {
    flex-basis: calc((100% - 50px) / 2);
  }
}

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    gap: 40px;

    padding: 60px 24px;
  }

  .footer-col {
    flex-basis: auto;
    width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom-content p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

.footer-bottom-content a {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.footer-bottom-content a:hover {
  color: var(--primary-blue);
}




/* ═══════════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════════ */


/* ===========================
   HERO Section
=========================== */
.hero {
  background: var(--cream);
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

/* subtle dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.036;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23002C63' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 60 L20 85 L50 85 L50 60 L35 45 Z'/%3E%3Cpath d='M30 85 L30 70 L40 70 L40 85'/%3E%3Cpath d='M80 55 L80 80 L110 80 L110 55 L95 40 Z'/%3E%3Cpath d='M88 80 L88 65 L98 65 L98 80'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  justify-content: center;
  max-width: var(--container-xl);
  width: 100%;
}

/* LEFT COLUMN */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 0;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-orange);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
}

.hero-headline .green {
  color: var(--secondary-green);
  display: block;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  max-width: 480px;
  margin-bottom: 8px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  gap: 8px;
  background: var(--primary-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent-orange);
  transform: translateY(-2px);
}

.btn-primary .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 13px;
  transition: transform 0.2s;
}

.btn-primary:hover .arrow {
  transform: translateX(3px);
}

.btn-secondary {
  gap: 6px;
  background: transparent;
  color: var(--primary-blue);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border: 1.5px solid var(--primary-blue);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  min-width: fit-content;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  white-space: nowrap;
}

/* RIGHT COLUMN */
.hero-right {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-media);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 44, 99, 0.18), 0 8px 24px rgba(0, 0, 0, 0.10);
  aspect-ratio: 4/3.3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* floating pill badges */
.pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  animation: floatPill 3s ease-in-out infinite;
}

.pill-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.pill--housing {
  top: -12px;
  left: -16px;
  animation-delay: 0s;
}

.pill--legal {
  right: -12px;
  top: 30%;
  animation-delay: 0.8s;
}

.pill--community {
  bottom: 50px;
  left: -16px;
  animation-delay: 1.6s;
}

.pill--policy {
  bottom: -10px;
  right: 16px;
  animation-delay: 1.1s;
}

.pill-bg-orange {
  background: rgba(231, 128, 14, 0.12);
}

.pill-bg-green {
  background: rgba(0, 98, 50, 0.12);
}

.pill-bg-blue {
  background: rgba(0, 44, 99, 0.12);
}

/* entrance animations */
.hero-left>* {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.25s;
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.35s;
}

.hero-left>*:nth-child(5) {
  animation-delay: 0.45s;
}

.hero-right {
  opacity: 0;
  transform: translateX(32px);
  animation: fadeLeft 0.7s 0.2s ease forwards;
}

/* Animation Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatPill {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ═══════════════════════════════════════════════════
   HERO SECTION - RESPONSIVE
   ═══════════════════════════════════════════════════ */
/* ===========================
   TABLET
=========================== */

@media (max-width: 1024px) {

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    max-width: 700px;
  }

  .hero-headline {
    font-size: clamp(2.3rem, 6vw, 3.5rem);
  }

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

  .hero-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .pill {
    transform: scale(.9);
  }

}


/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

  .hero {
    padding: 2rem 1rem;
  }

  .hero-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-left {
    gap: 1rem;
  }

  .hero-badge {
    font-size: .72rem;
    padding: 6px 14px;
  }

  .hero-headline {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.1;
  }

  .hero-desc {
    font-size: .95rem;
    line-height: 1.75;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn-secondary {
    display: none;
  }

  /* Better stats layout */

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: .5rem;
  }

  .stat {
    gap: .2rem;
  }

  .stat-value {
    font-size: 1.9rem;
  }

  .stat-label {
    font-size: .72rem;
    line-height: 1.4;
  }

  .hero-right {
    width: 100%;
  }

  .hero-image-wrap {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  /* Hide desktop floating pills */

  .pill--housing,
  .pill--legal,
  .pill--community {
    display: none;
  }

  /* Keep only one */

  .pill--policy {
    right: 10px;
    bottom: 10px;
    left: auto;

    padding: 8px 12px;
    font-size: .7rem;

    animation: none;
  }

}


/* ===========================
   SMALL MOBILE
=========================== */

@media (max-width: 480px) {

  .hero {
    padding: 1.5rem 1rem 2.5rem;
  }

  .hero-headline {
    font-size: 2.35rem;
  }

  .hero-desc {
    font-size: .92rem;
  }

  .hero-badge {
    font-size: .65rem;
    letter-spacing: 1px;
  }

  .btn-primary {
    height: 52px;
    padding-inline: 1.25rem;
    font-size: .9rem;
  }

  .btn-primary .arrow {
    width: 20px;
    height: 20px;
    font-size: .7rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: .68rem;
  }

  .hero-image-wrap {
    aspect-ratio: 16 / 11;
  }

  .pill--policy {
    font-size: .65rem;
    padding: 7px 10px;
  }

  .pill-icon {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

}


/* ═══════════════════════════════════════════════════
   HOME-About SECTION
   ═══════════════════════════════════════════════════ */

.about-section {
  background: var(--bg);
  padding: 90px 6% 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 18px 18px, rgba(0, 98, 50, 0.08) 1.4px, transparent 1.6px),
    linear-gradient(135deg, rgba(231, 128, 14, 0.045) 12%, transparent 12%),
    radial-gradient(circle at 0 100%, rgba(0, 44, 99, 0.08), transparent 34%);
  background-size: 36px 36px, 42px 42px, 100% 100%;
}

.about-inner {
  display: flex;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
}

/* LEFT – IMAGE COLUMN */
.about-image-col {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  opacity: 0;
  transform: translateX(-32px);
  animation: fadeRight 0.7s 0.1s ease forwards;
}

.about-image-wrap {
  border-radius: var(--radius-media);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 44, 99, 0.15);
  aspect-ratio: 4 / 4.2;
  max-height: 700px;
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* location badge overlaid bottom-left */
.location-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.location-badge .est {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
}

.location-badge .city {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.1;
}

/* RIGHT – CONTENT COLUMN */
.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1 1 0;
  min-width: 0;
  opacity: 0;
  transform: translateX(32px);
  animation: fadeLeft 0.7s 0.2s ease forwards;
}

/* eyebrow pill */
.about-eyebrow {
  display: inline-block;
  border: 1.5px solid #c9a96e;
  color: var(--secondary-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  width: fit-content;
}

/* headline */
.about-headline {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

/* body copy */
.about-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: #475569;
  max-width: 500px;
}

/* bullet list */
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 5px;
}

/* CTA button */
.about-cta {
  gap: 8px;
  background: var(--primary-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: 2px solid var(--primary-blue);
  border-radius: 999px;
  width: fit-content;
  transition: background 0.22s, color 0.22s, transform 0.18s;
}

.about-cta:hover {
  background: transparent;
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* stagger content children */
.about-content-col>* {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.5s ease forwards;
}

.about-content-col>*:nth-child(1) {
  animation-delay: 0.25s;
}

.about-content-col>*:nth-child(2) {
  animation-delay: 0.35s;
}

.about-content-col>*:nth-child(3) {
  animation-delay: 0.45s;
}

.about-content-col>*:nth-child(4) {
  animation-delay: 0.55s;
}

.about-content-col>*:nth-child(5) {
  animation-delay: 0.65s;
}

/* RESPONSIVE ABOUT US */
@media (max-width: 860px) {
  .about-section {
    padding: 60px 4% 50px;
  }

  .about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-image-col,
  .about-content-col {
    width: 100%;
  }

  .about-image-wrap {
    aspect-ratio: 4 / 3;
    max-height: 520px;
  }

  .about-headline {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .about-body,
  .about-list li {
    font-size: 0.95rem;
  }

  .about-cta {
    padding: 12px 26px;
  }
}


/* ═══════════════════════════════════════════════════
   What We Do SECTION (CORE PILLARS)
   ═══════════════════════════════════════════════════ */
.pillars-section {
  background: var(--cream);
  padding: 80px 5% 100px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pillars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 16px 16px, rgba(0, 44, 99, 0.07) 1.4px, transparent 1.6px),
    linear-gradient(135deg, rgba(0, 98, 50, 0.04) 12%, transparent 12%),
    radial-gradient(circle at 100% 20%, rgba(231, 128, 14, 0.10), transparent 30%);
  background-size: 34px 34px, 44px 44px, 100% 100%;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.section-eyebrow {
  display: inline-block;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  max-width: 540px;
}

/* FLEX CARD ROW */
.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

/* CARD BASE */
.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 calc((100% - 40px) / 3);
  min-width: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.55s ease forwards;
}

.pillar-card:nth-child(1) {
  animation-delay: 0.05s;
}

.pillar-card:nth-child(2) {
  animation-delay: 0.15s;
}

.pillar-card:nth-child(3) {
  animation-delay: 0.25s;
}

.pillar-card:nth-child(4) {
  animation-delay: 0.35s;
}

.pillar-card:nth-child(5) {
  animation-delay: 0.45s;
}

.pillar-card:nth-child(6) {
  animation-delay: 0.55s;
}

/* HOVER STATE */
.pillar-card:hover {
  box-shadow: 0 20px 56px rgba(0, 44, 99, 0.14);
  transform: translateY(-4px);
}

.pillar-card:hover .card-icon {
  background: var(--accent-orange);
}

.pillar-card:hover .card-footer {
  opacity: 1;
  transform: translateY(0);
}

.pillar-card:hover::after {
  opacity: 1;
}

/* CARD ICON (default) */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CARD CONTENT */
.card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
  transition: color 0.25s;
}

.card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  flex: 1;
}

/* PILLAR LABEL + ARROW (hidden by default, shown on hover) */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}

.pillar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.arrow-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
}

.arrow-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* decorative cream circle (hidden by default) */
.pillar-card::after {
  content: '';
  position: absolute;
  top: -28px;
  right: -28px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(251, 245, 228, 0.65);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.section-header>* {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards;
}

.section-header>*:nth-child(1) {
  animation-delay: 0s;
}

.section-header>*:nth-child(2) {
  animation-delay: 0.1s;
}

.section-header>*:nth-child(3) {
  animation-delay: 0.2s;
}

/* RESPONSIVE PILLARS */
@media (max-width: 900px) {
  .pillar-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 600px) {
  .pillar-card {
    flex-basis: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 48px 5% 56px;
  }

  .hero-headline,
  .about-headline,
  .section-title,
  .voices-title {
    overflow-wrap: anywhere;
  }

  .hero-stats {
    gap: 22px;
  }

  .pill {
    max-width: calc(100% - 20px);
    white-space: normal;
  }

  .about-section,
  .pillars-section {
    padding-block: 70px;
  }

  .location-badge {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
}


/* ═══════════════════════════════════════════════════
    KEY FOCUS AREA
   ═══════════════════════════════════════════════════ */
.focus-section {
  min-height: 85vh;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.focus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(0, 44, 99, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 44, 99, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 100% 0, rgba(231, 128, 14, 0.10), transparent 32%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
}

.focus-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT COLUMN */
.focus-left {
  width: 100%;
  max-width: 550px;
  flex: 1 1 0;
}

/* display: inline-block;
font-size: 11px;
font-weight: 700;
text-transform: uppercase; */

.focus-label {
  display: inline-block;
  font-size: 11px;
  color: var(--secondary-green);
  border: 1.5px solid var(--primary-blue);
  letter-spacing: 2.5px;
  padding: 6px 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}

.focus-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 20px;
}

.focus-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
}

/* RIGHT COLUMN FLEX MOSAIC */
.focus-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 14px;
  height: 500px;
  width: 100%;
  flex: 1 1 0;
  max-width: 100%;
  align-content: stretch;
}

/* Card base */
.fc {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  width: calc((100% - 14px) / 2);
  transition: transform .22s, box-shadow .22s;
}

.fc:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 44, 99, .13);
}

/* Card 01: image card, spans 2 rows */
.fc-01 {
  order: 1;
  height: calc(((100% - 28px) / 3) * 2 + 14px);
}

.fc-01 .img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #9ab5cc 0%, #4a7a96 35%, #1e4e70 100%);
  /* fallback/future enhancement: background: url('urban.jpg') center/cover no-repeat; */
}

.fc-01 .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 18, 48, .8) 0%, transparent 55%);
}

.fc-01 .img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
}

.img-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px;
}

.img-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

/* Text cards */
.fc-text {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  height: calc((100% - 28px) / 3);
}

/* Flex layout ordering */
.fc-02 {
  order: 3;
}

.fc-03 {
  order: 4;
}

.fc-04 {
  order: 2;
}

.fc-05 {
  order: 5;
}

.fc-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.fc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}

.fc-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* RESPONSIVE FOCUS SECTION */
@media (max-width: 900px) {
  .focus-section {
    padding: 60px 5%;
  }

  .focus-inner {
    flex-direction: column;
    gap: 40px;
  }

  .focus-left {
    margin-right: 0;
    text-align: center;
  }

  .focus-grid {
    max-width: 100%;
    height: auto;
    flex-wrap: nowrap;
  }

  .fc-01 {
    order: 1;
    aspect-ratio: 4 / 3;
    min-height: 250px;
  }

  .fc,
  .fc-text {
    width: 100%;
    height: auto;
  }

  .fc-text {
    padding: 28px 24px;
  }

  .fc-02 {
    order: 2;
  }

  .fc-03 {
    order: 3;
  }

  .fc-04 {
    order: 4;
  }

  .fc-05 {
    order: 5;
  }
}

/* ═══════════════════════════════════════════════════
   QUOTE SECTION
═══════════════════════════════════════════════════ */

.quote-section {
  position: relative;
  padding: 140px 6%;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Background Pattern */

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23006232' stroke-width='1'%3E%3Cpath d='M20 28L40 12L60 28V56H20Z'/%3E%3Cpath d='M34 56V40H46V56'/%3E%3C/g%3E%3C/svg%3E");

  background-size: 120px;
}

.quote-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Top Decoration */

.quote-top-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.quote-top-decoration .line {
  width: 220px;
  height: 1px;
  background: var(--border);
}

.quote-top-decoration .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.quote-icon {
  font-size: 84px;
  color: var(--accent-orange);
  line-height: 1;
}

/* Quote Text */

.quote-text {
  margin: 0;
  width: 100%;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary-blue);
}

/* Bottom Decoration */

.quote-bottom-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
}

.quote-bottom-decoration .line {
  width: 140px;
  height: 1px;
  background: var(--border);
}

.quote-bottom-decoration .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
}

/* Author */

.quote-author {
  margin-top: 24px;
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 700;
  color: var(--secondary-green);
}

/* ═══════════════════════════════════════════════════
   HIDE ON TABLET & MOBILE
═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .quote-section {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
    Testimonials Section
   ═══════════════════════════════════════════════════ */
.voices-section {
  margin-top: 20px;
  background: var(--bg);
  padding: 90px 6% 100px;
  min-height: 80vh;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.voices-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
  background-image:
    radial-gradient(circle, rgba(0, 44, 99, 0.08) 1px, transparent 1.2px);
  background-size: 24px 24px;
}

/* ===================================
   HEADER
=================================== */
.voices-header {
  max-width: var(--container-xl);
  margin: 0 auto 48px;
  text-align: center;
}

.voices-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary-green);
  margin-bottom: 14px;
  padding: 6px 20px;
  border: 1.5px solid var(--accent-orange);
  border-radius: 999px;
}

.voices-title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
}

/* ===================================
   FLEX CARD ROW
=================================== */
.voices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ===================================
   CARD
=================================== */
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 calc((100% - 40px) / 3);
  min-width: 0;
  transition: box-shadow 0.25s, transform 0.25s;
  opacity: 0;
  transform: translateY(28px);
  animation: cardUp 0.55s ease forwards;

}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* ===================================
   QUOTE ICON
=================================== */
.testimonial-quote-icon {
  margin-bottom: 20px;
}

.testimonial-quote-icon svg {
  width: 38px;
  height: 38px;
}

/* ===================================
   QUOTE TEXT
=================================== */
.testimonial-quote-text {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
  flex: 1;
  margin-bottom: 32px;

}

/* ===================================
   DIVIDER
=================================== */
.testimonial-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

/* ===================================
   AUTHOR ROW
=================================== */
.testimonial-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}


.testimonial-author-info {
  flex: 0 1 auto;
  min-width: 0;
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
}

.testimonial-author-location {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 2px;
}

/* ===================================
   CATEGORY TAG
=================================== */
.testimonial-category-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: normal;
  line-height: 1.3;
  text-align: center;
}

.tag--housing {
  background: rgba(0, 44, 99, 0.10);
  color: var(--primary-blue);
  font-weight: 900;
}

.tag--legal {
  background: rgba(0, 98, 50, 0.12);
  color: var(--secondary-green);
  font-weight: 900;
}

.tag--volunteer {
  background: rgba(231, 128, 14, 0.13);
  color: var(--accent-orange);
  font-weight: 900;
}

/* ===================================
   ANIMATIONS
=================================== */
@keyframes cardUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voices-header {
  opacity: 0;
  animation: fadeUp 0.5s 0.05s ease forwards;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 700px) {
  .testimonial-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .testimonial-quote-text {
    font-size: clamp(16px, 4vw, 24px);
  }
}

@media (max-width: 580px) {
  .voices-section {
    padding: 70px 5% 80px;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: auto;
    padding: 30px 26px 26px;
  }

  .testimonial-author-row {
    align-items: flex-start;
  }
}

.fi-rr-quote-right {
  color: var(--accent-orange);
  width: 38px;
  height: 38px;
  font-size: 28px;
}

/* ═══════════════════════════════════════════════════
    CTA Section
   ═══════════════════════════════════════════════════ */
.rnp-hero {
  background: var(--primary-blue);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  text-align: center;
}


/* ===================================
   Background Pattern
=================================== */
.rnp-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}


/* ===================================
   Badge
=================================== */
.rnp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(231, 128, 14, 0.6);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 28px;
  color: var(--accent-orange);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}


/* ===================================
   Heading
=================================== */
.rnp-hero__heading {
  color: var(--bg);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

/* ===================================
   Subtext
=================================== */
.rnp-hero__subtext {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(14px, 2vw, 18px);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 0 44px 0;
}

/* ===================================
   Button Row
=================================== */
.rnp-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================================
   Base Button
=================================== */
.rnp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

/* ===================================
   Primary (Orange)
=================================== */
.rnp-btn--primary {
  background: var(--accent-orange);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(231, 128, 14, 0.35);
}

.rnp-btn--primary:hover {
  background: #cf6f08;
  color: var(--bg) !important;
  transform: translateY(-2px);
}

/* ===================================
   Ghost (Outline)
=================================== */
.rnp-btn--ghost {
  background: transparent;
  color: var(--bg);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.rnp-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--bg) !important;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}



/* ═══════════════════════════════════════════
       
        ABOUT PAGE       
       HERO SECTION

    ═══════════════════════════════════════════ */
section.about-hero {
  background: var(--cream);
  min-height: calc(100vh - var(--header-height));
  padding: 88px 72px 96px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Decorative dot grid (top-right) ── */
.deco-dots {
  position: absolute;
  top: 64px;
  right: 420px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  pointer-events: none;
}

.deco-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  opacity: .35;
}

/* ── Decorative orange dot grid (bottom-right) ── */
.deco-dots-orange {
  position: absolute;
  bottom: 80px;
  right: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  pointer-events: none;
}

.deco-dots-orange span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .5;
}

/* ── Decorative leaf SVG (top-far-right) ── */
.deco-leaf {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 88px;
  opacity: .55;
  pointer-events: none;
}

/* ── Decorative blob circle (behind image, left) ── */
.deco-blob-green {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(0, 98, 50, .09);
  top: 80px;
  right: 340px;
  pointer-events: none;
}

/* ── Decorative blob (bottom-right corner) ── */
.deco-blob-cream {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(231, 128, 14, .07);
  bottom: 40px;
  right: 60px;
  pointer-events: none;
}

/* ── Concentric orange arcs (bottom-left of image) ── */
.deco-arcs {
  position: absolute;
  right: 248px;
  bottom: 148px;
  width: 100px;
  height: 100px;
  pointer-events: none;
}

.deco-arcs svg {
  width: 100%;
  height: 100%;
}

/* ── Main layout grid ── */
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════
       LEFT COLUMN
    ═══════════════════════════════════════════ */
.about-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Section label */
.about-hero-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.about-hero-label span {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.about-hero-label-line {
  width: 36px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* Big heading */
.about-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.1;
  color: var(--blue);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.about-hero-heading .highlight {
  color: var(--green);
}

/* Orange divider line */
.about-hero-divider {
  width: 56px;
  height: 3.5px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* Body text paragraphs */
.about-hero-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 52px;
}

.about-hero-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 500;
  max-width: 420px;
}

/* ── Values Row ── */
.about-hero-values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.about-hero-value-item {
  padding: 24px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--border);
}

.about-hero-value-item:first-child {
  padding-left: 0;
}

.about-hero-value-item:last-child {
  border-right: none;
}

.about-hero-value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-value-icon svg {
  width: 36px;
  height: 36px;
}

.about-hero-value-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.01em;
}

.about-hero-value-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
       RIGHT COLUMN — Image Card
    ═══════════════════════════════════════════ */
.about-hero-right {
  position: relative;
}

.about-hero-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 44, 99, .14), 0 4px 16px rgba(0, 44, 99, .07);
  aspect-ratio: 4/3.4;
  position: relative;
  z-index: 2;
}

.about-hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.about-hero-image-card:hover img {
  transform: scale(1.04);
}

/* ── Animations ── */
.about-hero-left {
  animation: fadeUp .7s ease both;
}

.about-hero-right {
  animation: fadeUp .7s .18s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  section.about-hero {
    padding: 60px 28px 72px;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .deco-leaf,
  .deco-blob-green,
  .deco-blob-cream {
    display: none;
  }
}

/* ═══════════════════════════════════════════
       Mission & Vision
    ═══════════════════════════════════════════ */

.purpose-section {
  background: var(--bg);
  padding: 64px 32px;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   INNER LAYOUT
========================= */

.purpose-inner {
  max-width: 1280px;
  width: min(100%, 1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

/* =========================
   BADGE
========================= */

.purpose-badge {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  background: var(--bg);

  border: 1.5px solid #E5E1D8;

  border-radius: 999px;

  padding: 6px 14px 6px 10px;

  width: fit-content;
}

.purpose-badge-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--accent-orange);

  flex-shrink: 0;
}

.purpose-badge-text {
  font-family: var(--font-sans);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .1em;

  color: var(--secondary-green);

  text-transform: uppercase;
}

/* =========================
   LEFT COLUMN
========================= */

.purpose-left {
  display: flex;
  flex-direction: column;

  gap: 28px;
}

/* =========================
   HEADLINE
========================= */

.purpose-headline-wrap {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.purpose-headline {
  font-family: var(--font-sans);

  font-size: clamp(34px, 4vw, 54px);

  font-weight: 800;

  color: var(--secondary-green);

  line-height: 1.08;

  letter-spacing: -0.03em;
}

.purpose-headline span {
  color: var(--primary-blue);

  display: block;
}

.purpose-headline-underline {
  width: 80px;
  height: 3px;

  background: var(--secondary-green);

  border-radius: 999px;

  margin-top: 6px;
}

/* =========================
   SUBTEXT
========================= */

.purpose-subtext {
  font-family: var(--font-sans);

  font-size: 15px;
  font-weight: 400;

  color: var(--muted);

  line-height: 1.8;

  max-width: 430px;
}

/* =========================
   ITEMS
========================= */

.purpose-items {
  display: flex;
  flex-direction: column;
}

.purpose-item {
  display: grid;

  grid-template-columns: 72px 1fr;

  gap: 20px;

  align-items: start;

  position: relative;
}

/* CONNECTOR */

.purpose-item:not(:last-child)::after {
  content: '';

  position: absolute;

  left: 35px;
  top: 68px;
  bottom: -20px;

  border-left: 2px dashed var(--secondary-green);

  opacity: .35;
}

/* NODE */

.purpose-item:not(:last-child) .purpose-icon-col::after {
  content: '';

  position: absolute;

  left: 50%;
  bottom: -28px;

  transform: translateX(-50%);

  width: 8px;
  height: 8px;

  border-radius: 50%;

  border: 2px solid var(--secondary-green);

  background: var(--cream);

  z-index: 1;
}

.purpose-item+.purpose-item {
  margin-top: 40px;
}

/* =========================
   ICON COLUMN
========================= */

.purpose-icon-col {
  position: relative;

  display: flex;
  justify-content: center;

  padding-top: 2px;
}

/* ICON CIRCLE */

.purpose-icon-circle {
  width: 64px;
  height: 64px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.purpose-icon-circle--green {
  background: var(--secondary-green);
}

.purpose-icon-circle--blue {
  background: var(--primary-blue);
}

/* =========================
   ITEM CONTENT
========================= */

.purpose-item-content {
  padding-top: 4px;
}

.purpose-item-title {
  font-family: var(--font-sans);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: .09em;

  text-transform: uppercase;

  color: var(--secondary-green);

  margin-bottom: 10px;
}

.purpose-item-title--blue {
  color: var(--primary-blue);
}

.purpose-item-body {
  font-family: var(--font-sans);

  font-size: 14px;

  color: var(--text);

  line-height: 1.8;

  max-width: 360px;
}

/* =========================
   RIGHT COLUMN
========================= */

.purpose-right {
  position: relative;

  width: 100%;

  min-height: 320px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* IMAGE FIX */

.purpose-right img,
.purpose-right svg,
.purpose-right picture {
  max-width: 100%;

  height: auto;

  display: block;
}

s .purpose-image-wrap {
  position: relative;

  width: min(100%, 420px);

  display: flex;
  justify-content: center;
  align-items: center;
}

.purpose-image {
  width: 100%;

  max-width: 420px;

  height: auto;

  object-fit: contain;

  display: block;

  border-radius: 24px;

  position: relative;

  z-index: 2;
}

/* =========================
   DOT GRIDS
========================= */

.purpose-dots {
  position: absolute;

  display: grid;

  grid-template-columns: repeat(6, 8px);
  grid-template-rows: repeat(4, 8px);

  gap: 8px;

  pointer-events: none;
}

.purpose-dots span {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: var(--secondary-green);

  opacity: .35;

  display: block;
}

.purpose-dots--tl {
  top: 32px;
  left: 24px;
}

.purpose-dots--br {
  bottom: 24px;
  right: 24px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .purpose-section {
    padding: 52px 24px 60px;
  }

  .purpose-inner {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .purpose-left {
    order: 1;
  }

  .purpose-right {
    order: 2;

    min-height: 360px;
  }

  .purpose-subtext {
    max-width: 100%;
  }

  .purpose-item-body {
    max-width: 100%;
  }

  .purpose-dots--br {
    right: 12px;
    bottom: 12px;
  }

  .purpose-dots--tl {
    left: 12px;
    top: 12px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

  .purpose-section {
    padding: 42px 16px 50px;
  }

  .purpose-headline {
    font-size: 32px;
  }

  .purpose-right {
    min-height: 240px;
  }

  .purpose-item {
    grid-template-columns: 60px 1fr;

    gap: 16px;
  }

  .purpose-icon-circle {
    width: 54px;
    height: 54px;
  }

  .purpose-item:not(:last-child)::after {
    left: 29px;
  }

  .purpose-item-body {
    font-size: 13px;
  }

  .purpose-subtext {
    font-size: 14px;
  }

  .purpose-dots {
    transform: scale(.8);
  }
}

@media (max-width: 768px) {

  .purpose-right {
    min-height: 260px;
  }

  .purpose-image-wrap {
    width: 100%;
    max-width: 260px;
  }

  .purpose-image {
    max-width: 260px;
    border-radius: 18px;
  }
}



/* ═══════════════════════════════════════════════════
      Milestone & Growth
   ═══════════════════════════════════════════════════ */


.milestones {
  position: relative;

  background: #F8F3E8;

  padding: 100px 0;

  overflow: hidden;
}

.milestones-container {
  max-width: 1280px;

  margin: 0 auto;

  padding: 0 40px;

  position: relative;
}

/* =========================
   HEADER
========================= */

.milestones-header {
  text-align: center;

  margin-bottom: 80px;

  position: relative;

  z-index: 5;
}

.section-label {
  color: #1D6B44;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 4px;
}

.label-line {
  width: 65px;
  height: 4px;

  background: #1D6B44;

  border-radius: 999px;

  margin: 18px auto 35px;
}

.milestones-title {
  font-size: 64px;
  line-height: 1.08;
  font-weight: 700;

  color: #082B5B;

  letter-spacing: -2px;

  max-width: 980px;

  margin: 0 auto 30px;
}

.green {
  color: #1D6B44;
}

.orange {
  color: #D9892B;
}

.milestones-description {
  max-width: 760px;

  margin: 0 auto;

  font-size: 22px;
  line-height: 1.7;

  color: #4B5563;
}

/* =========================
   TIMELINE
========================= */

.timeline-wrapper {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 10px;

  align-items: start;

  margin-top: 80px;

  padding-top: 140px;
}

/* =========================
   SVG CURVE
========================= */

.timeline-line {
  position: absolute;

  top: 205px;
  left: 0;

  width: 100%;
  height: 140px;

  z-index: 1;

  overflow: visible;

  pointer-events: none;
}

.timeline-line path {
  fill: none;

  stroke: #1D6B44;

  stroke-width: 3;

  stroke-linecap: round;

  vector-effect: non-scaling-stroke;
}

/* =========================
   TIMELINE ITEMS
========================= */

.timeline-item {
  position: relative;

  text-align: center;

  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 220px;

  margin-inline: auto;
}

/* STAGGER EFFECT */

.item-1 {
  margin-top: 0;
}

.item-2 {
  margin-top: 55px;
}

.item-3 {
  margin-top: -5px;
}

.item-4 {
  margin-top: 55px;
}

.item-5 {
  margin-top: 0;
}

/* =========================
   ICON
========================= */

.milestone-icon {
  width: 92px;
  height: 92px;

  border-radius: 50%;

  background: #E6E0D0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 38px;

  margin-bottom: 20px;

  position: relative;

  z-index: 5;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, .04);
}

/* ACTIVE */

.timeline-item.active .milestone-icon {
  transform: scale(1.06);
}

/* =========================
   DOT
========================= */

.timeline-dot {
  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: #1D6B44;

  border: 4px solid #F8F3E8;

  box-shadow:
    0 0 0 3px #D9892B;

  margin-bottom: 18px;

  position: relative;

  z-index: 5;
}

/* =========================
   YEAR
========================= */

.timeline-item h3 {
  font-size: 32px;
  line-height: 1;

  font-weight: 700;

  color: #1D6B44;

  margin-bottom: 14px;
}

/* =========================
   ORANGE LINE
========================= */

.milestone-line {
  width: 36px;
  height: 4px;

  border-radius: 999px;

  background: #D9892B;

  display: block;

  margin-bottom: 20px;
}

/* =========================
   TITLE
========================= */

.timeline-item h4 {
  font-size: 18px;
  line-height: 1.35;

  color: #1F2937;

  font-weight: 700;

  margin-bottom: 14px;

  min-height: 48px;
}

/* =========================
   DESCRIPTION
========================= */

.timeline-item p {
  font-size: 15px;
  line-height: 1.9;

  color: #4B5563;

  max-width: 190px;
}

/* =========================
   FOOTER
========================= */

.milestones-footer {
  margin-top: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;
}

.milestones-footer span {
  font-size: 36px;

  color: #D9892B;
}

.milestones-footer p {
  font-size: 26px;

  color: #1F2937;
}

/* =========================
   DECORATIONS
========================= */

.milestones::before {
  content: '';

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: #ECE5D4;

  top: 140px;
  right: -100px;

  opacity: .7;
}

.milestones::after {
  content: '';

  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: #E5E0D0;

  left: -180px;
  bottom: -180px;

  opacity: .6;
}

/* DOT PATTERN */

.timeline-wrapper::before {
  content: '';

  position: absolute;

  top: -10px;
  left: 40px;

  width: 70px;
  height: 70px;

  background-image:
    radial-gradient(#1D6B44 1.8px, transparent 1.8px);

  background-size: 16px 16px;

  opacity: .55;
}

/* LEAF */

.timeline-wrapper::after {
  content: '🌿';

  position: absolute;

  top: -30px;
  right: 20px;

  font-size: 80px;

  opacity: .18;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

  .timeline-wrapper {
    grid-template-columns: repeat(2, 1fr);

    gap: 60px;

    padding-top: 0;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    margin-top: 0 !important;

    max-width: 280px;
  }

  .timeline-item p {
    max-width: 240px;
  }
}

@media(max-width:768px) {

  .milestones {
    padding: 80px 0;
  }

  .milestones-container {
    padding: 0 24px;
  }

  .milestones-header {
    margin-bottom: 60px;
  }

  .milestones-title {
    font-size: 42px;

    letter-spacing: -1px;
  }

  .milestones-description {
    font-size: 18px;
  }

  .timeline-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .timeline-item {
    max-width: 340px;
  }

  .milestone-icon {
    width: 82px;
    height: 82px;

    font-size: 32px;
  }

  .timeline-item h3 {
    font-size: 28px;
  }

  .timeline-item h4 {
    font-size: 20px;

    min-height: auto;
  }

  .timeline-item p {
    font-size: 15px;
  }

  .milestones-footer {
    flex-direction: column;

    text-align: center;
  }

  .milestones-footer p {
    font-size: 22px;
  }

  .timeline-wrapper::after {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════
      Leadership & Team
   ═══════════════════════════════════════════════════ */

.rnp-team {
  position: relative;

  background: #ffffff;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  padding: 40px 0;
}

.team-container {
  width: 100%;
  max-width: 1240px;

  margin: 0 auto;

  padding: 0 24px;

  position: relative;

  z-index: 5;
}

/* =========================
   HEADER
========================= */

.team-header {
  text-align: center;

  margin-bottom: 30px;
}

.team-label {
  color: #1D6B44;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 4px;

  display: block;

  margin-bottom: 10px;
}

.team-arrow {
  font-size: 20px;

  margin-bottom: 14px;
}

.team-title {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;

  letter-spacing: -2px;

  color: #082B5B;

  max-width: 680px;

  margin: 0 auto 14px;
}

.team-title .green {
  color: #1D6B44;
}

.team-title .orange {
  color: #D9892B;
}

.team-description {
  max-width: 560px;

  margin: 0 auto;

  font-size: 15px;
  line-height: 1.7;

  color: #5B6472;
}

/* =========================
   GRID
========================= */

.team-grid {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 14px;

  align-items: start;
}

/* CONNECTOR LINE */

.team-curve-line {
  position: absolute;

  top: 74px;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    repeating-linear-gradient(to right,
      #1D6B44 0 6px,
      transparent 6px 12px);

  opacity: .18;

  z-index: 1;
}

/* =========================
   CARD
========================= */

.team-card {
  position: relative;

  background: #FCFCFA;

  border-radius: 18px;

  padding:
    18px 14px 18px;

  text-align: center;

  overflow: hidden;

  z-index: 5;

  border: 1px solid #F2EEE6;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, .025);
}

/* FEATURED */

.featured-card {
  transform: translateY(-8px);
}

/* BRUSH BG */

.brush-bg {
  position: absolute;

  width: 140px;
  height: 140px;

  background: #E8F0DC;

  border-radius: 50%;

  filter: blur(10px);

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  opacity: .6;
}

/* =========================
   IMAGE
========================= */

.member-image {
  width: 118px;
  height: 118px;

  border-radius: 50%;

  overflow: hidden;

  margin: 0 auto 14px;

  background: #EAE2CF;

  position: relative;

  z-index: 5;
}

.member-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================
   CONTENT
========================= */

.team-card h3 {
  font-size: 16px;
  line-height: 1.2;

  color: #1D6B44;

  margin-bottom: 6px;

  font-weight: 700;
}

.member-role {
  display: block;

  color: #D9892B;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 1.4px;

  margin-bottom: 10px;
}

.small-leaf {
  font-size: 14px;

  margin-bottom: 10px;

  opacity: .8;
}

.team-card p {
  font-size: 12px;
  line-height: 1.8;

  color: #5B6472;
}

/* =========================
   QUOTE
========================= */

.team-quote {
  position: relative;

  max-width: 520px;

  margin:
    26px auto 0;

  text-align: center;

  padding:
    18px 26px;

  border-radius: 999px;

  background: #EEF2E4;
}

.quote-icon {
  display: block;

  font-size: 22px;

  color: #D9892B;

  margin-bottom: 4px;
}

.team-quote p {
  font-size: 15px;
  line-height: 1.6;

  color: #1F2937;

  margin-bottom: 6px;
}

.quote-author {
  font-size: 13px;
  font-weight: 600;

  color: #D9892B;
}

/* =========================
   DECORATIONS
========================= */

.rnp-team::before {
  content: '';

  position: absolute;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: #EEF2E4;

  top: -90px;
  left: -90px;

  opacity: .8;
}

.rnp-team::after {
  content: '';

  position: absolute;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: #F6F2EA;

  right: -90px;
  top: 160px;

  opacity: .9;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

  .rnp-team {
    height: auto;

    padding: 80px 0;
  }

  .team-grid {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 20px;
  }

  .featured-card {
    transform: none;
  }
}

@media(max-width:768px) {

  .team-container {
    padding: 0 18px;
  }

  .team-title {
    font-size: 32px;

    letter-spacing: -1px;
  }

  .team-description {
    font-size: 14px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .member-image {
    width: 120px;
    height: 120px;
  }

  .team-card h3 {
    font-size: 22px;
  }

  .team-card p {
    font-size: 14px;
  }

  .team-quote {
    border-radius: 24px;
  }
}



/* ═══════════════════════════════════════════════════
     OUR-WORK PAGE
    HERO SECTION
   ═══════════════════════════════════════════════════ */

.our-work {
  background: var(--cream);
  padding: 120px 0 80px;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: visible;
}

.our-work__container {
  width: min(1280px, 100%);
  margin: auto;
  padding-inline: 20px;

  display: grid;
  grid-template-columns: 600px 550px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* =========================
   LEFT CONTENT
========================= */

.our-work__content {
  max-width: 600px;
  width: 100%;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.section-tag span {
  color: var(--secondary-green);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.line {
  width: 70px;
  height: 2px;
  background: var(--secondary-green);
}

.our-work__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  line-height: .95;
  letter-spacing: -1px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.our-work__title span {
  display: block;
  color: var(--secondary-green);
  font-style: italic;
  margin-top: 8px;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  margin-bottom: 24px;
}

.our-work .accent-line {
  width: 150px;
  height: 6px;
  border-radius: 20px;
  margin: 0 0 35px;
}

.our-work__text {
  max-width: 360px;
  font-size: .95rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 32px;
}

.our-work__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  background: var(--primary-blue);
  color: #fff;
  text-decoration: none;

  padding: 12px 22px;
  border-radius: 12px;

  font-size: .9rem;
  font-weight: 600;
}

.btn-secondary {
  color: var(--secondary-green);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
}

/* =========================
   ECOSYSTEM
========================= */

.ecosystem {
  width: 550px;
  height: 540px;
  position: relative;
}

/* CENTER */

.center-circle {
  width: 150px;
  height: 150px;

  background: #fff;
  border-radius: 50%;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  z-index: 5;
}

.center-circle h3 {
  color: var(--primary-blue);
  font-size: 2rem;
  font-weight: 700;
}

/* ORBITS */

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 44, 99, .12);
}

.orbit-1 {
  width: 340px;
  height: 340px;

  top: 100px;
  left: 100px;
}

.orbit-2 {
  width: 540px;
  height: 540px;

  top: 0;
  left: 0;
}

/* =========================
   CARDS
========================= */

.node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 165px;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle, 0deg)) translateY(calc(-1 * var(--orbit-radius)));
  transform-origin: center center;
  animation: wheel-rotate var(--orbit-duration) linear infinite;
}

.node-card {
  background: #fff;
  padding: 16px;
  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transform-origin: center center;
  animation: stay-upright var(--orbit-duration) linear infinite;
}

.node-card h4 {
  color: var(--secondary-green);
  font-size: .95rem;
  margin-bottom: 8px;
}

.node-card p {
  font-size: .8rem;
  line-height: 1.7;
  color: #555;
}

/* =========================
   POSITIONS
========================= */

.education {
  --orbit-angle: -90deg;
  --card-angle: 90deg;
}

.rights {
  --orbit-angle: -18deg;
  --card-angle: 18deg;
}

.health {
  --orbit-angle: 54deg;
  --card-angle: -54deg;
}

.community {
  --orbit-angle: 126deg;
  --card-angle: -126deg;
}

.policy {
  --orbit-angle: 198deg;
  --card-angle: -198deg;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1200px) {

  .our-work {
    padding: 100px 20px;
    min-height: auto;
  }

  .our-work__container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 40px;
    padding-inline: 20px;
  }

  .section-tag {
    justify-content: center;
  }

  .our-work .accent-line {
    margin-inline: auto;
  }

  .our-work__content {
    max-width: 680px;
  }

  .our-work__text {
    margin-inline: auto;
    max-width: 100%;
  }

  .our-work__buttons {
    justify-content: center;
    width: 100%;
    max-width: 320px;
  }

  .ecosystem {
    width: min(100%, 520px);
    height: 520px;
    margin: 0 auto;
  }
}

@media (max-width:768px) {

  .our-work {
    padding: 60px 16px 50px;
  }

  .our-work__container {
    padding-inline: 0;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-items: center;
  }

  .our-work__title {
    font-size: 2.4rem;
    line-height: 1.05;
  }

  .our-work__content {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .section-tag {
    justify-content: center;
  }

  .our-work__text {
    max-width: 100%;
    margin: 0 auto 28px;
    font-size: 1rem;
  }

  .our-work__buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-primary {
    width: 100%;
  }

  .ecosystem {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px 0 0;
    height: auto;
  }

  .orbit,
  .center-circle {
    display: none;
  }

  .node {
    position: static;
    width: 100%;
    transform: none;
    animation: none;
  }

  .node-card {
    width: 100%;
    padding: 18px 16px;
    margin: 0 auto;
    max-width: 100%;
    animation: none;
    transform: none;
  }

  .education,
  .rights,
  .health,
  .community,
  .policy {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }
}

@media (max-width:540px) {
  .our-work {
    padding: 50px 16px 40px;
  }

  .our-work__container {
    gap: 24px;
    padding-inline: 0;
  }

  .our-work__title {
    font-size: 2rem;
  }

  .our-work__text {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .our-work__buttons {
    gap: 12px;
  }

  .ecosystem {
    max-width: 100%;
    width: 100%;
    padding: 0;
    gap: 14px;
  }

  .node-card {
    padding: 16px 14px;
  }
}

@keyframes wheel-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle, 0deg) + 0deg)) translateY(calc(-1 * var(--orbit-radius)));
  }

  100% {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle, 0deg) + 360deg)) translateY(calc(-1 * var(--orbit-radius)));
  }
}

@keyframes stay-upright {
  0% {
    transform: rotate(var(--card-angle, 0deg));
  }

  100% {
    transform: rotate(calc(var(--card-angle, 0deg) - 360deg));
  }
}

@media (prefers-reduced-motion: reduce) {

  .node,
  .node-card {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════
     GALLERY
   ═══════════════════════════════════════════════════ */

.gallery-section {
  padding: 120px 0;
  background: var(--bg);
  min-width: auto;
}

.gallery-section .section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.gallery-section .section-tag span {
  color: var(--secondary-green);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.gallery-section .line {
  width: 70px;
  height: 2px;
  background: var(--secondary-green);
}

.gallery-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.gallery-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.gallery-title span {
  display: block;
  color: var(--secondary-green);
  font-style: italic;
  margin-top: 8px;
}

.accent-line {
  width: 90px;
  height: 4px;
  background: var(--accent-orange);
  margin: 0 auto 24px;
}

.gallery-description {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
}

.gallery-grid {
  width: min(1300px, 92%);
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: .4s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 36px;

  border: 2px solid var(--secondary-green);
  border-radius: 999px;

  color: var(--secondary-green);
  text-decoration: none;
  font-weight: 600;

  transition: .3s ease;
}

.gallery-btn:hover {
  background: var(--secondary-green);
  color: white;
}

@media (max-width: 992px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .gallery-section {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: 240px;
  }

}


/* ═══════════════════════════════════════════════════
     Community PAGE
    HERO SECTION
   ═══════════════════════════════════════════════════ */


.community-hero {
  min-height: 80vh;
  background: var(--cream);
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 40px;
}

.container {
  width: min(1400px, 92%);
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;

  align-items: center;
}

/* LEFT */

.hero-content {
  width: 100%;
  max-width: 620px;
}

.arrows {
  display: flex;
  gap: 6px;
  margin-bottom: 25px;
}

.arrows span {
  width: 0;
  height: 0;

  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--accent-orange);
}

.tag-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 35px;
}

.tag-line span {
  color: var(--secondary-green);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 2px;
}

.line {
  width: 90px;
  height: 2px;
  background: var(--secondary-green);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--primary-blue);
  margin-bottom: 18px;
}

.hero-title span {
  display: block;
  color: var(--secondary-green);
  font-style: italic;
}

.brush-line {
  width: 150px;
  height: 6px;
  background: var(--accent-orange);
  border-radius: 20px;
  margin-bottom: 35px;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #333;

  max-width: 450px;

  margin-bottom: 45px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
  text-decoration: none;

  padding: 18px 30px;
  border-radius: 14px;

  font-weight: 600;
}

.btn-outline {
  border: 2px solid var(--secondary-green);
  color: var(--secondary-green);

  text-decoration: none;

  padding: 18px 30px;
  border-radius: 14px;

  font-weight: 600;
}

.btn-outline:hover {
  color: var(--bg);
  background: var(--secondary-green);
}

/* RIGHT */

.hero-image-area {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-card {
  width: min(920px, 60vw);
  max-width: 920px;
  height: auto;

  aspect-ratio: 16 / 10;
  overflow: hidden;

  border-radius: 60px 140px 60px 140px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Decorations */

.dots-top {
  position: absolute;
  left: 60px;
  top: 70px;

  width: 120px;
  height: 120px;

  background-image:
    radial-gradient(rgba(0, 98, 50, .25) 2px,
      transparent 2px);

  background-size: 20px 20px;
}

.dots-bottom {
  position: absolute;
  left: 180px;
  bottom: 80px;

  width: 140px;
  height: 14px;

  background-image:
    radial-gradient(var(--accent-orange) 2px,
      transparent 2px);

  background-size: 24px 10px;
}

.leaf-decoration {
  position: absolute;
  left: 40px;
  bottom: 40px;

  font-size: 6rem;
  opacity: .15;
}

/* Responsive */

@media (max-width:1100px) {

  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .image-card {
    width: min(600px, 80%);
    aspect-ratio: 16 / 10;
    margin: 24px auto 0;
  }

  .volunteer-badge {
    left: 20px;
  }
}

@media (max-width: 768px) {

  .container {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
  }

  .hero-content {
    order: 1;
    padding-inline: 16px;
    max-width: 720px;
  }

  .hero-image-area {
    order: 2;
    display: block;
    width: 100%;
  }

  .image-card {
    width: 100%;
    max-width: 900px;
    border-radius: 28px;
    margin: 0 auto;
  }

  .volunteer-badge {
    display: none;
  }

  .hero-title {
    text-align: left;
  }

  .hero-description {
    text-align: left;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .community-hero {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .hero-content {
    max-width: 100%;
    padding-inline: 12px;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.05;
    text-align: center;
    margin: 6px 0 12px;
    letter-spacing: -0.5px;
  }

  .hero-title span {
    display: block;
  }

  .hero-description {
    font-size: 0.98rem;
    max-width: 92%;
    margin: 0 auto 18px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    gap: 10px;
    padding-inline: 12px;
  }

  .btn-primary {
    width: 92%;
    display: inline-block;
    padding: 14px 18px;
    border-radius: 12px;
    margin: 8px auto;
  }

  .image-card {
    width: 92%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    margin: 22px auto 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  }

  .volunteer-badge {
    display: none;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .btn-primary {
    padding: 12px 14px;
  }
}


/* ═══════════════════════════════════════════════════
    CTA SECTION
   ═══════════════════════════════════════════════════ */

.community-cta {
  background: var(--bg);
  padding: 120px 20px;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-card {
  width: 1280px;

  background: var(--cream);

  border-radius: 40px;

  padding: 20px 60px;

  text-align: center;

  position: relative;
  overflow: hidden;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .06);
}

/* TAG */

.cta-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  margin-bottom: 35px;
}

.cta-tag span {
  width: 90px;
  height: 2px;
  background: var(--secondary-green);
}

.cta-tag h5 {
  color: var(--secondary-green);

  font-size: .95rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.cta-tag .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-orange);
}

/* HEADING */

.cta-card h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 3.5rem;
  line-height: 1;

  color: var(--primary-blue);

  margin-bottom: 25px;
}

/* ORANGE LINE */

.cta-line {
  width: 120px;
  height: 5px;

  background: var(--accent-orange);

  border-radius: 20px;

  margin: 0 auto 30px;
}

/* TEXT */

.cta-card p {
  max-width: 760px;
  margin: auto;

  font-size: 1.05rem;
  line-height: 1.8;

  color: #444;

  margin-bottom: 45px;
}

/* BUTTON */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: var(--primary-blue);
  color: #fff !important; 

  text-decoration: none;

  padding: 20px 42px;

  border-radius: 18px;

  font-size: 1.05rem;
  font-weight: 600;

  transition: .3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: var(--accent-orange);
}

/* DECORATIONS */

.cta-pattern-dots {
  position: absolute;

  top: 70px;
  left: 10px;

  width: 140px;
  height: 140px;

  background-image:
    radial-gradient(rgba(0, 98, 50, .25) 2px,
      transparent 2px);

  background-size: 20px 20px;
}

.cta-orange-shape {
  position: absolute;

  width: 240px;
  height: 240px;

  bottom: -80px;
  right: -80px;

  background: var(--accent-orange);

  border-radius: 50%;
  opacity: .9;
}

.cta-leaf {
  position: absolute;

  left: 40px;
  bottom: 20px;

  width: 220px;
  height: 220px;

  opacity: .12;

  background: url("https://www.svgrepo.com/show/530447/leaf.svg") no-repeat center;

  background-size: contain;
}

/* RESPONSIVE */

@media(max-width:900px) {

  .cta-card {
    padding: 70px 30px;
  }

  .cta-card h2 {
    font-size: 3rem;
  }

  .cta-card p {
    font-size: 1rem;
  }

  .cta-tag span {
    width: 40px;
  }

  .cta-pattern-dots,
  .cta-orange-shape,
  .cta-leaf {
    display: none;
  }
}

.community-something {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comm-heading {
  color: var(--secondary-green);
}

/* ═══════════════════════════════════════════════════
     Contact PAGE
    HERO SECTION
   ═══════════════════════════════════════════════════ */


.contact-section {
  background: var(--cream);
  padding: 80px 20px;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-leaf {
  position: absolute;
  left: 0px;
  bottom: 180px;

  width: 220px;

  opacity: .12;
}

.contact-leaf::before {
  content: "🌿";

  font-size: 9rem;

  color: var(--secondary-green);

  display: block;
}



.contact-leaf img {
  width: 100%;
  display: block;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* ---------------- TAG ---------------- */

.contact-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.contact-tag span {
  color: var(--secondary-green);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact-tag .line {
  width: 80px;
  height: 2px;
  background: var(--secondary-green);
}

.contact-tag .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-orange);
}

/* ---------------- TITLE ---------------- */

.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  line-height: 0.95;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.contact-title span {
  color: var(--secondary-green);
}

/* ---------------- DESCRIPTION ---------------- */

.contact-description {
  max-width: 620px;
  margin: 0 auto;

  font-size: 1.05rem;
  line-height: 1.8;

  color: #555;

  margin-bottom: 28px;
}

/* ---------------- BUTTON ---------------- */

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-decoration: none;

  background: var(--primary-blue);
  color: #fff;

  padding: 16px 34px;

  border-radius: 14px;

  font-size: 1rem;
  font-weight: 600;

  transition: .3s ease;
}

.whatsapp-btn i {
  font-size: 1.8rem;
  /* 24px */
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  background-color: var(--accent-orange);
}

/* ---------------- NOTE ---------------- */

.contact-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  margin-top: 28px;

  color: #666;
  font-size: .95rem;
}

.contact-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-green);
}

/* ---------------- INFO GRID ---------------- */

.contact-info {
  max-width: 900px;

  margin: 60px auto 0;

  display: grid;
  grid-template-columns:
    1fr auto 1fr auto 1fr;

  align-items: start;
}

.info-divider {
  width: 1px;
  height: 120px;
  background: #d9d9d9;
  margin-top: 20px;
}

.info-item {
  padding: 0 25px;
}

/* ---------------- ICONS ---------------- */

.info-icon {
  width: 64px;
  height: 64px;

  margin: 0 auto 18px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.35rem;
}

.info-icon.green {
  background: #E8F3EB;
  color: var(--secondary-green);
}

.info-icon.orange {
  background: #FFF1DD;
  color: var(--accent-orange);
}

/* ---------------- CARD TITLE ---------------- */

.info-item h4 {
  font-family: "Cormorant Garamond", serif;

  font-size: 2rem;

  color: var(--primary-blue);

  margin-bottom: 12px;
}

/* ---------------- TEXT ---------------- */

.info-item p {
  font-size: .95rem;
  line-height: 1.8;
  color: #555;
}

/* ---------------- DECORATIONS ---------------- */

.contact-pattern {
  position: absolute;

  width: 110px;
  height: 110px;

  background-image:
    radial-gradient(rgba(0, 98, 50, .25) 1.8px,
      transparent 1.8px);

  background-size: 16px 16px;
}

.contact-pattern-left {
  top: 80px;
  left: 60px;
}

.contact-pattern-right {
  bottom: 80px;
  right: 60px;
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width:992px) {

  .contact-title {
    font-size: 3.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-divider {
    display: none;
  }

  .contact-description {
    font-size: 1rem;
  }

  .contact-pattern {
    display: none;
  }
}

@media(max-width:768px) {

  .contact-section {
    padding: 70px 20px;
  }

  .contact-title {
    font-size: 3rem;
  }

  .contact-description {
    font-size: .95rem;
  }

  .whatsapp-btn {
    width: 100%;
    max-width: 320px;
  }
}



/* ═══════════════════════════════════════════════════
     FORM Section
   ═══════════════════════════════════════════════════ */


.cs-wrap {
  background: var(--bg);
  padding: 72px 48px 80px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Leaves */
.cs-leaf {
  position: absolute;
  width: 90px;
  height: auto;
  pointer-events: none;
  opacity: 0.5;
}

.cs-leaf--tl {
  top: 24px;
  left: 20px;
}

.cs-leaf--br {
  bottom: 32px;
  right: 20px;
}

/* ── HEADER ── */
.cs-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 660px;
  margin: 0 auto 52px auto;
  position: relative;
  z-index: 2;
}

.cs-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans, 'DM Sans', sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E7800E;
}

.cs-eline {
  display: block;
  width: 36px;
  height: 1.5px;
  background: #E7800E;
  flex-shrink: 0;
}

.cs-h2 {
  font-family: var(--font-serif, 'Fraunces', serif) !important;
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 800 !important;
  color: #002C63 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.cs-sub {
  font-family: var(--font-sans, 'DM Sans', sans-serif);
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
  text-align: center;
  margin: 0;
}

/* ── PANELS ── */
.cs-panels {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* ── LEFT ── */
.cs-left {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cs-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cs-photo {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.cs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-photo-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  background: linear-gradient(135deg, #5a8a6a, #2a4d33);
  font-family: var(--font-sans, sans-serif);
}

/* Dark card */
.cs-card {
  background: #002C63;
  padding: 28px;
  position: relative;
}

.cs-card::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: #002C63;
  border-radius: 16px 16px 0 0;
}

.cs-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.cs-card-ico {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 2px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-card-tagline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.cs-card-t1 {
  font-family: var(--font-sans, sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.cs-card-t2 {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  font-weight: 700;
  color: #E7800E;
  line-height: 1.2;
}

.cs-card-bar {
  width: 38px;
  height: 2.5px;
  background: #E7800E;
  border-radius: 2px;
  margin-top: 5px;
}

.cs-card-body {
  font-family: var(--font-sans, sans-serif);
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  max-width: 320px;
}

/* Pillars */
.cs-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.cs-pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs-pico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #006232;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-pname {
  font-family: var(--font-sans, sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.cs-pdesc {
  font-family: var(--font-sans, sans-serif);
  font-size: 11.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.4;
}

/* ── FORM CARD ── */
.cs-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .07);
}

.cs-form-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.cs-form-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #002C63;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-form-title {
  display: block;
  font-family: var(--font-sans, sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: #002C63;
  line-height: 1.3;
}

.cs-form-sub {
  font-family: var(--font-sans, sans-serif);
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-top: 3px;
}

/* Fields */
.cs-fields {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs-label {
  font-family: var(--font-sans, sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #002C63;
}

.cs-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cs-input-wrap--ta {
  align-items: flex-start;
}

.cs-icon {
  position: absolute;
  left: 14px;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.cs-icon--top {
  top: 14px;
}

.cs-input,
.cs-textarea {
  width: 100% !important;
  padding: 11px 14px 11px 40px !important;
  border: 1.5px solid #E5E7EB !important;
  border-radius: 10px !important;
  font-family: var(--font-sans, 'DM Sans', sans-serif);
  font-size: 14px;
  color: #1E293B;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.cs-input::placeholder,
.cs-textarea::placeholder {
  color: #b0b8c4;
}

.cs-input:focus,
.cs-textarea:focus {
  border-color: #006232;
}

.cs-field.error .cs-input,
.cs-field.error .cs-textarea {
  border-color: #dc2626;
}

.cs-error {
  margin-top: 8px;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.3;
  min-height: 18px;
}

.cs-textarea {
  resize: vertical;
  min-height: 112px;
  line-height: 1.6;
}

.cs-submit {
  width: 100%;
  padding: 15px 20px;
  background: #E7800E !important;
  color: #ffffff;
  font-family: var(--font-sans, 'DM Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  transition: opacity 0.2s;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.cs-submit:hover {
  opacity: 0.88;
  background: #E7800E !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cs-wrap {
    padding: 56px 24px 64px;
  }

  .cs-leaf, .cs-left {
    display: none !important;
  }

  .cs-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cs-wrap {
    padding: 40px 16px 48px;
  }

  .cs-leaf, .cs-left {
    display: none !important;
  }

  .cs-h2 {
    font-size: 28px !important;
  }

  .cs-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ═══════════════════════════════════════════════════
     FAQ Section
   ═══════════════════════════════════════════════════ */
   /* ==========================
   FAQ SECTION
========================== */

.faq-section {
  background: var(--cream);
  padding: 100px 20px;
}

.faq-section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.faq-section-tag span {
  color: var(--secondary-green);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
}


.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-blue);
  margin-top: 20px;
  margin-bottom: 16px;
}

.faq-title span {
  color: var(--accent-orange);
}

.faq-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 44, 99, 0.08);
  border-radius: 18px;

  overflow: hidden;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;

  box-shadow:
    0 8px 24px rgba(0, 44, 99, 0.05);
}

.faq-item:hover {
  transform: translateY(-3px);

  border-color: rgba(231, 128, 14, 0.25);

  box-shadow:
    0 14px 35px rgba(0, 44, 99, 0.08);
}

.faq-question {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;

  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 22px 24px;

  font-size: 1.08rem;
  font-weight: 600;

  color: var(--primary-blue);
  text-align: left;
}

.faq-icon {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: rgba(231, 128, 14, 0.12);

  color: var(--accent-orange);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
  font-weight: 500;

  transition: .3s ease;

  flex-shrink: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  transition: grid-template-rows .35s ease;
}

.faq-answer p {
  overflow: hidden;

  padding: 0 24px;

  color: var(--muted);

  line-height: 1.8;

  margin: 0;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 24px;
}

.faq-item.active .faq-icon {
  background: var(--secondary-green);
  color: #fff;
  transform: rotate(45deg);
}

/* Mobile */

@media (max-width: 768px) {

  .faq-section {
    padding: 70px 18px;
  }

  .faq-question {
    padding: 18px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 18px;
  }

  .faq-item.active .faq-answer p {
    padding-bottom: 18px;
  }
}





/* Override Hello Elementor button reset */

.faq-question,
.faq-question:hover,
.faq-question:focus,
.faq-question:active {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--primary-blue) !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.faq-item.active .faq-question {
  background: transparent !important;
  color: var(--primary-blue) !important;
}

.faq-question:hover .faq-icon,
.faq-item.active .faq-icon {
  background: var(--secondary-green);
  color: #fff;
}