@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

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

:root {
  --green-dark: #0d2c1e;
  --green-mid: #153325;
  --caribbean: #04DC8C;
  --zanah: #CAE7C7;
  --supernova: #FCCC04;
  --orange: #B55224;
  --orange-hover: #9a4520;
  --text: #111111;
  --text-muted: #555555;
  --text-light: #888888;
  --border: #e0e0e0;
  --bg: #ffffff;
  --bg-light: #edf7ed;
  --radius: 6px;
  --max-w: 1760px;
  --px: 52px;
  --sp-lg: 56px;
  --sp-md: 40px;
  --sp-sm: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================================
   SHARED INNER WRAPPER
   ========================================================= */
.ch-wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* =========================================================
   SHARED TYPOGRAPHY
   ========================================================= */
.ch-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.ch-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.14;
  color: var(--text);
  margin-bottom: 14px;
}

.ch-section-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.ch-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}
.ch-link-arrow:hover { gap: 11px; color: var(--orange); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-hover); color: #fff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--text); }

/* =========================================================
   HEADER
   ========================================================= */
.ch-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
}

.ch-header__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ch-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ch-logo__img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.ch-footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

.ch-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ch-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.ch-nav a:hover { color: var(--orange); }
.ch-nav a.active { border-bottom: 2px solid var(--text); }

.ch-header__cta {
  background: var(--orange);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.ch-header__cta:hover { background: var(--orange-hover); color: #fff !important; }

.ch-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.ch-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* =========================================================
   MOBILE NAV
   ========================================================= */
.ch-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  flex-direction: column;
  overflow-y: auto;
}
.ch-mobile-nav.open { display: flex; }

.ch-mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.ch-mobile-nav__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

.ch-mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.ch-mobile-nav__links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 24px;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}

.ch-mobile-nav__links a:hover,
.ch-mobile-nav__links a.ch-mobile-nav__link--active {
  color: var(--green-dark);
  background: rgba(13,44,30,0.04);
  border-left-color: var(--green-dark);
}

.ch-mobile-nav__section {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.ch-mobile-nav__section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.ch-mobile-nav__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ch-mobile-nav__cat {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.15s;
}

.ch-mobile-nav__cat:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: rgba(13,44,30,0.04);
}

.ch-mobile-nav__footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.ch-mobile-nav__footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ch-mobile-nav__footer-links a {
  font-size: 12px;
  color: var(--text-light);
  transition: color 0.15s;
}

.ch-mobile-nav__footer-links a:hover { color: var(--text); }

/* =========================================================
   BLOG DROPDOWN NAV
   ========================================================= */
.ch-nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.ch-nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 2px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.ch-nav-dropdown__trigger:hover { color: var(--orange); }
.ch-nav-dropdown.active .ch-nav-dropdown__trigger { border-bottom: 2px solid var(--text); }

.ch-nav-dropdown__chevron {
  font-size: 10px;
  transition: transform 0.2s;
}
.ch-nav-dropdown.open .ch-nav-dropdown__chevron { transform: rotate(180deg); }

.ch-nav-dropdown__panel {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  z-index: 900;
  overflow: hidden;
}
.ch-nav-dropdown.open .ch-nav-dropdown__panel { display: block; }

.ch-nav-dropdown__panel::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  rotate: 45deg;
}

/* Compact single-column blog menu */
.ch-blog-menu--compact {
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 2px;
}

.ch-blog-menu__divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0 10px;
}

.ch-blog-menu__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0 8px;
  margin-bottom: 4px;
  display: block;
}

.ch-blog-menu__cat-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.15s;
}
.ch-blog-menu__cat-link:hover {
  background: var(--bg-light);
  color: var(--text);
}
.ch-blog-menu__cat-link--all {
  font-weight: 700;
  color: var(--green-dark);
}
.ch-blog-menu__cat-link--all:hover { background: rgba(13,44,30,0.06); }

/* =========================================================
   HERO
   ========================================================= */
