/* ═══════════════════════════════════════════════════════════
   SHREE LAMBODAR CREDIT — ABOUT.CSS
   Fonts: Playfair Display (headings) + DM Sans (body)
   Theme: #254036 / #1e3a2f / Gold / White
═══════════════════════════════════════════════════════════ */

:root {
  --green-dark:   #1e3a2f;
  --green-hero:   #254036;
  --green-mid:    #2a5240;
  --green-light:  #3a7a5a;
  --gold:         #c8a84b;
  --gold-light:   #e8c76a;
  --gold-pale:    #f5e9c8;
  --white:        #ffffff;
  --off-white:    #f8faf9;
  --cream:        #fdfaf4;
  --text-primary: #1a2e25;
  --text-body:    #3d5a4a;
  --text-muted:   #6b8c7a;
  --border:       rgba(30,58,47,0.10);

  --header-h:       80px;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --shadow-sm:      0 2px 12px rgba(30,58,47,0.08);
  --shadow-md:      0 8px 32px rgba(30,58,47,0.14);
  --shadow-lg:      0 20px 60px rgba(30,58,47,0.18);

  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.18s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(30,58,47,0.10);
  transition: var(--transition);
}
.header.scrolled {
  background: #254036;
  box-shadow: 0 4px 28px rgba(37,64,54,0.32);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Nav link colors */
.header .nav-link           { color: rgba(37,64,54,0.88); }
.header .nav-link:hover     { color: #254036; background: rgba(37,64,54,0.07); }
.header.scrolled .nav-link  { color: rgba(255,255,255,0.92); }
.header.scrolled .nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.07); }

/* Hamburger bars */
.header .ham-bar           { background: #254036; }
.header.scrolled .ham-bar  { background: #ffffff; }

/* Active nav item */
.nav-item--active .nav-link {
  color: #254036 !important;
  font-weight: 700;
  position: relative;
}
.nav-item--active .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.85rem; right: 0.85rem;
  height: 2px;
  background: #254036;
  border-radius: 2px;
}
.header.scrolled .nav-item--active .nav-link { color: var(--gold-light) !important; }
.header.scrolled .nav-item--active .nav-link::after { background: var(--gold); }

/* Mobile active link */
.mobile-nav-link--active {
  color: var(--gold-light) !important;
  background: rgba(200,168,75,0.08) !important;
}

/* ─── Header Container ───────────────────────────────────── */
.header-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; gap: 2rem;
}

/* ─── Logo ───────────────────────────────────────────────── */
.logo {
  flex-shrink: 0;
  display: flex; align-items: center;
  margin-right: auto;
  background: rgba(255,255,255,0.96);
  padding: 6px 20px 6px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.12);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
}
.logo:hover { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.18); transform: translateY(-1px); }
.logo-img { height: 50px; width: auto; object-fit: contain; display: block; }

/* ─── Desktop Nav ────────────────────────────────────────── */
.nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-item  { position: relative; }
.nav-link  {
  display: flex; align-items: center; gap: 4px;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap; letter-spacing: 0.01em;
}
.chevron { width: 14px; height: 14px; stroke: currentColor; transition: transform 0.25s ease; flex-shrink: 0; }
.nav-item.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  overflow: visible; z-index: 100;
}
.dropdown::before {
  content: ''; position: absolute; top: -6px; left: 20px;
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
  transform: rotate(45deg); border-radius: 2px;
}
.nav-item.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { position: relative; border-bottom: 1px solid rgba(30,58,47,0.06); }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-link {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 0.85rem 1.1rem;
  font-size: 0.86rem; font-weight: 500; color: var(--text-body);
  transition: var(--transition-fast); line-height: 1.4;
}
.dropdown-link:hover { color: var(--green-dark); background: var(--off-white); }
.chevron-right { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s, transform 0.2s; }
.dropdown-item.has-subdropdown:hover .chevron-right { opacity: 1; transform: translateX(3px); }

