:root {
  --bg:#f7f8f2;
  --text:#183b36;
  --muted:#5d6c65;
  --primary:#176451;
  --accent:#eac67b;
  --line:#dce2d8;
  --container:min(1200px,calc(100% - 96px));
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

body {
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:"DM Sans",sans-serif;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

body.lightbox-open {
  overflow:hidden;
}

h1,h2,h3,h4 {
  font-family:"Manrope",sans-serif;
  margin:0 0 20px;
  line-height:1.15;
  letter-spacing:-.045em;
}

h1 {
  font-size:clamp(44px,5.15vw,74px);
  font-weight:600;
}

h2 {
  font-size:clamp(32px,3.6vw,48px);
  font-weight:600;
}

h3 {
  font-size:22px;
  font-weight:650;
  letter-spacing:-.03em;
}

h4 {
  font-size:17px;
}

p {
  margin:0 0 20px;
}

em {
  font-style:normal;
  color:var(--primary);
}

a {
  color:inherit;
  text-decoration:none;
}

button,input,textarea,select {
  font:inherit;
}

button {
  cursor:pointer;
}

button,a,input,select,textarea,summary {
  touch-action:manipulation;
}

button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible {
  outline:3px solid #c5792e;
  outline-offset:5px;
}

ul {
  padding:0;
  margin:0;
  list-style:none;
}

figure {
  margin:0;
}

img {
  display:block;
  max-width:100%;
}

svg {
  width:24px;
  height:24px;
  flex-shrink:0;
}

[hidden] {
  display:none!important;
}

.container {
  width:var(--container);
  margin:0 auto;
}

.section {
  padding:96px 0;
}

.section-light {
  background:#eef1e8;
}

.section-head {
  max-width:740px;
  margin-bottom:40px;
}

.section-head p:not(.eyebrow),.section-copy>p:not(.eyebrow) {
  color:var(--muted);
  font-size:17px;
  max-width:620px;
}

.eyebrow,.nge-eyebrow {
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:11px;
  font-weight:700;
  margin-bottom:20px;
}

.eyebrow::before {
  content:"";
  width:20px;
  height:1px;
  background:currentColor;
}

.sr-only,.hp-field {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip-path:inset(50%);
  white-space:nowrap;
  border:0;
}

.skip-link {
  position:fixed;
  top:10px;
  left:20px;
  padding:12px 22px;
  color:white;
  background:var(--text);
  transform:translateY(-160%);
  z-index:100;
}

.skip-link:focus {
  transform:none;
}

.scroll-progress {
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:var(--primary);
  transform:scaleX(0);
  transform-origin:left;
  z-index:90;
}

.site-header {
  position:sticky;
  top:0;
  background:rgba(247,248,242,.97);
  z-index:40;
  border-bottom:1px solid var(--line);
}

.header-wrap {
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand {
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-logo {
  width:43px;
  height:48px;
  object-fit:contain;
}

.brand-text {
  line-height:1.2;
}

.brand-text strong {
  display:block;
  font-size:18px;
  letter-spacing:-.04em;
}

.brand-text small {
  display:block;
  margin-top:5px;
  text-transform:uppercase;
  letter-spacing:.25em;
  font-size:9px;
}

.nav-links {
  display:flex;
  align-items:center;
  gap:25px;
}

.nav-links a {
  font-size:12px;
  font-weight:600;
}

.nav-links a:hover {
  color:var(--primary);
  text-decoration:underline;
  text-underline-offset:6px;
}

.nav-links .nav-cta {
  display:flex;
  align-items:center;
  gap:20px;
  padding:12px 20px;
  background:var(--text);
  border-radius:7px;
  color:white;
}

.nav-links .nav-cta:hover {
  background:var(--primary);
  color:white;
  text-decoration:none;
}

.menu-toggle {
  display:none;
  width:44px;
  height:44px;
  background:none;
  border:1px solid var(--line);
  border-radius:8px;
  padding:11px;
}

.menu-toggle span {
  display:block;
  height:2px;
  background:var(--text);
  margin:4px 0;
}

.hero {
  padding-top:60px;
  overflow:clip;
}

.hero-grid {
  display:grid;
  grid-template-columns:1.03fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-copy {
  padding:15px 0 20px;
}

.hero .eyebrow::before {
  display:none;
}

.status-dot {
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 0 4px #e3eadd;
}

.hero h1 {
  line-height:1.08;
  margin-bottom:27px;
}

.hero h1 em {
  color:#658271;
}

.hero .lead {
  max-width:470px;
  font-size:17px;
  line-height:1.8;
  color:var(--muted);
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  margin-top:30px;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:23px;
  min-height:52px;
  padding:14px 22px;
  border:1px solid transparent;
  border-radius:7px;
  font-size:13px;
  font-weight:600;
  line-height:1.5;
  transition:background .2s,transform .2s;
}

.btn:hover {
  transform:translateY(-2px);
}

.btn-primary {
  background:var(--primary);
  color:#fff;
}

.btn-primary:hover {
  background:#104a3c;
}

.btn-outline {
  border-color:#b3c3b6;
  color:var(--text);
  background:transparent;
}

.btn-outline:hover {
  background:#edf1e8;
}

.hero-explore {
  display:flex;
  align-items:center;
  gap:14px;
  font-size:12px;
  font-weight:600;
  padding:10px 0;
}

.hero-explore:hover {
  text-decoration:underline;
  text-underline-offset:4px;
}

.hero-footnote {
  color:var(--muted);
  margin:26px 0 0;
  font-size:12px;
}

.hero-footnote span {
  margin-right:7px;
  color:var(--primary);
}

.hero-visual {
  position:relative;
  height:534px;
  margin-bottom:24px;
}

.hero-visual-main {
  height:100%;
  border-radius:15px 100px 15px 15px;
  overflow:hidden;
  position:relative;
  background:#bac9bc;
}

.hero-visual-main::after {
  content:"";
  position:absolute;
  inset:55% 0 0;
  background:linear-gradient(transparent,rgba(16,36,29,.6));
  pointer-events:none;
}

.hero-visual-main img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:45% center;
}

.hero-visual-main figcaption {
  position:absolute;
  bottom:12px;
  left:20px;
  right:14px;
  color:white;
  font-size:9px;
  z-index:1;
}

.hero-photo-label {
  position:absolute;
  left:22px;
  top:24px;
  background:var(--bg);
  color:var(--text);
  border-radius:30px;
  padding:9px 16px;
  font-size:11px;
  display:flex;
  gap:12px;
  align-items:center;
}

.hero-photo-label>span {
  color:var(--primary);
  font-size:18px;
}

.hero-product-note {
  display:flex;
  gap:18px;
  align-items:center;
  position:absolute;
  bottom:46px;
  left:-32px;
  padding:20px;
  background:#fff;
  box-shadow:0 14px 30px #132e2518;
  border-radius:10px;
  transition:transform .2s;
}

.hero-product-note:hover {
  transform:translateY(-4px);
}

.hero-product-note img {
  width:108px;
  height:108px;
  object-fit:contain;
  padding:7px;
  box-sizing:border-box;
  flex:0 0 auto;
  border-radius:6px;
  background:#f2f3ec;
}

.hero-product-note small {
  font-size:8px;
  font-weight:700;
  letter-spacing:.12em;
}

.hero-product-note strong {
  display:block;
  font-family:"Manrope",sans-serif;
  font-weight:650;
  font-size:21px;
  line-height:1.2;
  margin:8px 0;
  letter-spacing:-.03em;
}

.note-link {
  font-size:10px;
  color:var(--primary);
}

.hero-orbit {
  position:absolute;
  right:-22px;
  bottom:-23px;
  display:grid;
  place-items:center;
  background:var(--accent);
  height:76px;
  width:76px;
  border-radius:50%;
  font-size:52px;
  font-weight:400;
  line-height:1;
}

.trust-strip {
  display:grid;
  grid-template-columns:1.05fr 1fr 1fr 1.15fr;
  gap:25px;
  border-top:1px solid var(--line);
  margin-top:52px;
  padding:30px 0;
  align-items:center;
}

.trust-strip p {
  margin:0;
  font-size:12px;
  color:var(--muted);
  line-height:1.6;
}

.trust-strip p strong {
  color:var(--text);
  font-weight:500;
}

.trust-strip>span {
  display:flex;
  align-items:center;
  gap:13px;
  font-size:13px;
  font-weight:500;
}

.trust-strip b {
  display:grid;
  place-items:center;
  width:33px;
  height:33px;
  flex-shrink:0;
  border:1px solid #c6d2c4;
  border-radius:50%;
  font-size:10px;
  font-weight:400;
  color:var(--primary);
}

.solution-finder {
  background:var(--text);
  color:#fff;
  padding:64px 0;
}

.finder-layout {
  display:grid;
  grid-template-columns:.8fr 1.6fr;
  gap:64px;
  align-items:center;
}

.finder-layout h2 {
  font-size:36px;
}

.finder-layout>div>p:last-child {
  color:#b9cdc2;
  font-size:14px;
  margin:0;
}

.solution-finder .eyebrow {
  color:#c5d9bd;
  font-size:10px;
}

.finder-options {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.finder-option {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-radius:7px;
  border:1px solid #597267;
  background:transparent;
  color:#fff;
  text-align:left;
  padding:17px 16px;
  font-size:12px;
  font-weight:500;
}

.finder-option>span:first-child {
  opacity:.6;
  font-size:10px;
}

.finder-option>span:last-child {
  margin-left:auto;
}

.finder-option[aria-pressed="true"],.finder-option:hover {
  color:var(--text);
  background:#e3eccf;
  border-color:#e3eccf;
}

.finder-result {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:25px;
  padding:23px 0 0;
  min-height:120px;
}

.finder-result h3 {
  font-size:17px;
  letter-spacing:-.02em;
  margin:0 0 8px;
}

.finder-result p {
  font-size:12px;
  color:#c4d3cb;
  margin:0;
  max-width:400px;
}

.finder-result a {
  color:#ead098;
  font-size:12px;
  flex-shrink:0;
  padding-top:3px;
  border-bottom:1px solid #6a7763;
}

.card-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.service-card,.product-card {
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  background:white;
  display:flex;
  flex-direction:column;
  transition:box-shadow .2s;
}

.service-card:hover,.product-card:hover {
  box-shadow:0 12px 24px #213d3410;
}

.card-cover {
  position:relative;
  height:215px;
  overflow:hidden;
  background:#e8ece3;
}

.card-cover img {
  height:100%;
  width:100%;
  object-fit:cover;
  transition:transform .4s;
}

.service-card:hover .card-cover img {
  transform:scale(1.035);
}

.card-cover--engineering img {
  object-position:center 35%;
}

.card-body {
  padding:26px;
  display:flex;
  flex-direction:column;
  flex:1;
  align-items:flex-start;
}

.card-body h3 {
  font-size:22px;
  margin-bottom:14px;
}

.card-body>p {
  font-size:14px;
  color:var(--muted);
  line-height:1.75;
}

.service-number {
  font-size:9px;
  letter-spacing:.14em;
  font-weight:600;
  color:var(--primary);
  margin-bottom:14px;
}

.more {
  margin:0 0 16px;
  width:100%;
  font-size:13px;
}

.more summary,.nge-more summary {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:10px 0;
  cursor:pointer;
  color:var(--primary);
  list-style:none;
}

summary::-webkit-details-marker {
  display:none;
}

.more summary::after,.nge-more summary::after {
  content:"+";
  font-size:20px;
  font-weight:400;
}

details[open]>summary::after {
  content:"−";
}

.more__body {
  color:var(--muted);
  padding-top:10px;
}

.more__body p {
  margin-bottom:12px;
}

.text-link {
  display:inline-flex;
  gap:24px;
  align-items:center;
  font-size:13px;
  font-weight:600;
  padding-bottom:4px;
  border-bottom:1px solid #afbfaf;
}

.text-link:hover {
  color:var(--primary);
  border-color:var(--primary);
}

.service-link {
  margin-top:auto;
  width:100%;
  justify-content:space-between;
  border-bottom:0;
  border-top:1px solid var(--line);
  padding-top:17px;
}

.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:75px;
  align-items:center;
}

.about-photo {
  position:relative;
  border-radius:12px;
  overflow:hidden;
}

.about-photo img {
  height:500px;
  width:100%;
  object-fit:cover;
  object-position:45% center;
}

.about-photo figcaption {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:24px;
  background:linear-gradient(transparent,#142b23db);
  color:#fff;
  font-size:13px;
}

.about-values {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin:28px 0;
  padding-top:24px;
  border-top:1px solid #c9d3c5;
}

.about-values strong {
  display:block;
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
}

.about-values span {
  display:block;
  color:var(--muted);
  font-size:12px;
}

.section-band {
  background:#e9eddf;
}

#proyectos {
  background:var(--bg);
}

.steps {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:32px;
}

.step {
  border-top:1px solid #bac9b8;
  padding-top:24px;
}

.step-head span {
  display:block;
  font-family:"Manrope",sans-serif;
  font-size:44px;
  color:#66856e;
  line-height:1;
  margin-bottom:30px;
  letter-spacing:-.05em;
}

.step .card-body {
  padding:0;
}

.step h3 {
  font-size:19px;
}

.step p {
  margin:0;
  font-size:13px;
}

#productos {
  padding-top:20px;
}

.product-card .card-cover {
  height:280px;
  padding:26px;
  background:#e9eddf;
}

.product-card .card-cover img {
  object-fit:contain;
  mix-blend-mode:multiply;
}

.product-tag {
  position:absolute;
  top:14px;
  left:14px;
  padding:5px 10px;
  background:#fff;
  color:var(--text);
  font-size:9px;
  border-radius:4px;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.product-price strong {
  color:var(--text);
  font-size:24px;
}

.product-price span {
  font-size:10px;
  display:inline-block;
}

.product-card .text-link {
  margin-top:auto;
}

#destacado {
  padding:55px 0;
  background:#e5eacb;
}

.feature-product {
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1fr);
  gap:65px;
  align-items:center;
  max-width:1080px;
}

.feature-product__media {
  width:min(100%, 420px);
  justify-self:center;
}

.feature-product__media .lightbox-trigger {
  cursor:zoom-in;
}

.feature-product__media figcaption {
  margin-top:10px;
  text-align:center;
  color:var(--primary);
  font-size:12px;
}

.feature-product__media img {
  height:auto;
  width:100%;
  object-fit:contain;
}

.feature-product__copy h2 {
  font-size:34px;
}

.feature-product__copy .lead {
  color:#4f634e;
  font-size:14px;
}

.feature-points {
  display:flex;
  gap:8px 20px;
  flex-wrap:wrap;
  font-size:12px;
}

.feature-points li::before {
  content:"✓";
  margin-right:6px;
  color:var(--primary);
}

.feature-product .hero-actions {
  margin-top:22px;
}

.gallery-filters {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:-10px 0 30px;
}

.gallery-filters button {
  padding:10px 19px;
  border:1px solid #bac8b6;
  border-radius:30px;
  background:transparent;
  color:var(--text);
  font-size:12px;
}

.gallery-filters button[aria-pressed="true"],.gallery-filters button:hover {
  background:var(--text);
  border-color:var(--text);
  color:#fff;
}

.field-gallery {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:30px 24px;
}

.gallery-shot {
  min-width:0;
}

.gallery-shot[hidden] {
  display:none;
}

.lightbox-trigger {
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:#d4ddce;
  position:relative;
  overflow:hidden;
  border-radius:8px;
}

.gallery-shot img {
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .4s;
}

.gallery-shot .lightbox-trigger:hover img {
  transform:scale(1.04);
}

.gallery-zoom {
  display:grid;
  place-items:center;
  background:#fff;
  width:34px;
  height:34px;
  border-radius:50%;
  position:absolute;
  right:12px;
  bottom:12px;
  color:var(--text);
}

.gallery-shot figcaption {
  padding-top:15px;
}

.gallery-shot figcaption span {
  text-transform:uppercase;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.12em;
  display:block;
  margin-bottom:5px;
}

.gallery-shot figcaption strong {
  font-size:15px;
  font-weight:500;
}

.nge-electric {
  color:#f4f5e9;
  background:#203e36;
}

.nge-head {
  max-width:780px;
}

.nge-eyebrow {
  color:#ddca94;
}

.nge-wordmark {
  font-size:clamp(40px,6vw,74px);
}

.nge-tagline {
  font-size:20px;
  margin-bottom:10px;
}

.nge-subtitle {
  color:#c3d0c3;
  font-size:15px;
}

.nge-subbrand {
  font-size:11px;
  color:#bbccba;
}

.nge-pillars {
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  border-top:1px solid #4e685c;
  border-bottom:1px solid #4e685c;
  padding:24px 0;
  margin:32px 0;
}

.nge-pillar {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:12px;
  flex:1;
}

.nge-pillar__icon {
  display:flex;
  color:#e2c988;
}

.nge-services {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:25px;
}

.nge-card {
  padding:24px;
  border:1px solid #4e685c;
  border-radius:9px;
}

.nge-card__num {
  font-size:12px;
  color:#e2c988;
  margin-bottom:24px;
}

.nge-card__title {
  font-size:21px;
}

.nge-card__teaser,.nge-more__body {
  color:#c6d1c5;
  font-size:13px;
}

.nge-more summary {
  font-size:12px;
  color:#ebd699;
}

.nge-list {
  padding-left:15px;
  list-style:disc;
}

.nge-list li {
  margin:8px 0;
}

.nge-subblock {
  margin-top:22px;
}

.nge-subblock__title {
  color:#fff;
  margin-bottom:10px;
}

.nge-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  margin-top:32px;
}

.nge-trust {
  display:flex;
  align-items:center;
  gap:16px;
  font-size:11px;
  color:#c6d1c5;
  margin:0;
  max-width:610px;
}

.nge-trust__badge {
  display:flex;
}

.nge-btn {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  flex-shrink:0;
  padding:14px 20px;
  color:var(--text);
  background:#e9cf8f;
  border-radius:6px;
  font-size:12px;
  font-weight:600;
}

#faq>.container {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
}

