: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;
}


/* V1.7 — selected-project gallery, full-screen slideshow, value proposition and sustainability */
.value-highlight {
  max-width: 820px;
  margin: 18px auto 0;
  padding: 18px 24px;
  border: 1px solid rgba(166,219,95,.34);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: clamp(15px,1.3vw,19px);
  font-weight: 300;
  line-height: 1.5;
  background: rgba(255,255,255,.045);
}
.value-highlight strong { color: var(--lime-soft); font-weight: 600; }

.editorial-grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 220px;
  gap: 12px;
}
.tile-portrait { grid-row: span 2; }
.tile-wide { grid-column: span 2; }
.tile-full { grid-column: 1 / -1; min-height: 265px; }
.tile-link { display:block; width:100%; height:100%; position:relative; cursor:zoom-in; }
.tile-link:focus-visible { outline: 3px solid var(--lime); outline-offset: -4px; }
.tile-link::before {
  content: "";
  position:absolute;
  z-index:3;
  top:14px;
  right:14px;
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:white;
  background:rgba(4,58,34,.72);
  backdrop-filter:blur(8px);
  opacity:0;
  transform:translateY(5px);
  transition:.3s ease;
}
.tile:hover .tile-link::before,.tile-link:focus-visible::before { opacity:1; transform:none; }

body.lightbox-open { overflow:hidden; }
.gallery-lightbox {
  position:fixed;
  inset:0;
  z-index:1000;
  display:grid;
  grid-template-columns:minmax(56px,9vw) minmax(0,1fr) minmax(56px,9vw);
  align-items:center;
  background:rgba(2,19,11,.94);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}
.gallery-lightbox[hidden] { display:none; }
.gallery-lightbox.is-open { opacity:1; visibility:visible; }
.lightbox-figure {
  grid-column:2;
  margin:0;
  min-width:0;
  height:min(86vh,900px);
  display:grid;
  grid-template-rows:minmax(0,1fr) auto;
  gap:16px;
}
.lightbox-figure img {
  width:100%;
  height:100%;
  min-height:0;
  object-fit:contain;
  border-radius:18px;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.4));
}
.lightbox-figure figcaption {
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.78);
  font-size:12px;
  letter-spacing:.03em;
}
.lightbox-nav,.lightbox-close {
  border:1px solid rgba(255,255,255,.25);
  color:white;
  background:rgba(255,255,255,.08);
  cursor:pointer;
  transition:.25s ease;
}
.lightbox-nav:hover,.lightbox-close:hover { background:var(--lime); color:var(--green-dark); border-color:var(--lime); }
.lightbox-nav {
  width:52px;
  height:52px;
  border-radius:50%;
  font-size:24px;
  justify-self:center;
}
.lightbox-prev { grid-column:1; grid-row:1; }
.lightbox-next { grid-column:3; grid-row:1; }
.lightbox-close {
  position:absolute;
  top:22px;
  right:24px;
  width:46px;
  height:46px;
  border-radius:50%;
  font-size:28px;
  line-height:1;
  z-index:2;
}

.layered-symbol-card {
  width:min(100%,560px);
  margin-inline:auto;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--green-dark);
}
.layered-symbol-card img { width:100%; aspect-ratio:760/980; object-fit:cover; }

