/* ============================================================
   DAMREI WEBSITE — layout styles (composes DS tokens & components)
   Multi-page marketing site. Built on Damrei design tokens.
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; overflow-x: clip; max-width: 100%; }
body {
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime-500); color: var(--forest-700); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 880px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest-400);
}
.eyebrow::before { content: ""; width: 20px; height: 3px; border-radius: 2px; background: var(--lime-500); }
.eyebrow--ink { color: var(--lime-500); }
.eyebrow { white-space: nowrap; }
.eyebrow--center { justify-content: center; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.top-bar {
  position: relative; background: var(--forest-700); color: rgba(255,255,255,.82);
  z-index: 70; overflow: hidden;
}
.top-bar-inner { display: flex; align-items: center; min-height: 52px; padding-right: 220px; }
.top-meta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; font-size: 13.5px; font-weight: 500; }
.top-meta a, .top-meta span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); transition: color .16s var(--ease-out); }
.top-meta a:hover { color: var(--lime-500); }
.top-meta svg { color: var(--lime-500); flex-shrink: 0; }
.top-social {
  position: absolute; right: 0; top: 0; bottom: 0; display: flex; align-items: center; gap: 10px;
  background: var(--lime-500); padding: 0 28px 0 40px; border-bottom-left-radius: 32px;
}
.top-social-chip {
  display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 50%; background: var(--forest-700); color: var(--lime-500);
  transition: transform .16s var(--ease-out), background .16s var(--ease-out);
}
.top-social-chip:hover { transform: translateY(-2px); background: var(--forest-900); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 80; background: var(--white);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow .25s var(--ease-out);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 24px; }
.header-logo-link { display: flex; align-items: center; flex: 1 1 0; }
.header-logo { height: 32px; display: block; }
.site-nav { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 1 1 0; justify-content: flex-end; }
.site-nav a {
  position: relative; color: var(--text-body); font-weight: 500; font-size: 15.5px;
  padding: 8px 16px; border-radius: var(--radius-pill); transition: color .18s var(--ease-out), background .18s var(--ease-out);
}
.site-nav a:hover { color: var(--forest-700); background: var(--mist); }
.site-nav a.active { color: var(--forest-700); font-weight: 600; }
.site-nav a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 2px;
  border-radius: 2px; background: var(--lime-500);
}
.nav-toggle { display: none; }

@media (max-width: 980px) {
  .top-addr { display: none; }
}
@media (max-width: 900px) {
  .site-header .bar { height: 72px; }
  .site-nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); border-bottom: 1px solid var(--border-subtle); padding: 14px 22px 22px;
    box-shadow: var(--shadow-md); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .22s var(--ease-out), opacity .22s var(--ease-out);
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 13px 12px; font-size: 16px; }
  .site-nav a.active::after { display: none; }
  .site-nav a.active { background: var(--mist); }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
    border: 1px solid var(--border-strong); border-radius: var(--radius-pill); background: var(--white); cursor: pointer; color: var(--forest-700);
  }
}
@media (max-width: 720px) {
  .top-bar { display: none; }
  .header-cta-desktop { display: none; }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 84px 0 96px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5;
  background: radial-gradient(circle at 30% 30%, rgba(186,249,17,.30), rgba(186,249,17,0) 68%);
  animation: float 16s ease-in-out infinite;
}
.hero-blob.b2 { background: radial-gradient(circle at 30% 30%, rgba(30,122,67,.18), rgba(30,122,67,0) 70%); animation-duration: 22s; animation-direction: reverse; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.08); }
}
.hero-inner { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(54px, 7.4vw, 100px); line-height: 0.98; color: var(--text-strong); margin: 22px 0 0;
}
.hero h1 .hl { color: var(--forest-400); }
.hero-subtitle {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(20px, 2.1vw, 27px); line-height: 1.2; color: var(--text-strong);
  margin: 16px 0 0;
}
.hero-subtitle .hl { color: var(--forest-400); }
.hero .lead { font-size: 16px; font-weight: 400; line-height: 1.6; color: var(--text-muted); margin: 22px 0 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.hero-textlink { position: relative; font-weight: 600; font-size: 16px; color: var(--forest-700); padding-bottom: 3px; border-bottom: 2px solid var(--lime-500); transition: color .16s var(--ease-out); }
.hero-textlink:hover { color: var(--forest-400); }

/* signature eyebrow with double-circle mark */
.eyebrow--mark::before {
  content: ""; width: 26px; height: 14px; border-radius: 0; background: none;
  background-image: radial-gradient(circle 7px at 7px 7px, var(--lime-500) 98%, transparent), radial-gradient(circle 6px at 19px 7px, transparent 60%, var(--forest-700) 62% 98%, transparent);
}
/* on dark sections the forest ring is invisible — use a light ring */
.eyebrow--ink.eyebrow--mark::before {
  background-image: radial-gradient(circle 7px at 7px 7px, var(--lime-500) 98%, transparent), radial-gradient(circle 6px at 19px 7px, transparent 60%, rgba(255,255,255,.85) 62% 98%, transparent);
}