.faq-item {
  border-bottom:1px solid #cdd8c7;
}

.faq-item:first-child {
  border-top:1px solid #cdd8c7;
}

.faq-item summary {
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  font-size:14px;
  font-weight:500;
  padding:22px 0;
}

.faq-item summary::after {
  content:"+";
  font-size:24px;
  flex-shrink:0;
  color:var(--primary);
}

.faq-item__body {
  color:var(--muted);
  font-size:14px;
  padding-right:25px;
}

.quote-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

.hero-badges {
  margin:28px 0;
  font-size:12px;
  color:var(--text);
  display:grid;
  gap:10px;
}

.hero-badges li::before {
  content:"✓";
  display:inline-block;
  margin-right:10px;
  color:var(--primary);
}

.contact-card {
  padding-top:25px;
  border-top:1px solid #c6d1bf;
}

.contact-card p {
  font-size:13px;
  margin:8px 0;
}

.contact-card a {
  text-decoration:underline;
  text-underline-offset:4px;
}

.quote-form {
  position:relative;
  background:white;
  padding:35px;
  border-radius:12px;
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
}

.form-heading h3 {
  margin-bottom:8px;
}

.form-heading p {
  font-size:11px;
  color:var(--muted);
  margin-bottom:25px;
}

.quote-form label {
  font-size:12px;
  font-weight:500;
  margin-bottom:6px;
}