.sustainability {
  background:linear-gradient(135deg,#f1f4e9 0%,#fbfaf7 56%,#eef4e5 100%);
  position:relative;
  overflow:hidden;
}
.sustainability::before {
  content:"";
  position:absolute;
  width:620px;
  height:620px;
  border-radius:50%;
  right:-260px;
  bottom:-330px;
  background:radial-gradient(circle,rgba(131,198,42,.18),transparent 68%);
}
.sustainability-grid {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:clamp(60px,8vw,130px);
  align-items:start;
  position:relative;
  z-index:1;
}
.sustainability-heading { position:sticky; top:120px; }
.sustainability-heading h2 { font-size:clamp(42px,4.8vw,72px); }
.sustainability-points { display:flex; flex-wrap:wrap; gap:9px; margin-top:34px; }
.sustainability-points span {
  border:1px solid rgba(11,113,53,.2);
  border-radius:999px;
  padding:9px 13px;
  color:var(--green);
  background:rgba(255,255,255,.55);
  font-size:10px;
  letter-spacing:.07em;
  text-transform:uppercase;
  font-weight:600;
}
.sustainability-copy > p {
  color:#4f5351;
  font-size:clamp(17px,1.45vw,21px);
  line-height:1.85;
  font-weight:300;
}
.sustainability-copy sup { color:var(--green); font-weight:700; }
.technical-note {
  margin-top:38px;
  padding:25px 28px;
  border-left:3px solid var(--lime);
  background:rgba(255,255,255,.72);
  border-radius:0 18px 18px 0;
  color:#606461;
  font-size:13px;
  line-height:1.75;
}
.technical-note strong { color:var(--graphite); }

.contact-signature { margin-top:42px; }
.contact-signature img { width:min(290px,72%); height:auto; }

@media (max-width:1100px) {
  .editorial-grid { grid-auto-rows:240px; }
  .sustainability-grid { grid-template-columns:1fr; }
  .sustainability-heading { position:relative; top:auto; max-width:780px; }
  .layered-symbol-card { width:min(100%,520px); }
}

@media (max-width:760px) {
  .value-highlight { border-radius:22px; padding:16px 18px; }
  .editorial-grid { grid-template-columns:repeat(2,minmax(0,1fr)); grid-auto-rows:190px; }
  .tile-portrait { grid-row:span 2; }
  .tile-wide,.tile-full { grid-column:span 2; }
  .tile-full { min-height:220px; }
  .tile-link::before { opacity:1; transform:none; width:30px; height:30px; top:10px; right:10px; }
  .gallery-lightbox { grid-template-columns:52px minmax(0,1fr) 52px; padding:72px 0 22px; }
  .lightbox-figure { height:calc(100dvh - 110px); gap:12px; }
  .lightbox-figure img { border-radius:12px; }
  .lightbox-figure figcaption { flex-direction:column; gap:2px; font-size:10px; }
  .lightbox-nav { width:40px; height:40px; font-size:20px; }
  .lightbox-close { top:14px; right:14px; width:42px; height:42px; }
  .layered-symbol-card { width:min(88vw,430px); border-radius:24px; }
  .sustainability-grid { gap:44px; }
  .sustainability-copy > p { font-size:16px; line-height:1.75; }
  .technical-note { padding:21px 20px; font-size:12px; }
  .contact-signature img { width:min(260px,78%); }
}

@media (max-width:420px) {
  .editorial-grid { grid-auto-rows:165px; gap:7px; }
  .tile figcaption { left:12px; bottom:11px; font-size:10px; }
  .gallery-lightbox { grid-template-columns:44px minmax(0,1fr) 44px; }
  .lightbox-nav { width:36px; height:36px; }
}
.tile::after,
.tile figcaption { pointer-events:none; }


/* V1.8 — approved targeted corrections only */
.value-highlight {
  width: fit-content;
  max-width: min(980px, 100%);
  padding-inline: 30px;
}

.commitment-strip {
  padding: 34px 0 38px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.commitment-strip p {
  max-width: 1120px;
  margin: 0;
  color: #555a57;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
  font-weight: 300;
}

.shape-study--official-logo {
  padding: 24px;
}
.shape-study--official-logo img {
  position: relative;
  display: block;
  width: min(100%, 430px);
  max-height: 270px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(18px 28px 28px rgba(0,0,0,.22));
}

.contact-signature img {
  display: block;
  width: min(290px,72%);
  height: auto;
}

@media (min-width: 901px) {
  .value-highlight { white-space: nowrap; }
}

@media (max-width: 900px) {
  .value-highlight { white-space: normal; }
}

@media (max-width: 760px) {
  .value-highlight {
    width: 100%;
    max-width: 100%;
    padding: 16px 18px;
  }
  .commitment-strip { padding: 26px 0 30px; }
  .commitment-strip p { font-size: 15px; line-height: 1.7; }
  .shape-study--official-logo {
    min-height: 230px;
    padding: 26px 22px;
  }
  .shape-study--official-logo img {
    width: min(100%, 320px);
    max-height: 210px;
  }
  .contact-signature img { width: min(260px,78%); }
}

@media (max-width: 390px) {
  .shape-study--official-logo { min-height: 210px; }
  .shape-study--official-logo img { width: min(100%, 285px); }
}

/* V1.9 — requested refinements to section 05 and the PLA commitment */

/* Use the provided layered VERD3 mark beside “Forma. Camada. Matéria.” */
.shape-study--official-logo {
  padding: 14px 10px 8px;
  overflow: hidden;
}
.shape-study--official-logo img {
  width: auto;
  max-width: 100%;
  height: min(360px, 36vw);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(18px 26px 28px rgba(0,0,0,.22));
}

/* Keep the seal clear of “Feita para permanecer”. */
.about-stamp {
  width: 104px;
  height: 104px;
  right: -72px;
  bottom: 16px;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: .075em;
}

/* Integrate the approved PLA message with the texture section. */
.commitment-strip {
  position: relative;
  z-index: 3;
  padding: 0 0 82px;
  background: linear-gradient(180deg, #f3f5ee 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.commitment-strip .shell {
  position: relative;
  margin-top: -34px;
  padding: 34px 48px 36px 54px;
  overflow: hidden;
  border: 1px solid rgba(11,113,53,.16);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 65px rgba(4,58,34,.11);
}
.commitment-strip .shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--lime), var(--green));
}
.commitment-strip .shell::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -105px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,198,42,.18), rgba(131,198,42,0) 68%);
  pointer-events: none;
}
.commitment-strip p {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0;
  color: #444b47;
  font-size: clamp(17px,1.28vw,20px);
  line-height: 1.72;
  font-weight: 300;
}