/* ---------- HERO ENERGETIC VISUAL (die-cut person + lime card) ---------- */
.hero-visual { position: relative; aspect-ratio: 1 / 1.12; }
.hero-dots {
  position: absolute; top: 2%; right: 4%; width: 130px; height: 84px; z-index: 0;
  background-image: radial-gradient(var(--line-strong) 1.7px, transparent 1.8px);
  background-size: 15px 15px; opacity: .6;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 72%);
}
.hero-panel {
  position: absolute; left: 7%; right: 7%; bottom: 0; top: 16%; z-index: 1;
  background: linear-gradient(165deg, var(--lime-100), #D9F7A8);
  border-radius: 40px;
}
/* die-cut person overflows the top of the card */
.hero-photo-wrap {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 92%; height: 100%; z-index: 2; display: flex; align-items: flex-end; justify-content: center;
}
.hero-photo-wrap img {
  width: 100%; height: auto; max-height: 100%; object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 18px 30px rgba(3,25,15,.18));
}

/* floating pill stat cards */
.hero-card {
  position: absolute; z-index: 4; border-radius: 22px;
  box-shadow: 0 18px 38px rgba(3,25,15,.14); padding: 16px 20px 16px 16px;
  display: flex; align-items: center; gap: 14px; animation: cardfloat 6s ease-in-out infinite;
}
.hero-card.c-reach { right: -4%; top: 24%; background: var(--white); }
.hero-card.c-lives { right: -6%; top: 56%; background: var(--lime-100); animation-delay: 1.2s; }
.hero-card.c-money { left: -6%; bottom: 16%; background: var(--forest-700); animation-delay: .6s; }
@keyframes cardfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hc-ico { width: 42px; height: 42px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--lime-500); color: var(--forest-700); }
.hc-meta { display: flex; flex-direction: column; }
.hc-label { font-size: 12.5px; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.hc-big { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: 32px; line-height: 1.05; color: var(--forest-700); }
/* lime-tint card → forest icon tile */
.hero-card.c-lives .hc-ico { background: var(--forest-700); color: var(--lime-500); }
/* forest card → light text, lime number */
.hero-card.c-money .hc-label { color: rgba(255,255,255,.74); }
.hero-card.c-money .hc-big { color: var(--lime-500); }

.sparkle { position: absolute; z-index: 3; color: var(--forest-400); display: inline-flex; animation: twinkle 2.8s ease-in-out infinite; }
.sparkle.sp1 { left: 1%; top: 30%; }
.sparkle.sp2 { right: 26%; bottom: 5%; animation-delay: .9s; color: var(--lime-600); }
@keyframes twinkle { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.25) rotate(15deg); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-orbit-tag {
  position: absolute; z-index: 3; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px); color: #fff; font-weight: 600; font-size: 13px; padding: 9px 15px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-orbit-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-500); }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  margin-top: 64px; padding-top: 38px; border-top: 1px solid var(--border-subtle);
}
.stat-strip.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stat-num { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; line-height: 1; color: var(--forest-700); font-size: clamp(34px, 3.6vw, 48px); }
.stat-num .u { color: var(--forest-400); }
.stat-label { font-size: 13.5px; font-weight: 500; color: var(--text-muted); margin-top: 9px; }

/* ============================================================
   SERVICE MARQUEE  (forest bar, scrolling keywords + sparkles)
   ============================================================ */
