:root {
  --green: #0b7135;
  --green-deep: #064b2a;
  --green-dark: #043a22;
  --lime: #83c62a;
  --lime-soft: #a6db5f;
  --graphite: #2f3136;
  --gray: #8a8a8a;
  --off: #f6f6f3;
  --paper: #fbfaf7;
  --beige: #efe9de;
  --orange: #f08a24;
  --line: rgba(47,49,54,.14);
  --radius: 28px;
  --shadow: 0 30px 80px rgba(20, 35, 25, .12);
  --shell: min(1380px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--lime); color: var(--green-dark); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 140px 0; }

.pointer-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,198,42,.11), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .3s ease;
}
body:hover .pointer-glow { opacity: 1; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 92px;
  transition: background .35s ease, border-color .35s ease, height .35s ease, box-shadow .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 74px;
  background: rgba(251,250,247,.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(47,49,54,.08);
  box-shadow: 0 10px 40px rgba(22, 35, 26, .05);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; width: 132px; transition: transform .3s ease; }
.brand:hover { transform: translateY(-2px); }
.brand img { width: 100%; height: 62px; object-fit: contain; }
.site-header.is-scrolled .brand img { height: 50px; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 500; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--green); transition: right .3s ease;
}
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { border: 1px solid rgba(11,113,53,.35); border-radius: 999px; padding: 12px 18px; color: var(--green); transition: all .3s ease; }
.nav-cta:hover { background: var(--green); color: white; border-color: var(--green); }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 10px; }
.menu-toggle span { display:block; height:1px; background:var(--graphite); margin:7px 0; transition:.3s ease; }

