@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=DM+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --ink: #152b2b;
  --muted: #5c6d68;
  --paper: #fbfaf4;
  --paper-deep: #f1f2e9;
  --green: #2d7d46;
  --green-deep: #124b35;
  --lime: #b7d951;
  --orange: #ef7622;
  --orange-soft: #f7c85b;
  --blue: #14608a;
  --blue-deep: #0d3448;
  --brown: #6b4a2d;
  --line: #dbe3d7;
  --shadow: 0 22px 60px rgba(21, 43, 43, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.eyebrow {
  color: var(--orange);
  font: 700 11px/1.2 "Space Mono", monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section { padding: 84px 0; position: relative; }
.section--tight { padding: 54px 0; }
.section--green { background: var(--green-deep); color: var(--paper); }
.section--blue { background: var(--blue-deep); color: var(--paper); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.2rem, 10vw, 7.8rem); max-width: 880px; margin-bottom: 26px; }
h2 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); margin-bottom: 10px; }
p { color: var(--muted); }
.section--green p, .section--blue p { color: rgba(251,250,244,.74); }
.lead { font-size: clamp(1.06rem, 2vw, 1.28rem); line-height: 1.5; max-width: 650px; }
.small { font-size: .86rem; }
.skip-link { position: absolute; left: -999px; top: 10px; padding: 10px 14px; background: var(--orange); color: var(--paper); z-index: 100; }
.skip-link:focus { left: 10px; }