.marquee { background: var(--forest-700); overflow: hidden; padding: 22px 0; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--forest-700), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--forest-700), transparent); }
.marquee-track { display: flex; align-items: center; gap: 0; width: max-content; animation: marquee-scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 46px; padding: 0 23px; }
.marquee-item .mq-word { font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 1.7vw, 21px); color: #fff; letter-spacing: -.01em; white-space: nowrap; }
.marquee-item .mq-star { color: var(--lime-500); display: inline-flex; animation: spin 9s linear infinite; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT INTRO  (collage + capability bars)
   ============================================================ */
.about-intro-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; }
.about-collage { position: relative; aspect-ratio: 1 / 0.92; }
/* lime panel sits behind, a touch wider/taller */
.about-photo-card {
  position: absolute; left: 0; right: 24%; top: 14%; bottom: 0; z-index: 1;
  border-radius: 36px; background: linear-gradient(158deg, var(--lime-100), #D9F7A8);
}
/* clip wrapper: lets head (top) + finger (right) escape, crops the image bottom flush to the card */
.about-photo-wrap {
  position: absolute; left: -6%; right: -15%; top: -14%; bottom: 0; z-index: 2;
  overflow: hidden; border-radius: 36px;
}
.about-photo-wrap img {
  position: absolute; left: -10%; bottom: -2%; width: 115%; max-width: none; height: auto; display: block;
}
.about-collage .ac-dots {
  position: absolute; left: -22px; bottom: 12px; width: 112px; height: 80px; z-index: 0;
  background-image: radial-gradient(var(--line-strong) 1.7px, transparent 1.8px);
  background-size: 15px 15px; opacity: .55;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 72%);
}
.about-collage .ac-leaf { position: absolute; left: 2px; top: 12%; width: 50px; color: var(--forest-400); opacity: .5; z-index: 3; }
.about-collage .ac-spark { position: absolute; right: 6%; top: 40%; width: 30px; color: var(--forest-700); z-index: 5; display: inline-flex; animation: twinkle 2.8s ease-in-out infinite; }
/* small floating brand chip for energy */
.about-fab {
  position: absolute; left: -6%; bottom: 14%; z-index: 4; background: var(--white);
  border-radius: 16px; box-shadow: 0 16px 34px rgba(3,25,15,.16); padding: 12px 15px;
  display: flex; align-items: center; gap: 11px; animation: cardfloat 6s ease-in-out infinite;
}
.about-fab .afb-ico { width: 36px; height: 36px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--forest-700); color: var(--lime-500); }
.about-fab .afb-meta { display: flex; flex-direction: column; }
.about-fab .afb-label { font-size: 11px; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.about-fab .afb-big { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: 22px; line-height: 1.05; color: var(--forest-700); }

/* overlapping quote card */
.about-quote {
  position: absolute; right: 0; bottom: 26px; z-index: 4; width: 268px;
  background: var(--forest-700); border-radius: 28px; padding: 26px 26px 30px;
  box-shadow: 0 22px 48px rgba(3,25,15,.24); animation: cardfloat 7s ease-in-out infinite;
}
.about-quote .aq-badge { width: 46px; height: 46px; border-radius: 50%; background: var(--lime-500); color: var(--forest-700); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.about-quote .aq-text { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.4; letter-spacing: -.01em; color: #fff; margin: 0; }
.about-quote .aq-sign { display: block; text-align: right; margin-top: 18px; font-family: 'Times New Roman', Georgia, serif; font-style: italic; font-size: 24px; color: var(--lime-500); }

.about-head h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.025em; line-height: 1.05; font-size: clamp(30px, 3.7vw, 46px); color: var(--text-strong); margin: 16px 0 0; }
.about-head .ai-lead { font-size: 16px; line-height: 1.68; color: var(--text-muted); margin: 20px 0 0; max-width: 540px; }

.skills { display: flex; flex-direction: column; gap: 22px; margin: 30px 0 0; }
.skill .skill-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.skill .skill-name { font-weight: 600; font-size: 15.5px; color: var(--text-strong); }
.skill .skill-pct { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--forest-700); letter-spacing: -.01em; }
.skill-bar { position: relative; height: 7px; border-radius: var(--radius-pill); background: var(--mist); overflow: visible; }
.skill-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; border-radius: var(--radius-pill); background: var(--forest-700); transition: width 1.1s var(--ease-out); }
.skill-fill::after {
  content: ""; position: absolute; right: -7px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--lime-500); border: 3px solid var(--white); box-shadow: var(--shadow-xs);
}

/* ============================================================
   STAT BAND  (counters with double-circle separators)
   ============================================================ */
.stat-band { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; text-align: center; }
.stat-band .sb-item { flex: 0 1 auto; min-width: 150px; padding: 8px 28px; }
.stat-band .sb-sep { display: flex; align-items: center; padding: 0 6px; }
.stat-band .sb-num { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; line-height: 1; color: var(--text-strong); font-size: clamp(40px, 4.4vw, 60px); }
.stat-band .sb-label { font-size: 14.5px; font-weight: 500; color: var(--text-muted); margin-top: 12px; }
.dmr-mark { display: inline-block; width: 30px; height: 16px; flex-shrink: 0;
  background-image: radial-gradient(circle 7px at 8px 8px, var(--lime-500) 98%, transparent), radial-gradient(circle 7px at 21px 8px, transparent 58%, var(--forest-700) 60% 98%, transparent);
}

/* ============================================================
   PAGE HERO (sub pages)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; background: var(--forest-700); color: #fff; padding: 92px 0 80px; }
.page-hero .glow { display: none; }
.page-hero .inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.025em; font-size: clamp(38px, 5vw, 60px); line-height: 1.04; margin: 18px 0 0; color: #fff; }
.page-hero h1 .hl { color: var(--lime-500); }
.page-hero .lead { font-size: 19px; font-weight: 400; line-height: 1.62; color: rgba(255,255,255,.74); margin: 22px 0 0; max-width: 660px; }
.page-hero .breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; }
.page-hero .breadcrumb a:hover { color: var(--lime-500); }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--ink { background: var(--forest-700); color: #fff; }
.section--mist { background: var(--mist); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.022em; line-height: 1.06; font-size: clamp(30px, 3.6vw, 44px); color: var(--text-strong); margin: 16px 0 0; }
.section--ink .section-head h2 { color: #fff; }
.section-head p { font-size: 18px; font-weight: 400; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }
.section--ink .section-head p { color: rgba(255,255,255,.72); }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }

/* ---------- Clients strip ---------- */
.clients-row { display: flex; align-items: center; gap: 16px 44px; flex-wrap: wrap; }
.client-name { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--text-muted); letter-spacing: -.01em; opacity: .62; transition: opacity .2s, color .2s; }
.client-name:hover { opacity: 1; color: var(--forest-700); }