.hero { min-height: 100svh; padding-top: 92px; background: linear-gradient(180deg, #fbfaf7 0%, #f4f2ec 100%); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 28%, rgba(131,198,42,.12), transparent 35%); pointer-events:none;
}
.hero-grid { min-height: calc(100svh - 142px); display: grid; grid-template-columns: .82fr 1.28fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-copy { padding: 44px 0 30px; }
.eyebrow { margin: 0 0 28px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--green); display:flex; align-items:center; gap:10px; font-weight:600; }
.eyebrow span { width: 24px; height: 2px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(58px, 6.2vw, 102px); line-height: .96; letter-spacing: -.055em; margin-bottom: 30px; font-weight: 500; }
h1 em, h2 em { font-style: normal; color: var(--lime); }
.hero-lead { max-width: 570px; font-size: clamp(18px, 1.45vw, 23px); line-height: 1.55; color: #55575a; font-weight: 300; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:38px; }
.button { min-height: 54px; display:inline-flex; align-items:center; justify-content:center; gap:18px; border-radius:999px; padding: 0 25px; border:1px solid transparent; font-size:13px; font-weight:600; cursor:pointer; transition: transform .3s ease, background .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--green); color:white; box-shadow: 0 16px 34px rgba(11,113,53,.18); }
.button-primary:hover { background: var(--green-deep); box-shadow: 0 18px 40px rgba(11,113,53,.26); }
.button-ghost { border-color: rgba(47,49,54,.25); background: rgba(255,255,255,.35); }
.button-ghost:hover { border-color: var(--green); color: var(--green); }
.hero-note { margin-top: 34px; font-size: 12px; color:#707276; display:flex; align-items:center; gap:10px; }
.pulse-dot { width:9px; height:9px; background: var(--lime); border-radius:50%; box-shadow:0 0 0 0 rgba(131,198,42,.45); animation:pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(131,198,42,.4)} 70%{box-shadow:0 0 0 10px rgba(131,198,42,0)} 100%{box-shadow:0 0 0 0 rgba(131,198,42,0)} }
.hero-stage { position:relative; padding: 36px 0 42px; }
.hero-image-wrap { position:relative; border-radius: 42px; overflow:hidden; background:#f3f0e8; box-shadow:var(--shadow); transform: translateZ(0); }
.hero-image-wrap img, .hero-image-wrap video { width:100%; aspect-ratio:16/9; object-fit:cover; }
.hero-image-wrap::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,.7); border-radius:42px; pointer-events:none; }
.scan-line { position:absolute; top:0; bottom:0; width:1px; left:12%; background:rgba(255,255,255,.95); box-shadow:0 0 20px 5px rgba(131,198,42,.25); animation:scan 7s ease-in-out infinite; }
@keyframes scan { 0%,8%{left:10%;opacity:0} 14%{opacity:1} 50%{left:84%;opacity:1} 58%,100%{left:92%;opacity:0} }
.stage-label { position:absolute; z-index:2; top:14px; font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--green); background:rgba(251,250,247,.9); padding:8px 12px; border-radius:999px; box-shadow:0 8px 24px rgba(0,0,0,.06); }
.stage-label--top{left:7%}.stage-label--middle{left:46%}.stage-label--end{right:7%}
.stage-caption { margin:18px 10px 0 auto; width:max-content; max-width:80%; color:#6c6f72; font-size:12px; }
.marquee { height:50px; overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:rgba(255,255,255,.5); display:flex; align-items:center; }
.marquee-track { display:flex; align-items:center; width:max-content; animation:marquee 28s linear infinite; white-space:nowrap; color:var(--green); font-size:10px; letter-spacing:.2em; font-weight:600; }
.marquee-track span { margin:0 26px; }
.marquee-track i { width:6px; height:6px; border-radius:50%; background:var(--lime); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-index { margin-bottom:20px; font-size:11px; letter-spacing:.18em; color:var(--green); font-weight:600; }
.section-index-light { color: var(--lime-soft); }
h2 { font-size: clamp(44px, 5.2vw, 78px); line-height:1.03; letter-spacing:-.047em; font-weight:500; margin-bottom:28px; }
.text-link { display:inline-flex; align-items:center; gap:16px; font-size:13px; font-weight:600; color:var(--green); margin-top:24px; }
.text-link span { transition: transform .3s ease; }
.text-link:hover span { transform: translateX(7px); }

.statement { background:var(--paper); }
.statement-grid { display:grid; grid-template-columns:.72fr 1.28fr; gap:80px; align-items:start; }
.statement-copy { position:sticky; top:130px; }
.statement-copy h2 { font-size:clamp(44px,4.6vw,72px); }
.statement-copy > p:not(.section-index) { max-width:460px; color:#636568; font-size:17px; font-weight:300; }
.editorial-grid { display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:255px; gap:14px; }
.tile { margin:0; border-radius:20px; overflow:hidden; position:relative; background:#ddd; }
.tile-wide { grid-column:span 2; }
.tile-tall { grid-row:span 2; }
.tile img { width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.tile::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 58%,rgba(0,0,0,.58)); opacity:.7; transition:.4s ease; }
.tile figcaption { position:absolute; z-index:2; left:20px; bottom:16px; color:white; font-size:12px; letter-spacing:.02em; }
.tile:hover img { transform:scale(1.055); }
.tile:hover::after { opacity:.9; }

.section-dark { background:var(--green-dark); color:white; position:relative; overflow:hidden; }
.section-dark::before { content:""; position:absolute; width:650px; height:650px; border-radius:50%; background:radial-gradient(circle,rgba(131,198,42,.16),transparent 68%); left:-180px; top:-260px; }
.centered { text-align:center; max-width:920px; margin:0 auto 68px; position:relative; z-index:1; }
.pillars { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.15); border-bottom:1px solid rgba(255,255,255,.15); position:relative; z-index:1; }
.pillar { padding:46px 34px 52px; min-height:360px; border-right:1px solid rgba(255,255,255,.15); position:relative; }
.pillar:last-child { border-right:0; }
.pillar-number { position:absolute; top:24px; right:24px; font-size:10px; color:rgba(255,255,255,.45); letter-spacing:.16em; }
.pillar-icon { width:58px; height:58px; display:flex; align-items:center; justify-content:center; color:var(--lime); font-size:40px; margin:22px 0 46px; }
.pillar h3 { font-size:19px; font-weight:500; margin-bottom:14px; }
.pillar p { color:rgba(255,255,255,.62); font-size:14px; font-weight:300; }
.cube { width:48px; height:48px; border:2px solid var(--lime); transform:rotate(30deg) skewY(-15deg) scaleY(.86); margin-left:8px; }
.layers { position:relative; width:54px; height:36px; border:2px solid var(--lime); transform:skewY(-18deg); }
.layers::before,.layers::after{content:"";position:absolute;inset:8px -2px -10px;border:2px solid var(--lime);border-top:0}.layers::after{inset:18px -2px -20px}

.texture-section { min-height:720px; position:relative; display:flex; align-items:center; overflow:hidden; background:var(--green-dark); }
.texture-section > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; transform:scale(1.02); }
.texture-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(3,34,19,.9) 0%,rgba(3,34,19,.58) 42%,rgba(3,34,19,.06) 80%); }
.texture-copy { position:relative; z-index:2; color:white; }
.texture-copy h2 { max-width:720px; }
.texture-copy p:last-child { max-width:520px; color:rgba(255,255,255,.7); font-size:18px; font-weight:300; }