.ch-hero {
  margin-top: 68px;
  background: #fff;
  overflow: hidden;
}

.ch-hero__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px var(--px) 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ch-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ch-hero__eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.ch-hero__eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.ch-hero__heading {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}
.ch-hero__heading .accent { color: var(--orange); }

.ch-hero__desc {
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 32px;
}

.ch-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ch-hero__map {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ch-hero__map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   WHAT WE DO (homepage section)
   ========================================================= */
.ch-services {
  padding: var(--sp-lg) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.ch-services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.ch-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.ch-service-card {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.ch-service-card:last-child { border-right: none; }
.ch-service-card:hover { background: var(--bg-light); }

.ch-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.ch-service-card__icon--green { background: var(--caribbean); color: #0d2c1e; }
.ch-service-card__icon--orange { background: var(--orange); color: #fff; }

.ch-service-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.ch-service-card__title--green { color: #027a4e; }
.ch-service-card__title--orange { color: var(--orange); }

.ch-service-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.ch-service-card__arrow {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: color 0.2s, transform 0.2s;
}
.ch-service-card:hover .ch-service-card__arrow { color: var(--orange); transform: translateX(4px); }

/* =========================================================
   WHY CHERUB
   ========================================================= */
.ch-why {
  background: var(--green-dark);
  padding: var(--sp-md) 0;
}

.ch-why__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
}

.ch-why .ch-section-label { color: var(--orange); }
.ch-why .ch-section-heading { color: #fff; font-size: 34px; margin-bottom: 0; }

.ch-why__advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.ch-advantage {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.ch-advantage:last-child { border-right: none; }

.ch-advantage__icon {
  font-size: 24px;
  color: var(--caribbean);
  margin-bottom: 12px;
}
.ch-advantage__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ch-advantage__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}

/* =========================================================
   TRUSTED BY
   ========================================================= */
.ch-trusted {
  padding: var(--sp-md) 0;
  background: #fff;
}

.ch-trusted__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.ch-trusted__header {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 36px;
}
.ch-trusted__line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--orange);
}
.ch-trusted__header span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.ch-trusted__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ch-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.ch-trust-item:last-child { border-right: none; }

.ch-trust-item__icon { font-size: 26px; color: var(--text-muted); }
.ch-trust-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================================
   INSIGHTS (homepage)
   ========================================================= */
.ch-insights {
  padding: var(--sp-lg) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.ch-insights__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.ch-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Article cards (shared) */
.ch-article-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: block;
}
.ch-article-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }

.ch-article-card__img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.ch-article-card__img-placeholder {
  width: 100%;
  height: 170px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #037a4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 36px;
}

.ch-article-card__body { padding: 18px; }

.ch-article-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ch-article-card__date { font-size: 12px; color: var(--text-light); }
.ch-article-card__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-light);
}
.ch-article-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
}

.ch-article-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 14px;
}

.ch-article-card__arrow {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}
.ch-article-card:hover .ch-article-card__arrow { color: var(--orange); transform: translateX(4px); }

/* =========================================================
   CTA SECTION
   ========================================================= */
.ch-cta {
  background: var(--green-dark);
  padding: var(--sp-md) 0;
}

.ch-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}

.ch-cta__heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ch-cta__desc {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.62);
}

.ch-cta__center { display: flex; justify-content: center; }

.ch-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s;
  white-space: nowrap;
}
.ch-cta__btn:hover { background: var(--orange-hover); color: #fff; }

.ch-cta__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-self: end;
}

.ch-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.ch-contact-item i {
  width: 16px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.ch-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.ch-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.ch-footer__logo { display: flex; align-items: center; gap: 8px; }

.ch-footer__links { display: flex; gap: 24px; }
.ch-footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.ch-footer__links a:hover { color: var(--orange); }

.ch-footer__copy { font-size: 13px; color: var(--text-light); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.ch-page-hero {
  background: var(--green-dark);
  padding: 72px var(--px) 52px;
  text-align: center;
  margin-top: 68px;
}

.ch-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ch-page-hero__eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.ch-page-hero__eyebrow::before,
.ch-page-hero__eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  opacity: 0.55;
}

.ch-page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.ch-page-hero__title .accent { color: var(--orange); }

.ch-page-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.72;
}