/* ============================================================
   PILLAR CARDS (home + services)
   ============================================================ */
.pillar { position: relative; display: flex; flex-direction: column; height: 100%; }
.pillar-num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--lime-600); letter-spacing: .04em; }
.pillar h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; font-size: 25px; color: var(--text-strong); margin: 16px 0 6px; }
.pillar .kicker { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--forest-400); }
.pillar p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 14px 0 0; }
.pillar .pillar-link { margin-top: auto; padding-top: 22px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--forest-700); }
.pillar .pillar-link svg { transition: transform .2s var(--ease-out); }
.pillar:hover .pillar-link svg { transform: translateX(4px); }
/* highlighted lime pillar */
.pillar--lime .pillar-num, .pillar--lime .kicker { color: var(--forest-700); }
.pillar--lime h3, .pillar--lime p { color: var(--forest-700); }
.pillar--lime p { opacity: .82; }
.pillar--lime .pillar-link { color: var(--forest-700); }

/* ---- "Plus" supporting-capabilities banner ---- */
.plus-banner {
  display: flex; align-items: center; gap: 20px; margin: 44px auto 0; max-width: 860px;
  background: var(--mist); border: 1px solid var(--border-subtle); border-left: 5px solid var(--lime-500);
  border-radius: var(--radius-md); padding: 22px 28px; box-shadow: var(--shadow-xs);
}
.plus-banner .plus-tag {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px;
  background: var(--lime-500); color: var(--forest-700); font-family: var(--font-display); font-weight: 800;
  font-size: 14px; letter-spacing: .02em; padding: 8px 15px; border-radius: var(--radius-pill);
}
.plus-banner .plus-text { margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--text-body); }
.plus-banner .plus-text strong { color: var(--forest-700); font-weight: 700; }
@media (max-width: 560px) {
  .plus-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px; }
}
/* pillar on dark forest section */
.pillar--dark .pillar-num { color: var(--lime-500); }
.pillar--dark h3 { color: #fff; }
.pillar--dark .kicker { color: var(--lime-500); }
.pillar--dark p { color: rgba(255,255,255,.66); }
.pillar--dark .pillar-link { color: var(--lime-500); }

/* ============================================================
   SERVICES (dark, staggered — home)
   ============================================================ */
.services-dark { position: relative; background: var(--forest-700); color: #fff; padding: 96px 0; overflow: hidden; }
.services-dark .hatch {
  position: absolute; top: 0; left: 0; right: 0; height: 120px; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 1px, transparent 1px 26px);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent);
  mask-image: linear-gradient(180deg, #000, transparent);
}
.services-head { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-bottom: 48px; }
.services-head h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.025em; line-height: 1.04; font-size: clamp(32px, 4vw, 52px); color: #fff; margin: 18px 0 0; max-width: 640px; }
.svc-viewall {
  display: inline-flex; align-items: center; gap: 12px; background: var(--white); color: var(--forest-700);
  font-family: var(--font-sans); font-weight: 600; font-size: 16px; padding: 15px 28px; border-radius: var(--radius-pill);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out); white-space: nowrap;
}
.svc-viewall:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.svc-viewall svg { transition: transform .18s var(--ease-out); }
.svc-viewall:hover svg { transform: translateX(4px); }

.services-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.svc-col { display: flex; flex-direction: column; gap: 22px; height: 100%; }
.svc-photo { border-radius: var(--radius-lg); overflow: hidden; height: 280px; background: var(--forest-600); }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); transition: transform .5s var(--ease-out), filter .5s var(--ease-out); }
.svc-col:hover .svc-photo img, .svc-feature:hover .svc-photo img { transform: scale(1.05); filter: grayscale(0); }
.svc-card { flex: 1; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 30px 28px; display: flex; flex-direction: column; transition: border-color .2s var(--ease-out), background .2s var(--ease-out); }
.svc-col:hover .svc-card { border-color: rgba(186,249,17,.5); background: rgba(255,255,255,.03); }
.svc-card h3, .svc-feature-text h3 { font-family: var(--font-display); font-weight: 700; font-size: 23px; letter-spacing: -.01em; margin: 0 0 16px; padding-bottom: 16px; }
.svc-card h3 { color: #fff; border-bottom: 1px solid rgba(255,255,255,.16); }
.svc-card p { font-size: 15px; line-height: 1.62; color: rgba(255,255,255,.66); margin: 0; }
.svc-learn { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--lime-500); }
.svc-learn svg { transition: transform .2s var(--ease-out); }
.svc-card:hover .svc-learn svg, .svc-feature:hover .svc-learn svg { transform: translateX(5px); }

