/* ==========================================================================
   GNE69 — Home page (index.html)
   Loaded after style.css. All selectors are prefixed "gh-" so nothing here
   can affect the other pages.
   ========================================================================== */

:root {
  --gh-forest: #0f3314;
  /* deepest green, safe for small orange text */
  --gh-warm: #fff7ea;
  --gh-line: rgba(17, 17, 17, 0.12);
  --gh-ink-soft: #4a4f4a;
}

.gh-skip {
  position: absolute;
  z-index: 2000;
  top: 8px;
  left: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* Visible keyboard focus everywhere on this page */
main a:focus-visible,
main button:focus-visible,
main summary:focus-visible,
.gh-input:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Shared building blocks
   ------------------------------------------------------------------------- */
.gh-section {
  padding: clamp(64px, 8vw, 104px) 0;
  scroll-margin-top: 90px;
}

.gh-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.gh-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 16px;
}

.gh-label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange-main);
}

.gh-h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--dark);
  text-wrap: balance;
  margin: 0;
}

.gh-lead {
  color: var(--gh-ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
  max-width: 62ch;
  margin: 16px 0 0;
}

.gh-prose p {
  color: var(--gh-ink-soft);
  line-height: 1.8;
  max-width: 62ch;
  margin: 0 0 1em;
}

.gh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gh-btn i {
  font-size: 0.85em;
}

.gh-btn--lg {
  font-size: 1rem;
  padding: 16px 34px;
}

.gh-btn--xl {
  font-size: 1.1rem;
  padding: 19px 44px;
  margin-top: 8px;
}

/* dark ink on marigold: passes AA contrast, white on orange does not */
.gh-btn--primary {
  background: var(--orange-light);
  color: #1a1a1a;
}

.gh-btn--primary:hover {
  background: #ffb02e;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.gh-btn--green {
  background: var(--green-main);
  color: var(--white);
}

.gh-btn--green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.gh-btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-main);
}

.gh-btn--outline:hover {
  background: var(--green-main);
  color: var(--white);
}

.gh-btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.gh-btn--ghost:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.gh-textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-main);
}

.gh-textlink i {
  font-size: 0.8em;
  transition: transform 0.2s ease;
}

.gh-textlink:hover {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gh-textlink:hover i {
  transform: translateX(3px);
}

/* -------------------------------------------------------------------------
   1. Hero: five keyword slides on image backgrounds
   ------------------------------------------------------------------------- */
:root {
  --gh-overlap: clamp(84px, 9vw, 120px);
  /* how far the quick-opportunity cards climb into the hero */
  --gh-dwell: 7s;
  /* time each slide stays on screen (JS reads this) */
}

.gh-hero {
  position: relative;
  color: var(--white);
  background: var(--gh-forest);
  overflow: hidden;
}

/* every slide sits in the same grid cell, so the tallest one sets the height (no jump between slides) */
.gh-hero__slides {
  display: grid;
}

.gh-slide {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(600px, calc(100svh - 120px), 760px);
  padding: clamp(56px, 7vw, 96px) 0 calc(var(--gh-overlap) + 96px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}

.gh-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: opacity 0.9s ease, visibility 0s;
}

.gh-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gh-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
}

/* left-weighted green scrim keeps the headline readable on both dark and bright photos */
.gh-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(9, 38, 13, 0.72) 0%, rgba(9, 38, 13, 0) 38%),
    linear-gradient(90deg, rgba(9, 38, 13, 0.93) 0%, rgba(9, 38, 13, 0.8) 36%, rgba(9, 38, 13, 0.38) 68%, rgba(9, 38, 13, 0.14) 100%);
}

.gh-slide>.container {
  position: relative;
  z-index: 2;
}

.gh-slide__copy {
  max-width: 660px;
}

.gh-hero .gh-slide__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.05rem, 4.9vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
  margin: 0;
}

.gh-slide__sub {
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 54ch;
  margin: 20px 0 0;
}

.gh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* controls (revealed by JS so they never appear dead) */
.gh-hero__ui {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--gh-overlap) + 24px);
  z-index: 4;
}

.gh-hero.is-ready .gh-hero__ui {
  display: block;
}

.gh-hero__nav {
  display: flex;
  align-items: flex-end;
  gap: 28px;
}

/* the slide picker doubles as a timeline: the orange bar fills while a slide is on screen */
.gh-hero__tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gh-hero__tab {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 8px 0 0;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.gh-hero__tab:hover,
.gh-hero__tab.is-active {
  color: var(--white);
}

.gh-hero__bar {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.gh-hero__bar i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange-light);
  transform: scaleX(0);
  transform-origin: left center;
}