/* =========================================================
   WHO WE ARE PAGE
   ========================================================= */
.ch-mission {
  padding: var(--sp-lg) 0;
  background: #fff;
}
.ch-mission__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ch-mission__quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.5;
  border-left: 4px solid var(--orange);
  padding-left: 22px;
  margin-bottom: 22px;
}

.ch-mission__body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ch-mission__body p strong { color: var(--text); font-weight: 600; }

.ch-mission__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ch-stat-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-top: 3px solid var(--caribbean);
}
.ch-stat-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.ch-stat-card__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Values */
.ch-values {
  padding: var(--sp-lg) 0;
  background: var(--bg-light);
}
.ch-values__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.ch-values__header {
  text-align: center;
  margin-bottom: 40px;
}
.ch-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ch-value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ch-value-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.ch-value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--green-dark);
  color: #fff;
  margin-bottom: 16px;
}
.ch-value-card__title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ch-value-card__desc { font-size: 13px; line-height: 1.72; color: var(--text-muted); }

/* Team */
.ch-team {
  padding: var(--sp-lg) 0;
  background: #fff;
}
.ch-team__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.ch-team__header { text-align: center; margin-bottom: 44px; }
.ch-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ch-team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.ch-team-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.08); }

.ch-team-card__avatar {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #037a4e 100%);
  color: rgba(255,255,255,0.14);
}
.ch-team-card__body { padding: 24px 22px; }
.ch-team-card__wing {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.ch-team-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.ch-team-card__bio {
  font-size: 13px;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.ch-team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  transition: color 0.2s;
}
.ch-team-card__linkedin:hover { color: var(--orange); }

/* =========================================================
   WHAT WE DO PAGE
   ========================================================= */
.ch-services-intro {
  padding: var(--sp-md) 0 var(--sp-sm);
  background: #fff;
}
.ch-services-intro__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--px);
  text-align: center;
}
.ch-services-intro__lead {
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-muted);
}

.ch-service-detail {
  padding: var(--sp-lg) 0;
  border-top: 1px solid var(--border);
}
.ch-service-detail:nth-child(even) { background: var(--bg-light); }
.ch-service-detail:nth-child(odd)  { background: #fff; }

.ch-service-detail__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ch-service-detail:nth-child(even) .ch-service-detail__inner { direction: rtl; }
.ch-service-detail:nth-child(even) .ch-service-detail__content,
.ch-service-detail:nth-child(even) .ch-service-detail__visual { direction: ltr; }

.ch-service-detail__number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: -8px;
}
.ch-service-detail__title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.ch-service-detail__desc {
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.ch-service-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ch-service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.ch-service-detail__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}

.ch-service-detail__visual {
  background: var(--green-dark);
  border-radius: 10px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 36px;
}
.ch-service-detail__visual-icon { font-size: 56px; color: var(--orange); opacity: 0.85; }
.ch-service-detail__visual-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  text-align: center;
  line-height: 1.4;
}

/* Process */
.ch-process {
  padding: var(--sp-lg) 0;
  background: var(--green-dark);
}
.ch-process__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.ch-process__header {
  text-align: center;
  margin-bottom: 44px;
}
.ch-process__header .ch-section-heading { color: #fff; }

.ch-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.ch-process__steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255,255,255,0.12);
}

.ch-process-step { text-align: center; padding: 0 18px; position: relative; }
.ch-process-step__number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--supernova);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.ch-process-step__title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ch-process-step__desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.52); }

/* =========================================================
   INSIGHTS PAGE
   ========================================================= */