/* featured middle column */
.svc-feature { background: var(--lime-500); border-radius: var(--radius-xl); padding: 14px; display: flex; flex-direction: column; gap: 14px; margin-top: -16px; box-shadow: 0 24px 60px rgba(3,25,15,.34); height: calc(100% + 16px); }
.svc-feature-text { padding: 22px 22px 6px; }
.svc-feature-text h3 { color: var(--forest-700); border-bottom: 1px solid rgba(3,25,15,.18); }
.svc-feature-text p { font-size: 15px; line-height: 1.62; color: var(--forest-700); opacity: .82; margin: 0; }
.svc-feature-text .svc-learn { color: var(--forest-700); }
.svc-feature .svc-photo { flex: 1; min-height: 230px; }

.services-foot { position: relative; z-index: 1; text-align: center; font-size: 16px; color: rgba(255,255,255,.7); margin-top: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
.services-foot strong { color: var(--lime-500); font-weight: 600; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: start; }
.why-head h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.025em; line-height: 1.05; font-size: clamp(30px, 3.7vw, 46px); color: var(--text-strong); margin: 16px 0 0; }
.why-head .why-lead { font-size: 16px; line-height: 1.68; color: var(--text-muted); margin: 20px 0 0; max-width: 460px; }
.why-highlight {
  margin-top: 30px; background: var(--forest-700); border-radius: var(--radius-lg); padding: 26px 28px;
  display: flex; align-items: center; gap: 22px; position: relative; overflow: hidden;
}
.why-highlight .glow { display: none; }
.why-highlight .wh-num { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: 52px; line-height: 1; color: var(--lime-500); position: relative; z-index: 1; }
.why-highlight .wh-text { position: relative; z-index: 1; font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.82); }
.why-highlight .wh-text strong { color: #fff; font-weight: 600; }

.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-xs); height: 100%;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s var(--ease-out);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lime-500); }
.why-card .wc-num { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .04em; color: var(--lime-600); margin: 16px 0 0; }
.why-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.01em; color: var(--text-strong); margin: 6px 0 0; }
.why-card p { font-size: 14.5px; line-height: 1.58; color: var(--text-muted); margin: 12px 0 0; }

/* ============================================================
   FEATURED WORK (modern cards)
   ============================================================ */
