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

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-base:   #40916C;
  --green-light:  #74C69D;
  --green-pale:   #B7E4C7;
  --green-mist:   #D8F3DC;
  --green-frost:  #F0FAF2;
  --lime:         #95D5B2;
  --accent:       #E76F51;
  --accent-light: #F4A261;
  --cream:        #FAFDF8;
  --white:        #FFFFFF;
  --text-dark:    #1A2E22;
  --text-mid:     #2D4A38;
  --text-muted:   #5A7A65;
  --text-light:   #88A894;
}

html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(64,145,108,0.15);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--green-base); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-mid); }
.nav-cta {
  background: var(--green-base); color: var(--white);
  padding: 0.55rem 1.4rem; border-radius: 50px;
  font-size: 0.825rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5% 60px;
  gap: 4rem;
  background: var(--green-frost);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--green-mist); opacity: 0.6;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: 10%;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--green-pale); opacity: 0.4;
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  color: var(--green-mid);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px;
  margin-bottom: 1.75rem;
}
.hero-badge i { color: var(--green-base); font-size: 0.7rem; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.75rem);
  color: var(--green-dark);
  line-height: 1.08; font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--green-base); }
.hero-sub {
  font-size: 1.0625rem; color: var(--text-muted);
  line-height: 1.75; max-width: 460px;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: var(--green-base); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-secondary {
  color: var(--green-dark); padding: 0.9rem 1.75rem;
  border-radius: 50px; border: 1.5px solid var(--green-pale);
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  transition: all 0.2s; background: var(--white);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--green-base); color: var(--green-base); }
.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--green-pale);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem; font-weight: 700;
  color: var(--green-dark); line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px;
}

/* Hero image mosaic */
.hero-visual { position: relative; z-index: 2; }
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 200px;
  gap: 12px;
}
.mosaic-img {
  border-radius: 16px; overflow: hidden;
  position: relative;
}
.mosaic-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.mosaic-img:hover img { transform: scale(1.05); }
.mosaic-img.tall { grid-row: span 2; }
.mosaic-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(255,255,255,0.92);
  color: var(--green-dark);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
  display: flex; align-items: center; gap: 5px;
}
.mosaic-tag i { color: var(--green-base); }

/* ── TICKER ── */
.ticker {
  background: var(--green-base);
  padding: 0.65rem 0; overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-block; animation: ticker 30s linear infinite; }
.ticker-track span {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white);
  margin: 0 2.5rem;
}
.ticker-track i { color: var(--green-pale); margin-right: 8px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMON ── */
section { padding: 6rem 5%; }
.section-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-mist); color: var(--green-mid);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-dark); font-weight: 700;
  line-height: 1.15; margin-bottom: 0.9rem;
}
.section-body {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.75; max-width: 520px; font-weight: 300;
}

/* ── CATEGORIES ── */
.categories { background: var(--white); }
.cat-intro { margin-bottom: 3.5rem; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-card {
  border-radius: 20px; overflow: hidden;
  position: relative; cursor: pointer;
  height: 480px;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cat-card:hover { transform: translateY(-8px); }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.92) 0%, rgba(27,67,50,0.2) 60%, transparent 100%);
}
.cat-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
}
.cat-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--white);
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.cat-tag-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 0.4rem;
}
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; color: var(--white); font-weight: 700;
  line-height: 1.15; margin-bottom: 0.5rem;
}
.cat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.55; font-weight: 300; }
.cat-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 1.1rem; color: var(--green-light);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }

/* ── PRODUCTS ── */
.products { background: var(--green-frost); }
.products-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem;
}
.filter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ftab {
  padding: 0.5rem 1.2rem; border-radius: 50px;
  border: 1.5px solid var(--green-pale);
  background: var(--white); color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s;
}
.ftab.active, .ftab:hover {
  background: var(--green-base); color: var(--white);
  border-color: var(--green-base);
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.prod-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(116,198,157,0.2);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(27,67,50,0.1);
}
.prod-img {
  height: 190px; overflow: hidden; position: relative;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.prod-card:hover .prod-img img { transform: scale(1.07); }
.prod-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green-dark); color: var(--green-pale);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
}
.prod-info { padding: 1.1rem 1.25rem 1.25rem; }
.prod-origin {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin-bottom: 0.45rem;
}
.prod-origin i { color: var(--accent); font-size: 0.75rem; }
.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--green-dark);
  font-weight: 700; line-height: 1.3; margin-bottom: 0.45rem;
}
.prod-moq { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }
.prod-moq strong { color: var(--text-dark); font-weight: 600; }
.prod-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.85rem; padding-top: 0.85rem;
  border-top: 1px solid var(--green-mist);
}
.prod-cert {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; color: var(--green-base); font-weight: 500;
}
.prod-cert i { font-size: 0.75rem; }
.prod-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-base); background: none; border: none;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.2s;
}
.prod-btn:hover { color: var(--green-dark); }