.ch-insights-page {
  padding: var(--sp-lg) 0;
  background: #fff;
}
.ch-insights-page__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.ch-insights-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ch-filter-btn {
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.ch-filter-btn.active,
.ch-filter-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.ch-insights-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.ch-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.ch-pagination a,
.ch-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.ch-pagination a:hover,
.ch-pagination .active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

/* Newsletter */
.ch-newsletter {
  background: var(--bg-light);
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--border);
}
.ch-newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 var(--px);
  text-align: center;
}
.ch-newsletter__form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.ch-newsletter__input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.ch-newsletter__input:focus { border-color: var(--green-dark); }
.ch-newsletter__btn {
  padding: 13px 22px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
.ch-newsletter__btn:hover { background: var(--orange-hover); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.ch-about-story {
  padding: var(--sp-lg) 0;
  background: #fff;
}
.ch-about-story__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ch-about-story__content .ch-section-heading { margin-bottom: 18px; }
.ch-about-story__content p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ch-about-story__content p strong { color: var(--text); font-weight: 600; }

.ch-spot-box {
  background: var(--green-dark);
  border-radius: 10px;
  padding: 36px;
  color: #fff;
}
.ch-spot-box__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.ch-spot-box__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.35;
}
.ch-spot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ch-spot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}
.ch-spot-list li i {
  color: var(--caribbean);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Investment thesis */
.ch-thesis {
  padding: var(--sp-lg) 0;
  background: var(--bg-light);
}
.ch-thesis__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--px);
  text-align: center;
}
.ch-thesis__quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--green-dark);
  margin-bottom: 22px;
}
.ch-thesis__body {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ch-thesis__vision {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 30px 36px;
  margin-top: 32px;
}
.ch-thesis__vision p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}
.ch-thesis__vision span { color: var(--orange); }

/* Who we serve */
.ch-serve {
  padding: var(--sp-lg) 0;
  background: #fff;
}
.ch-serve__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.ch-serve__header { text-align: center; margin-bottom: 40px; }
.ch-serve__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ch-serve-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: all 0.2s;
}
.ch-serve-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 22px rgba(232,97,42,0.09);
}
.ch-serve-card__icon { font-size: 28px; margin-bottom: 12px; color: var(--green-dark); }
.ch-serve-card__title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.ch-serve-card__desc { font-size: 13px; line-height: 1.68; color: var(--text-muted); }

/* Portfolio */
.ch-portfolio {
  padding: var(--sp-lg) 0;
  background: var(--bg-light);
}
.ch-portfolio__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.ch-portfolio__header { text-align: center; margin-bottom: 36px; }
.ch-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ch-portfolio-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.ch-portfolio-item:hover { box-shadow: 0 5px 18px rgba(0,0,0,0.06); }
.ch-portfolio-item__icon { font-size: 28px; margin-bottom: 10px; color: var(--green-dark); }
.ch-portfolio-item__name { font-size: 13px; font-weight: 700; color: var(--text); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.ch-contact {
  padding: var(--sp-lg) 0;
  background: #fff;
}
.ch-contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ch-contact__info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.ch-contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.ch-contact__info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.ch-contact__info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.ch-contact__info-value a { color: var(--text); transition: color 0.2s; }
.ch-contact__info-value a:hover { color: var(--orange); }

.ch-contact__socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.ch-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.ch-social-btn:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
}