.section-heading.split { display:flex; justify-content:space-between; align-items:end; gap:70px; margin-bottom:68px; }
.section-heading.split > p { max-width:440px; color:#6d6f72; font-weight:300; }
.solutions { background:var(--off); }
.solutions-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.solution-card { min-height:350px; padding:42px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); position:relative; overflow:hidden; background:rgba(255,255,255,.35); transition:background .4s ease, color .4s ease; }
.solution-card::after { content:""; position:absolute; width:200px; height:200px; right:-100px; bottom:-120px; border-radius:50%; background:var(--lime); opacity:.14; transition:transform .6s ease, opacity .4s ease; }
.solution-card:hover { background:var(--green); color:white; }
.solution-card:hover::after { transform:scale(2.3); opacity:.18; }
.solution-top { display:flex; justify-content:space-between; font-size:11px; letter-spacing:.16em; margin-bottom:70px; color:var(--green); position:relative; z-index:1; }
.solution-card:hover .solution-top { color:var(--lime-soft); }
.solution-card h3 { font-size:31px; font-weight:500; letter-spacing:-.03em; margin-bottom:18px; position:relative; z-index:1; }
.solution-card p { max-width:500px; color:#66686b; font-weight:300; position:relative; z-index:1; }
.solution-card:hover p { color:rgba(255,255,255,.72); }
.solution-tags { display:flex; gap:8px; margin-top:36px; position:relative; z-index:1; }
.solution-tags span { font-size:10px; padding:7px 10px; border:1px solid rgba(11,113,53,.22); border-radius:999px; color:var(--green); }
.solution-card:hover .solution-tags span { color:white; border-color:rgba(255,255,255,.25); }

.process { background:var(--paper); }
.process-line { height:1px; background:var(--line); margin:0 calc(10% - 15px); position:relative; top:28px; }
.process-line span { display:block; height:100%; width:100%; background:var(--lime); transition:width 1.8s cubic-bezier(.2,.75,.2,1); }
.js .process-line span { width:0; }
.js .process-line.is-visible span { width:100%; }
.process-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:24px; position:relative; }
.process-step { text-align:center; padding:0 10px; }
.step-marker { width:56px; height:56px; margin:0 auto 34px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--paper); border:1px solid var(--green); color:var(--green); font-weight:600; position:relative; z-index:2; transition:.4s ease; }
.process-step:hover .step-marker { background:var(--green); color:white; transform:translateY(-5px); box-shadow:0 14px 34px rgba(11,113,53,.18); }
.process-step h3 { font-size:16px; color:var(--green); font-weight:600; }
.process-step p { font-size:13px; color:#707276; font-weight:300; }

.about { background:var(--beige); overflow:hidden; }
.about-grid { display:grid; grid-template-columns:1.15fr .85fr; align-items:center; gap:80px; }
.about-visual { position:relative; }
.studio-board { min-height:610px; border-radius:30px; overflow:hidden; background:var(--green-dark); color:white; box-shadow:var(--shadow); position:relative; isolation:isolate; }
.studio-board::before { content:""; position:absolute; width:430px; height:430px; border-radius:50%; right:-120px; top:-150px; background:radial-gradient(circle,rgba(131,198,42,.32),transparent 68%); z-index:-1; }
.studio-board::after { content:""; position:absolute; inset:0; background:linear-gradient(120deg,rgba(255,255,255,.035),transparent 38%,rgba(131,198,42,.055)); pointer-events:none; }
.studio-board__topline { display:flex; justify-content:space-between; padding:24px 28px; border-bottom:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.54); font-size:9px; letter-spacing:.18em; }
.studio-board__canvas { min-height:430px; display:grid; grid-template-columns:.78fr 1.22fr; align-items:center; gap:24px; padding:44px 46px 28px; }
.studio-board__copy small { display:block; margin-bottom:20px; color:var(--lime-soft); font-size:9px; letter-spacing:.18em; }
.studio-board__copy strong { display:block; font-size:clamp(38px,4vw,66px); line-height:.96; letter-spacing:-.055em; font-weight:400; }
.studio-board__copy em { color:var(--lime); font-style:normal; }
.shape-study { position:relative; min-height:300px; display:grid; place-items:center; perspective:900px; }
.shape { position:absolute; width:min(75%,250px); overflow:visible; }
.shape path { fill:none; stroke:var(--lime); stroke-width:2; }
.shape rect { fill:var(--green-dark); stroke:var(--lime); stroke-width:2; }
.shape--idea { opacity:.38; transform:translate(-62px,-24px) scale(.9); filter:drop-shadow(0 16px 32px rgba(0,0,0,.12)); }
.shape-layers { position:absolute; width:100%; height:100%; display:grid; place-items:center; transform:rotateY(-14deg) rotateX(4deg); }
.shape-layers .shape { opacity:.22; }
.shape-layers .shape:nth-child(1) { transform:translate(-10px,-10px); }
.shape-layers .shape:nth-child(2) { transform:translate(0,0); opacity:.36; }
.shape-layers .shape:nth-child(3) { transform:translate(10px,10px); opacity:.58; }
.shape-layers .shape:nth-child(4) { transform:translate(20px,20px); opacity:1; filter:drop-shadow(18px 28px 28px rgba(0,0,0,.28)); }
.shape-layers .shape:nth-child(4) path { fill:var(--lime); stroke:var(--lime-soft); stroke-width:1; }
.shape-layers .shape:nth-child(4) rect { fill:var(--green-dark); stroke:var(--lime-soft); stroke-width:1; }
.studio-board__footer { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(255,255,255,.12); }
.studio-board__footer > div { padding:22px 20px; border-right:1px solid rgba(255,255,255,.12); }
.studio-board__footer > div:last-child { border-right:0; }
.studio-board__footer small,.studio-board__footer strong { display:block; }
.studio-board__footer small { margin-bottom:8px; color:var(--lime-soft); font-size:8px; letter-spacing:.15em; }
.studio-board__footer strong { color:rgba(255,255,255,.72); font-size:10px; font-weight:400; }
.about-stamp { position:absolute; right:-28px; bottom:-28px; width:150px; height:150px; border-radius:50%; background:var(--lime); color:var(--green-dark); display:flex; align-items:center; justify-content:center; text-align:center; font-size:12px; text-transform:uppercase; letter-spacing:.08em; font-weight:600; transform:rotate(-8deg); }
.about-copy > p:not(.section-index) { font-size:16px; color:#5f6265; font-weight:300; }
.about-points { display:flex; flex-wrap:wrap; gap:10px; margin-top:34px; }
.about-points span { border:1px solid rgba(11,113,53,.25); border-radius:999px; padding:9px 13px; color:var(--green); font-size:11px; }

.section-green { background:linear-gradient(135deg,var(--green-dark),var(--green)); color:white; position:relative; overflow:hidden; }
.section-green::before { content:""; position:absolute; width:800px; height:800px; border-radius:50%; right:-300px; bottom:-450px; border:1px solid rgba(255,255,255,.12); box-shadow:0 0 0 120px rgba(255,255,255,.03),0 0 0 240px rgba(255,255,255,.02); }
.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:80px; position:relative; z-index:1; }
.contact-copy > p:not(.section-index) { max-width:480px; color:rgba(255,255,255,.68); font-weight:300; font-size:17px; }
.contact-signature { display:flex; align-items:center; gap:15px; margin-top:50px; }
.contact-icon { width:46px; height:56px; border-radius:24px 24px 18px 18px; background:var(--lime); position:relative; }
.contact-icon::before { content:""; position:absolute; left:9px; right:9px; bottom:8px; height:20px; border:5px solid var(--green-dark); border-top:0; border-radius:0 0 16px 16px; }
.contact-signature strong,.contact-signature small { display:block; }
.contact-signature strong { letter-spacing:.12em; }
.contact-signature small { color:var(--lime-soft); }
.brief-form { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.13); backdrop-filter:blur(12px); border-radius:30px; padding:36px; display:grid; gap:18px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.brief-form label { display:grid; gap:8px; font-size:11px; color:rgba(255,255,255,.72); letter-spacing:.03em; }
.brief-form input,.brief-form textarea { width:100%; border:1px solid rgba(255,255,255,.18); border-radius:14px; background:rgba(0,0,0,.10); color:white; padding:15px 16px; outline:none; transition:border-color .3s ease, background .3s ease; resize:vertical; }
.brief-form input::placeholder,.brief-form textarea::placeholder { color:rgba(255,255,255,.38); }
.brief-form input:focus,.brief-form textarea:focus { border-color:var(--lime); background:rgba(255,255,255,.08); }
.button-lime { width:100%; margin-top:6px; border:0; background:var(--lime); color:var(--green-dark); }
.button-lime:hover { background:var(--lime-soft); box-shadow:0 16px 34px rgba(131,198,42,.16); }
.form-note { margin:0; color:rgba(255,255,255,.44); font-size:10px; }
.form-success { display:none; padding:12px 15px; border-radius:12px; background:rgba(131,198,42,.15); color:var(--lime-soft); font-size:12px; }
.form-success.is-visible { display:block; }