/* ── HOW IT WORKS ── */
.how { background: var(--green-dark); position: relative; overflow: hidden; }
.how-blob {
  position: absolute; right: -150px; top: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(116,198,157,0.06);
}
.how .section-title { color: var(--white); }
.how .section-body { color: rgba(255,255,255,0.5); margin-bottom: 3.5rem; }
.how .section-pill { background: rgba(116,198,157,0.15); color: var(--green-light); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; z-index: 1; }
.step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(116,198,157,0.15);
  border-radius: 16px; padding: 2rem 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}
.step:hover { background: rgba(116,198,157,0.08); border-color: rgba(116,198,157,0.3); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem; font-weight: 700;
  color: rgba(116,198,157,0.2); line-height: 1; margin-bottom: 1.1rem;
}
.step-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(116,198,157,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green-light);
  margin-bottom: 1rem;
}
.step-title { font-size: 1.0625rem; color: var(--white); font-weight: 600; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.65; font-weight: 300; }

/* ── TRUST ── */
.trust { background: var(--green-mist); padding: 3rem 5%; }
.trust-row {
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: wrap; gap: 2rem;
}
.trust-item { display: flex; align-items: center; gap: 1rem; }
.trust-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-base);
  box-shadow: 0 2px 12px rgba(27,67,50,0.08);
}
.trust-label { font-size: 0.9rem; font-weight: 600; color: var(--green-dark); }
.trust-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ── REGIONS ── */
.regions { background: var(--white); }
.regions-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.reg-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.reg-card {
  padding: 1.75rem 1.25rem; border-radius: 16px;
  border: 1.5px solid var(--green-mist);
  background: var(--green-frost);
  text-align: center; cursor: pointer;
  transition: all 0.25s;
}
.reg-card:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,67,50,0.15);
}
.reg-card:hover .reg-name { color: var(--green-light); }
.reg-card:hover .reg-count { color: rgba(255,255,255,0.45); }
.reg-card:hover .reg-icon { color: var(--green-pale); }
.reg-icon { font-size: 1.75rem; color: var(--green-base); margin-bottom: 0.75rem; transition: color 0.25s; }
.reg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem; color: var(--green-dark);
  font-weight: 700; margin-bottom: 0.3rem; transition: color 0.25s;
}
.reg-count { font-size: 0.75rem; color: var(--text-muted); transition: color 0.25s; }

/* ── CTA ── */
.cta-section {
  background: var(--green-base);
  padding: 6rem 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section .section-pill { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; display: inline-flex; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 700;
  max-width: 580px; margin: 0 auto 1.1rem; line-height: 1.15;
}
.cta-sub {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  max-width: 460px; margin: 0 auto 2.5rem;
  font-weight: 300; line-height: 1.7;
}
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--green-dark);
  padding: 0.9rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--green-frost); transform: translateY(-2px); }
.btn-outline-white {
  color: var(--white); padding: 0.9rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 50px;
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
footer { background: var(--green-dark); padding: 4.5rem 5% 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(116,198,157,0.12);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--green-light); margin-bottom: 1rem; display: block;
}
.footer-logo span { color: var(--white); }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.75; font-weight: 300; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(116,198,157,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
  text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { background: var(--green-base); color: var(--white); border-color: var(--green-base); }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 0.875rem; font-weight: 300; transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 1rem;
}
.cert-badges { display: flex; gap: 0.75rem; }
.cert { padding: 3px 10px; border-radius: 4px; border: 1px solid rgba(116,198,157,0.2); font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(116,198,157,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { height: 340px; }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .reg-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 90px 4% 50px; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .prod-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .products-top { flex-direction: column; align-items: flex-start; }
  .regions-head { flex-direction: column; align-items: flex-start; }
}

/* about us  */
* ── HELPERS ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-mist); color: var(--green-mid);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-dark); font-weight: 700;
  line-height: 1.15; margin-bottom: 0.9rem;
}
.section-body {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.8; font-weight: 300; max-width: 540px;
}
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-base); color: var(--white);
  padding: 0.875rem 1.875rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--green-pale); color: var(--green-dark);
  padding: 0.875rem 1.75rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; text-decoration: none;
  background: var(--white); transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--green-base); color: var(--green-base); }