/* Subdropdown */
.subdropdown {
  position: absolute; left: 100%; top: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 101;
}
.dropdown-item.has-subdropdown:hover .subdropdown { opacity: 1; visibility: visible; transform: translateX(0); }
.subdropdown li { border-bottom: 1px solid rgba(30,58,47,0.06); }
.subdropdown li:last-child { border-bottom: none; }
.subdropdown-link {
  display: flex; align-items: center;
  padding: 0.8rem 1.1rem;
  font-size: 0.84rem; font-weight: 400; color: var(--text-body);
  transition: var(--transition-fast); gap: 8px;
}
.subdropdown-link::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; opacity: 0; transition: opacity 0.2s; }
.subdropdown-link:hover { color: var(--green-dark); background: var(--off-white); padding-left: 1.3rem; }
.subdropdown-link:hover::before { opacity: 1; }

/* CTA Button */
.header-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--gold); color: var(--green-dark);
  font-size: 0.875rem; font-weight: 700;
  border-radius: 50px; letter-spacing: 0.02em;
  transition: var(--transition-fast); white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,0.4); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 42px; height: 42px; gap: 5px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast); flex-shrink: 0;
}
.hamburger:hover { background: rgba(37,64,54,0.07); }
.header.scrolled .hamburger:hover { background: rgba(255,255,255,0.08); }
.ham-bar {
  display: block; width: 24px; height: 2px;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.3s ease, background 0.3s ease;
  transform-origin: center;
}
.hamburger.active .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .ham-bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; max-height: 0; overflow: hidden;
  background: rgba(20,44,35,0.99);
  backdrop-filter: blur(20px);
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  opacity: 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { max-height: 1000px; opacity: 1; }
.mobile-nav-list { padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link { display: block; padding: 0.85rem 1rem; font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.88); border-radius: var(--radius-sm); transition: var(--transition-fast); }
.mobile-nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }
.mobile-accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 1rem; font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.88); border-radius: var(--radius-sm); transition: var(--transition-fast); text-align: left; }
.mobile-sub-btn { font-size: 0.875rem; color: rgba(255,255,255,0.7); padding-left: 1.5rem; }
.mobile-accordion-btn:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }
.mobile-accordion-btn.active .chevron { transform: rotate(180deg); }
.mobile-accordion-list { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.mobile-accordion-list.open { max-height: 600px; }
.mobile-sub-link { display: flex; align-items: center; gap: 8px; padding: 0.7rem 1rem 0.7rem 2.5rem; font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.6); transition: var(--transition-fast); border-radius: var(--radius-sm); }
.mobile-sub-link::before { content: '›'; color: var(--gold); font-size: 1.1rem; line-height: 1; }
.mobile-sub-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.05); }
.mobile-cta { display: block; margin-top: 0.5rem; padding: 0.85rem 1.5rem; background: var(--gold); color: var(--green-dark); font-weight: 700; border-radius: 50px; text-align: center; font-size: 0.95rem; transition: var(--transition-fast); }
.mobile-cta:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER
═══════════════════════════════════════════════════════════ */
.page-banner {
  position: relative;
  margin-top: var(--header-h);
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.04);
  animation: bannerZoom 16s ease-in-out infinite alternate;
}
@keyframes bannerZoom {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.10); }
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(37,64,54,0.55) 0%,
    rgba(30,58,47,0.72) 60%,
    rgba(20,40,32,0.88) 100%
  );
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  animation: bannerFadeUp 0.9s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes bannerFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.breadcrumb-link { color: var(--gold); transition: color 0.2s; }
.breadcrumb-link:hover { color: var(--gold-light); }
.breadcrumb-current { color: rgba(255,255,255,0.75); }