.site-footer { background:#031f13; color:rgba(255,255,255,.55); padding:42px 0; }
.footer-inner { display:grid; grid-template-columns:180px 1fr auto; align-items:center; gap:35px; font-size:11px; }
.footer-inner img { width:140px; filter:brightness(0) invert(1); opacity:.85; }
.footer-inner p { margin:0; }

.reveal { opacity:1; transform:none; transition:opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
.js .reveal { opacity:0; transform:translateY(26px); }
.js .reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 1100px) {
  :root { --shell:min(100% - 44px, 980px); }
  .hero-grid { grid-template-columns:1fr; padding:80px 0 70px; }
  .hero-copy { max-width:760px; }
  .hero-stage { max-width:950px; }
  .statement-grid,.about-grid,.contact-grid { grid-template-columns:1fr; }
  .statement-copy { position:relative; top:auto; max-width:680px; }
  .pillars { grid-template-columns:repeat(2,1fr); }
  .pillar:nth-child(2){border-right:0}.pillar:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.15)}
  .process-grid { grid-template-columns:repeat(3,1fr); row-gap:55px; }
  .process-line { display:none; }
  .about-visual { max-width:900px; }
  .studio-board__canvas { grid-template-columns:.8fr 1.2fr; }
}

@media (max-width: 760px) {
  :root { --shell:calc(100% - 30px); --radius:20px; }
  .section { padding:90px 0; }
  .site-header { height:74px; }
  .brand { width:110px; }
  .brand img,.site-header.is-scrolled .brand img { height:48px; }
  .menu-toggle { display:block; position:relative; z-index:62; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform:translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform:translateY(-4px) rotate(-45deg); }
  .site-nav { position:fixed; inset:0; background:var(--paper); z-index:60; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; gap:24px; padding:80px 36px; font-size:28px; transform:translateX(100%); transition:transform .45s cubic-bezier(.2,.7,.2,1); }
  .site-nav.is-open { transform:translateX(0); }
  .nav-cta { margin-top:20px; font-size:15px; }
  .hero { padding-top:74px; }
  .hero-grid { min-height:auto; padding:70px 0 58px; gap:26px; }
  h1 { font-size:clamp(50px,16vw,72px); }
  h2 { font-size:clamp(40px,12vw,58px); }
  .hero-lead { font-size:17px; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .button { width:100%; }
  .hero-image-wrap { border-radius:24px; }
  .hero-image-wrap::after { border-radius:24px; }
  .stage-label { display:none; }
  .stage-caption { max-width:100%; width:auto; }
  .statement-grid { gap:48px; }
  .editorial-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:185px; gap:8px; }
  .tile-wide { grid-column:span 2; }
  .tile-tall { grid-row:span 1; }
  .pillars { grid-template-columns:1fr; }
  .pillar { border-right:0; border-bottom:1px solid rgba(255,255,255,.15)!important; min-height:auto; }
  .pillar:last-child { border-bottom:0!important; }
  .texture-section { min-height:620px; }
  .texture-overlay { background:linear-gradient(180deg,rgba(3,34,19,.5),rgba(3,34,19,.94)); }
  .texture-copy { align-self:end; padding-bottom:70px; }
  .section-heading.split { flex-direction:column; align-items:flex-start; gap:10px; }
  .solutions-grid { grid-template-columns:1fr; }
  .solution-card { min-height:310px; padding:30px; }
  .process-grid { grid-template-columns:1fr; text-align:left; }
  .process-step { display:grid; grid-template-columns:56px 1fr; column-gap:18px; text-align:left; padding:0; }
  .step-marker { grid-row:span 2; margin:0; }
  .process-step h3 { align-self:end; margin-bottom:5px; }
  .process-step p { margin-bottom:0; }
  .studio-board { min-height:auto; }
  .studio-board__canvas { min-height:470px; grid-template-columns:1fr; padding:34px 24px 24px; }
  .shape-study { min-height:250px; }
  .studio-board__footer { grid-template-columns:1fr; }
  .studio-board__footer > div { border-right:0; border-bottom:1px solid rgba(255,255,255,.12); }
  .studio-board__footer > div:last-child { border-bottom:0; }
  .about-stamp { width:112px; height:112px; right:-4px; bottom:-36px; font-size:9px; }
  .field-row { grid-template-columns:1fr; }
  .brief-form { padding:24px 18px; }
  .footer-inner { grid-template-columns:1fr; text-align:left; }
  .footer-inner img { width:120px; }
  .pointer-glow { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.001ms!important; animation-iteration-count:1!important; scroll-behavior:auto!important; transition-duration:.001ms!important; }
  .reveal { opacity:1; transform:none; }
}