@media (max-width: 1100px) {
  .shape-study--official-logo img {
    height: min(350px, 46vw);
  }
  .about-stamp {
    width: 96px;
    height: 96px;
    right: -18px;
    bottom: -58px;
    font-size: 8.5px;
  }
  .about-visual { margin-bottom: 40px; }
}

@media (max-width: 760px) {
  .shape-study--official-logo {
    min-height: 310px;
    padding: 8px 12px 0;
  }
  .shape-study--official-logo img {
    width: auto;
    height: min(300px, 78vw);
    max-height: 300px;
  }
  .about-stamp {
    width: 82px;
    height: 82px;
    right: 12px;
    top: 72px;
    bottom: auto;
    font-size: 7.2px;
  }
  .about-visual { margin-bottom: 0; }
  .commitment-strip {
    padding: 0 0 58px;
  }
  .commitment-strip .shell {
    margin-top: -24px;
    padding: 27px 23px 28px 30px;
    border-radius: 20px;
  }
  .commitment-strip .shell::before { width: 5px; }
  .commitment-strip .shell::after {
    width: 180px;
    height: 180px;
    right: -96px;
    top: -110px;
  }
  .commitment-strip p {
    font-size: 15px;
    line-height: 1.72;
  }
}

@media (max-width: 390px) {
  .shape-study--official-logo { min-height: 285px; }
  .shape-study--official-logo img {
    height: min(275px, 76vw);
    max-height: 275px;
  }
  .about-stamp {
    width: 76px;
    height: 76px;
    right: 10px;
    top: 68px;
    font-size: 6.7px;
  }
}