/* ══════════════════════════════════════
   1. HERO
══════════════════════════════════════ */
.about-hero {
  background: var(--green-frost);
  padding: 80px 5% 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: var(--green-mist); opacity: 0.6; z-index: 0;
}
.ah-content { position: relative; z-index: 2; padding-bottom: 80px; }
.ah-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--green-dark); font-weight: 700;
  line-height: 1.08; margin-bottom: 1.25rem;
}
.ah-content h1 em { font-style: italic; color: var(--green-base); }
.ah-content p {
  font-size: 1.0625rem; color: var(--text-muted);
  line-height: 1.75; font-weight: 300;
  max-width: 460px; margin-bottom: 2.25rem;
}
.ah-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.ah-visual { position: relative; z-index: 2; align-self: end; }
.ah-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.ah-img {
  border-radius: 20px 20px 0 0; overflow: hidden;
  position: relative;
}
.ah-img.tall { height: 380px; }
.ah-img.short { height: 280px; }
.ah-img img { width: 100%; height: 100%; object-fit: cover; }
.ah-img-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.93);
  border-radius: 12px; padding: 0.6rem 0.9rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(27,67,50,0.12);
}
.ah-img-badge i { color: var(--green-base); font-size: 1.1rem; }
.ah-img-badge strong { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); display: block; }
.ah-img-badge span { font-size: 0.7rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   2. STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--green-dark);
  padding: 2.5rem 5%;
}
.stats-row {
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: wrap; gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--green-light); line-height: 1;
}
.stat-lbl {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}
.stat-divider { width: 1px; height: 50px; background: rgba(116,198,157,0.15); }

/* ══════════════════════════════════════
   3. STORY
══════════════════════════════════════ */
.story {
  padding: 7rem 5%;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.story-img-wrap { position: relative; }
.story-main-img {
  border-radius: 24px; overflow: hidden; height: 500px;
}
.story-main-img img { width: 100%; height: 100%; object-fit: cover; }
.story-float {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--white); border-radius: 20px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 16px 48px rgba(27,67,50,0.1);
  border: 1px solid var(--green-mist);
  width: 220px;
}
.story-float-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem; font-weight: 700; color: var(--green-base); line-height: 1;
}
.story-float-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 300; }
.story-float-bar {
  margin-top: 0.75rem; height: 4px; border-radius: 2px;
  background: var(--green-mist); overflow: hidden;
}
.story-float-bar::after {
  content: ''; display: block; height: 100%;
  width: 75%; background: var(--green-base); border-radius: 2px;
}
.story-content {}
.story-content .section-body { margin-bottom: 1.25rem; }
.story-quote {
  margin: 2rem 0;
  border-left: 3px solid var(--green-base);
  padding: 1rem 1.5rem;
  background: var(--green-frost);
  border-radius: 0 12px 12px 0;
}
.story-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--green-dark);
  line-height: 1.6; font-style: italic;
}
.story-quote cite {
  display: block; margin-top: 0.6rem;
  font-size: 0.8rem; color: var(--text-light);
  font-style: normal; font-weight: 500;
}