.fw-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 28px 28px 26px; box-shadow: var(--shadow-xs); overflow: hidden;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s var(--ease-out);
}
.fw-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--lime-500); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.fw-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.fw-card:hover::before { transform: scaleX(1); }
.fw-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fw-arrow {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  background: var(--forest-700); color: #fff; transition: background .2s var(--ease-out), color .2s var(--ease-out), transform .2s var(--ease-out);
}
.fw-card:hover .fw-arrow { background: var(--lime-500); color: var(--forest-700); transform: rotate(-45deg); }
.fw-brand { font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; font-size: 23px; color: var(--text-strong); margin: 18px 0 2px; }
.fw-camp { font-size: 13.5px; font-weight: 500; color: var(--text-muted); }
.fw-metrics { display: flex; gap: 14px; margin: 22px 0; padding: 20px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.fw-metric { flex: 1; }
.fw-metric .v { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: 34px; line-height: 1; color: var(--forest-700); }
.fw-metric:first-child .v { color: var(--lime-600); }
.fw-metric .l { font-size: 12.5px; font-weight: 500; color: var(--text-muted); margin-top: 8px; }
.fw-note { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin: 0 0 18px; }
.fw-note strong { color: var(--forest-700); font-weight: 600; }
.fw-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

/* middle / featured forest-green card */
.fw-card.fw-dark { background: var(--forest-700); border-color: transparent; }
.fw-card.fw-dark .fw-brand { color: #fff; }
.fw-card.fw-dark .fw-camp { color: rgba(255,255,255,.66); }
.fw-card.fw-dark .fw-metrics { border-color: var(--border-on-ink); }
.fw-card.fw-dark .fw-metric .v { color: var(--lime-500); }
.fw-card.fw-dark .fw-metric:first-child .v { color: var(--lime-500); }
.fw-card.fw-dark .fw-metric .l { color: rgba(255,255,255,.66); }
.fw-card.fw-dark .fw-note { color: rgba(255,255,255,.78); }
.fw-card.fw-dark .fw-note strong { color: #fff; }
.fw-card.fw-dark .fw-arrow { background: rgba(255,255,255,.12); color: var(--lime-500); }
.fw-card.fw-dark:hover .fw-arrow { background: var(--lime-500); color: var(--forest-700); }

/* ============================================================
   TRUSTED-BY LOGO STRIP  (deep-forest band)
   ============================================================ */
.trusted { padding: 84px 0; background: var(--forest-700); position: relative; overflow: hidden; }
.trusted .glow { display: none; }
.trusted-head { text-align: center; max-width: 760px; margin: 0 auto 44px; position: relative; z-index: 1; }
.trusted-head h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.022em; line-height: 1.08; font-size: clamp(26px, 3.2vw, 40px); color: #fff; margin: 0; }
.logo-marquee { position: relative; overflow: hidden; z-index: 1; }
.logo-marquee::before, .logo-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(90deg, var(--forest-700), transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(270deg, var(--forest-700), transparent); }
.logo-track { display: flex; align-items: center; width: max-content; animation: marquee-scroll 38s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 40px; white-space: nowrap; }
.logo-item .lg-mark { width: 26px; height: 26px; flex-shrink: 0; color: var(--lime-500); opacity: .6; }
.logo-item .lg-name { font-family: var(--font-display); font-weight: 700; font-size: 25px; letter-spacing: -.01em; color: #fff; opacity: .55; transition: opacity .2s var(--ease-out), color .2s var(--ease-out); }
.logo-item:hover .lg-name { opacity: 1; color: var(--lime-500); }

/* ============================================================
   SERVICE FEATURE BLOCKS
   ============================================================ */
.feature-block { padding: 96px 0; }
.feature-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.feature-grid.flip .feature-media { order: 2; }
.feature-media {
  position: relative; min-height: 440px; display: flex; align-items: center; justify-content: center;
  padding: 12px 0;
}
/* ---- Phone mockup (sample ad-format slot) ---- */
.phone-mock {
  position: relative; width: 268px; aspect-ratio: 9 / 19.5; border-radius: 40px;
  background: #0b0d10; padding: 11px;
  box-shadow: 0 2px 0 1px rgba(255,255,255,.06) inset, 0 0 0 2px #2a2d31, var(--shadow-lg);
}
.phone-mock::before {
  content: ""; position: absolute; left: 50%; top: 13px; transform: translateX(-50%); z-index: 4;
  width: 92px; height: 24px; border-radius: 14px; background: #0b0d10;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  background: var(--mist); display: flex; align-items: center; justify-content: center; isolation: isolate;
}
.phone-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone-ph {
  text-align: center; padding: 24px; color: var(--text-muted);
}
.phone-ph .pico {
  width: 52px; height: 52px; border-radius: 50%; background: var(--lime-500); color: var(--forest-700);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.phone-ph .pt { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-strong); }
.phone-ph .ps { font-size: 12.5px; line-height: 1.5; margin-top: 7px; }

/* ---- Digital signage screen (retail media slot) ---- */
.screen-mock { position: relative; display: flex; flex-direction: column; align-items: center; }
.screen-panel {
  position: relative; width: 300px; aspect-ratio: 3 / 4; border-radius: 16px;
  background: #0b0d10; padding: 12px;
  box-shadow: 0 0 0 2px #2a2d31, var(--shadow-lg);
}
.screen-face {
  position: relative; width: 100%; height: 100%; border-radius: 7px; overflow: hidden;
  background: var(--mist); display: flex; align-items: center; justify-content: center; isolation: isolate;
}
.screen-face img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.screen-ph { text-align: center; padding: 24px; color: var(--text-muted); }
.screen-ph .pico {
  width: 56px; height: 56px; border-radius: 50%; background: var(--lime-500); color: var(--forest-700);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.screen-ph .pt { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text-strong); }
.screen-ph .ps { font-size: 12.5px; line-height: 1.5; margin-top: 7px; }
.screen-neck { width: 16px; height: 30px; background: linear-gradient(#26292d, #16181b); border-radius: 0 0 3px 3px; }
.screen-base { width: 150px; height: 12px; background: #1b1d20; border-radius: 0 0 9px 9px; box-shadow: var(--shadow-md); }
.feature-head h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.08; color: var(--text-strong); margin: 16px 0 0; }
.feature-head .sub { font-size: 19px; font-weight: 500; color: var(--forest-400); margin: 14px 0 0; }
.feature-head p { font-size: 16.5px; line-height: 1.65; color: var(--text-muted); margin: 18px 0 0; }

/* deliver list */
.deliver-list { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.deliver-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border-subtle); }
.deliver-item:last-child { border-bottom: none; }
.deliver-item .ico { flex-shrink: 0; }
.deliver-item h4 { font-size: 16px; font-weight: 600; color: var(--text-strong); margin: 0 0 4px; }
.deliver-item p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin: 0; }

.designed-for { display: inline-flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 26px; font-size: 13px; color: var(--text-muted); }

/* by-the-numbers mini stat row */
.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mini-stat { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-xs); }
.mini-stat .v { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: 40px; line-height: 1; color: var(--forest-700); }
.mini-stat .l { font-size: 13.5px; font-weight: 500; color: var(--text-muted); margin-top: 10px; }
.section--ink .mini-stat { background: var(--forest-600); border-color: var(--border-on-ink); }
.section--ink .mini-stat .v { color: var(--lime-500); }
.section--ink .mini-stat .l { color: rgba(255,255,255,.72); }

/* ad-format cards */
.format-card { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-xs); height: 100%; display: flex; flex-direction: column; transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.format-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.format-card .fmt-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text-strong); margin: 16px 0 0; }
.format-card .fmt-desc { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin: 10px 0 0; }
.format-card .fmt-meta { margin-top: auto; padding-top: 18px; font-size: 12px; color: var(--text-muted); font-weight: 500; letter-spacing: .01em; }
.format-card .fmt-meta span { color: var(--forest-400); }

/* ============================================================
   JOURNEY — single connected stepper (See → Scan → Play → Win → Redeem)
   ============================================================ */
.flow { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.flow::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 27px; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, rgba(186,249,17,.45) 0 10px, transparent 10px 18px);
}
.flow-step { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.flow-step .num {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 50%; background: var(--forest-600); border: 2px solid rgba(186,249,17,.35);
  color: var(--lime-500); font-family: var(--font-display); font-weight: 800; font-size: 20px;
}
.flow-step.win .num { background: var(--lime-500); border-color: var(--lime-500); color: var(--forest-700); box-shadow: 0 0 0 6px rgba(186,249,17,.16); }
.flow-step .verb { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; margin-top: 18px; }
.flow-step.win .verb { color: var(--lime-500); }
.flow-step .vt { font-size: 13.5px; color: rgba(255,255,255,.62); margin-top: 8px; line-height: 1.5; }
@media (max-width: 760px) {
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow::before { left: 27px; right: auto; top: 8%; bottom: 8%; width: 2px; height: auto; background: repeating-linear-gradient(180deg, rgba(186,249,17,.45) 0 10px, transparent 10px 18px); }
  .flow-step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; text-align: left; align-items: center; padding: 14px 0; }
  .flow-step .num { grid-row: span 2; }
  .flow-step .verb { margin-top: 0; }
  .flow-step .vt { margin-top: 2px; }
}