.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.banner-title-accent {
  color: var(--gold);
  font-style: italic;
}
.banner-title-line {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 0 auto;
  animation: lineGrow 0.8s 0.5s cubic-bezier(0.4,0,0.2,1) both;
  transform-origin: center;
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Banner floating symbols */
.banner-floats { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.bf {
  position: absolute;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.07;
  user-select: none;
  animation: bfFloat ease-in-out infinite;
}
.bf-1 { font-size: 5rem;  top: 10%; left: 5%;   animation-duration: 14s; animation-delay: 0s; }
.bf-2 { font-size: 7rem;  top: 5%;  right: 8%;  animation-duration: 18s; animation-delay: 3s; }
.bf-3 { font-size: 4rem;  bottom: 15%; left: 18%; animation-duration: 12s; animation-delay: 6s; }
.bf-4 { font-size: 6rem;  bottom: 10%; right: 20%; animation-duration: 16s; animation-delay: 2s; }
.bf-5 { font-size: 3.5rem;top: 40%; left: 45%;  animation-duration: 10s; animation-delay: 4s; }
@keyframes bfFloat {
  0%, 100% { transform: translateY(0px) rotate(-5deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT HERO SECTION
═══════════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  padding: 7rem 0 6rem;
  background: var(--cream);
  overflow: hidden;
}

/* BG floating icons */
.ah-floats { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ahf {
  position: absolute;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: var(--green-dark);
  opacity: 0.035;
  user-select: none;
  animation: ahfFloat ease-in-out infinite;
}
.ahf-1 { font-size: 6rem;  top: 5%;    left: 2%;   animation-duration: 17s; animation-delay: 0s; }
.ahf-2 { font-size: 4rem;  top: 20%;   right: 3%;  animation-duration: 13s; animation-delay: 4s; }
.ahf-3 { font-size: 5rem;  bottom: 18%;left: 8%;   animation-duration: 19s; animation-delay: 2s; }
.ahf-4 { font-size: 3.5rem;bottom: 8%; right: 10%; animation-duration: 15s; animation-delay: 7s; }
.ahf-5 { font-size: 7rem;  top: 50%;   left: 38%;  animation-duration: 22s; animation-delay: 1s; }
.ahf-6 { font-size: 4.5rem;top: 12%;   left: 55%;  animation-duration: 16s; animation-delay: 5s; }
.ahf-7 { font-size: 3rem;  bottom: 30%;right: 30%; animation-duration: 11s; animation-delay: 9s; }
@keyframes ahfFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-20px); }
}

.ah-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ─── Image Side ─────────────────────────────────────────── */
.ah-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cursor glow — follows mouse, only inside image area */
.ah-img-cursor-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,64,54,0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  filter: blur(18px);
  will-change: transform;
}
.ah-image-side:hover .ah-img-cursor-glow { opacity: 1; }

.ah-img-frame {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(37,64,54,0.22),
    0 0 0 1px rgba(37,64,54,0.08);
  transition: box-shadow 0.4s ease;
  will-change: transform;
  /* Tilt will be applied via JS transform */
  transform-style: preserve-3d;
  cursor: none;
}
.ah-img-frame:hover {
  box-shadow:
    0 40px 100px rgba(37,64,54,0.32),
    0 0 0 1px rgba(37,64,54,0.12);
}

/* Decorative dashed border */
.ah-img-deco-border {
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(200,168,75,0.25);
  border-radius: 32px;
  pointer-events: none;
  z-index: -1;
  animation: borderRotate 20s linear infinite;
}
@keyframes borderRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ah-img {
  width: 100%;
  max-width: 500px;
  height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.1s ease;
  pointer-events: none;
  user-select: none;
}

/* Floating badge */
.ah-img-badge {
  position: absolute;
  bottom: 22px;
  left: -20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.6rem 1rem;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  border: 1px solid var(--border);
  animation: badgeFloat 3s ease-in-out infinite;
  white-space: nowrap;
}
.ah-img-badge svg { color: var(--gold); flex-shrink: 0; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Floating stat */
.ah-img-stat {
  position: absolute;
  top: 24px;
  right: -20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.75rem 1rem;
  background: var(--green-hero);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  animation: badgeFloat 3.5s 0.5s ease-in-out infinite;
}
.ah-img-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.ah-img-stat span {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}

/* Accent blocks */
.ah-accent-block {
  position: absolute;
  border-radius: 8px;
  z-index: 0;
}
.ah-accent-block--1 {
  width: 80px; height: 80px;
  bottom: -20px; left: -20px;
  background: var(--gold);
  opacity: 0.15;
  border-radius: 50%;
  animation: accentPulse 5s ease-in-out infinite;
}
.ah-accent-block--2 {
  width: 50px; height: 50px;
  top: -14px; right: -14px;
  background: var(--green-hero);
  opacity: 0.18;
  border-radius: 50%;
  animation: accentPulse 7s 1s ease-in-out infinite;
}
@keyframes accentPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}

/* ─── Content Side ───────────────────────────────────────── */
.ah-content-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ah-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-light);
}
.ah-eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--green-light);
  border-radius: 2px;
}