/* ══════════════════════════════════════
   4. MISSION / VISION / VALUES
══════════════════════════════════════ */
.mvv {
  padding: 7rem 5%;
  background: var(--green-frost);
}
.mvv-top { text-align: center; margin-bottom: 4rem; }
.mvv-top .section-title { max-width: 100%; }
.mvv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.mvv-card {
  background: var(--white); border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--green-mist);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.mvv-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--green-frost); z-index: 0;
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(27,67,50,0.1); }
.mvv-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--green-mist);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--green-base);
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.mvv-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-base); margin-bottom: 0.6rem;
  position: relative; z-index: 1;
}
.mvv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 0.85rem;
  position: relative; z-index: 1;
}
.mvv-desc {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.75; font-weight: 300;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════
   5. VALUES LIST
══════════════════════════════════════ */
.values {
  padding: 7rem 5%;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.values-content {}
.values-content .section-body { margin-bottom: 2.5rem; }
.val-list { display: flex; flex-direction: column; gap: 1.5rem; }
.val-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.val-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-mist);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--green-base); flex-shrink: 0;
}
.val-text-title { font-size: 1rem; font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.val-text-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.values-visual { position: relative; }
.val-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.val-img {
  border-radius: 16px; overflow: hidden;
}
.val-img.v1 { height: 260px; }
.val-img.v2 { height: 180px; margin-top: 80px; }
.val-img.v3 { height: 180px; }
.val-img.v4 { height: 260px; }
.val-img img { width: 100%; height: 100%; object-fit: cover; }
.val-img:hover img { transform: scale(1.04); transition: transform 0.4s; }

/* ══════════════════════════════════════
   6. TEAM
══════════════════════════════════════ */
.team { padding: 7rem 5%; background: var(--cream); }
.team-header { margin-bottom: 3.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; border: 1px solid var(--green-mist);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(27,67,50,0.1); }
.team-img {
  height: 220px; overflow: hidden; position: relative;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.45) 0%, transparent 60%);
}
.team-social {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; gap: 6px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 0.75rem;
  text-decoration: none; transition: background 0.2s;
}
.team-social a:hover { background: var(--green-base); color: var(--white); }
.team-info { padding: 1.25rem; }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.175rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 3px;
}
.team-role {
  font-size: 0.78rem; font-weight: 500; color: var(--green-base);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem;
}
.team-bio { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ══════════════════════════════════════
   7. WHY CHOOSE US
══════════════════════════════════════ */
.why {
  padding: 7rem 5%;
  background: var(--green-dark);
  position: relative; overflow: hidden;
}
.why::before {
  content: '';
  position: absolute; right: -150px; top: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(116,198,157,0.05);
}
.why::after {
  content: '';
  position: absolute; left: -80px; bottom: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(116,198,157,0.04);
}
.why-inner { position: relative; z-index: 1; }
.why-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 4rem;
}
.why .section-title { color: var(--white); }
.why .section-body { color: rgba(255,255,255,0.5); }
.why .pill { background: rgba(116,198,157,0.15); color: var(--green-light); }
.why-visual-wrap { position: relative; }
.why-main-img { border-radius: 20px; overflow: hidden; height: 360px; }
.why-main-img img { width: 100%; height: 100%; object-fit: cover; }
.why-badge-float {
  position: absolute; top: -20px; left: -20px;
  background: var(--green-base); border-radius: 16px;
  padding: 1.1rem 1.4rem; color: var(--white);
  box-shadow: 0 8px 32px rgba(27,67,50,0.3);
}
.why-badge-float i { font-size: 1.5rem; display: block; margin-bottom: 6px; }
.why-badge-float strong { font-size: 1.4rem; font-family: 'Cormorant Garamond', serif; display: block; }
.why-badge-float span { font-size: 0.72rem; opacity: 0.8; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(116,198,157,0.12);
  border-radius: 16px; padding: 1.75rem 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}