.quote-form input,.quote-form select,.quote-form textarea {
  width:100%;
  min-width:0;
  border:1px solid #ccd6c7;
  background:#fafbf7;
  color:var(--text);
  border-radius:5px;
  padding:11px 12px;
  font-size:14px;
  margin-bottom:16px;
}

.quote-form textarea {
  resize:vertical;
}

.quote-form input::placeholder,.quote-form textarea::placeholder {
  color:#747f73;
}

.form-actions {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:5px;
}

.form-actions .btn {
  flex:1;
  font-size:12px;
  padding:12px;
}

.form-note {
  font-size:12px;
  color:var(--muted);
  margin:12px 0 0;
}

.form-note:empty {
  display:none;
}

.form-note[data-state="error"] {
  color:#a43727;
}

.form-note[data-state="success"] {
  color:var(--primary);
}

button:disabled {
  opacity:.6;
  cursor:wait;
}

.wa-fab {
  position:fixed;
  right:22px;
  bottom:22px;
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  background:#176451;
  color:#fff;
  border:1px solid #edf2e1;
  border-radius:50%;
  box-shadow:0 4px 14px #12382b25;
  z-index:30;
}

.wa-fab:hover {
  background:#104a3c;
}

.wa-fab__icon {
  width:29px;
  height:29px;
}