.ah-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.ah-title-accent {
  color: var(--green-hero);
  font-style: italic;
}

.ah-title-bar {
  width: 50px; height: 4px;
  background: linear-gradient(90deg, var(--green-hero), var(--gold));
  border-radius: 4px;
}

.ah-body {
  font-size: 0.975rem;
  line-height: 1.82;
  color: var(--text-body);
}
.ah-body strong { color: var(--green-hero); font-weight: 700; }

/* Strength cards */
.ah-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.ah-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.3rem 1.2rem;
  background: var(--white);
  border: 1.5px solid rgba(37,64,54,0.09);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.ah-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,64,54,0.18);
}
.ah-card--gold { border-color: rgba(200,168,75,0.22); }
.ah-card--gold:hover { border-color: rgba(200,168,75,0.45); }

.ah-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(37,64,54,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-hero);
  transition: background 0.25s ease, transform 0.25s ease;
}
.ah-card:hover .ah-card-icon { background: rgba(37,64,54,0.12); transform: scale(1.08); }
.ah-card--gold .ah-card-icon { background: rgba(200,168,75,0.10); color: #8a6820; }
.ah-card--gold:hover .ah-card-icon { background: rgba(200,168,75,0.18); }

.ah-card-text { display: flex; flex-direction: column; gap: 0.35rem; }
.ah-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.ah-card-body {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   MISSION SECTION
═══════════════════════════════════════════════════════════ */
.mission-section {
  position: relative;
  padding: 7rem 0 7rem;
  background: var(--green-dark);
  overflow: hidden;
}

/* BG layer */
.mission-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.mission-bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
}
.mission-bg-orb--1 {
  width: 700px; height: 700px; top: -300px; right: -200px;
  background: radial-gradient(ellipse, rgba(200,168,75,0.07) 0%, transparent 70%);
  animation: orbPulse 10s ease-in-out infinite;
}
.mission-bg-orb--2 {
  width: 500px; height: 500px; bottom: -200px; left: -160px;
  background: radial-gradient(ellipse, rgba(58,122,90,0.18) 0%, transparent 70%);
  animation: orbPulse 14s ease-in-out infinite reverse;
}
@keyframes orbPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.mission-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating icons */
.mf {
  position: absolute;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.045;
  user-select: none;
  animation: mfFloat ease-in-out infinite;
}
.mf-1 { font-size: 7rem;  top: 5%;    left: 3%;   animation-duration: 15s; animation-delay: 0s; }
.mf-2 { font-size: 5rem;  top: 20%;   right: 4%;  animation-duration: 19s; animation-delay: 3s; }
.mf-3 { font-size: 4.5rem;bottom: 12%;left: 30%;  animation-duration: 13s; animation-delay: 6s; }
.mf-4 { font-size: 6rem;  bottom: 8%; right: 22%; animation-duration: 17s; animation-delay: 2s; }
@keyframes mfFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-22px); }
}

.mission-container {
  position: relative; z-index: 2;
  max-width: 1000px; margin: 0 auto;
  padding: 0 2rem;
}

.mission-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.mission-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.mission-eyebrow::before,
.mission-eyebrow::after {
  content: '';
  width: 30px; height: 1.5px;
  background: var(--gold); opacity: 0.55; border-radius: 2px;
}

.mission-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.mission-title-accent { color: var(--gold); font-style: italic; }

.mission-title-bar {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 0 auto;
}

/* Quote block */
.mission-body-wrap {
  position: relative;
  padding: 2.5rem 3rem 2.5rem 4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  margin-bottom: 3.5rem;
}