/* paused / no autoplay: the current slide's bar simply stays full */
.gh-hero:not(.is-playing) .gh-hero__tab.is-active .gh-hero__bar i {
  transform: scaleX(1);
}

.gh-hero.is-playing .gh-hero__tab.is-active .gh-hero__bar i {
  animation: ghBar var(--gh-dwell) linear forwards;
}

.gh-hero.is-playing.is-held .gh-hero__tab.is-active .gh-hero__bar i {
  animation-play-state: paused;
}

@keyframes ghBar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.gh-hero__ctrl {
  display: flex;
  gap: 8px;
  flex: none;
}

.gh-hero__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: rgba(9, 38, 13, 0.4);
  color: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gh-hero__btn:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: #1a1a1a;
}

/* entrance for the slide that is coming in, only when motion is welcome */
@media (prefers-reduced-motion: no-preference) {
  .gh-slide.is-active .gh-slide__img {
    animation: ghDrift 9s cubic-bezier(0.2, 0.6, 0.2, 1) both;
  }

  .gh-slide.is-active .gh-slide__copy>* {
    animation: ghRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .gh-slide.is-active .gh-slide__copy>*:nth-child(1) {
    animation-delay: 0.12s;
  }

  .gh-slide.is-active .gh-slide__copy>*:nth-child(2) {
    animation-delay: 0.22s;
  }

  .gh-slide.is-active .gh-slide__copy>*:nth-child(3) {
    animation-delay: 0.32s;
  }
}

@keyframes ghRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ghDrift {
  from {
    transform: scale(1.06);
  }

  to {
    transform: none;
  }
}

@media (max-width: 991px) {
  .gh-hero__tab {
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  .gh-slide {
    min-height: 640px;
    padding-top: 44px;
    padding-bottom: calc(var(--gh-overlap) + 84px);
    align-items: flex-start;
  }

  /* photos are art-directed for phones; a flatter scrim keeps the copy legible everywhere */
  .gh-slide::before {
    background:
      linear-gradient(0deg, rgba(9, 38, 13, 0.78) 0%, rgba(9, 38, 13, 0) 28%),
      linear-gradient(180deg, rgba(9, 38, 13, 0.84) 0%, rgba(9, 38, 13, 0.7) 56%, rgba(9, 38, 13, 0.3) 100%);
  }

  .gh-hero .gh-slide__title {
    font-size: clamp(1.85rem, 8.4vw, 2.3rem);
  }

  .gh-slide__sub {
    font-size: 0.98rem;
    line-height: 1.62;
    margin-top: 16px;
  }

  .gh-hero__actions {
    margin-top: 24px;
  }

  .gh-hero__actions .gh-btn {
    padding: 12px 22px;
  }

  .gh-hero__ui {
    bottom: calc(var(--gh-overlap) + 16px);
  }

  .gh-hero__nav {
    gap: 14px;
  }

  /* labels drop out (still read by screen readers); the timeline bars remain as tap targets */
  .gh-hero__tabtext {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .gh-hero__tabs {
    gap: 8px;
  }

  .gh-hero__tab {
    padding: 18px 0;
  }

  .gh-hero__btn {
    width: 40px;
    height: 40px;
  }

  .gh-hero__btn--step {
    display: none;
  }

  /* pause control on the left, away from the floating WhatsApp button */
  .gh-hero__ctrl {
    order: -1;
  }
}

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

  .gh-slide,
  .gh-slide.is-active {
    transition: none;
  }
}

/* -------------------------------------------------------------------------
   2. Quick opportunity bar (overlaps the hero)
   ------------------------------------------------------------------------- */
.gh-quick {
  position: relative;
  z-index: 3;
  margin-top: calc(-1 * var(--gh-overlap));
}

.gh-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gh-quick-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  background: var(--white);
  color: var(--dark);
  border-radius: 18px;
  padding: 24px 22px 22px;
  box-shadow: 0 18px 44px rgba(15, 51, 20, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gh-quick-card:hover {
  color: var(--dark);
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(15, 51, 20, 0.28);
}

.gh-quick-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--light-gray);
  color: var(--green-main);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.gh-quick-card__kicker {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-main);
}

.gh-quick-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.gh-quick-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gh-ink-soft);
  margin: 0;
}

.gh-quick-card__link {
  margin-top: auto;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-main);
}

.gh-quick-card__link i {
  font-size: 0.8em;
  transition: transform 0.2s ease;
}

.gh-quick-card:hover .gh-quick-card__link i {
  transform: translateX(4px);
}

/* -------------------------------------------------------------------------
   3. About
   ------------------------------------------------------------------------- */
