/* ============================================================
   GEOVENTURES — Components Premium
   Direction Artistique Expert
   ============================================================ */

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
}

/* Transparent by default, becomes solid on scroll */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 13, 36, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-base);
}

.site-header.scrolled::before {
  background: rgba(0, 13, 36, 0.94);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header .container {
  height: 100%;
}

.header-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.site-logo img {
  height: 58px;
  max-height: calc(var(--header-h) - 18px);
  width: auto;
  transition: filter var(--t-fast);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-xs);
  position: relative;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  width: auto;
  height: 1.5px;
  background: var(--grad-gold);
  border-radius: var(--r-full);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link svg {
  color: var(--gold);
  transition: transform var(--t-fast);
}

.nav-item:hover .nav-link svg,
.nav-item.open .nav-link svg {
  transform: rotate(180deg);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -0.75rem;
  right: -0.75rem;
  height: 18px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  border-top: 2px solid var(--gold);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-left: 1px solid rgba(0,30,79,0.08);
  border-top: 1px solid rgba(0,30,79,0.08);
  transform: translateX(-50%) rotate(45deg);
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-menu {
  width: min(820px, calc(100vw - 2rem));
  padding: 0.85rem;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1.28fr);
  gap: 0.85rem;
  border-top: 2px solid var(--gold);
}

.mega-menu-intro {
  position: relative;
  min-height: 100%;
  border-radius: calc(var(--r-md) - 4px);
  overflow: hidden;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(0,13,36,0.2), rgba(0,13,36,0.9)),
    url('../assets/field_team_congolese.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mega-menu-kicker {
  width: fit-content;
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  background: rgba(201,148,63,0.22);
  color: #ffe1ad;
  font-family: var(--f-sub);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.mega-menu-intro strong {
  color: var(--white);
  font-family: var(--f-heading);
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}

.mega-menu-intro p {
  color: rgba(255,255,255,0.74);
  font-size: 0.84rem;
  line-height: 1.55;
}

.mega-menu-list {
  display: grid;
  gap: 0.55rem;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all var(--t-fast);
}

.dropdown-link:hover {
  color: var(--navy);
  background: var(--cool-gray);
  padding-left: 1.5rem;
}

.mega-link {
  min-height: 92px;
  border: 1px solid rgba(0,30,79,0.08);
  border-radius: var(--r-sm);
  padding: 0.72rem;
  background: rgba(247,246,242,0.58);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 76px;
  gap: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}

.mega-link:hover,
.mega-link.active {
  background: var(--white);
  border-color: rgba(201,148,63,0.42);
  box-shadow: var(--shadow-xs);
  padding-left: 0.72rem;
}

.mega-link-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-xs);
  background: rgba(0,30,79,0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-link:hover .mega-link-icon,
.mega-link.active .mega-link-icon {
  background: var(--navy);
  color: var(--gold);
}

.mega-link-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
}

.mega-link-copy strong {
  color: var(--navy);
  font-family: var(--f-heading);
  font-size: 0.9rem;
  line-height: 1.25;
}

.mega-link-copy span {
  color: var(--text-secondary);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
}

.mega-link-thumb {
  min-height: 64px;
  border-radius: var(--r-xs);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: all var(--t-base);
  transform-origin: center;
}

.hamburger span:nth-child(2) {
  width: 70%;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 100%;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 100%;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy-deep);
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--t-base);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem 1.5rem;
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  border-left: 2px solid transparent;
  transition: all var(--t-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201, 148, 63, 0.06);
}

.mobile-nav-cta {
  margin: 1.25rem 1.5rem 0;
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--grad-gold);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(255, 255, 255, 0.07) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
}

.footer-top {
  position: relative;
  padding: 5rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
}

.footer-brand-logo img {
  height: 140px;
  margin-bottom: 0.6rem;
}

