:root {
  --green: #0F6B4B;
  --green-dark: #0A4E37;
  --gold: #C8A24B;
  --gold-light: #E4C87A;
  --cream: #F8F5EE;
  --white: #FFFFFF;
  --text: #2E2E2E;
  --text-soft: #666666;
  --border: #E6E6E6;
  --grad-green: linear-gradient(135deg, #0F6B4B, #0A4E37);
  --grad-gold: linear-gradient(135deg, #C8A24B, #E4C87A);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Amiri', serif; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: .3s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--grad-green); color: var(--white); }
.btn-primary:hover { background: var(--grad-gold); color: var(--green-dark); }
.btn-gold { background: var(--grad-gold); color: var(--green-dark); }
.btn-gold:hover { background: var(--white); color: var(--green-dark); }
.btn-outline {
  border-color: var(--green);
  color: var(--green-dark);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.btn-hero-outline {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  background: transparent;
}
.btn-hero-outline:hover {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

/* Header / nav */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: relative;
}
.brand { display: flex; align-items: center; gap: 12px; }
nav.mainnav { display: flex; align-items: center; gap: 38px; }
nav.mainnav > ul { display: flex; gap: 36px; align-items: center; }
nav.mainnav > ul > li > a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--green-dark);
  position: relative;
  padding: 6px 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
nav.mainnav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
nav.mainnav > ul > li > a:hover { color: var(--gold); }
nav.mainnav > ul > li > a:hover::after { width: 100%; }
.caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .2s;
}
.has-mega:hover .caret { transform: rotate(225deg); margin-top: 3px; }
.nav-cta { display: flex; align-items: center; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--green-dark); }
.has-mega { position: static; }
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 24px 40px -18px rgba(10, 78, 55, .18);
  display: grid;
  grid-template-columns: repeat(3, 1fr) 260px;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .25s ease;
}
.has-mega:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-col { padding: 38px 34px; border-right: 1px solid var(--border); }
.mega-col:last-child { border-right: none; }
.mega-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.mega-col ul li { margin-bottom: 12px; }
.mega-col ul li a {
  font-size: .92rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-col ul li a strong { color: var(--green-dark); font-weight: 600; }
.mega-col ul li a small { color: var(--text-soft); font-size: .78rem; }
.mega-col ul li a:hover strong { color: var(--gold); }
.mega-feature {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}
.mega-feature h4 {
  color: var(--green-dark);
  font-family: 'Amiri', serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.mega-feature p {
  font-size: .86rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb .container {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-soft);
  font-size: .84rem;
}
.breadcrumb a { color: var(--green); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ===== HERO ===== */
.about-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 45, 32, .35) 0%, rgba(8, 45, 32, .72) 55%, rgba(8, 45, 32, .92) 100%),
    linear-gradient(90deg, rgba(10, 78, 55, .55) 0%, transparent 60%);
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 24px 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.about-hero-brand {
  font-family: 'Amiri', serif;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.about-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
  margin: 0 0 16px;
  color: #fff;
  font-weight: 700;
}
.about-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 28px;
  max-width: 520px;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== STORY ===== */
.about-story {
  padding: 88px 0;
  background: var(--white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about-story-media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--green-dark);
}
.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 18px;
}
.about-story-copy p {
  color: var(--text-soft);
  margin: 0 0 14px;
  font-size: .98rem;
}
.about-story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}
.about-story-links a {
  font-weight: 600;
  font-size: .92rem;
  color: var(--green);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}
.about-story-links a:hover { color: var(--gold); }

/* ===== MISSION BAND ===== */
.about-mission {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.about-mission-inner {
  max-width: 760px;
  text-align: center;
  position: relative;
  padding-top: 8px;
}
.about-mission-inner::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--grad-gold);
  margin: 0 auto 22px;
  border-radius: 2px;
}
.about-mission-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px;
}
.about-mission h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: var(--green-dark);
  line-height: 1.25;
  margin: 0 0 14px;
}
.about-mission p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ===== PILLARS ===== */
.about-pillars {
  padding: 88px 0;
  background: var(--white);
}
.about-section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.about-section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  color: var(--green-dark);
  margin: 0 0 12px;
  line-height: 1.2;
}
.about-section-head p {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin: 0;
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}
.about-pillar {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 18px;
  align-items: start;
  padding: 8px 0;
}
.about-pillar-icon {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}
.about-pillar h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 4px 0 6px;
}
.about-pillar p {
  margin: 0;
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.6;
}

/* ===== JOURNEY ===== */
.about-journey {
  padding: 88px 0;
  background: var(--cream);
}
.about-journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: none;
}
.about-journey-step {
  position: relative;
  padding: 8px 8px 8px 0;
}
.about-journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 16px;
}
.about-journey-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 0 10px;
}
.about-journey-step p {
  color: var(--text-soft);
  font-size: .92rem;
  margin: 0 0 14px;
  line-height: 1.6;
}
.about-journey-step a {
  font-weight: 600;
  font-size: .88rem;
  color: var(--green);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}
.about-journey-step a:hover { color: var(--gold); }

/* ===== FAQ ===== */
.about-faq {
  padding: 88px 0;
  background: var(--white);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
  font-size: .95rem;
}
.faq-q .plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream);
  position: relative;
  flex-shrink: 0;
  transition: .3s ease;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--green-dark);
}
.faq-q .plus::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-q .plus::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: .3s ease;
}
.faq-item.open .plus { background: var(--grad-gold); }
.faq-item.open .plus::before,
.faq-item.open .plus::after { background: var(--white); }
.faq-item.open .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p {
  padding: 0 26px 22px;
  color: var(--text-soft);
  font-size: .9rem;
}

/* ===== CTA ===== */
.about-cta {
  background: linear-gradient(135deg, #0F6B4B 0%, #0A4E37 55%, #083c2b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(228, 200, 122, .18) 0, transparent 42%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, .07) 0, transparent 40%);
}
.about-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}
.about-cta h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  margin: 0 0 12px;
}
.about-cta p {
  color: rgba(255, 255, 255, .82);
  margin: 0 0 28px;
  font-size: 1.02rem;
}
.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-story-media {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-journey-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .mega { grid-template-columns: 1fr 1fr; }
  .mega-feature { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  nav.mainnav > ul {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 20px 30px -18px rgba(10, 78, 55, .2);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  nav.mainnav.open > ul {
    max-height: min(80vh, 900px);
    overflow-y: auto;
  }
  nav.mainnav > ul > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  nav.mainnav > ul > li > a {
    padding: 16px 24px;
    width: 100%;
  }
  .mega {
    position: static;
    box-shadow: none;
    grid-template-columns: 1fr;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .has-mega.open .mega { display: grid; }
  .mega-col {
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 24px;
  }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }

  .about-hero {
    min-height: 520px;
    align-items: flex-end;
  }
  .about-hero-inner { padding: 48px 0 40px; }
  .about-hero-actions { flex-direction: column; align-items: stretch; }
  .about-hero-actions .btn { width: 100%; }

  .about-story,
  .about-pillars,
  .about-journey,
  .about-faq { padding: 64px 0; }
  .about-mission { padding: 44px 0; }
  .about-cta { padding: 56px 0; }
  .about-cta-actions { flex-direction: column; align-items: stretch; }
  .about-cta-actions .btn { width: 100%; }
}