/* V1.10 — approved changes only: commitment placement and natural symbol integration */
.texture-copy {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.texture-copy__primary { position: relative; z-index: 2; }
.texture-copy__primary > p:last-child {
  max-width: 520px;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  font-weight: 300;
}
.texture-commitment {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 66px;
  width: min(35%, 470px);
  padding: 22px 24px 23px 27px;
  border-left: 3px solid var(--lime);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg,rgba(4,58,34,.84),rgba(4,58,34,.62));
  border-top: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.texture-commitment__label {
  display: block;
  margin-bottom: 10px;
  color: var(--lime-soft);
  font-size: 9px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .18em;
}
.texture-copy .texture-commitment p {
  max-width: none;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  line-height: 1.68;
  font-weight: 300;
}
.shape-study--official-logo {
  padding: 0;
  overflow: visible;
  background: transparent;
}
.shape-study--official-logo img {
  width: auto;
  max-width: 94%;
  height: min(370px, 37vw);
  max-height: 370px;
  object-fit: contain;
  filter: drop-shadow(18px 28px 30px rgba(0,0,0,.24));
}
@media (max-width: 1100px) {
  .texture-commitment {
    width: min(35%, 390px);
    bottom: 48px;
    padding: 18px 19px 19px 22px;
  }
  .texture-copy .texture-commitment p { font-size: 12px; line-height: 1.62; }
  .shape-study--official-logo img { height: min(350px, 46vw); }
}
@media (max-width: 760px) {
  .texture-section { min-height: auto; }
  .texture-copy {
    min-height: 660px;
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 52px;
  }
  .texture-copy__primary > p:last-child { font-size: 16px; }
  .texture-commitment {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 34px;
    padding: 20px 20px 21px 23px;
    border-radius: 0 16px 16px 0;
  }
  .texture-copy .texture-commitment p { font-size: 14px; line-height: 1.68; }
  .shape-study--official-logo {
    min-height: 310px;
    padding: 0;
  }
  .shape-study--official-logo img {
    width: auto;
    max-width: 92%;
    height: min(310px, 78vw);
    max-height: 310px;
  }
}
@media (max-width: 390px) {
  .texture-copy { min-height: 690px; padding-bottom: 44px; }
  .texture-commitment { padding: 18px 17px 19px 20px; }
  .texture-copy .texture-commitment p { font-size: 13px; }
  .shape-study--official-logo { min-height: 285px; }
  .shape-study--official-logo img {
    height: min(285px, 78vw);
    max-height: 285px;
  }
}


/* V1.11 — gallery polish, non-emoji UI icons and aligned five-step creative process */

/* CSS-drawn interface arrows: consistent across platforms and never rendered as emoji. */
.icon-arrow-up-right,
.icon-arrow-right,
.icon-chevron-left,
.icon-chevron-right,
.icon-close {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: currentColor;
}
.icon-arrow-up-right::before {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.icon-arrow-up-right::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 3px;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}
.icon-arrow-right::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 1px;
  width: 11px;
  height: 1.5px;
  background: currentColor;
}
.icon-arrow-right::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.icon-chevron-left::before,
.icon-chevron-right::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.icon-chevron-left::before { transform: rotate(-135deg); }
.icon-chevron-right::before { transform: rotate(45deg); }
.icon-close::before,
.icon-close::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 2px;
  height: 14px;
  background: currentColor;
  border-radius: 2px;
}
.icon-close::before { transform: rotate(45deg); }
.icon-close::after { transform: rotate(-45deg); }