.footer-brand-desc {
  font-size: var(--body-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.footer-brand-slogan {
  font-family: var(--f-sub);
  font-style: italic;
  font-size: var(--body-sm);
  color: rgba(255, 255, 255, 0.55);
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 0.85rem;
}

.social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  color: var(--white);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 17px;
  height: 17px;
}

.footer-col-title {
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: var(--body-sm);
  color: rgba(255, 255, 255, 0.78);
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1em;
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-row svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-row span {
  font-size: var(--body-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.5rem 0;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: var(--label);
  font-family: var(--f-sub);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: 1.75rem;
}

.footer-legal a {
  font-family: var(--f-sub);
  font-size: var(--label);
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--t-fast);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============================================================
   SERVICE CARDS — Premium flat design
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.sc-num {
  font-family: var(--f-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(0, 30, 79, 0.04);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  transition: color var(--t-base);
  user-select: none;
}

.service-card:hover .sc-num {
  color: rgba(201, 148, 63, 0.08);
}

.sc-icon {
  width: 52px;
  height: 52px;
  background: var(--cool-gray);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--t-base);
}

.sc-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
  transition: color var(--t-base);
}

.service-card:hover .sc-icon {
  background: var(--grad-gold);
}

.service-card:hover .sc-icon svg {
  color: var(--white);
}

.sc-title {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.sc-desc {
  font-size: var(--body-sm);
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t-fast);
}

.service-card:hover .sc-link {
  gap: 0.75rem;
}

/* ============================================================
   SERVICES EDITORIAL LIST (Homepage)
   ============================================================ */
.srv-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
}

.srv-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grad-gold);
  transition: width var(--t-base);
}

.srv-row:hover::after {
  width: 100%;
}

.srv-row:hover .srv-num {
  color: var(--gold);
}

.srv-row:hover {
  transform: translateX(8px);
}

.srv-num {
  font-family: var(--f-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  min-width: 32px;
  transition: color var(--t-base);
}

.srv-icon {
  width: 52px;
  height: 52px;
  background: var(--cool-gray);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base);
}

.srv-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
  transition: all var(--t-base);
}

.srv-row:hover .srv-icon {
  background: var(--navy);
}

.srv-row:hover .srv-icon svg {
  color: var(--gold);
}

.srv-body {
  flex: 1;
}

.srv-title {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.srv-subtitle {
  font-size: var(--body-sm);
  color: var(--text-muted);
}

.srv-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.srv-tag {
  font-family: var(--f-sub);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--cool-gray);
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}

.srv-row:hover .srv-tag {
  background: rgba(0, 30, 79, 0.07);
  color: var(--navy);
}

.srv-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base);
}

.srv-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: all var(--t-fast);
}

.srv-row:hover .srv-arrow {
  background: var(--grad-gold);
  border-color: transparent;
}

.srv-row:hover .srv-arrow svg {
  color: var(--white);
  transform: translateX(2px);
}

/* ============================================================
   STATS ROW — Mega numbers
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-block {
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
}

.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-mega {
  font-family: var(--f-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

.stat-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(201, 148, 63, 0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.stat-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.proj-card {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--navy);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.proj-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #b0b8c4 0%, #7e8a98 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.7s var(--ease-out);
}

.proj-card:hover .proj-placeholder {
  transform: scale(1.04);
}

.proj-placeholder svg {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.45);
}

.proj-placeholder span {
  font-family: var(--f-sub);
  font-size: var(--body-sm);
  color: rgba(255, 255, 255, 0.5);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 13, 36, 0.9) 0%, rgba(0, 13, 36, 0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transform: translateY(6px);
  opacity: 0.9;
  transition: all var(--t-base);
}

.proj-card:hover .proj-overlay {
  opacity: 1;
  transform: translateY(0);
}

.proj-cat {
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.proj-title {
  font-family: var(--f-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.proj-loc {
  font-size: var(--label);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--f-sub);
  font-weight: 500;
}

.proj-loc svg {
  width: 11px;
  height: 11px;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, #b8c0cc 0%, #8a94a3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.blog-card-img svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.45);
  transition: transform var(--t-base);
}

.blog-card:hover .blog-card-img svg {
  transform: scale(1.1);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.85rem;
}

.blog-cat {
  font-family: var(--f-sub);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.blog-date {
  font-family: var(--f-sub);
  font-size: var(--label);
  color: var(--text-muted);
}

.blog-read {
  border-left: 1px solid rgba(0,30,79,0.14);
  padding-left: 0.75rem;
  font-family: var(--f-sub);
  font-size: var(--label);
  color: var(--text-muted);
}

.blog-title {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  flex: 1;
  transition: color var(--t-fast);
}

.blog-card:hover .blog-title {
  color: var(--gold-dark);
}

.blog-excerpt {
  font-size: var(--body-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-insight {
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-xs) var(--r-xs) 0;
  margin-bottom: 1.25rem;
  padding: 0.72rem 0.85rem;
  background: rgba(201,148,63,0.08);
  color: var(--text-secondary);
  font-family: var(--f-sub);
  font-size: 0.8rem;
  line-height: 1.55;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  transition: gap var(--t-fast);
  margin-top: auto;
}

.blog-card:hover .blog-link {
  gap: 0.7rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--grad-navy);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(201, 148, 63, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 50%, rgba(201, 148, 63, 0.06) 0%, transparent 50%);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--f-heading);
  font-size: var(--h2);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: var(--body-lg);
  color: var(--text-ghost);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-band-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FEATURE ITEMS (service detail pages)
   ============================================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  border-left: 3px solid transparent;
  transition: all var(--t-base);
}

.feature-item:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.feat-icon {
  width: 50px;
  height: 50px;
  background: var(--cool-gray);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base);
}

.feat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
  transition: all var(--t-base);
}

.feature-item:hover .feat-icon {
  background: var(--grad-gold);
}

.feature-item:hover .feat-icon svg {
  color: var(--white);
}

.feat-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.feat-body p {
  font-size: var(--body-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cool-gray);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  transition: border-color var(--t-base);
}

.team-card:hover .team-avatar {
  border-color: var(--gold);
}

.team-avatar svg {
  width: 36px;
  height: 36px;
  color: var(--text-muted);
}

.team-name {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--f-sub);
  font-size: var(--body-sm);
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   PROJECT FILTERS
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.55rem 1.35rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   VALUE / MISSION CARDS (About page)
   ============================================================ */