/* ============================================================
   CASE STUDY CARDS (work) — modern
   ============================================================ */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.case-card {
  position: relative; display: flex; flex-direction: column; height: 100%; overflow: hidden;
  background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 30px 30px 28px; box-shadow: var(--shadow-xs);
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s var(--ease-out);
}
.case-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--lime-500); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.case-card:hover::before { transform: scaleX(1); }
.case-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.case-brand { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--text-strong); letter-spacing: -.01em; }
.case-brand .camp { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 13.5px; color: var(--text-muted); margin-top: 5px; letter-spacing: 0; }
.case-metrics { display: flex; gap: 22px; flex-wrap: wrap; margin: 22px 0; padding: 20px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.case-metric { flex: 1; min-width: 86px; }
.case-metric .v { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: 32px; line-height: 1; color: var(--forest-700); }
.case-metric:first-child .v { color: var(--lime-600); }
.case-metric .l { font-size: 12px; color: var(--text-muted); margin-top: 7px; font-weight: 500; }
.case-body { display: flex; flex-direction: column; gap: 15px; flex: 1; }
.case-row .label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest-400); margin-bottom: 5px; }
.case-row p { font-size: 14px; line-height: 1.58; color: var(--text-muted); margin: 0; }
.case-row.result p { color: var(--text-strong); font-weight: 500; }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }

/* forest-green featured case card */
.case-card.case-dark { background: var(--forest-700); border-color: transparent; }
.case-card.case-dark .case-brand { color: #fff; }
.case-card.case-dark .case-brand .camp { color: rgba(255,255,255,.66); }
.case-card.case-dark .case-metrics { border-color: var(--border-on-ink); }
.case-card.case-dark .case-metric .v { color: var(--lime-500); }
.case-card.case-dark .case-metric:first-child .v { color: var(--lime-500); }
.case-card.case-dark .case-metric .l { color: rgba(255,255,255,.66); }
.case-card.case-dark .case-row .label { color: var(--lime-500); }
.case-card.case-dark .case-row p { color: rgba(255,255,255,.74); }
.case-card.case-dark .case-row.result p { color: #fff; }

/* filter chips */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip { padding: 9px 18px; border-radius: var(--radius-pill); border: 1px solid var(--border-strong); background: var(--white); color: var(--text-body); font-weight: 500; font-size: 14px; cursor: pointer; transition: all .16s var(--ease-out); }
.chip:hover { border-color: var(--forest-400); color: var(--forest-700); }
.chip.active { background: var(--lime-500); border-color: transparent; color: var(--forest-700); font-weight: 600; }

/* ============================================================
   ABOUT
   ============================================================ */
.story { font-size: 18px; line-height: 1.72; color: var(--text-body); }
.story p { margin: 0 0 22px; }
.story p:last-child { margin-bottom: 0; }
.story .drop { font-family: var(--font-display); font-weight: 800; color: var(--text-strong); }
.diff-card { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-xs); height: 100%; }
.diff-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text-strong); margin: 18px 0 8px; }
.diff-card p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.mission-panel { background: var(--forest-700); border-radius: var(--radius-xl); padding: 64px; position: relative; overflow: hidden; }
.mission-panel .glow { display: none; }
.mission-panel .ms-quote { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.18; color: #fff; max-width: 880px; }
.mission-panel .ms-quote .hl { color: var(--lime-500); }
.values-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-item { text-align: left; }
.value-item .vh { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--forest-700); letter-spacing: -.02em; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border-subtle); }
.contact-line:last-of-type { border-bottom: none; }
.contact-line .ct-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest-400); margin-bottom: 5px; }
.contact-line .ct-val { font-size: 16px; color: var(--text-strong); font-weight: 500; line-height: 1.5; }
.contact-line a.ct-val:hover { color: var(--forest-400); }
.form-card { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--text-strong); }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: 15px; color: var(--text-body); width: 100%;
  padding: 13px 16px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: var(--white); transition: border-color .16s, box-shadow .16s; outline: none;
}
.field textarea { border-radius: var(--radius-md); resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--lime-600); box-shadow: 0 0 0 3px var(--lime-100); }
.field .err { font-size: 12.5px; color: var(--coral); font-weight: 500; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--coral); }
.form-success { background: var(--lime-100); border: 1px solid var(--lime-600); border-radius: var(--radius-md); padding: 22px 24px; color: var(--forest-700); font-weight: 500; display: flex; gap: 14px; align-items: flex-start; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.map-frame { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(.2) saturate(1.05); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--lime-500); border-radius: var(--radius-xl); padding: 72px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band .glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; right: -120px; top: -160px; background: radial-gradient(circle, rgba(3,25,15,.10), rgba(3,25,15,0) 70%); }
.cta-band .elephant { position: absolute; right: 40px; bottom: -30px; width: 200px; opacity: .14; }
.cta-band h2 { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 800; letter-spacing: -.022em; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.05; color: var(--forest-700); margin: 0; }
.cta-band p { position: relative; z-index: 1; font-size: 18px; color: var(--forest-700); opacity: .82; max-width: 540px; margin: 18px auto 30px; line-height: 1.55; }
.cta-band .cta-actions { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-700); color: rgba(255,255,255,.7); padding: 76px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 600; margin: 0 0 16px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col a, .footer-col span.fl { display: block; color: rgba(255,255,255,.6); font-size: 14.5px; margin-bottom: 11px; transition: color .16s; }
.footer-col a:hover { color: var(--lime-500); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.footer-contact span { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.45; }
.footer-tagline { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.6); max-width: 290px; margin: 18px 0 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 58px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-blob, .hire-ring, .sparkle, .marquee-track, .mq-star, .logo-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid.flip .feature-media { order: 0; }
}
@media (max-width: 920px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 440px; width: 100%; margin: 0 auto; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
  .grid-3, .grid-4, .case-grid, .values-row, .mini-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 72px 0; }
  .feature-block { padding: 64px 0; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-collage { max-width: 480px; }
  .stat-band .sb-sep { display: none; }
  .stat-band .sb-item { flex: 1 1 40%; min-width: 130px; }
  .services-grid { grid-template-columns: 1fr; gap: 22px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .svc-feature { margin-top: 0; height: auto; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .stat-strip, .grid-3, .grid-4, .grid-2, .case-grid, .mini-stats, .values-row, .form-row { grid-template-columns: minmax(0, 1fr); }
  .stat-band .sb-item { flex: 1 1 100%; text-align: center; }
  .why-list { grid-template-columns: 1fr; }
  /* allow long button labels to wrap instead of overflowing their card */
  .dmr-btn { white-space: normal !important; max-width: 100%; height: auto !important; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { padding: 48px 26px; }
  .mission-panel, .form-card { padding: 30px 22px; }
  .feature-media { min-height: 300px; }
  /* keep floating hero cards comfortably inside the frame on small phones */
  .hero-visual { max-width: 320px; }
  .hero-card { padding: 11px 15px 11px 11px; gap: 10px; border-radius: 18px; }
  .hero-card .hc-ico { width: 36px; height: 36px; border-radius: 11px; }
  .hero-card .hc-big { font-size: 23px; }
  .hero-card .hc-label { font-size: 11.5px; }
  .hero-card.c-reach { right: 4%; top: 18%; }
  .hero-card.c-lives { right: 2%; top: 54%; }
  .hero-card.c-money { left: 2%; bottom: 12%; }
  .sparkle.sp1 { left: 4%; }
}