/* Gallery zoom affordance drawn with CSS rather than a Unicode glyph. */
.tile-link::before { content: ""; }
.tile-link::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 24px;
  width: 12px;
  height: 12px;
  border: 0;
  background:
    linear-gradient(#fff,#fff) center / 10px 1.5px no-repeat,
    linear-gradient(#fff,#fff) center / 1.5px 10px no-repeat;
  opacity: 0;
  transform: translateY(5px);
  transition: .3s ease;
}
.tile:hover .tile-link::after,
.tile-link:focus-visible::after { opacity: 1; transform: none; }

/* Keep the product in the fifth tile in frame on desktop. */
.editorial-grid .tile:nth-child(5) img { object-position: center 72%; }

/* The lightbox image element now hugs the actual image dimensions, so every image
   receives the same visible rounded corners regardless of portrait/landscape ratio. */
.lightbox-figure { align-items: center; }
.lightbox-figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  place-self: center;
  border-radius: 18px;
  clip-path: inset(0 round 18px);
}
.lightbox-nav,
.lightbox-close { display: grid; place-items: center; padding: 0; }
.lightbox-nav .icon-chevron-left,
.lightbox-nav .icon-chevron-right { width: 15px; height: 15px; }
.lightbox-close .icon-close { width: 14px; height: 14px; }

/* Five evenly aligned pillars, including Personalização. */
.pillars { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.pillar {
  display: flex;
  flex-direction: column;
  padding-inline: 26px;
}
.pillar-icon {
  flex: 0 0 58px;
  margin-bottom: 38px;
}
.pillar h3 {
  display: flex;
  align-items: flex-start;
  min-height: 58px;
  margin-bottom: 14px;
}
.pillar p { margin-bottom: 0; }
.pillar.spark,
.pillar.ring { font-size: 0; }
.pillar-icon.spark::before,
.pillar-icon.spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--lime);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}
.pillar-icon.spark { position: relative; }
.pillar-icon.spark::before { width: 38px; height: 2px; }
.pillar-icon.spark::after { width: 2px; height: 38px; }
.pillar-icon.spark { transform: rotate(45deg); }
.pillar-icon.ring {
  width: 42px;
  height: 42px;
  margin-left: 8px;
  margin-top: 30px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px var(--green-dark), inset 0 0 0 9px var(--lime);
}
.pillar-icon.personalize {
  position: relative;
  width: 48px;
  height: 48px;
  margin-left: 5px;
  margin-top: 27px;
  border: 2px solid var(--lime);
  border-radius: 12px;
}
.pillar-icon.personalize::before,
.pillar-icon.personalize::after {
  content: "";
  position: absolute;
  background: var(--lime);
  border-radius: 50%;
}
.pillar-icon.personalize::before {
  width: 10px;
  height: 10px;
  left: 8px;
  top: 8px;
  box-shadow: 20px 20px 0 var(--lime);
}
.pillar-icon.personalize::after {
  width: 18px;
  height: 2px;
  right: 7px;
  top: 13px;
  transform: rotate(-35deg);
  border-radius: 2px;
}

@media (min-width: 761px) and (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .pillar,
  .pillar:nth-child(2),
  .pillar:nth-child(-n+2) {
    border-right: 1px solid rgba(255,255,255,.15);
    border-bottom: 0;
  }
  .pillar:last-child { border-right: 0; }
  .pillar { padding: 42px 17px 46px; }
  .pillar h3 { min-height: 52px; font-size: 16px; }
  .pillar p { font-size: 12px; }
}

@media (max-width: 760px) {
  /* Deliberate mobile collage: no empty column, balanced portrait and landscape cards. */
  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "organ organ"
      "support support"
      "accessories texture"
      "presence solutions"
      "collection collection";
    grid-auto-rows: auto;
    gap: 10px;
  }
  .editorial-grid .tile {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    height: auto;
  }
  .editorial-grid .tile:nth-child(1) { grid-area: organ; aspect-ratio: 16 / 10; }
  .editorial-grid .tile:nth-child(2) { grid-area: support; aspect-ratio: 16 / 9; }
  .editorial-grid .tile:nth-child(3) { grid-area: accessories; aspect-ratio: 4 / 5; }
  .editorial-grid .tile:nth-child(4) { grid-area: texture; aspect-ratio: 4 / 5; }
  .editorial-grid .tile:nth-child(5) { grid-area: presence; aspect-ratio: 4 / 5; }
  .editorial-grid .tile:nth-child(6) { grid-area: solutions; aspect-ratio: 4 / 5; }
  .editorial-grid .tile:nth-child(7) { grid-area: collection; aspect-ratio: 16 / 9; min-height: 0; }
  .editorial-grid .tile-link { position: absolute; inset: 0; }
  .editorial-grid .tile:nth-child(5) img { object-position: center 72%; }
  .tile-link::after { top: 19px; right: 19px; opacity: 1; transform: none; }

  .lightbox-figure img {
    max-height: calc(100dvh - 150px);
    border-radius: 14px;
    clip-path: inset(0 round 14px);
  }

  .pillars { grid-template-columns: 1fr; }
  .pillar h3 { min-height: 0; }
}