.why-card:hover { background: rgba(116,198,157,0.07); border-color: rgba(116,198,157,0.25); }
.why-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(116,198,157,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green-light);
  margin-bottom: 1rem;
}
.why-card-title { font-size: 0.975rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.why-card-desc { font-size: 0.825rem; color: rgba(255,255,255,0.45); line-height: 1.65; font-weight: 300; }

/* ══════════════════════════════════════
   8. MILESTONES
══════════════════════════════════════ */
.milestones { padding: 7rem 5%; background: var(--white); }
.ms-header { text-align: center; margin-bottom: 4rem; }
.ms-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.ms-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--green-mist);
  transform: translateX(-50%);
}
.ms-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 1.5rem; align-items: start;
  margin-bottom: 3.5rem;
}
.ms-item:last-child { margin-bottom: 0; }
.ms-left { text-align: right; }
.ms-right { text-align: left; }
.ms-empty {}
.ms-dot-col {
  display: flex; justify-content: center; padding-top: 12px;
}
.ms-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--green-base);
  box-shadow: 0 0 0 5px var(--cream);
  z-index: 1; position: relative;
  transition: all 0.3s;
}
.ms-item:hover .ms-dot {
  background: var(--green-base); border-color: var(--green-base);
  color: var(--white); box-shadow: 0 0 0 5px var(--green-mist);
}
.ms-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--green-base);
  margin-bottom: 0.3rem;
}
.ms-event-title { font-size: 0.975rem; font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.ms-event-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* Alternate left/right */
.ms-item.left  .ms-left  { opacity: 1; }
.ms-item.left  .ms-right { opacity: 0; pointer-events: none; }
.ms-item.right .ms-left  { opacity: 0; pointer-events: none; }
.ms-item.right .ms-right { opacity: 1; }

/* ══════════════════════════════════════
   9. PARTNERS
══════════════════════════════════════ */
.partners { padding: 5rem 5%; background: var(--green-frost); }
.partners-header { text-align: center; margin-bottom: 3rem; }
.partners-header p { color: var(--text-muted); font-size: 0.9375rem; font-weight: 300; }
.partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.partner-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--green-mist);
  border-radius: 50px; padding: 0.65rem 1.4rem;
  font-size: 0.875rem; font-weight: 600; color: var(--green-dark);
  transition: all 0.2s;
}
.partner-chip:hover { border-color: var(--green-base); background: var(--green-mist); }
.partner-chip i { color: var(--green-base); font-size: 1rem; }

/* ══════════════════════════════════════
   10. CTA
══════════════════════════════════════ */
.about-cta {
  background: var(--green-base);
  padding: 6rem 5%; text-align: center;
  position: relative; overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.about-cta::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-inner { position: relative; z-index: 1; }
.about-cta .pill { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); display: inline-flex; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--white);
  font-weight: 700; max-width: 600px; margin: 0.75rem auto 1rem; line-height: 1.15;
}
.cta-sub {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  max-width: 460px; margin: 0 auto 2.5rem;
  font-weight: 300; line-height: 1.7;
}
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--green-dark);
  padding: 0.9rem 2rem; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--green-frost); transform: translateY(-2px); }
.btn-outline-wh {
  color: var(--white); padding: 0.9rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 50px;
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-outline-wh:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-hero { grid-template-columns: 1fr; padding-bottom: 60px; }
  .ah-visual { display: none; }
  .story, .values { grid-template-columns: 1fr; gap: 3rem; }
  .story-float { display: none; }
  .mvv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-top { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-line { display: none; }
  .ms-item { grid-template-columns: 1fr; gap: 0.75rem; }
  .ms-item .ms-right, .ms-item .ms-left { opacity: 1; pointer-events: auto; }
  .ms-left { text-align: left; }
  .ms-dot-col { justify-content: flex-start; }
  .ms-item.right .ms-left { display: none; }
  .ms-item.left .ms-right { display: none; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .val-img-grid { grid-template-columns: 1fr; }
  .val-img.v1, .val-img.v2, .val-img.v3, .val-img.v4 { height: 200px; margin-top: 0; }
  .stats-row .stat-divider { display: none; }
}


/* contact */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-mist); color: var(--green-mid);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1rem;
}

/* ══ PAGE HERO ══ */
.contact-hero {
  background: var(--green-frost);
  padding: 80px 5% 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: var(--green-mist); opacity: 0.5; z-index: 0;
}
.contact-hero::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--green-pale); opacity: 0.4; z-index: 0;
}
.hero-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--green-dark); font-weight: 700;
  line-height: 1.1; margin-bottom: 1rem;
}
.hero-inner h1 em { font-style: italic; color: var(--green-base); }
.hero-inner p {
  font-size: 1.0625rem; color: var(--text-muted);
  line-height: 1.75; font-weight: 300;
}

/* ══ CONTACT INFO CARDS ══ */
.info-strip {
  background: var(--white);
  padding: 0 5%;
  margin-top: -1px;
}
.info-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  transform: translateY(-36px);
}
.info-card {
  background: var(--white);
  border: 1px solid var(--green-mist);
  border-radius: 20px; padding: 2rem 1.75rem;
  display: flex; align-items: flex-start; gap: 1.1rem;
  box-shadow: 0 8px 32px rgba(27,67,50,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(27,67,50,0.11); }
.info-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--green-mist); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-base);
}
.info-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 4px;
}
.info-value {
  font-size: 0.975rem; font-weight: 600; color: var(--green-dark);
  margin-bottom: 2px; line-height: 1.4;
}
.info-sub { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }

/* ══ MAIN CONTENT ══ */
.contact-main {
  padding: 0 5% 6rem;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3.5rem; align-items: start;
}

/* ══ FORM CARD ══ */
.form-card {
  background: var(--white);
  border-radius: 24px; padding: 3rem;
  border: 1px solid var(--green-mist);
  box-shadow: 0 8px 40px rgba(27,67,50,0.07);
}
.form-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.form-card p {
  font-size: 0.9rem; color: var(--text-muted);
  font-weight: 300; margin-bottom: 2rem; line-height: 1.65;
}

/* ── Inquiry Type Selector ── */
.inquiry-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.inq-tab {
  flex: 1; min-width: 120px;
  padding: 0.7rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--green-mist);
  background: var(--green-frost); cursor: pointer;
  text-align: center; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.inq-tab i { display: block; font-size: 1.2rem; color: var(--text-light); margin-bottom: 5px; transition: color 0.2s; }
.inq-tab span { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.inq-tab.active, .inq-tab:hover {
  border-color: var(--green-base);
  background: var(--green-mist);
}
.inq-tab.active i, .inq-tab:hover i { color: var(--green-base); }
.inq-tab.active span, .inq-tab:hover span { color: var(--green-dark); }

/* ── Form Grid ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.25rem; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--green-dark); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
}
.form-group label i { color: var(--green-base); font-size: 0.75rem; }
.required-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); display: inline-block; margin-left: 2px;
}

/* ── Inputs ── */
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--green-mist);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--cream);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-base);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(64,145,108,0.1);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(220,53,69,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2340916C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.5rem; cursor: pointer;
}

/* ── Input with icon ── */
.input-wrap { position: relative; }
.input-wrap .form-input { padding-left: 2.75rem; }
.input-wrap .input-icon {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem; color: var(--text-light);
  pointer-events: none;
}

/* ── Phone Row ── */
.phone-row { display: flex; gap: 8px; }
.phone-code {
  width: 90px; flex-shrink: 0;
  padding: 0.8rem 0.75rem;
  border: 1.5px solid var(--green-mist);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2340916C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 1.5rem; cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.phone-code:focus {
  border-color: var(--green-base);
  box-shadow: 0 0 0 4px rgba(64,145,108,0.1);
  background-color: var(--white);
}
.phone-number { flex: 1; }

/* ── Error message ── */
.err-msg {
  font-size: 0.75rem; color: var(--error);
  display: flex; align-items: center; gap: 4px;
  margin-top: 2px; display: none;
}
.err-msg.show { display: flex; }

/* ── Checkbox ── */
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.custom-check { display: none; }
.check-box {
  width: 20px; height: 20px; border-radius: 6px;
  border: 1.5px solid var(--green-pale);
  background: var(--cream); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; margin-top: 1px;
  transition: all 0.2s;
}
.custom-check:checked + .check-box {
  background: var(--green-base); border-color: var(--green-base);
}
.custom-check:checked + .check-box::after {
  content: '\f00c'; font-family: 'Font Awesome 6 Free';
  font-weight: 900; font-size: 0.65rem; color: white;
}
.check-label {
  font-size: 0.825rem; color: var(--text-muted);
  line-height: 1.55; cursor: pointer;
}
.check-label a { color: var(--green-base); text-decoration: none; }
.check-label a:hover { text-decoration: underline; }

/* ── Submit Button ── */
.submit-btn {
  width: 100%; padding: 1rem;
  background: var(--green-base); color: var(--white);
  border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 1.75rem;
  position: relative; overflow: hidden;
}
.submit-btn:hover { background: var(--green-mid); transform: translateY(-2px); }
.submit-btn:active { transform: translateY(0); }
.submit-btn .btn-loader { display: none; }
.submit-btn.loading .btn-text { display: none; }
.submit-btn.loading .btn-loader { display: flex; align-items: center; gap: 8px; }
.spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white); border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Success State ── */
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.show { display: block; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-mist);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--green-base);
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; color: var(--green-dark);
  font-weight: 700; margin-bottom: 0.6rem;
}
.form-success p { font-size: 0.9375rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.back-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 1.5rem; background: none; border: none;
  color: var(--green-base); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  letter-spacing: 0.04em;
}
.back-btn:hover { color: var(--green-dark); }