.site-footer {
  padding:65px 0 0;
  background:#152e28;
  color:#dce5d7;
}

.footer-grid {
  display:grid;
  grid-template-columns:1.5fr .75fr 1fr;
  gap:60px;
}

.footer-grid h2 {
  font-size:27px;
  color:#fff;
}

.footer-grid h3 {
  font-size:13px;
  color:#fff;
  letter-spacing:0;
}

.footer-grid p,.footer-grid ul {
  font-size:12px;
  line-height:2;
}

.footer-grid p {
  max-width:300px;
}

.footer-grid a:hover {
  text-decoration:underline;
  text-underline-offset:4px;
}

.footer-bottom {
  margin-top:45px;
  border-top:1px solid #3b5347;
  padding:24px 0 35px;
}

.footer-bottom p {
  margin:0;
  font-size:10px;
  color:#b6c7b5;
}

.photo-lightbox {
  border:0;
  border-radius:12px;
  padding:20px;
  width:min(1000px,94vw);
  max-height:94dvh;
  background:#132e27;
  color:white;
}

.photo-lightbox::backdrop {
  background:#0d1914df;
}

.photo-lightbox__frame {
  position:relative;
}

.photo-lightbox__close {
  position:absolute;
  top:8px;
  right:8px;
  border:0;
  width:42px;
  height:42px;
  border-radius:50%;
  background:white;
  color:var(--text);
  font-size:26px;
  z-index:1;
}