/* Navigation */
.topline { background: var(--blue-deep); color: rgba(251,250,244,.78); font: 700 10px "Space Mono", monospace; letter-spacing: .08em; }
.topline .container { display: flex; justify-content: space-between; align-items: center; min-height: 31px; gap: 14px; }
.topline a { color: var(--orange-soft); }
.site-header { position: relative; z-index: 50; background: rgba(251,250,244,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand-link { display: flex; align-items: center; gap: 11px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; letter-spacing: -.03em; }
.brand-link img { width: 52px; height: 42px; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
.brand-link span { font-size: 1.18rem; }
.nav-toggle { border: 1px solid var(--line); background: transparent; color: var(--ink); width: 42px; height: 42px; border-radius: 50%; cursor: pointer; }
.nav-toggle span { display:block; width: 17px; height: 2px; background: currentColor; margin: 4px auto; }
.main-nav { display: none; align-items: center; gap: 4px; }
.main-nav a, .nav-dropdown > button { border: 0; background: transparent; cursor: pointer; padding: 10px 11px; color: var(--ink); font-size: .87rem; font-weight: 700; border-radius: 999px; }
.main-nav a:hover, .main-nav a[aria-current="page"], .nav-dropdown > button:hover { color: var(--green); background: #e9f0de; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 45px; left: 0; min-width: 235px; padding: 8px; border-radius: 15px; background: var(--paper); box-shadow: var(--shadow); border: 1px solid var(--line); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; border-radius: 9px; }
.language-picker { display: flex; gap: 4px; }
.language-picker button { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 6px 8px; cursor: pointer; color: var(--muted); font: 700 10px "Space Mono", monospace; }
.language-picker button.active, .language-picker button:hover { background: var(--green); color: var(--paper); border-color: var(--green); }
.mobile-menu { display: none; padding: 14px 0 20px; border-top: 1px solid var(--line); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 4px; font-weight: 700; border-bottom: 1px solid var(--line); }

/* Buttons and shared visual modules */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; font-size: .93rem; transition: transform .25s ease, background-color .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn--orange { background: var(--orange); color: var(--paper); }
.btn--orange:hover { background: #d85d10; }
.btn--ghost { border-color: rgba(251,250,244,.45); color: var(--paper); }
.btn--ghost:hover { background: rgba(251,250,244,.12); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--green-deep); }
.btn--outline { border-color: var(--green); color: var(--green-deep); }
.btn--outline:hover { background: #e9f0de; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.arrow { font-size: 1.1rem; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.kicker-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.kicker-line::after { content: ""; height: 1px; width: 54px; background: currentColor; opacity: .3; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.number { color: var(--orange); font: 700 12px "Space Mono", monospace; }

/* Hero */
.hero { min-height: calc(100svh - 109px); position: relative; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; background: var(--blue-deep); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; background-size: cover; background-position: center; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slides::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,52,72,.95) 0%, rgba(13,52,72,.72) 40%, rgba(13,52,72,.18) 100%), linear-gradient(0deg, rgba(13,52,72,.62), transparent 58%); }
.hero-content { position: relative; z-index: 2; padding: 48px 0 70px; width: 100%; }
.hero h1 { color: var(--paper); max-width: 920px; }
.hero .lead { color: rgba(251,250,244,.85); }
.hero-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 42px; }
.hero-top .eyebrow { color: var(--orange-soft); }
.hero-top .language-picker button { border-color: rgba(251,250,244,.38); color: var(--paper); }
.hero-top .language-picker button.active { background: var(--orange); border-color: var(--orange); }
.hero-stamp { display: none; }
.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 66px; }
.hero-meta { display: flex; gap: 26px; font: 700 11px "Space Mono", monospace; color: rgba(251,250,244,.7); text-transform: uppercase; letter-spacing: .08em; }
.slide-dots { display: flex; gap: 7px; }
.hero-slides > .slide-dots { position: absolute; z-index: 3; left: max(18px, calc((100% - 1180px) / 2)); bottom: 30px; }
.slide-dots button { width: 34px; height: 3px; border: 0; background: rgba(251,250,244,.38); cursor: pointer; }
.slide-dots button.active { background: var(--orange-soft); }
.scroll-cue { display: flex; align-items: center; gap: 10px; color: rgba(251,250,244,.75); font: 700 10px "Space Mono", monospace; text-transform: uppercase; }
.scroll-cue i { display: block; width: 25px; height: 40px; border: 1px solid rgba(251,250,244,.55); border-radius: 20px; position: relative; }
.scroll-cue i::after { content: ""; position: absolute; width: 3px; height: 8px; left: 10px; top: 8px; background: var(--orange-soft); border-radius: 3px; animation: scrollPulse 1.8s infinite; }
@keyframes scrollPulse { 0%,100% { transform: translateY(0); opacity: 1 } 60% { transform: translateY(13px); opacity: .2 } }

/* Cards / home sections */
.icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.icon-card { display: block; padding: 22px 18px; min-height: 150px; border: 1px solid var(--line); background: var(--paper); border-radius: 18px; box-shadow: 0 8px 22px rgba(21,43,43,.04); color: var(--ink); text-decoration: none; transition: transform .3s ease, border-color .3s ease; }
.icon-card:hover { transform: translateY(-6px); border-color: var(--lime); }
.icon-mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 22px; background: #e7f0cf; color: var(--green-deep); font: 700 18px "Space Mono", monospace; }
.icon-mark svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.icon-card:nth-child(2n) .icon-mark { background: #fff0d4; color: var(--orange); }
.icon-card:nth-child(3n) .icon-mark { background: #dceaf1; color: var(--blue); }
.icon-card h3 { font-size: 1.06rem; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 8px; }
.icon-card p { font-size: .87rem; line-height: 1.35; margin: 0; }
.services-section { background: var(--paper-deep); }
.services-section .icon-card { min-height: 190px; }
.split-heading { display: grid; grid-template-columns: 1fr; gap: 18px; }
.split-heading h2 { margin-bottom: 0; }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.impact-card { min-height: 220px; padding: 21px; position: relative; overflow: hidden; border-radius: 18px; color: var(--paper); display: flex; flex-direction: column; justify-content: flex-end; background: var(--green); }
.impact-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,52,72,.9), rgba(13,52,72,.08) 75%); z-index: 1; }
.impact-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); transition: transform .6s ease; }
.impact-card:hover img { transform: scale(1.06); }
.impact-card > * { position: relative; z-index: 2; }
.impact-card h3 { font-size: 1.22rem; margin: 0 0 4px; }
.impact-card p { color: rgba(251,250,244,.82); font-size: .8rem; line-height: 1.3; margin: 0; }
.impact-tag { align-self: flex-start; color: var(--orange-soft); font: 700 10px "Space Mono", monospace; text-transform: uppercase; letter-spacing: .06em; margin-bottom: auto; }
.impact-icon { display: inline-grid; width: 20px; height: 20px; margin-right: 5px; vertical-align: middle; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.impact-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.project-teasers { display: grid; grid-template-columns: 1fr; gap: 18px; }
.project-teaser { min-height: 380px; position: relative; overflow: hidden; border-radius: 24px; display: flex; flex-direction: column; justify-content: flex-end; padding: 27px; color: var(--paper); background: var(--blue-deep); }
.project-teaser:first-child { background: var(--green-deep); }
.project-teaser::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,52,72,.95), rgba(13,52,72,.06) 70%); z-index: 1; }
.project-teaser img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .74; transition: transform .6s ease; }
.project-teaser:hover img { transform: scale(1.05); }
.project-teaser > * { position: relative; z-index: 2; }
.project-teaser h3 { font-size: clamp(1.75rem, 4vw, 2.8rem); max-width: 440px; }
.project-teaser p { color: rgba(251,250,244,.8); max-width: 470px; }
.project-teaser .btn { align-self: flex-start; margin-top: 10px; }
.tech-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.tech-card { background: var(--paper); border: 1px solid var(--line); padding: 26px; border-radius: 19px; display: flex; flex-direction: column; min-height: 305px; }
.tech-card img { height: 82px; width: 145px; object-fit: contain; object-position: left center; margin-bottom: 16px; mix-blend-mode: multiply; }
.tech-card p { font-size: .91rem; margin-bottom: 20px; }
.tech-card .text-link { margin-top: auto; }
.text-link { color: var(--green); font-weight: 800; }
.text-link::after { content: " ↗"; color: var(--orange); }
.growth-band { background: var(--orange); color: var(--paper); overflow: hidden; }
.growth-band .container { display: grid; grid-template-columns: 1fr; gap: 35px; align-items: center; }
.growth-band h2 { max-width: 690px; }
.growth-band p { color: rgba(251,250,244,.87); }
.growth-figure { position: relative; min-height: 280px; }
.growth-figure img { position: absolute; width: 76%; height: 245px; object-fit: cover; border: 8px solid var(--paper); box-shadow: 14px 14px 0 var(--green-deep); }
.growth-figure img:first-child { left: 0; top: 20px; transform: rotate(-5deg); }
.growth-figure img:last-child { right: 0; top: 0; transform: rotate(7deg); }
.marquee-wrap { overflow: hidden; padding: 10px 0; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.partner-item { min-width: 245px; min-height: 150px; margin-right: 18px; padding: 18px 16px; display: flex; flex-direction: column; gap: 11px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); text-align: center; }
.partner-item img { height: 78px; width: 170px; object-fit: contain; mix-blend-mode: multiply; }
.partner-item strong { color: var(--ink); font: 700 11px/1.2 "Space Mono", monospace; letter-spacing: .03em; }
.partner-placeholder { text-align: center; color: var(--muted); font: 700 11px "Space Mono", monospace; letter-spacing: .04em; }
@keyframes marquee { to { transform: translateX(-50%); } }
.video-frame { aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden; background: var(--blue-deep); box-shadow: var(--shadow); }
.video-frame iframe { border: 0; width: 100%; height: 100%; }
.video-frame--vertical { aspect-ratio: 9 / 16; max-width: 390px; margin-inline: auto; }
.video-gallery { display: grid; grid-template-columns: 1fr; gap: 26px; }
.video-card h3 { color: var(--paper); margin: 17px 0 4px; font-size: 1.4rem; }
.video-card p { margin: 0; color: rgba(251,250,244,.62); font: 700 11px "Space Mono", monospace; text-transform: uppercase; }
.join-panel { border-radius: 25px; padding: 43px 26px; background: var(--lime); color: var(--ink); position: relative; overflow: hidden; }
.join-panel::after { content: ""; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(21,43,43,.18); position: absolute; right: -100px; bottom: -110px; box-shadow: 0 0 0 18px rgba(21,43,43,.05), 0 0 0 36px rgba(21,43,43,.04); }
.join-panel p { color: rgba(21,43,43,.75); max-width: 640px; }
.final-cta { padding: 43px 0; background: var(--blue); color: var(--paper); }
.final-cta .container { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.final-cta h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 0; max-width: 710px; }
.recognition-band { background: var(--orange); color: var(--paper); }
.recognition-band .container { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.recognition-band h2 { max-width: 850px; font-size: clamp(2rem, 5vw, 4.8rem); margin: 10px 0 14px; }
.recognition-band p { max-width: 680px; color: rgba(251,250,244,.84); margin: 0; }
.recognition-mark { width: 52px; height: 52px; display: grid; place-items: center; border: 2px solid var(--paper); border-radius: 50%; font: 700 25px "Space Mono", monospace; }

/* Internal page hero and storytelling */
.page-hero { padding: 70px 0 78px; background: var(--blue-deep); color: var(--paper); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(247,200,91,.38); border-radius: 50%; right: -110px; top: -170px; box-shadow: 0 0 0 26px rgba(247,200,91,.05), 0 0 0 52px rgba(247,200,91,.04); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6.4rem); max-width: 920px; margin-bottom: 19px; }
.page-hero p { color: rgba(251,250,244,.75); max-width: 690px; }
.page-hero--photo { min-height: 430px; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.page-hero--photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,52,72,.92), rgba(13,52,72,.28)), linear-gradient(0deg, rgba(13,52,72,.76), transparent); }
.mission-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.quote-card { padding: 28px; border-radius: 20px; background: #e7f0cf; border-left: 5px solid var(--green); }
.quote-card:nth-child(2) { background: #fff0d4; border-left-color: var(--orange); }
.quote-card h3 { color: var(--green-deep); }
.quote-card p { font-size: 1.08rem; color: var(--ink); font-weight: 700; }
.story-grid { display: grid; grid-template-columns: 1fr; gap: 35px; align-items: center; }
.story-image { border-radius: 24px; overflow: hidden; min-height: 330px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy p { max-width: 620px; }
.foundation-mark { width: 105px; height: 105px; border-radius: 50%; object-fit: cover; margin: 22px 0 7px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.value { padding: 22px 16px; border-top: 4px solid var(--green); background: var(--paper-deep); }
.value:nth-child(2n) { border-color: var(--orange); }
.value:nth-child(3n) { border-color: var(--blue); }
.value b { font-family: "Bricolage Grotesque"; font-size: 1.2rem; }
.value span { display: block; color: var(--muted); font-size: .82rem; margin-top: 8px; }
.steps { display: grid; grid-template-columns: 1fr; gap: 13px; }
.step { position: relative; padding: 25px 22px; border: 1px solid rgba(251,250,244,.2); border-radius: 17px; background: rgba(251,250,244,.08); }
.step::after { content: "→"; position: absolute; right: 20px; top: 19px; color: var(--orange-soft); font: 700 24px "Bricolage Grotesque"; }
.step:last-child::after { content: "✓"; }
.step h3 { color: var(--paper); }
.step p { font-size: .91rem; margin-bottom: 0; }
.problem-solution { display: grid; grid-template-columns: 1fr; gap: 20px; }
.story-card { padding: 27px; border-radius: 20px; background: var(--paper-deep); }
.story-card--accent { background: var(--orange); color: var(--paper); }
.story-card--accent p { color: rgba(251,250,244,.82); }
.story-card h3 { color: var(--green-deep); }
.story-card--accent h3 { color: var(--paper); }
.feature-list { display: grid; grid-template-columns: 1fr; gap: 10px; list-style: none; padding: 0; margin: 20px 0 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-weight: 700; font-size: .93rem; }
.feature-list li::before { content: "✓"; flex: 0 0 auto; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--lime); color: var(--green-deep); font-size: .75rem; }
.tech-stack { display: grid; grid-template-columns: 1fr; gap: 20px; }
.tech-product { padding: 27px; border-radius: 22px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(21,43,43,.05); }
.tech-product:nth-child(2) { border-top: 5px solid var(--blue); }
.tech-product:nth-child(3) { border-top: 5px solid var(--green); }
.tech-product:nth-child(1) { border-top: 5px solid var(--orange); }
.tech-product img { height: 112px; width: 205px; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
.tech-product p { max-width: 650px; }
.closing-note { font-family: "Bricolage Grotesque"; font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.03; color: var(--paper); max-width: 900px; }
.field-story-banner { background: var(--paper-deep); }
.field-story-banner .container { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.field-story-image { min-height: 260px; overflow: hidden; border-radius: 22px; }
.field-story-image img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.field-story-copy h2 { max-width: 660px; }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.gallery-figure { margin: 0; }
.gallery-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; }
.gallery-figure figcaption { padding: 13px 4px 0; color: var(--muted); font-size: .9rem; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 12px; }
.team-member { text-align: left; }
.avatar { width: 100%; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; color: var(--paper); font: 800 clamp(1.8rem, 7vw, 3.7rem) "Bricolage Grotesque"; margin-bottom: 13px; position: relative; overflow: hidden; }
.avatar::after { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(251,250,244,.4); border-radius: 50%; }
.team-member:nth-child(4n) .avatar { background: var(--green); }
.team-member:nth-child(4n+1) .avatar { background: var(--orange); }
.team-member:nth-child(4n+2) .avatar { background: var(--blue); }
.team-member:nth-child(4n+3) .avatar { background: var(--brown); }
.team-member h3 { font-size: 1rem; letter-spacing: -.02em; margin-bottom: 4px; }
.team-member p { font-size: .75rem; line-height: 1.3; margin: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 27px; }
.contact-card { padding: 28px; border-radius: 21px; background: var(--paper-deep); }
.contact-card--orange { background: var(--orange); color: var(--paper); }
.contact-card--orange p { color: rgba(251,250,244,.82); }
.contact-list { display: grid; gap: 12px; margin-top: 24px; }
.contact-list a { display: flex; gap: 10px; align-items: center; font-weight: 800; border-bottom: 1px solid var(--line); padding-bottom: 11px; }
.flag { font-size: 1.15rem; line-height: 1; }
.socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.socials a { width: 37px; height: 37px; display: grid; place-items: center; background: var(--blue-deep); color: var(--paper); border-radius: 50%; }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

/* Footer / floating action */
.site-footer { background: var(--ink); color: var(--paper); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer-brand img { width: 128px; height: 78px; object-fit: contain; object-position: left center; background: var(--paper); mix-blend-mode: normal; border-radius: 4px; }
.footer-brand p { max-width: 310px; color: rgba(251,250,244,.66); font-size: .9rem; margin-top: 15px; }
.footer-title { color: var(--orange-soft); font: 700 11px "Space Mono", monospace; text-transform: uppercase; letter-spacing: .11em; margin-bottom: 15px; }
.footer-list { display: grid; gap: 8px; list-style: none; padding: 0; margin: 0; }
.footer-list a { color: rgba(251,250,244,.8); font-size: .87rem; }
.footer-list a:hover { color: var(--orange-soft); }
.footer-bottom { border-top: 1px solid rgba(251,250,244,.16); margin-top: 39px; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; color: rgba(251,250,244,.5); font-size: .75rem; }
.footer-bottom .socials { margin: 0; }
.footer-bottom .socials a { width: 31px; height: 31px; background: rgba(251,250,244,.12); }
.whatsapp-float { position: fixed; z-index: 60; right: 18px; bottom: 18px; width: 55px; height: 55px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: var(--paper); box-shadow: 0 9px 25px rgba(21,43,43,.23); transition: transform .25s ease; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 25px; height: 25px; fill: currentColor; }

@media (min-width: 650px) {
  .container { width: min(1180px, calc(100% - 64px)); }
  .icon-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-card:nth-child(1), .impact-card:nth-child(4), .impact-card:nth-child(7) { grid-row: span 2; min-height: 455px; }
  .impact-card:nth-child(2), .impact-card:nth-child(5), .impact-card:nth-child(8) { min-height: 220px; }
  .project-teasers { grid-template-columns: 1.15fr .85fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .video-gallery { grid-template-columns: repeat(2, 1fr); }
  .growth-band .container { grid-template-columns: 1.15fr .85fr; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: .85fr 1.15fr; }
  .story-grid--reverse { grid-template-columns: 1.15fr .85fr; }
  .story-grid--reverse .story-image { order: 2; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .problem-solution { grid-template-columns: 1fr 1fr; }
  .tech-stack { gap: 25px; }
  .tech-product { display: grid; grid-template-columns: 245px 1fr; column-gap: 25px; align-items: start; }
  .tech-product img { grid-row: span 2; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
  .footer-grid { grid-template-columns: 1.25fr .9fr .9fr; }
  .field-story-banner .container { grid-template-columns: 1.1fr .9fr; gap: 55px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .main-nav { display: flex; }
  .hero-stamp { display: block; width: 100px; height: 100px; border: 1px solid rgba(251,250,244,.4); border-radius: 50%; padding: 25px 14px; text-align: center; color: var(--orange-soft); font: 700 9px/1.2 "Space Mono", monospace; text-transform: uppercase; transform: rotate(9deg); }
  .hero-content { padding-bottom: 78px; }
  .hero-bottom { margin-top: 90px; }
  .team-grid { grid-template-columns: repeat(4, 1fr); gap: 34px 22px; }
  .video-gallery { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .section { padding: 118px 0; }
  .section--tight { padding: 72px 0; }
  .page-hero { padding: 104px 0 110px; }
}
@media (max-width: 979px) {
  .nav-inner > .language-picker { display: flex; }
}
@media (max-width: 480px) {
  .topline .container { font-size: 8px; }
  .topline .container span { display: none; }
  .nav-inner > .language-picker { gap: 2px; }
  .nav-inner > .language-picker button { padding: 5px 6px; font-size: 9px; }
  .brand-link span { font-size: 1rem; }
  .hero { min-height: calc(100svh - 109px); }
  .hero-bottom { align-items: flex-start; flex-direction: column; margin-top: 47px; }
  .hero-meta { display: none; }
  .final-cta .container { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}