.value-card {
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  transition: all var(--t-base);
  border-top: 3px solid var(--gold);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--grad-navy);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 30, 79, 0.2);
}

.value-icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: var(--body-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grad-gold);
  border-radius: var(--r-full);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.6s var(--ease-out);
}

.timeline-item.in {
  opacity: 1;
  transform: none;
}

.timeline-dot {
  position: absolute;
  left: -2.75rem;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--grad-gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(201, 148, 63, 0.25);
}

.timeline-year {
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.timeline-item h4 {
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.timeline-item p {
  font-size: var(--body-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   FORM
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-label .req {
  color: var(--gold);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: var(--body);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 148, 63, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input.has-error {
  border-color: #e53e3e;
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-error {
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 600;
  color: #c53030;
  margin-top: 0.35rem;
  display: none;
}

.form-error.show {
  display: block;
}

/* Honeypot */
.hp-trap {
  position: absolute !important;
  left: -9999px !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

/* Form status */
#form-status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  margin-top: 1rem;
  font-family: var(--f-sub);
  font-size: var(--body-sm);
}

/* ============================================================
   MAP
   ============================================================ */
.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

#contact-map {
  width: 100%;
  height: 100%;
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--cool-gray);
  border-radius: var(--r-sm);
  border-left: 3px solid transparent;
  transition: all var(--t-base);
  margin-bottom: 0.85rem;
}

.contact-info-item:hover {
  border-left-color: var(--gold);
  background: var(--warm-gray);
  transform: translateX(4px);
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  box-shadow: var(--shadow-xs);
}

.ci-icon svg {
  width: 20px;
  height: 20px;
}

.ci-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ci-label {
  font-family: var(--f-sub);
  font-size: var(--label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}

.ci-val {
  font-size: var(--body-sm);
  color: var(--text-primary);
  font-weight: 500;
}

a.ci-val {
  transition: color var(--t-fast);
}

a.ci-val:hover {
  color: var(--gold);
}

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.newsletter-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}

.nl-text h2 {
  font-size: var(--h3);
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.nl-text p {
  font-size: var(--body-sm);
  color: var(--text-secondary);
}

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
.partners-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.partner-logo {
  width: 110px;
  height: 44px;
  background: var(--border);
  border-radius: var(--r-xs);
  opacity: 0.4;
  filter: grayscale(1);
  transition: all var(--t-base);
}

.partner-logo:hover {
  opacity: 0.8;
  filter: grayscale(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block::after {
    display: none !important;
  }

  .stats-row .stat-block:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 768px) {

  .main-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }

  .srv-tags {
    display: none;
  }

  .newsletter-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .cta-band-btns {
    flex-direction: column;
    align-items: center;
  }
}