/* ══ SIDEBAR ══ */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── Map Card ── */
.map-card {
  background: var(--white); border-radius: 20px;
  border: 1px solid var(--green-mist);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27,67,50,0.07);
}
.map-img { position: relative; height: 200px; overflow: hidden; }
.map-img img { width: 100%; height: 100%; object-fit: cover; }
.map-img-overlay {
  position: absolute; inset: 0;
  background: rgba(27,67,50,0.25);
  display: flex; align-items: center; justify-content: center;
}
.map-pin {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-base); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(27,67,50,0.4);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(27,67,50,0.4); }
  50% { transform: scale(1.1); box-shadow: 0 8px 28px rgba(27,67,50,0.5); }
}
.map-info { padding: 1.25rem 1.5rem; }
.map-info p { font-size: 0.875rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }
.map-info strong { color: var(--green-dark); font-weight: 600; display: block; margin-bottom: 3px; }
.directions-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 0.75rem; font-size: 0.8rem; font-weight: 600;
  color: var(--green-base); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.directions-link:hover { color: var(--green-dark); }

/* ── Hours Card ── */
.hours-card {
  background: var(--white); border-radius: 20px;
  border: 1px solid var(--green-mist); padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(27,67,50,0.07);
}
.hours-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 8px;
}
.hours-card h4 i { color: var(--green-base); font-size: 1rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0; border-bottom: 1px solid var(--green-frost);
  font-size: 0.875rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); font-weight: 400; }
.hours-time { color: var(--green-dark); font-weight: 600; }
.hours-time.closed { color: var(--text-light); font-weight: 400; }
.open-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--success); background: #D1FAE5;
  padding: 2px 8px; border-radius: 50px; margin-left: 8px;
}
.open-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); display: inline-block; }

/* ── Social Card ── */
.social-card {
  background: var(--green-dark); border-radius: 20px; padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(27,67,50,0.12);
}
.social-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white);
  margin-bottom: 1.1rem;
}
.social-links { display: flex; flex-direction: column; gap: 0.75rem; }
.social-link {
  display: flex; align-items: center; gap: 12px;
  padding: 0.75rem 1rem; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(116,198,157,0.12);
  text-decoration: none; transition: all 0.2s;
}
.social-link:hover { background: rgba(116,198,157,0.12); border-color: rgba(116,198,157,0.25); }
.social-link-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.social-link-name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.social-link-handle { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.li-color { background: rgba(0,119,181,0.25); color: #0A66C2; }
.tw-color { background: rgba(255,255,255,0.1); color: var(--white); }
.ig-color { background: rgba(225,48,108,0.2); color: #E1306C; }
.wa-color { background: rgba(37,211,102,0.2); color: #25D366; }

/* ══ FAQ MINI ══ */
.faq-mini { padding: 5rem 5%; background: var(--white); }
.faq-mini-inner { max-width: 820px; margin: 0 auto; }
.faq-mini-header { text-align: center; margin-bottom: 2.5rem; }
.faq-mini-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--green-dark);
}
.faq-mini-header p { color: var(--text-muted); font-size: 0.9375rem; font-weight: 300; margin-top: 0.4rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.faq-chip {
  background: var(--green-frost); border-radius: 16px;
  padding: 1.25rem 1.4rem; border: 1px solid var(--green-mist);
  transition: all 0.2s; cursor: pointer;
}
.faq-chip:hover { border-color: var(--green-base); background: var(--green-mist); }
.faq-chip i { color: var(--green-base); margin-right: 8px; }
.faq-chip-q { font-size: 0.9rem; font-weight: 600; color: var(--green-dark); margin-bottom: 5px; }
.faq-chip-a { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .contact-main { grid-template-columns: 1fr; }
  .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .social-card { grid-column: span 2; }
  .info-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .inquiry-tabs { flex-direction: row; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .social-card { grid-column: span 1; }
  .faq-grid { grid-template-columns: 1fr; }
}