.photo-lightbox__image {
  width:100%;
  height:min(72dvh,760px);
  object-fit:contain;
}

.photo-lightbox__caption {
  margin:16px 0 0;
  text-align:center;
  font-size:13px;
}

@media(min-width:1500px) {
  .hero-grid {
    gap:75px;
  }
}

@media(max-width:1100px) {
  :root {
    --container:calc(100% - 64px);
  }
  .nav-links {
    gap:16px;
  }
  .nav-links a {
    font-size:11px;
  }
  .hero-grid {
    gap:35px;
  }
  .hero-visual {
    height:480px;
  }
  .hero-product-note {
    left:-18px;
  }
  .hero-actions {
    gap:15px;
  }
  .hero-explore {
    font-size:11px;
  }
  .hero .btn {
    font-size:12px;
    padding:14px 17px;
    gap:15px;
  }
  .finder-layout,.quote-layout,.about-grid,#faq>.container {
    gap:38px;
  }
  .finder-result {
    display:block;
  }
  .finder-result a {
    display:inline-block;
    margin-top:12px;
  }
  .nge-footer {
    gap:24px;
  }
  .card-body {
    padding:22px;
  }
}

@media(max-width:900px) {
  .header-wrap {
    min-height:76px;
  }
  .menu-toggle {
    display:block;
  }
  .main-nav {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    padding:18px 32px 26px;
    border-bottom:1px solid var(--line);
    background:var(--bg);
    box-shadow:0 15px 20px #142b2310;
  }
  .main-nav.open {
    display:block;
  }
  .nav-links {
    align-items:stretch;
    flex-direction:column;
    gap:0;
  }
  .nav-links a {
    display:block;
    padding:12px 0;
    font-size:15px;
  }
  .nav-links .nav-cta {
    margin-top:10px;
    justify-content:space-between;
  }
  .hero {
    padding-top:36px;
  }
  .hero h1 {
    font-size:46px;
  }
  .hero .lead {
    font-size:15px;
  }
  .hero-visual {
    height:460px;
  }
  .hero-product-note {
    padding:15px;
    gap:10px;
    left:-12px;
  }
  .hero-product-note img {
    width:78px;
    height:78px;
    padding:5px;
  }
  .hero-product-note strong {
    font-size:18px;
  }
  .hero-orbit {
    width:55px;
    height:55px;
    right:-12px;
    font-size:40px;
  }
  .hero-actions {
    gap:8px 20px;
  }
  .hero-footnote {
    font-size:11px;
  }
  .trust-strip {
    gap:20px;
    grid-template-columns:1fr 1fr;
  }
  .section {
    padding:70px 0;
  }
  .finder-layout {
    grid-template-columns:1fr;
    gap:26px;
  }
  .finder-layout h2 br {
    display:none;
  }
  .finder-layout h2 {
    margin-bottom:12px;
  }
  .finder-result {
    display:flex;
    min-height:90px;
  }
  .finder-result a {
    margin-top:0;
  }
  .card-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
  }
  .products-grid {
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
  }
  .product-card .card-body {
    padding:18px;
  }
  .product-card h3 {
    font-size:18px;
  }
  .product-card .card-cover {
    height:220px;
    padding:18px;
  }
  .about-grid {
    gap:30px;
  }
  .about-photo img {
    height:530px;
  }
  .about-values {
    grid-template-columns:1fr;
    gap:15px;
  }
  .steps {
    gap:22px;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .step-head span {
    margin-bottom:20px;
  }
  .field-gallery {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .nge-services {
    gap:14px;
  }
  .nge-card {
    padding:18px;
  }
  .nge-card__title {
    font-size:18px;
  }
  .nge-pillars {
    gap:20px;
  }
  .nge-pillar {
    flex-basis:40%;
  }
  .nge-footer {
    align-items:flex-start;
    flex-direction:column;
  }
  #faq>.container {
    grid-template-columns:1fr;
    gap:0;
  }
  #faq .section-head {
    max-width:480px;
  }
  .quote-layout {
    gap:30px;
  }
  .quote-form {
    padding:25px;
  }
  .form-actions {
    flex-direction:column;
  }
  .footer-grid {
    gap:30px;
    grid-template-columns:1.2fr .8fr 1fr;
  }
}