/* Contact form */
.ch-form {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 36px 32px;
}
.ch-form__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.ch-form__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.ch-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ch-form__group { margin-bottom: 16px; }
.ch-form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.ch-form__input,
.ch-form__select,
.ch-form__textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.ch-form__input:focus,
.ch-form__select:focus,
.ch-form__textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(13,44,30,0.05);
}
.ch-form__textarea { height: 120px; resize: vertical; }
.ch-form__submit {
  width: 100%;
  padding: 14px;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.ch-form__submit:hover { background: var(--green-mid); }
.ch-form__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

/* =========================================================
   RESPONSIVE — tablet
   ========================================================= */
@media (max-width: 1200px) {
  :root { --px: 36px; }

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

  .ch-why__inner { grid-template-columns: 1fr; gap: 32px; }
  .ch-why__advantages { grid-template-columns: repeat(2, 1fr); gap: 20px; border: none; }
  .ch-advantage { border: none; padding: 0; }

  .ch-insights__inner { grid-template-columns: 1fr; }
  .ch-cta__inner { grid-template-columns: 1fr; text-align: center; }
  .ch-cta__contact { justify-self: center; align-items: center; }

  .ch-mission__inner,
  .ch-about-story__inner,
  .ch-contact__inner { grid-template-columns: 1fr; gap: 36px; }

  .ch-service-detail__inner { grid-template-columns: 1fr; gap: 32px; }
  .ch-service-detail:nth-child(even) .ch-service-detail__inner { direction: ltr; }

  .ch-values__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-team__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ch-serve__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-process__steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .ch-process__steps::before { display: none; }
}

/* =========================================================
   RESPONSIVE — mobile
   ========================================================= */
@media (max-width: 768px) {
  :root { --px: 20px; --sp-lg: 44px; --sp-md: 32px; --sp-sm: 24px; }

  .ch-nav { display: none; }
  .ch-hamburger { display: flex; }
  .ch-header__cta { display: none; }

  .ch-hero__inner { grid-template-columns: 1fr; padding: 36px var(--px); }
  .ch-hero__heading { font-size: 34px; }
  .ch-hero__map { display: none; }

  .ch-page-hero { padding: 72px var(--px) 40px; }
  .ch-page-hero__title { font-size: 36px; }

  .ch-services__grid { grid-template-columns: 1fr; }
  .ch-insights__grid,
  .ch-insights-page__grid { grid-template-columns: 1fr; }

  .ch-why__advantages { grid-template-columns: 1fr; }
  .ch-trust-item { border: none; padding: 0 14px; }

  .ch-values__grid,
  .ch-team__grid,
  .ch-serve__grid,
  .ch-portfolio__grid { grid-template-columns: 1fr; }

  .ch-form__row { grid-template-columns: 1fr; }
  .ch-newsletter__form { flex-direction: column; }
  .ch-form { padding: 24px 20px; }

  .ch-footer__inner { flex-direction: column; text-align: center; }

  .ch-post-body__inner { grid-template-columns: 1fr; }
  .ch-post-sidebar { display: none; }
  .ch-post-hero { min-height: 320px; }
  .ch-post-hero__title { font-size: 28px; }

  .ch-legal__inner { grid-template-columns: 1fr; }
  .ch-legal__toc { display: none; }
}

/* =========================================================
   POST DETAIL PAGE
   ========================================================= */
.ch-post-hero {
  margin-top: 68px;
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ch-post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,44,30,0.94) 0%, rgba(13,44,30,0.55) 60%, rgba(0,0,0,0.18) 100%);
}

.ch-post-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--px);
}

.ch-post-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.ch-post-hero__cat {
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ch-post-hero__date {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.ch-post-hero__author {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.ch-post-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 820px;
}

.ch-post-hero__excerpt {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  line-height: 1.7;
}

.ch-post-body {
  padding: var(--sp-lg) 0;
  background: #fff;
}

.ch-post-body__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.ch-post-article__content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}

.ch-post-article__content p {
  margin-bottom: 22px;
  color: #333;
}

.ch-post-article__subheading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 32px 0 14px;
  line-height: 1.3;
}

.ch-post-article__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.ch-post-article__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ch-post-article__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ch-post-article__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}

.ch-post-article__tag:hover,
.ch-post-article__tag--active {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: rgba(13,44,30,0.05);
}

.ch-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.ch-post-nav__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ch-post-nav__item:hover {
  border-color: var(--green-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.ch-post-nav__item--right {
  text-align: right;
}

.ch-post-nav__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.ch-post-nav__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* Sidebar */
.ch-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 88px;
}

.ch-post-sidebar__block {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--border);
}

.ch-post-sidebar__cta {
  background: var(--green-dark);
  border: none;
}

.ch-sidebar-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}

.ch-sidebar-post:last-child { border-bottom: none; }
.ch-sidebar-post:hover { opacity: 0.8; }