.gh-about {
  background: var(--white);
}

.gh-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.gh-about__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.gh-about__copy .gh-h2 {
  margin-bottom: 22px;
}

.gh-about__copy .gh-btn {
  margin-top: 10px;
}

/* -------------------------------------------------------------------------
   4. Business opportunities
   ------------------------------------------------------------------------- */
.gh-opps {
  background: var(--off-white);
}

.gh-feature {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  background: var(--white);
  border: 1px solid rgba(46, 125, 50, 0.14);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gh-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gh-feature__body {
  padding: clamp(28px, 4vw, 52px);
}

.gh-feature__body h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  margin: 0 0 10px;
}

.gh-feature__body p {
  color: var(--gh-ink-soft);
  line-height: 1.75;
  margin: 0;
}

.gh-feature__body .gh-feature__learn {
  margin-top: 22px;
  font-weight: 700;
  color: var(--dark);
}

.gh-checks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 14px 0 30px;
  padding: 0;
}

.gh-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gh-ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.gh-checks i {
  color: var(--green-main);
  margin-top: 3px;
}

.gh-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.gh-opp-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(46, 125, 50, 0.14);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gh-opp-card img {
  width: 100%;
  height: auto;
  /* width/height attrs would otherwise pin the height and defeat aspect-ratio */
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gh-opp-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
}

.gh-opp-card__body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}

.gh-opp-card__body p {
  color: var(--gh-ink-soft);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.gh-opp-card__body .gh-textlink {
  margin-top: auto;
  padding-top: 8px;
}

/* -------------------------------------------------------------------------
   5. Why GNE69
   ------------------------------------------------------------------------- */
.gh-why {
  background: var(--white);
}

.gh-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.gh-why__head {
  position: sticky;
  top: 110px;
}

.gh-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--gh-line);
}

.gh-why__item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gh-line);
}

.gh-why__item>i {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--green-main);
}

.gh-why__item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.gh-why__item p {
  color: var(--gh-ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}

/* -------------------------------------------------------------------------
   6. Partner banner
   ------------------------------------------------------------------------- */
.gh-partner {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding: clamp(80px, 10vw, 136px) 0;
  background: var(--gh-forest) url("../images/home/partner-bg.webp") center / cover no-repeat;
  scroll-margin-top: 90px;
}

.gh-partner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 38, 14, 0.95) 0%, rgba(15, 51, 20, 0.86) 48%, rgba(15, 51, 20, 0.4) 100%);
}

.gh-partner__inner {
  max-width: 640px;
}

.gh-partner__kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 18px;
}

.gh-partner h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0 0 22px;
}

.gh-partner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 0 0 12px;
  max-width: 56ch;
}

.gh-partner .gh-btn {
  margin-top: 22px;
}

/* -------------------------------------------------------------------------
   7. Investment
   ------------------------------------------------------------------------- */
.gh-invest {
  background: var(--gh-warm);
}

.gh-invest__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.gh-invest__panel {
  background: var(--white);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border-left: 8px solid var(--orange-light);
}

.gh-invest__from {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gh-ink-soft);
  margin: 0;
}

.gh-invest__figure {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.2rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin: 6px 0 0;
}

.gh-invest__figure span {
  color: var(--orange-dark);
  margin-left: 2px;
}

.gh-invest__note {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gh-ink-soft);
  border-top: 1px dashed rgba(17, 17, 17, 0.2);
  margin: 20px 0 26px;
  padding-top: 18px;
}

/* -------------------------------------------------------------------------
   8 + 9. Presence: tabs, map, state panel
   ------------------------------------------------------------------------- */
.gh-presence {
  background: var(--off-white);
}

.gh-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gh-tab {
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--white);
  border: 1.5px solid rgba(46, 125, 50, 0.35);
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gh-tab:hover {
  border-color: var(--green-main);
}

.gh-tab[aria-selected="true"] {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white);
}

.gh-presence__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 24px;
  align-items: stretch;
}

.gh-map-wrap {
  min-width: 0;
}

.gh-map {
  height: 100%;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: #dbe7db;
  border: 1px solid rgba(46, 125, 50, 0.22);
  box-shadow: var(--shadow-sm);
  z-index: 0;
}

.gh-map__msg {
  padding: 32px;
  color: var(--gh-ink-soft);
}

.gh-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(46, 125, 50, 0.14);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}

.gh-panel__intro h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.gh-panel__intro p {
  color: var(--gh-ink-soft);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

.gh-panel__states {
  flex: 1;
  border-top: 1px solid var(--gh-line);
  padding-top: 20px;
}

.gh-state[hidden] {
  display: none;
}

.gh-state h3 {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--green-dark);
  margin: 0 0 10px;
}