@media (max-width: 420px) {
  .editorial-grid { gap: 8px; }
  .tile-link::after { top: 17px; right: 17px; }
}

/* Keep every pillar title on the same baseline by reserving an identical icon row. */
.pillar-icon.ring,
.pillar-icon.personalize {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  margin: 22px 0 38px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.pillar-icon.ring::before,
.pillar-icon.ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 2px solid var(--lime);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.pillar-icon.ring::before { width: 40px; height: 40px; }
.pillar-icon.ring::after { width: 24px; height: 24px; }
.pillar-icon.personalize::before {
  width: 42px;
  height: 42px;
  left: 50%;
  top: 50%;
  border: 2px solid var(--lime);
  border-radius: 11px;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
}
.pillar-icon.personalize::after {
  width: 8px;
  height: 8px;
  right: auto;
  left: 15px;
  top: 15px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 20px 20px 0 var(--lime);
  transform: none;
}


/* V1.12 — restore the approved four-step process and replace the form with direct contact CTAs. */
.pillars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pillar h3 {
  min-height: 0;
}

.contact-options {
  min-height: 460px;
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  backdrop-filter: blur(12px);
}
.contact-options__eyebrow {
  margin: 0 0 18px;
  color: var(--lime-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}
.contact-options h3 {
  max-width: 650px;
  margin: 0 0 36px;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 400;
}
.contact-options__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-channel {
  min-width: 0;
  min-height: 138px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 12px 18px;
  align-items: end;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.contact-channel:hover,
.contact-channel:focus-visible {
  transform: translateY(-4px);
}
.contact-channel:focus-visible {
  outline: 2px solid var(--lime-soft);
  outline-offset: 3px;
}
.contact-channel--whatsapp {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--green-dark);
}
.contact-channel--whatsapp:hover,
.contact-channel--whatsapp:focus-visible {
  background: var(--lime-soft);
  border-color: var(--lime-soft);
}
.contact-channel--email {
  background: rgba(0,0,0,.12);
}
.contact-channel--email:hover,
.contact-channel--email:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.32);
}
.contact-channel__label {
  align-self: start;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
}
.contact-channel strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.25;
  font-weight: 500;
}
.contact-channel .icon-arrow-up-right {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  width: 18px;
  height: 18px;
}

@media (min-width: 761px) and (max-width: 1100px) {
  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pillar,
  .pillar:nth-child(2),
  .pillar:nth-child(-n+2) {
    border-right: 1px solid rgba(255,255,255,.15);
  }
  .pillar:nth-child(2n) {
    border-right: 0;
  }
  .pillar:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .contact-options {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .pillars {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    gap: 46px;
  }
  .contact-options {
    min-height: 0;
    padding: 28px 20px;
    border-radius: 24px;
  }
  .contact-options h3 {
    margin-bottom: 28px;
    font-size: clamp(28px, 9vw, 38px);
  }
  .contact-options__links {
    grid-template-columns: 1fr;
  }
  .contact-channel {
    min-height: 120px;
    padding: 21px 20px;
  }
  .contact-channel strong {
    font-size: 17px;
  }
}

/* V1.14 — remove every diagonal external-link/zoom arrow from desktop and mobile. */
.icon-arrow-up-right {
  display: none !important;
}

/* Gallery tiles remain clickable, but no diagonal arrow badge is displayed. */
.tile-link::before,
.tile-link::after {
  content: none !important;
  display: none !important;
}

/* Reclaim the arrow column in the contact cards after removing the icon. */
.contact-channel {
  grid-template-columns: minmax(0, 1fr);
}

/* V1.15 — approved process icons, Instagram navigation and refined planet commitment. */
.site-nav .instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  color: var(--green);
  flex: 0 0 auto;
}
.site-nav .instagram-link::after { display: none !important; }
.site-nav .instagram-link svg { width: 19px; height: 19px; display: block; }
.site-nav .instagram-link:hover { color: var(--lime); }