.ch-sidebar-post__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.ch-sidebar-post__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ch-sidebar-post__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.ch-sidebar-post__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.ch-sidebar-post__date {
  font-size: 11px;
  color: var(--text-light);
}

/* =========================================================
   LEGAL PAGES (Terms & Privacy)
   ========================================================= */
.ch-legal {
  padding: var(--sp-lg) 0;
  background: #fff;
}

.ch-legal__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.ch-legal__toc {
  position: sticky;
  top: 88px;
}

.ch-legal__toc nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.ch-legal__toc nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 5px 0;
  border-left: 2px solid var(--border);
  padding-left: 12px;
  transition: all 0.2s;
  line-height: 1.4;
}

.ch-legal__toc nav a:hover {
  border-left-color: var(--orange);
  color: var(--text);
}

.ch-legal__body {
  max-width: 760px;
}

.ch-legal__section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}

.ch-legal__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.ch-legal__section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.ch-legal__section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 10px;
}

.ch-legal__section p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

.ch-legal__section p:last-child { margin-bottom: 0; }

.ch-legal__section ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.ch-legal__section ul li {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 8px;
}

.ch-legal__section a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ch-legal__contact {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 16px;
}

.ch-legal__contact p {
  margin-bottom: 6px !important;
  font-size: 14px !important;
}

/* =========================================================
   ANIMATIONS & MOTION SYSTEM
   ========================================================= */

/* --- Keyframes ------------------------------------------ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatMap {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(28px, -22px) scale(1.1); }
  70%       { transform: translate(-18px, 12px) scale(0.92); }
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes shimmerAccent {
  from { background-position: 100% center; }
  to   { background-position: -100% center; }
}

/* --- Hero position context ------------------------------ */
.ch-hero { position: relative; }
.ch-hero__inner { position: relative; z-index: 1; }

/* --- Hero load sequence (staggered) --------------------- */
.ch-hero__eyebrow { animation: fadeInUp 0.6s ease both; }
.ch-hero__heading { animation: fadeInUp 0.7s ease 0.13s both; }
.ch-hero__desc    { animation: fadeInUp 0.7s ease 0.25s both; }
.ch-hero__actions { animation: fadeInUp 0.7s ease 0.37s both; }

/* Map: slides in from right then gently floats forever */
.ch-hero__map-img {
  animation: fadeInRight 0.85s ease 0.2s both, floatMap 9s ease-in-out 1.1s infinite;
}

/* Accent gradient shimmer on hero heading */
.ch-hero__heading .accent {
  display: inline-block;
  background: linear-gradient(110deg, var(--orange) 0%, #d86526 38%, var(--supernova) 65%, var(--orange) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerAccent 3.5s ease-in-out 1.5s infinite alternate;
}

/* --- Ambient glow blobs behind hero --------------------- */
.ch-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(78px);
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 16s ease-in-out infinite;
}
.ch-hero__glow--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(4,220,140,0.13) 0%, transparent 70%);
  top: -110px; right: 14%;
}
.ch-hero__glow--2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(181,82,36,0.1) 0%, transparent 70%);
  bottom: -50px; left: 5%;
  animation-delay: -7s;
  animation-direction: reverse;
}

/* --- Ticker strip --------------------------------------- */
.ch-ticker {
  background: var(--green-dark);
  padding: 13px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ch-ticker__track {
  display: flex;
  width: max-content;
  animation: marqueeRoll 22s linear infinite;
  white-space: nowrap;
}
.ch-ticker__track:hover { animation-play-state: paused; }
.ch-ticker__track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 30px;
  flex-shrink: 0;
}
.ch-ticker__sep {
  color: var(--caribbean) !important;
  padding: 0 6px !important;
  letter-spacing: 0 !important;
  font-size: 14px !important;
}