.gh-state>p {
  color: var(--gh-ink-soft);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.gh-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.gh-types li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--light-gray);
  border-radius: 999px;
  padding: 6px 12px;
}

.gh-locs {
  margin-bottom: 20px;
}

.gh-locs__empty {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gh-ink-soft);
  margin: 0;
}

.gh-locs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.gh-locs li {
  border: 1px solid var(--gh-line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.gh-locs li strong {
  display: block;
  color: var(--dark);
}

.gh-locs li span {
  color: var(--gh-ink-soft);
}

.gh-all {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.gh-all button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
}

.gh-all button:hover {
  border-color: var(--green-main);
}

.gh-all button span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gh-ink-soft);
}

.gh-panel__all {
  align-self: flex-start;
}

/* Leaflet pins (branded, no image assets needed) */
.gh-pin {
  background: none;
  border: 0;
}

.gh-pin i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--green-main);
  color: var(--white);
  font-size: 0.95rem;
  border: 3px solid var(--white);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, color 0.2s ease;
}

.gh-pin i::before {
  transform: rotate(45deg);
}

.gh-pin.is-active {
  z-index: 800 !important;
}

.gh-pin.is-active i {
  background: var(--orange-light);
  color: #1a1a1a;
}

.gh-popup strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.gh-popup p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0 0 10px !important;
}

.gh-popup__btn {
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  background: var(--orange-light);
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}

.gh-popup__btn:hover {
  background: #ffb02e;
}

/* -------------------------------------------------------------------------
   10. Opportunity index (dark band)
   ------------------------------------------------------------------------- */
.gh-index {
  background: var(--gh-forest);
  color: var(--white);
}

.gh-index .gh-label {
  color: var(--orange-light);
}

.gh-index .gh-h2 {
  color: var(--white);
}

.gh-index__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.gh-index__item {
  display: block;
  color: var(--white);
  padding: 32px 28px 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

.gh-index__item:first-child {
  border-left: 0;
  padding-left: 0;
}

.gh-index__item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.gh-index__item i {
  font-size: 1.7rem;
  color: var(--orange-light);
  margin-bottom: 18px;
}

.gh-index__item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.gh-index__item p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

.gh-index__item:hover h3 {
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* -------------------------------------------------------------------------
   11. Discover / social
   ------------------------------------------------------------------------- */
.gh-discover {
  background: var(--white);
}

.gh-discover__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.gh-discover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gh-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gh-social a {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  background: var(--off-white);
  border: 1px solid rgba(46, 125, 50, 0.14);
  border-radius: 18px;
  padding: 24px;
  color: var(--dark);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.gh-social a i {
  font-size: 1.7rem;
  color: var(--green-main);
  transition: color 0.2s ease;
}

.gh-social a:hover {
  background: var(--green-main);
  color: var(--white);
}

.gh-social a:hover i {
  color: var(--white);
}

/* -------------------------------------------------------------------------
   12. Lead form
   ------------------------------------------------------------------------- */
.gh-apply {
  background: var(--off-white);
}

.gh-apply__card {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gh-apply__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(165deg, var(--gh-forest) 0%, var(--green-dark) 100%);
}

.gh-apply__aside h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
  margin: 0;
}

.gh-apply__aside p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.gh-apply__aside img {
  margin-top: auto;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.gh-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
  padding: clamp(24px, 4vw, 48px);
}

.gh-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

.gh-field--full {
  grid-column: 1 / -1;
}

.gh-field label,
.gh-field legend {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0;
  margin: 0;
  float: none;
  width: auto;
}

/* <legend> is not a flex item, so the parent's gap does not reach it */
.gh-field legend {
  margin-bottom: 8px;
}

.gh-req {
  color: #c62828;
}

.gh-input {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid #c9d3c9;
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gh-input:focus {
  outline: none;
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.gh-input::placeholder {
  color: #6b736b;
}

textarea.gh-input {
  resize: vertical;
  min-height: 110px;
}

.gh-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gh-chip {
  position: relative;
  font-weight: 500 !important;
}

.gh-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.gh-chip span {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid #c9d3c9;
  border-radius: 999px;
  padding: 10px 18px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gh-chip:hover span {
  border-color: var(--green-main);
}

.gh-chip input:checked+span {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white);
}

.gh-chip input:focus-visible+span {
  outline: 3px solid var(--orange-light);
  outline-offset: 2px;
}

.gh-form__submit {
  width: 100%;
}

.gh-form__status {
  min-height: 1.4em;
  margin: 14px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-dark);
}

.gh-form__status.is-error {
  color: #b71c1c;
}

/* -------------------------------------------------------------------------
   13. FAQ
   ------------------------------------------------------------------------- */
.gh-faq {
  background: var(--white);
}

.gh-faq__wrap {
  max-width: 860px;
  margin: 0 auto;
}

.gh-faq .gh-h2 {
  margin-bottom: 32px;
}

.gh-faq details {
  border-bottom: 1px solid var(--gh-line);
}

.gh-faq details:first-of-type {
  border-top: 1px solid var(--gh-line);
}

.gh-faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 22px 44px 22px 0;
}

.gh-faq summary::-webkit-details-marker {
  display: none;
}

.gh-faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green-main);
}