.mission-quote-mark {
  position: absolute;
  top: -0.8rem; left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  user-select: none;
  pointer-events: none;
}

.mission-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mission-para {
  font-size: 0.975rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.68);
}

/* Stats */
.mission-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  flex-wrap: wrap;
}

.mission-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  min-width: 120px;
}
.mission-stat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(200,168,75,0.10);
  border: 1px solid rgba(200,168,75,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 0.15rem;
  transition: transform 0.25s ease, background 0.25s ease;
}
.mission-stat:hover .mission-stat-icon { transform: scale(1.1); background: rgba(200,168,75,0.18); }
.mission-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.mission-stat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-align: center;
}
.mission-stat-sep {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--green-dark);
  overflow: hidden;
}
.footer-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.footer-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
}
.footer-bg-orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
}
.footer-bg-orb--1 {
  width: 600px; height: 600px; top: -260px; right: -200px;
  background: radial-gradient(ellipse, rgba(200,168,75,0.07) 0%, transparent 70%);
  animation: orbPulse 18s ease-in-out infinite;
}
.footer-bg-orb--2 {
  width: 450px; height: 450px; bottom: -180px; left: -160px;
  background: radial-gradient(ellipse, rgba(58,122,90,0.14) 0%, transparent 70%);
  animation: orbPulse 22s ease-in-out infinite reverse;
}
.footer-bg-icon {
  position: absolute;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.04;
  user-select: none;
  animation: mfFloat ease-in-out infinite;
}
.fbi-1 { font-size: 8rem;  top: 6%;    left: 3%;   animation-duration: 15s; animation-delay: 0s; }
.fbi-2 { font-size: 5rem;  top: 40%;   right: 4%;  animation-duration: 19s; animation-delay: 4s; }
.fbi-3 { font-size: 6rem;  bottom: 16%;left: 38%;  animation-duration: 13s; animation-delay: 7s; }
.fbi-4 { font-size: 4rem;  bottom: 6%; right: 22%; animation-duration: 17s; animation-delay: 2s; }

.footer-body {
  position: relative; z-index: 2;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-body-inner {
  max-width: 1260px; margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.footer-col { display: flex; flex-direction: column; gap: 1.1rem; }

/* Brand col */
.footer-logo-wrap {
  display: inline-flex; align-items: center;
  width: fit-content;
  background: rgba(255,255,255,0.96);
  padding: 7px 18px 7px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.22s ease, transform 0.22s ease;
  text-decoration: none;
}
.footer-logo-wrap:hover { background: #fff; transform: translateY(-2px); }
.footer-logo-img { height: 46px; width: auto; object-fit: contain; display: block; }
.footer-brand-desc {
  font-size: 0.875rem; line-height: 1.82;
  color: rgba(255,255,255,0.52); max-width: 320px;
}
.footer-social { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 0.15rem; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  flex-shrink: 0;
}
.footer-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); transform: translateY(-3px); }

/* Column headings */
.footer-col-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #ffffff; margin-bottom: 0.2rem;
}
.footer-col-title-bar { display: block; width: 20px; height: 3px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }

/* Services list */
.footer-links-list { display: flex; flex-direction: column; gap: 0; list-style: none; margin: 0; padding: 0; }
.footer-links-list li { margin: 0; padding: 0; }
.footer-link {
  display: flex; align-items: center; gap: 7px;
  padding: 0.44rem 0;
  font-size: 0.875rem; font-weight: 400;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s ease, gap 0.2s ease;
  line-height: 1.5;
}
.footer-links-list li:last-child .footer-link { border-bottom: none; }
.footer-link svg { flex-shrink: 0; color: var(--gold); opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; }
.footer-link:hover { color: rgba(255,255,255,0.92); gap: 11px; }
.footer-link:hover svg { opacity: 1; transform: translateX(2px); }