.pillar-icon.pillar-icon--asset {
  width: 84px;
  height: 76px;
  margin: 12px 0 30px;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}
.pillar-icon.pillar-icon--asset img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.pillar:nth-child(1) .pillar-icon--asset { width: 66px; }
.pillar:nth-child(2) .pillar-icon--asset { width: 82px; }
.pillar:nth-child(3) .pillar-icon--asset { width: 88px; }
.pillar:nth-child(4) .pillar-icon--asset { width: 86px; }

.texture-section {
  align-items: flex-start;
}
.texture-copy {
  min-height: 720px;
  display: block;
  padding-top: clamp(92px, 10vh, 126px);
  padding-bottom: 72px;
}
.texture-copy__primary {
  max-width: 720px;
}
.texture-copy__primary .section-index {
  margin-bottom: 30px;
}
.texture-copy__primary h2 {
  margin: 0 0 26px;
  max-width: 720px;
  font-size: clamp(52px, 5.8vw, 88px);
  line-height: .96;
  letter-spacing: -.045em;
}
.texture-copy .texture-commitment-text {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
  font-weight: 300;
}
.texture-commitment { display: none !important; }

@media (max-width: 760px) {
  .site-nav .instagram-link {
    width: 34px;
    height: 34px;
  }
  .site-nav .instagram-link svg { width: 25px; height: 25px; }
  .pillar-icon.pillar-icon--asset {
    width: 76px !important;
    height: 70px;
    margin: 4px 0 24px;
    overflow: visible;
  }
  .pillar:nth-child(1) .pillar-icon--asset { width: 62px !important; }
  .pillar:nth-child(2) .pillar-icon--asset { width: 74px !important; }
  .pillar:nth-child(3) .pillar-icon--asset,
  .pillar:nth-child(4) .pillar-icon--asset { width: 80px !important; }
  .texture-section { min-height: 620px; }
  .texture-copy {
    min-height: 620px;
    padding-top: 72px;
    padding-bottom: 58px;
  }
  .texture-copy__primary .section-index { margin-bottom: 22px; }
  .texture-copy__primary h2 {
    max-width: 360px;
    margin-bottom: 22px;
    font-size: clamp(42px, 12vw, 58px);
  }
  .texture-copy .texture-commitment-text {
    max-width: 380px;
    font-size: 15px;
    line-height: 1.62;
  }
}

/* V1.17 — mobile-only correction: keep the open navigation fully opaque and viewport-height. */
@media (max-width: 760px) {
  .site-nav {
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #ffffff !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@supports not (height: 100dvh) {
  @media (max-width: 760px) {
    .site-nav { height: 100vh !important; }
  }
}

/* V1.18 — Safari/iOS mobile menu: prevent the scrolled header's backdrop-filter
   from turning the fixed navigation into a clipped/translucent descendant. */
@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden !important;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    transform: none !important;
    contain: none !important;
    box-shadow: none !important;
  }

  body.menu-open .site-nav,
  .site-nav.is-open {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@supports not (height: 100dvh) {
  @media (max-width: 760px) {
    body.menu-open .site-nav,
    .site-nav.is-open {
      height: 100vh !important;
      min-height: 100vh !important;
      max-height: 100vh !important;
    }
  }
}