/* --- Trusted-by marquee --------------------------------- */
.ch-trusted__track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.ch-trusted__track {
  display: flex;
  width: max-content;
  animation: marqueeRoll 24s linear infinite;
}
.ch-trusted__track:hover { animation-play-state: paused; }
.ch-trusted__track .ch-trust-item { flex-shrink: 0; }

/* --- CTA animated gradient ------------------------------ */
.ch-cta {
  background-image: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    #0b4228 28%,
    #062819 55%,
    #0b4228 80%,
    var(--green-dark) 100%
  );
  background-size: 240% 240%;
  animation: gradShift 10s ease infinite;
}

/* --- Scroll reveal system ------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0, 0); }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }
.rv-d5 { transition-delay: 0.5s; }

/* --- Service card: icon spins on hover (no overflow clip issue) */
.ch-service-card__icon { transition: transform 0.35s ease; }
.ch-service-card:hover .ch-service-card__icon { transform: scale(1.2) rotate(-10deg); }

/* --- Article card: lift + image zoom -------------------- */
.ch-article-card { transition: box-shadow 0.28s, transform 0.28s; }
.ch-article-card:hover { box-shadow: 0 18px 52px rgba(0,0,0,0.12); transform: translateY(-6px); }
.ch-article-card__img { transition: transform 0.55s ease; }
.ch-article-card:hover .ch-article-card__img { transform: scale(1.06); }

/* --- Advantage icon bounce on hover -------------------- */
.ch-advantage__icon { transition: transform 0.3s ease, color 0.25s; }
.ch-advantage:hover .ch-advantage__icon {
  transform: translateY(-8px) scale(1.25);
  color: var(--supernova);
}

/* --- Value / serve cards ------------------------------- */
.ch-value-card { transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.ch-value-card:hover { transform: translateY(-5px); }
.ch-serve-card { transition: all 0.25s; }
.ch-serve-card:hover { transform: translateY(-5px); }

/* --- Process step number ------------------------------- */
.ch-process-step__number { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ch-process-step:hover .ch-process-step__number {
  transform: scale(1.14);
  box-shadow: 0 0 0 9px rgba(252,204,4,0.2);
}

/* --- CTA button scale pulse ---------------------------- */
.ch-cta__btn { transition: background 0.2s, transform 0.22s, box-shadow 0.22s; }
.ch-cta__btn:hover {
  background: var(--orange-hover);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(181,82,36,0.38);
}

/* --- Contact icon spin --------------------------------- */
.ch-contact__info-icon { transition: background 0.2s, transform 0.28s; }
.ch-contact__info-item:hover .ch-contact__info-icon {
  transform: rotate(14deg) scale(1.12);
  background: var(--zanah);
}

/* --- Page hero entrance --------------------------------- */
.ch-page-hero__eyebrow { animation: fadeIn 0.5s ease both; }
.ch-page-hero__title   { animation: fadeInUp 0.68s ease 0.1s both; }
.ch-page-hero__desc    { animation: fadeInUp 0.68s ease 0.22s both; }

/* --- Post hero entrance --------------------------------- */
.ch-post-hero__meta    { animation: fadeIn 0.6s ease 0.15s both; }
.ch-post-hero__title   { animation: fadeInUp 0.7s ease 0.25s both; }
.ch-post-hero__excerpt { animation: fadeInUp 0.65s ease 0.38s both; }

/* --- Respect reduced motion preference ----------------- */
@media (prefers-reduced-motion: reduce) {
  .ch-hero__eyebrow, .ch-hero__heading, .ch-hero__desc, .ch-hero__actions,
  .ch-hero__map-img, .ch-hero__glow,
  .ch-page-hero__eyebrow, .ch-page-hero__title, .ch-page-hero__desc,
  .ch-post-hero__meta, .ch-post-hero__title, .ch-post-hero__excerpt {
    animation: none;
  }
  .ch-hero__heading .accent {
    animation: none;
    -webkit-text-fill-color: var(--orange);
    background: none;
  }
  .ch-ticker__track, .ch-trusted__track { animation: none; }
  .ch-cta { animation: none; background-image: none; background: var(--green-dark); }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
}