/* Contact */
.footer-contact-list { display: flex; flex-direction: column; gap: 0; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-icon {
  flex-shrink: 0; margin-top: 2px;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(200,168,75,0.10);
  border: 1px solid rgba(200,168,75,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.footer-contact-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.footer-contact-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); line-height: 1; opacity: 0.75;
}
.footer-contact-value {
  font-size: 0.875rem; font-weight: 400;
  color: rgba(255,255,255,0.65); line-height: 1.6; display: block;
}
.footer-contact-link { text-decoration: none; transition: color 0.18s ease; }
.footer-contact-link:hover { color: var(--gold-light); }

.footer-compliance {
  display: flex; align-items: center; gap: 10px;
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 12px;
}
.footer-compliance-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,168,75,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.footer-compliance-text { display: flex; flex-direction: column; gap: 2px; }
.footer-compliance-title { font-size: 0.78rem; font-weight: 700; color: var(--gold-light); line-height: 1.2; }
.footer-compliance-sub  { font-size: 0.7rem; color: rgba(255,255,255,0.38); letter-spacing: 0.02em; }

/* Bottom bar */
.footer-bottom { position: relative; z-index: 2; padding: 1.15rem 0; background: rgba(0,0,0,0.18); }
.footer-bottom-inner {
  max-width: 1260px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.32); line-height: 1.5; }
.footer-bottom-nav { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }
.footer-bottom-link { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.18s ease; white-space: nowrap; }
.footer-bottom-link:hover { color: var(--gold-light); }
.footer-bottom-sep { display: block; width: 1px; height: 12px; background: rgba(255,255,255,0.16); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL UTILITY
═══════════════════════════════════════════════════════════ */
.reveal-init {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .header-cta { display: none; }
  .nav-list { gap: 0; }
  .nav-link { font-size: 0.82rem; padding: 0.5rem 0.65rem; }
  .ah-container { gap: 3rem; }
  .ah-img { height: 480px; }
  .footer-body-inner { grid-template-columns: 1.3fr 1fr 1.2fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .header-container { gap: 1rem; }

  .page-banner { height: 320px; }
  .banner-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .ah-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .ah-eyebrow { justify-content: center; }
  .ah-eyebrow::before { display: none; }
  .ah-title-bar { margin: 0 auto; }
  .ah-image-side { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .ah-img { max-width: 100%; height: 400px; }
  .ah-img-badge { left: 50%; transform: translateX(-50%); bottom: -14px; white-space: nowrap; }
  .ah-img-stat  { top: 14px; right: 10px; }
  .ah-cards { grid-template-columns: 1fr; text-align: left; max-width: 480px; margin: 0 auto; width: 100%; }

  .mission-body-wrap { padding: 2rem 2rem 2rem 2.5rem; }

  .footer-body-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
    padding: 0 1.5rem;
  }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-brand-desc { max-width: 100%; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .logo { padding: 4px 14px 4px 8px; }
  .logo-img { height: 38px; }

  .page-banner { height: 260px; }
  .banner-title { font-size: clamp(2rem, 10vw, 3rem); }

  .about-hero { padding: 5rem 0 4rem; }
  .ah-container { padding: 0 1.25rem; }
  .ah-img { height: 320px; }
  .ah-cards { grid-template-columns: 1fr; }

  .mission-section { padding: 5rem 0; }
  .mission-body-wrap { padding: 1.6rem 1.5rem 1.6rem 2rem; }
  .mission-stats { flex-direction: column; gap: 1.5rem; padding: 1.5rem 1.25rem; }
  .mission-stat-sep { width: 60%; height: 1px; }
  .mission-stat { min-width: auto; flex-direction: row; gap: 1rem; align-items: center; width: 100%; justify-content: center; }

  .footer-body { padding: 2.5rem 0 2rem; }
  .footer-body-inner { grid-template-columns: 1fr; gap: 1.75rem; padding: 0 1.25rem; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 0.65rem; padding: 0 1.25rem; }
  .footer-bottom-nav { justify-content: center; }
  .mobile-nav-list { padding: 0.75rem 1rem 1.25rem; }
}

@media (max-width: 420px) {
  .page-banner { height: 220px; }
  .ah-img { height: 270px; }
  .ah-img-stat { display: none; }
  .banner-title { font-size: 2rem; }
}