.gh-faq details[open] summary::after {
  content: "\2212";
}

.gh-faq__a {
  padding: 0 44px 24px 0;
  color: var(--gh-ink-soft);
  line-height: 1.75;
}

.gh-faq__a p {
  margin: 0 0 10px;
}

.gh-faq__a ul {
  margin: 0;
  padding-left: 1.2em;
}

/* -------------------------------------------------------------------------
   14. Contact
   ------------------------------------------------------------------------- */
.gh-contact {
  background: var(--light-gray);
}

.gh-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gh-contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  background: var(--white);
  color: var(--dark);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gh-contact-card:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gh-contact-card>i {
  font-size: 1.5rem;
  color: var(--green-main);
  margin-bottom: 12px;
}

.gh-contact-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
}

.gh-contact-card span,
.gh-contact-card address {
  color: var(--gh-ink-soft);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: anywhere;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1199px) {

  .gh-quick__grid,
  .gh-contact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gh-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gh-index__item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .gh-index__item:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 24px;
  }

  .gh-trio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gh-trio .gh-opp-card:last-child {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .gh-trio .gh-opp-card:last-child img {
    width: 42%;
    aspect-ratio: auto;
    height: auto;
  }
}

@media (max-width: 991px) {

  .gh-about__grid,
  .gh-feature,
  .gh-why__grid,
  .gh-invest__grid,
  .gh-presence__grid,
  .gh-discover__grid,
  .gh-apply__card {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-why__head {
    position: static;
  }

  .gh-map {
    min-height: 420px;
  }

  .gh-about__media {
    max-width: 460px;
  }

  .gh-apply__aside img {
    display: none;
  }
}

@media (max-width: 767px) {

  .gh-quick__grid,
  .gh-contact__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-trio {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-trio .gh-opp-card:last-child {
    flex-direction: column;
  }

  .gh-trio .gh-opp-card:last-child img {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .gh-checks {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-index__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-index__item,
  .gh-index__item:first-child {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .gh-index__item:nth-child(n+2) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 24px;
  }

  .gh-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .gh-discover__actions .gh-btn {
    width: 100%;
  }

  .gh-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-inline: -12px;
    padding-inline: 12px;
    scrollbar-width: thin;
  }

  .gh-tab {
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner {
    animation: none;
  }

  .gh-btn,
  .gh-quick-card,
  .gh-contact-card,
  .gh-textlink i {
    transition: none;
  }
}

/* The shared footer uses Bootstrap's g-5 (3rem gutter) inside a 12px container
   padding, which pushes the page ~3-13px wider than the screen on tablets/phones. */
footer .row.g-5 {
  --bs-gutter-x: 1.5rem;
}

/* Long unbroken strings (e.g. the website URL) in footer contact rows must wrap, not widen the page. */
.footer-contact-item > span,
.footer-contact-item > a {
  min-width: 0;
  overflow-wrap: anywhere;
}



/* -------------------------------------------------------------------------
   Bihar biofuel content + internal links
   ------------------------------------------------------------------------- */
.gh-local {
  background: var(--white);
}

.gh-local__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.gh-local__copy h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 30px 0 8px;
}

.gh-local__copy p {
  color: var(--gh-ink-soft);
  line-height: 1.75;
  margin: 0;
}

.gh-local__copy .gh-lead {
  margin-top: 18px;
}

.gh-local__copy p a {
  color: var(--green-main);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gh-local__links {
  background: var(--off-white);
  border: 1px solid rgba(46, 125, 50, 0.16);
  border-left: 5px solid var(--orange-main);
  border-radius: 14px;
  padding: 26px 28px;
}

.gh-local__links h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--gh-forest);
}

.gh-local__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gh-local__links li+li {
  border-top: 1px solid var(--gh-line);
}

.gh-local__links a {
  display: block;
  padding: 11px 0;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--green-dark);
}

.gh-local__links a:hover {
  color: var(--orange-main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 991px) {
  .gh-local__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