/* V1.2 — mobile containment and cache-safe visual fixes */
html, body { width: 100%; max-width: 100%; }
svg { max-width: 100%; }
.shape-study { overflow: hidden; contain: layout paint; }
.shape-study .shape { height: auto; max-height: 290px; }

@media (max-width: 760px) {
  .about { overflow: clip; }
  .about-grid { gap: 62px; }
  .about-visual { width: 100%; min-width: 0; }
  .studio-board { width: 100%; min-height: 0; border-radius: 22px; }
  .studio-board__topline {
    padding: 16px 18px;
    gap: 12px;
    font-size: 7px;
    letter-spacing: .12em;
    white-space: nowrap;
  }
  .studio-board__canvas {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 28px 20px 22px;
  }
  .studio-board__copy small { margin-bottom: 12px; font-size: 8px; }
  .studio-board__copy strong { font-size: clamp(38px, 12vw, 50px); line-height: 1; }
  .shape-study {
    width: 100%;
    min-height: 230px;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    isolation: isolate;
  }
  .shape-study .shape {
    width: 150px;
    height: 175px;
    max-width: 48%;
    max-height: 82%;
  }
  .shape--idea { transform: translate(-42px,-12px) scale(.72); }
  .shape-layers { transform: rotateY(-8deg) rotateX(2deg) scale(.8); }
  .shape-layers .shape:nth-child(1) { transform: translate(-7px,-7px); }
  .shape-layers .shape:nth-child(2) { transform: translate(0,0); }
  .shape-layers .shape:nth-child(3) { transform: translate(7px,7px); }
  .shape-layers .shape:nth-child(4) { transform: translate(14px,14px); }
  .studio-board__footer > div { padding: 17px 18px; }
  .about-stamp { right: 8px; bottom: -44px; }
}

@media (max-width: 390px) {
  :root { --shell: calc(100% - 24px); }
  .studio-board__topline { font-size: 6.5px; }
  .shape-study { min-height: 210px; }
  .shape-study .shape { width: 136px; height: 159px; }
  .about-stamp { width: 102px; height: 102px; font-size: 8px; }
}

.scan-line { display:none; }

/* V1.4 — keep the photographic hero at the intended horizontal proportion */
.hero-stage {
  min-width: 0;
}
.hero-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.hero-image-wrap > img,
.hero-image-wrap > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}


@media (max-width: 760px) {
  .hero-image-wrap {
    aspect-ratio: 16 / 10;
  }
  .hero-image-wrap > img,
.hero-image-wrap > video {
    object-position: center;
  }
}


/* V1.5 — hero video replaces the still image without changing layout */
.hero-video {
  display: block;
  border: 0;
  background: #10130f;
}