@media(max-width:650px) {
  :root {
    --container:calc(100% - 40px);
  }
  html {
    scroll-padding-top:88px;
  }
  .header-wrap {
    min-height:72px;
  }
  .brand-logo {
    width:36px;
    height:42px;
  }
  .brand-text strong {
    font-size:17px;
  }
  .brand-text small {
    font-size:8px;
  }
  .main-nav {
    padding:10px 20px 22px;
  }
  .hero {
    padding-top:30px;
  }
  .hero-grid {
    grid-template-columns:1fr;
    gap:28px;
  }
  .hero-copy {
    padding:0;
  }
  .hero h1 {
    font-size:clamp(42px,11.7vw,66px);
    margin-bottom:20px;
  }
  .hero .eyebrow {
    font-size:10px;
    margin-bottom:20px;
  }
  .hero .lead {
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
  }
  .hero-actions {
    margin-top:22px;
    gap:15px;
  }
  .hero .btn {
    padding:14px 16px;
    gap:15px;
  }
  .hero-explore {
    font-size:11px;
    gap:8px;
  }
  .hero-footnote {
    margin-top:18px;
  }
  .hero-visual {
    height:370px;
    margin:0 0 18px 8px;
  }
  .hero-visual-main {
    border-radius:12px 70px 12px 12px;
  }
  .hero-visual-main img {
    object-position:center 58%;
  }
  .hero-photo-label {
    top:16px;
    left:15px;
    font-size:10px;
    padding:6px 13px;
  }
  .hero-product-note {
    bottom:35px;
    left:-8px;
    padding:13px 18px 13px 13px;
  }
  .hero-product-note strong {
    font-size:19px;
  }
  .hero-visual-main figcaption {
    font-size:8px;
    left:12px;
  }
  .hero-orbit {
    right:-5px;
    bottom:-18px;
  }
  .trust-strip {
    margin-top:20px;
    gap:22px 15px;
    padding:25px 0 32px;
  }
  .trust-strip>span {
    font-size:11px;
    gap:8px;
  }
  .trust-strip b {
    width:26px;
    height:26px;
    font-size:9px;
  }
  .trust-strip p {
    font-size:11px;
  }
  .section {
    padding:58px 0;
  }
  h2 {
    font-size:34px;
  }
  .section-head {
    margin-bottom:28px;
  }
  .eyebrow {
    font-size:9px;
    letter-spacing:.12em;
    margin-bottom:16px;
  }
  .section-head p:not(.eyebrow),.section-copy>p:not(.eyebrow) {
    font-size:15px;
  }
  .finder-layout {
    gap:24px;
  }
  .finder-layout h2 {
    font-size:30px;
  }
  .finder-options {
    gap:8px;
  }
  .finder-option {
    font-size:11px;
    gap:7px;
    padding:13px 10px;
    min-height:66px;
  }
  .finder-option>span:first-child {
    display:none;
  }
  .finder-result {
    display:block;
    padding-top:20px;
  }
  .finder-result a {
    margin-top:16px;
  }
  .finder-result h3 {
    font-size:18px;
  }
  .finder-result p {
    font-size:13px;
  }
  .card-grid,.products-grid {
    grid-template-columns:1fr;
    gap:22px;
  }
  .card-cover {
    height:225px;
  }
  .card-body,.product-card .card-body {
    padding:25px;
  }
  .card-body h3,.product-card h3 {
    font-size:24px;
  }
  .card-body>p {
    font-size:14px;
  }
  .product-card .card-cover {
    height:280px;
    padding:24px;
  }
  .about-grid {
    grid-template-columns:1fr;
    gap:32px;
  }
  .about-photo img {
    height:330px;
  }
  .about-values {
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .steps {
    gap:30px 20px;
  }
  .step-head span {
    font-size:36px;
  }
  .step h3 {
    font-size:18px;
  }
  .step p {
    font-size:12px;
  }
  #productos {
    padding-top:10px;
  }
  .feature-product {
    grid-template-columns:1fr;
    gap:30px;
  }
  .feature-product__media {
    width:min(100%, 360px);
  }
  .feature-product__copy h2 {
    font-size:30px;
  }
  .field-gallery {
    gap:22px 12px;
  }
  .gallery-shot img {
    height:190px;
  }
  .gallery-shot figcaption strong {
    font-size:13px;
    line-height:1.4;
    display:block;
  }
  .gallery-shot figcaption span {
    font-size:8px;
  }
  .gallery-filters {
    gap:8px;
    margin-top:0;
  }
  .gallery-filters button {
    font-size:11px;
    padding:9px 14px;
  }
  .nge-wordmark {
    font-size:43px;
  }
  .nge-tagline {
    font-size:18px;
  }
  .nge-services {
    grid-template-columns:1fr;
    gap:18px;
  }
  .nge-card {
    padding:24px;
  }
  .nge-card__title {
    font-size:23px;
  }
  .nge-card__num {
    margin-bottom:16px;
  }
  .nge-pillar {
    font-size:11px;
    gap:8px;
  }
  .nge-btn {
    width:100%;
  }
  .faq-item summary {
    font-size:14px;
    padding:20px 0;
  }
  .quote-layout {
    grid-template-columns:1fr;
    gap:30px;
  }
  .quote-form {
    padding:23px;
  }
  .quote-form input,.quote-form select,.quote-form textarea {
    font-size:16px;
  }
  .quote-form label {
    font-size:12px;
  }
  .form-actions .btn {
    font-size:13px;
  }
  .wa-fab {
    right:13px;
    bottom:13px;
    height:48px;
    width:48px;
  }
  .site-footer {
    padding-top:45px;
  }
  .footer-grid {
    grid-template-columns:1fr 1fr;
    gap:28px 20px;
  }
  .footer-grid>div:first-child {
    grid-column:1 / -1;
  }
  .footer-grid>div:last-child {
    overflow-wrap:anywhere;
  }
  .footer-grid p {
    margin-bottom:0;
  }
  .footer-bottom {
    margin-top:30px;
    padding-bottom:70px;
  }
  .photo-lightbox {
    padding:12px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
}

/* Progressive navigation: links remain available if JavaScript is unavailable. */
.faq-item[open] > summary::after {
  content: "−";
}

@media (max-width: 900px) {
  html:not(.menu-ready) .header-wrap {
    flex-wrap: wrap;
    padding-top: 12px;
  }
  html:not(.menu-ready) .menu-toggle {
    display: none;
  }
  html:not(.menu-ready) .main-nav {
    display: block;
    position: static;
    padding: 0 0 18px;
    width: 100%;
    box-shadow: none;
  }
}
