
:root {
  --forest:     #0C0B09;
  --forest-2:   #141310;
  --forest-3:   #1C1A16;
  --green:      #F0911A;
  --green-lt:   #F5A840;
  --green-dim:  #C47C1A;
  --earth:      #6B7A8D;
  --earth-lt:   #8B9BB4;
  --snow:       #C8CCD4;
  --text:       #F0EDE8;
  --text-dim:   #9E9890;
  --text-muted: #5C5650;
  --bg-card:    rgba(28,26,22,0.75);
  --border:     rgba(240,145,26,0.10);
  --border-h:   rgba(240,145,26,0.24);
  --glow:       0 8px 32px rgba(240,145,26,0.20);
  --font-display:'Barlow',sans-serif;
  --font-body:   'Barlow',sans-serif;
  --sp-1:.25rem;--sp-2:.5rem;--sp-3:.75rem;--sp-4:1rem;--sp-5:1.25rem;
  --sp-6:1.5rem;--sp-8:2rem;--sp-10:2.5rem;--sp-12:3rem;--sp-16:4rem;
  --sp-20:5rem;--sp-24:6rem;
  --radius:8px;--radius-lg:12px;--radius-xl:16px;
  --transition:0.2s ease;--ease:cubic-bezier(0.4,0,0.2,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{font-size:16px;scroll-behavior:smooth;}
body{background:var(--forest);color:var(--text);font-family:var(--font-body);line-height:1.6;overflow-x:hidden;}
a{color:inherit;text-decoration:none;}
img,svg{display:block;max-width:100%;}
button{cursor:pointer;border:none;background:none;font-family:inherit;}
ul,ol{list-style:none;}
input,textarea,select{font-family:inherit;}
.skip-link{position:absolute;top:-100%;left:1rem;background:var(--green);
  color:#0C0B09;padding:.5rem 1rem;border-radius:0 0 8px 8px;font-weight:700;z-index:9999;transition:top .2s;}
.skip-link:focus{top:0;}
:focus-visible{outline:2px solid var(--green-lt);outline-offset:3px;border-radius:4px;}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem;}
.container--narrow{max-width:820px;margin:0 auto;padding:0 1.5rem;}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.45rem;font-family:var(--font-display);
  font-weight:700;font-size:.875rem;padding:.7rem 1.5rem;border-radius:var(--radius);
  border:2px solid transparent;cursor:pointer;text-decoration:none;
  transition:all var(--transition);white-space:nowrap;}
.btn--primary{background:var(--green);color:#0C0B09;border-color:var(--green);}
.btn--primary:hover{background:var(--green-lt);border-color:var(--green-lt);
  box-shadow:0 4px 20px rgba(240,145,26,.4);transform:translateY(-1px);}
.btn--secondary{background:transparent;color:var(--green-lt);border-color:rgba(240,145,26,.35);}
.btn--secondary:hover{background:rgba(240,145,26,.08);border-color:var(--green-lt);}
.btn--ghost{background:rgba(255,255,255,.05);color:var(--text);border-color:var(--border);}
.btn--ghost:hover{background:rgba(255,255,255,.08);border-color:var(--border-h);}
.btn--lg{padding:.9rem 2rem;font-size:.95rem;}
.btn--sm{padding:.5rem 1rem;font-size:.8rem;}
.btn svg{width:16px;height:16px;flex-shrink:0;}

/* Nav */
.nav{position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(12,11,9,.85);backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);transition:background .2s,box-shadow .2s;}
.nav.scrolled{background:rgba(12,11,9,.97);box-shadow:0 4px 24px rgba(0,0,0,.5);}
.nav__inner{display:flex;align-items:center;justify-content:space-between;height:68px;gap:1.5rem;}
.nav__logo{display:flex;align-items:center;gap:.55rem;text-decoration:none;flex-shrink:0;}
.nav__logo-icon{width:36px;height:36px;background:var(--green);border-radius:8px;
  display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;}
.nav__logo-word{font-family:var(--font-display);font-size:1.1rem;font-weight:700;
  letter-spacing:-.02em;color:var(--text);}
.nav__logo-word em{font-style:normal;color:var(--green-lt);}
.nav__logo-sub{font-size:.62rem;color:var(--text-muted);letter-spacing:.04em;}
.nav__links{display:flex;align-items:center;gap:0;}
.nav__link{font-size:.875rem;font-weight:500;color:var(--text-dim);
  padding:.5rem .9rem;border-radius:var(--radius);transition:color .2s;}
.nav__link:hover,.nav__link.active{color:var(--green-lt);}
.nav__actions{display:flex;align-items:center;gap:.75rem;flex-shrink:0;}
.nav__burger{display:none;flex-direction:column;gap:5px;width:36px;height:36px;
  border-radius:var(--radius);padding:6px;transition:background .2s;}
.nav__burger span{display:block;width:100%;height:2px;background:var(--text);
  border-radius:2px;transition:all .3s var(--ease);}
.nav__burger:hover{background:var(--border);}
.nav__burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav__burger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
.nav__burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* Mobile menu */
.nav__mobile{position:fixed;top:68px;left:0;right:0;bottom:0;
  background:rgb(12,11,9);overflow-y:auto;padding:1rem 1.5rem 2rem;z-index:9999;
  visibility:hidden;opacity:0;transform:translateY(-10px);pointer-events:none;
  transition:opacity .25s var(--ease),transform .25s var(--ease),visibility 0s linear .25s;}
.nav__mobile.open{visibility:visible;opacity:1;transform:translateY(0);pointer-events:all;
  transition:opacity .25s var(--ease),transform .25s var(--ease),visibility 0s linear 0s;}
.nav__mobile-link{display:block;font-size:1rem;font-weight:600;color:var(--text-dim);
  padding:.9rem 0;border-bottom:1px solid var(--border);transition:color .2s;}
.nav__mobile-link:hover{color:var(--green-lt);}
.nav__mobile-cta{margin-top:1.5rem;}

/* Section */
.section{padding:var(--sp-24) 0;}
.section--alt{background:var(--forest-2);}
.section--sm{padding:var(--sp-16) 0;}
.section__header{text-align:center;max-width:680px;margin:0 auto var(--sp-16);}
.section__tag{display:inline-block;font-size:.68rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--green);border:1px solid rgba(240,145,26,.3);
  padding:.3rem .9rem;border-radius:100px;margin-bottom:var(--sp-4);}
.section__title{font-size:clamp(1.75rem,3vw,2.5rem);font-weight:800;letter-spacing:-.025em;
  margin-bottom:var(--sp-4);color:var(--text);}
.section__sub{font-size:1.05rem;color:var(--text-dim);line-height:1.75;}
.text-green{color:var(--green-lt);}
.text-earth{color:var(--earth-lt);}

/* Hero */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;
  padding:120px 0 var(--sp-20);overflow:hidden;}
.hero__bg-img{position:absolute;inset:0;z-index:0;}
.hero__bg-img img{width:100%;height:100%;object-fit:cover;opacity:.55;}
.hero__bg-img::after{content:'';position:absolute;inset:0;
  background:linear-gradient(105deg,rgba(12,11,9,.88) 0%,rgba(12,11,9,.55) 55%,rgba(12,11,9,.25) 100%);}
.hero__inner{position:relative;z-index:1;max-width:680px;}
.hero__tag{display:inline-flex;align-items:center;gap:.5rem;font-size:.72rem;
  font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--green);
  border:1px solid rgba(240,145,26,.3);padding:.3rem .85rem;border-radius:100px;
  margin-bottom:var(--sp-5);}
.hero__title{font-size:clamp(2.4rem,5vw,4rem);font-weight:800;line-height:1.08;
  letter-spacing:-.03em;margin-bottom:var(--sp-5);}
.hero__sub{font-size:clamp(1rem,1.5vw,1.15rem);color:var(--text-dim);line-height:1.75;
  max-width:520px;margin-bottom:var(--sp-8);}
.hero__actions{display:flex;gap:.75rem;flex-wrap:wrap;}

/* Service cards */
.service-card{background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-xl);padding:var(--sp-6);display:flex;flex-direction:column;
  gap:var(--sp-3);transition:border-color .2s,transform .2s,box-shadow .2s;}
.service-card:hover{border-color:var(--border-h);transform:translateY(-3px);box-shadow:var(--glow);}
.service-card__icon{width:48px;height:48px;border-radius:var(--radius-lg);
  display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0;
  background:rgba(240,145,26,.1);border:1px solid rgba(240,145,26,.15);}
.service-card__title{font-size:1.05rem;font-weight:700;color:var(--text);}
.service-card__desc{font-size:.875rem;color:var(--text-dim);line-height:1.65;flex:1;}
.service-card__link{font-size:.82rem;color:var(--green-lt);font-weight:600;
  display:flex;align-items:center;gap:.3rem;margin-top:auto;transition:gap .2s;}
.service-card:hover .service-card__link{gap:.5rem;}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--sp-5);}

/* Diff cards */
.diff-card{display:flex;gap:var(--sp-4);padding:var(--sp-5);background:var(--bg-card);
  border:1px solid var(--border);border-radius:var(--radius-lg);transition:border-color .2s;}
.diff-card:hover{border-color:var(--border-h);}
.diff-card__icon{width:44px;height:44px;border-radius:var(--radius);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:1.2rem;
  background:rgba(240,145,26,.08);}
.diff-card__title{font-size:.95rem;font-weight:700;margin-bottom:.3rem;}
.diff-card__desc{font-size:.85rem;color:var(--text-dim);line-height:1.65;}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:var(--sp-5);}

/* Page hero */
.page-hero{position:relative;padding:140px 0 var(--sp-16);border-bottom:1px solid var(--border);}
.page-hero__bg{position:absolute;inset:0;background:rgba(240,145,26,.03);}
.page-hero__title{font-size:clamp(2rem,4vw,3.2rem);font-weight:800;letter-spacing:-.025em;
  line-height:1.12;margin-bottom:var(--sp-4);max-width:720px;}
.page-hero__sub{font-size:1.05rem;color:var(--text-dim);line-height:1.75;
  max-width:580px;margin-bottom:var(--sp-6);}
.page-hero__actions{display:flex;gap:.75rem;flex-wrap:wrap;}
.breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.8rem;
  color:var(--text-muted);margin-bottom:var(--sp-5);}
.breadcrumb a{color:var(--text-muted);transition:color .2s;}
.breadcrumb a:hover{color:var(--green-lt);}

/* Service detail */
.service-hero-img{height:360px;position:relative;overflow:hidden;margin-top:68px;}
.service-hero-img img{width:100%;height:100%;object-fit:cover;}
.service-hero-img::after{content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(12,11,9,.2) 0%,rgba(12,11,9,.92) 100%);}
.deliverables{display:flex;flex-direction:column;gap:.75rem;}
.deliverable{display:flex;align-items:flex-start;gap:.75rem;font-size:.9rem;
  color:var(--text-dim);line-height:1.6;}
.deliverable svg{width:16px;height:16px;color:var(--green);flex-shrink:0;margin-top:3px;display:block;}
.process-steps{display:flex;flex-direction:column;gap:var(--sp-5);}
.process-step{display:flex;gap:var(--sp-5);padding:var(--sp-5);background:var(--bg-card);
  border:1px solid var(--border);border-radius:var(--radius-lg);transition:border-color .2s;}
.process-step:hover{border-color:var(--border-h);}
.process-step__num{font-size:1.5rem;font-weight:800;color:var(--green-lt);flex-shrink:0;width:2.5rem;}
.process-step__title{font-size:1rem;font-weight:700;margin-bottom:.3rem;}
.process-step__desc{font-size:.875rem;color:var(--text-dim);line-height:1.65;}

/* FAQ */
.faq__item{border-bottom:1px solid var(--border);}
.faq__q{width:100%;display:flex;align-items:center;justify-content:space-between;
  gap:1rem;padding:var(--sp-5) 0;font-weight:600;font-size:.95rem;color:var(--text);
  text-align:left;cursor:pointer;transition:color .2s;}
.faq__q:hover{color:var(--green-lt);}
.faq__q svg{width:18px;height:18px;flex-shrink:0;color:var(--text-muted);transition:transform .25s var(--ease);}
.faq__item.open .faq__q{color:var(--green-lt);}
.faq__item.open .faq__q svg{transform:rotate(45deg);color:var(--green-lt);}
.faq__a{display:none;padding:0 0 var(--sp-5);}
.faq__item.open .faq__a{display:block;}
.faq__a p{font-size:.9rem;color:var(--text-dim);line-height:1.75;}

/* Related cards */
.related-services{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--sp-4);}
.related-card{background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:var(--sp-5);text-decoration:none;
  transition:border-color .2s,transform .2s;display:block;}
.related-card:hover{border-color:var(--border-h);transform:translateY(-2px);}
.related-card__name{font-size:.9rem;font-weight:700;color:var(--text);margin-bottom:.3rem;}
.related-card__desc{font-size:.8rem;color:var(--text-dim);line-height:1.55;}

/* CTA section */
.cta-section{padding:var(--sp-20) 0;background:rgba(240,145,26,.06);
  border-top:1px solid var(--border);text-align:center;}
.cta-section__title{font-size:clamp(1.75rem,3vw,2.5rem);font-weight:800;
  letter-spacing:-.025em;margin-bottom:var(--sp-4);}
.cta-section__sub{font-size:1.05rem;color:var(--text-dim);
  margin-bottom:var(--sp-8);max-width:520px;margin-left:auto;margin-right:auto;}
.cta-section__actions{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;}

/* Engagement */
.engagement-card{background:rgba(240,145,26,.05);border:1px solid rgba(240,145,26,.18);
  border-radius:var(--radius-xl);padding:var(--sp-8);}

/* Contact */
.form-card{background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-xl);padding:var(--sp-8);}
.form-group{display:flex;flex-direction:column;gap:.5rem;margin-bottom:var(--sp-4);}
.form-label{font-size:.8rem;font-weight:600;color:var(--text-dim);}
.form-label span{color:#EF4444;}
.form-input,.form-textarea,.form-select{background:rgba(255,255,255,.04);
  border:1px solid var(--border);border-radius:var(--radius);padding:.65rem .9rem;
  color:var(--text);font-family:var(--font-body);font-size:.9rem;width:100%;
  transition:border-color .2s,box-shadow .2s;}
.form-input:focus,.form-textarea:focus,.form-select:focus{
  border-color:var(--green-lt);box-shadow:0 0 0 3px rgba(240,145,26,.15);outline:none;}
.form-input::placeholder,.form-textarea::placeholder{color:var(--text-muted);}
.form-textarea{min-height:130px;resize:vertical;}
.form-select option{background:var(--forest-3);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:var(--sp-4);}

/* Footer */
.footer{background:var(--forest-2);border-top:1px solid var(--border);padding:var(--sp-16) 0 var(--sp-8);}
.footer-top__grid{display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr;gap:var(--sp-10);margin-bottom:var(--sp-10);}
.footer__logo{font-size:1.2rem;font-weight:800;color:var(--text);margin-bottom:.6rem;}
.footer__logo em{font-style:normal;color:var(--green-lt);}
.footer__tagline{font-size:.875rem;color:var(--text-muted);line-height:1.6;margin-bottom:1rem;}
.footer__col-title{font-size:.72rem;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;color:var(--text-muted);margin-bottom:.75rem;}
.footer__links{display:flex;flex-direction:column;gap:.5rem;}
.footer__link{font-size:.875rem;color:var(--text-dim);transition:color .2s;}
.footer__link:hover{color:var(--green-lt);}
.footer__social-link{width:36px;height:36px;border-radius:var(--radius);
  background:rgba(255,255,255,.05);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-dim);transition:all .2s;}
.footer__social-link:hover{background:rgba(240,145,26,.12);border-color:var(--green-lt);color:var(--green-lt);}
.footer__social-link svg{width:16px;height:16px;display:block;}
.footer__socials{display:flex;gap:.75rem;margin-top:1rem;}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:1rem;padding-top:var(--sp-6);border-top:1px solid var(--border);}
.footer__copy{font-size:.82rem;color:var(--text-muted);}
.footer__legal{display:flex;gap:1.25rem;}
.footer__legal a{font-size:.82rem;color:var(--text-muted);transition:color .2s;}
.footer__legal a:hover{color:var(--green-lt);}

/* Back to top / WA */
#back-to-top{position:fixed;bottom:2rem;right:2rem;z-index:900;width:46px;height:46px;
  border-radius:50%;background:var(--green);border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(240,145,26,.4);opacity:0;
  transform:translateY(10px) scale(.9);pointer-events:none;
  transition:opacity .3s var(--ease),transform .3s var(--ease);}
#back-to-top.visible{opacity:1;transform:translateY(0) scale(1);pointer-events:all;}
#back-to-top:hover{transform:translateY(-2px) scale(1.05);box-shadow:0 6px 28px rgba(240,145,26,.6);}
#back-to-top svg{width:18px;height:18px;color:#fff;display:block;}
.whatsapp-float{position:fixed;bottom:2rem;left:2rem;z-index:9000;
  display:flex;align-items:center;gap:.6rem;height:46px;
  background:var(--green);color:#0C0B09;border-radius:50px;
  padding:0 1.2rem 0 .9rem;font-size:.875rem;font-weight:700;
  box-shadow:0 4px 20px rgba(240,145,26,.45);
  transition:all .2s var(--ease);white-space:nowrap;text-decoration:none;}
.whatsapp-float:hover{background:var(--green-lt);transform:translateY(-2px);}
.whatsapp-float__icon{width:26px;height:26px;flex-shrink:0;display:block;}
.whatsapp-float__pulse{position:absolute;top:-3px;left:-3px;right:-3px;bottom:-3px;
  border-radius:50px;background:rgba(240,145,26,.2);
  animation:wa-pulse 2.5s ease-out infinite;pointer-events:none;}
@keyframes wa-pulse{0%{transform:scale(1);opacity:.8}70%{transform:scale(1.08);opacity:0}100%{transform:scale(1.08);opacity:0}}

/* Animations */
.animate-in{opacity:1;transform:none;}
.js-ready .animate-in{opacity:0;transform:translateY(24px);
  transition:opacity .6s var(--ease),transform .6s var(--ease);}
.js-ready .animate-in.visible{opacity:1;transform:none;}
.js-ready .stagger>*{opacity:0;transform:translateY(20px);
  transition:opacity .55s var(--ease),transform .55s var(--ease);}
.stagger>*,.js-ready .stagger.visible>*{opacity:1;transform:none;}
.js-ready .stagger.visible>*:nth-child(1){transition-delay:.08s;}
.js-ready .stagger.visible>*:nth-child(2){transition-delay:.16s;}
.js-ready .stagger.visible>*:nth-child(3){transition-delay:.24s;}
.js-ready .stagger.visible>*:nth-child(4){transition-delay:.32s;}
.js-ready .stagger.visible>*:nth-child(5){transition-delay:.40s;}
.js-ready .stagger.visible>*:nth-child(6){transition-delay:.48s;}

/* Stat cards */
.stat-card{text-align:center;padding:var(--sp-6);}
.stat-card__num{font-size:clamp(2rem,4vw,3rem);font-weight:800;
  color:var(--green-lt);line-height:1;margin-bottom:.5rem;}
.stat-card__label{font-size:.875rem;color:var(--text-dim);line-height:1.4;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--sp-5);}

/* Seasonal badge */
.season-badge{display:inline-block;font-size:.65rem;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;padding:.25rem .65rem;
  border-radius:100px;margin-bottom:.4rem;}
.season-badge--spring{background:rgba(240,145,26,.15);color:var(--green-lt);}
.season-badge--summer{background:rgba(139,94,60,.15);color:var(--earth-lt);}
.season-badge--fall{background:rgba(240,145,26,.12);color:#F5A840;}
.season-badge--winter{background:rgba(200,216,204,.12);color:var(--snow);}
.season-badge--all{background:rgba(240,145,26,.1);color:var(--green-lt);}

/* Responsive */
@media(max-width:1024px){
  .nav__links{display:none;}
  .nav__actions .btn:not(.nav__burger){display:none;}
  .nav__burger{display:flex;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .footer-top__grid{grid-template-columns:1fr 1fr;gap:2rem;}
}
@media(max-width:768px){
  .services-grid{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .form-row{grid-template-columns:1fr;}
  .related-services{grid-template-columns:1fr;}
  .footer-top__grid{grid-template-columns:1fr;}
  .cta-section__actions{flex-direction:column;align-items:center;}
  .hero__actions{flex-direction:column;align-items:flex-start;}
}
@media(max-width:480px){
  .grid-4{grid-template-columns:1fr;}
  .whatsapp-float{width:44px;height:44px;padding:0;border-radius:50%;max-width:44px;justify-content:center;bottom:1rem;left:1rem;}
  .whatsapp-float__label{display:none;}
  #back-to-top{width:44px;height:44px;bottom:1rem;right:1rem;}
}

/* ── Contact page layout (responsive) ─────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Mobile menu: nav elevation when open ─────────────── */
body.mobile-menu-open .nav {
  z-index: 9999;
}
/* Remove backdrop-filter from mobile panel to avoid iOS
   stacking context issues. Use solid background instead. */
.nav__mobile {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* iOS safe area + dynamic viewport */
.nav__mobile {
  height: calc(100vh - 68px);
  height: calc(100dvh - 68px);
}

/* ── Float buttons: clear browser chrome on mobile ─────── */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 5rem;
    left: 1.25rem;
  }
  #back-to-top {
    bottom: 5rem;
    right: 1.25rem;
  }
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    justify-content: center;
    bottom: 5rem;
    left: 1rem;
  }
  .whatsapp-float__label { display: none !important; }
  #back-to-top {
    width: 44px;
    height: 44px;
    bottom: 5rem;
    right: 1rem;
  }
}

/* ── Service area grid ────────────────────────────────── */
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) {
  .service-area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-area-grid { grid-template-columns: 1fr; }
}

/* ── About page hero background image ─────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.page-hero .section__tag,
.page-hero .page-hero__title,
.page-hero .page-hero__sub,
.page-hero .page-hero__actions,
.page-hero .breadcrumb {
  position: relative;
  z-index: 1;
}

/* ── Gallery page ─────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: var(--sp-10);
}
.gallery-filter {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.gallery-filter:hover {
  border-color: var(--border-h);
  color: var(--text);
}
.gallery-filter--active {
  background: var(--green);
  border-color: var(--green);
  color: #0C0B09;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.gallery-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .2s var(--ease), border-color .2s, opacity .3s;
}
.gallery-card:hover { transform: translateY(-4px); border-color: var(--border-h); }
.gallery-card.gallery-hidden {
  display: none;
}
.gallery-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--ease);
}
.gallery-card:hover .gallery-card__img-wrap img {
  transform: scale(1.04);
}
.gallery-card__overlay {
  position: absolute;
  top: .75rem;
  left: .75rem;
}
.gallery-card__cat {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 100px;
  background: var(--green);
  color: #0C0B09;
}
.gallery-card__body {
  padding: var(--sp-4) var(--sp-5);
}
.gallery-card__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
}
.gallery-card__loc {
  font-size: .78rem;
  color: var(--text-muted);
}
.gallery-coming-soon {
  text-align: center;
  padding: var(--sp-16) var(--sp-8);
  background: var(--bg-card);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-xl);
  margin-top: var(--sp-8);
}
.gallery-coming-soon__icon { font-size: 2.5rem; margin-bottom: var(--sp-4); }
.gallery-coming-soon__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: var(--sp-3);
}
.gallery-coming-soon__text {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.gallery-count {
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--sp-6);
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filters { justify-content: flex-start; flex-wrap: wrap; }
}

/* Screen reader only utility */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* GALLERY CAROUSEL ========================================== */
.gallery-section { padding: var(--sp-10) 0 var(--sp-16); }

/* Filter bar ─────────────────────────────────────────────── */
.gallery-filter {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: var(--forest, var(--bg));
  border-bottom: 1px solid var(--border);
}
.gallery-filter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 var(--sp-6);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .gallery-filter__inner { justify-content: flex-start; }
}
.gallery-filter__inner::-webkit-scrollbar { display: none; }
.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .85rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color .2s, border-color .2s;
}
.gallery-filter-btn:hover  { color: var(--text); }
.gallery-filter-btn.active { color: var(--green-lt); border-bottom-color: var(--green-lt); }
.gallery-filter-btn__count {
  font-size: .7rem;
  background: rgba(255,255,255,.08);
  padding: .12rem .42rem;
  border-radius: 100px;
  font-weight: 700;
}
.gallery-filter-btn.active .gallery-filter-btn__count { background: rgba(255,255,255,.15); }

/* Coming soon banner ───────────────────────────────────────── */
.gallery-coming-banner {
  padding: var(--sp-8) 0 var(--sp-6);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.gallery-coming-banner__icon  { font-size: 2rem; margin-bottom: var(--sp-3); }
.gallery-coming-banner__title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.gallery-coming-banner__sub   { font-size: .85rem; color: var(--text-dim); line-height: 1.7;
  max-width: 520px; margin: 0 auto var(--sp-4); }
.gallery-coming-banner__cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--green-lt);
  border: 1px solid rgba(255,255,255,.12); padding: .45rem 1rem;
  border-radius: 100px; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.gallery-coming-banner__cta:hover { background: rgba(255,255,255,.05); border-color: var(--green-lt); }

/* Carousel ─────────────────────────────────────────────────── */
.gallery-carousel {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.gallery-carousel--wide { max-width: 960px; aspect-ratio: 16/9; }
.gallery-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.gallery-carousel__slide.active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Arrow buttons */
.gallery-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  transition: background .2s;
  font-family: var(--font-body);
}
.gallery-carousel__btn:hover  { background: rgba(0,0,0,.72); }
.gallery-carousel__btn--prev  { left: .75rem; }
.gallery-carousel__btn--next  { right: .75rem; }
.gallery-carousel__btn svg    { width: 16px; height: 16px; display: block; flex-shrink: 0; }
/* Footer: counter + dots */
.gallery-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 0 0;
}
.gallery-carousel__counter {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
  min-width: 3rem;
}
.gallery-carousel__dots {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-h);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.gallery-carousel__dot.active {
  background: var(--green-lt);
  transform: scale(1.35);
}
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
/* Responsive */
@media (max-width: 600px) {
  .gallery-carousel { max-width: 100%; }
  .gallery-carousel--wide { max-width: 100%; }
  .gallery-carousel__btn { width: 34px; height: 34px; }
}

/* ── Theme toggle button ────────────────────────────────── */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text-dim);
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.theme-toggle svg   { width: 16px; height: 16px; display: block; pointer-events: none; }
.theme-toggle .icon-sun  { display: block; }
.theme-toggle .icon-moon { display: none; }
html.light .theme-toggle .icon-sun  { display: none; }
html.light .theme-toggle .icon-moon { display: block; }
html.light .theme-toggle { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.14); color: var(--text-muted); }
html.light .theme-toggle:hover { background: rgba(0,0,0,0.10); }
/* Hub specific */
.hub-theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text-dim);
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.hub-theme-toggle:hover { background: rgba(201,168,76,0.15); color: var(--gold); }
.hub-theme-toggle svg   { width: 16px; height: 16px; display: block; pointer-events: none; }
.hub-theme-toggle .icon-sun  { display: block; }
.hub-theme-toggle .icon-moon { display: none; }
html.light .hub-theme-toggle .icon-sun  { display: none; }
html.light .hub-theme-toggle .icon-moon { display: block; }
html.light .hub-theme-toggle { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.12); }

/* ── LIGHT MODE — Construction ─────────────────────────── */
html.light {
  --forest:    #FAF8F4;
  --forest-2:  #F2EDE5;
  --forest-3:  #E8E0D0;
  --text:      #1A1510;
  --text-dim:  #483828;
  --text-muted:#68584A;
  --bg-card:   rgba(255,255,255,0.88);
  --border:    rgba(240,145,26,0.14);
  --border-h:  rgba(240,145,26,0.32);
  --glow:      0 8px 32px rgba(240,145,26,0.12);
}
html.light body                   { background: var(--forest); color: var(--text); }
html.light .nav                   { background: rgba(250,248,244,0.94); border-bottom-color: rgba(240,145,26,0.14); }
html.light .nav.scrolled          { background: rgba(250,248,244,0.98); }
html.light .nav__mobile           { background: #F2EDE5; }
html.light .nav__link             { color: var(--text-dim); }
html.light .nav__link:hover,
html.light .nav__link.active      { color: var(--green-dim); }
html.light .footer                { background: var(--forest-2); }
html.light .section--alt          { background: var(--forest-2); }
html.light .service-card          { background: rgba(255,255,255,0.90); }
html.light .diff-card             { background: rgba(255,255,255,0.70); }
html.light .process-step          { background: rgba(255,255,255,0.80); }
html.light .form-card             { background: rgba(255,255,255,0.88); }
html.light .form-input,
html.light .form-textarea,
html.light .form-select           { background: rgba(255,255,255,0.8); border-color: rgba(240,145,26,0.2); color: var(--text); }
html.light .hero__bg-img img      { opacity: 0.40; }
html.light .stat-card__num        { color: var(--green-dim); }
html.light .cta-section           { background: rgba(240,145,26,0.06); }
html.light .gallery-filter        { background: var(--forest-2); }
html.light .gallery-carousel      { background: var(--forest-2); }
html.light .page-hero             { background: var(--forest-2); }
html.light .footer__link          { color: var(--text-dim); }
html.light .footer__link:hover    { color: var(--green-dim); }
html.light .footer__copy,
html.light .footer__legal a,
html.light .footer__col-title     { color: var(--text-muted); }
html.light .btn--ghost            { color: var(--text-dim); background: rgba(0,0,0,.04); }
html.light .faq__item             { border-color: rgba(240,145,26,0.18); }
html.light .engagement-card       { background: rgba(240,145,26,.04); }

/* INSIGHTS ========================================================= */
.insight-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:var(--sp-6); }
.insight-card { background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-xl);overflow:hidden;display:flex;flex-direction:column;
  transition:border-color .2s,transform .2s,box-shadow .2s;text-decoration:none;color:inherit; }
.insight-card:hover { border-color:var(--border-h);transform:translateY(-4px);box-shadow:var(--glow); }
.insight-card__img { aspect-ratio:16/9;overflow:hidden; }
.insight-card__img img { width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s; }
.insight-card:hover .insight-card__img img { transform:scale(1.04); }
.insight-card__body { padding:var(--sp-5) var(--sp-5) var(--sp-6);flex:1;display:flex;flex-direction:column; }
.insight-card__tag { display:inline-block;font-size:.65rem;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--green);border:1px solid rgba(45,181,78,.25);
  padding:.22rem .6rem;border-radius:100px;margin-bottom:.75rem; }
.insight-card__title { font-size:1.05rem;font-weight:700;color:var(--text);line-height:1.35;
  margin-bottom:.6rem;flex:1; }
.insight-card__excerpt { font-size:.85rem;color:var(--text-dim);line-height:1.65;margin-bottom:.9rem; }
.insight-card__meta { font-size:.75rem;color:var(--text-muted);display:flex;gap:.75rem;flex-wrap:wrap; }

/* Article reading layout ───────────────────────────────────────── */
.article-body { max-width:700px;margin:0 auto;padding:var(--sp-16) 1.5rem var(--sp-20); }
.article-body h2 { font-size:1.25rem;font-weight:700;color:var(--text);margin:2.25rem 0 .9rem;
  padding-top:2rem;border-top:1px solid var(--border); }
.article-body h3 { font-size:1.05rem;font-weight:700;color:var(--text);margin:1.5rem 0 .6rem; }
.article-body p  { font-size:.975rem;color:var(--text-dim);line-height:1.9;margin-bottom:1.25rem; }
.article-body ul,.article-body ol { padding-left:1.5rem;margin-bottom:1.25rem; }
.article-body li { font-size:.975rem;color:var(--text-dim);line-height:1.8;margin-bottom:.4rem; }
.article-body strong { color:var(--text);font-weight:700; }
.article-body a { color:var(--green-lt);text-decoration:underline;text-underline-offset:3px; }
.article-body a:hover { color:var(--green); }
.article-takeaways { background:rgba(45,181,78,.06);border:1px solid rgba(45,181,78,.2);
  border-left:3px solid var(--green);border-radius:0 var(--radius-lg) var(--radius-lg) 0;
  padding:var(--sp-5) var(--sp-6);margin:2rem 0; }
.article-takeaways h3 { font-size:.82rem;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;color:var(--green-lt);margin:0 0 .75rem; }
.article-takeaways ul { margin:0;padding-left:1.25rem; }
.article-takeaways li { font-size:.875rem;color:var(--text-dim);line-height:1.75;margin-bottom:.3rem; }

/* Subscribe CTA ─────────────────────────────────────────────────── */
.subscribe-section { padding:var(--sp-16) 0;background:var(--forest-2);border-top:1px solid var(--border); }
.subscribe-section__inner { max-width:580px;margin:0 auto;text-align:center;padding:0 1.5rem; }
.subscribe-section__tag { display:inline-block;font-size:.68rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;color:var(--green);margin-bottom:.75rem; }
.subscribe-section__title { font-size:clamp(1.4rem,2.5vw,1.9rem);font-weight:800;
  letter-spacing:-.02em;color:var(--text);margin-bottom:.6rem; }
.subscribe-section__sub { font-size:.9rem;color:var(--text-dim);line-height:1.7;margin-bottom:1.5rem; }
.subscribe-form { display:flex;gap:.6rem;max-width:440px;margin:0 auto 1rem; }
.subscribe-input { flex:1;padding:.65rem 1rem;background:rgba(255,255,255,.06);
  border:1px solid var(--border);border-radius:var(--radius);color:var(--text);
  font-family:var(--font-body);font-size:.9rem;min-width:0;
  transition:border-color .2s,box-shadow .2s; }
.subscribe-input:focus { border-color:var(--green-lt);box-shadow:0 0 0 3px rgba(45,181,78,.15);outline:none; }
.subscribe-input::placeholder { color:var(--text-muted); }
.subscribe-note { font-size:.75rem;color:var(--text-muted); }
#subscribe-success { display:none;padding:var(--sp-5);background:rgba(45,181,78,.08);
  border:1px solid rgba(45,181,78,.2);border-radius:var(--radius-lg);
  font-size:.9rem;color:var(--text-dim); }

/* Related articles ──────────────────────────────────────────────── */
.related-insights { display:grid;grid-template-columns:repeat(3,1fr);gap:var(--sp-4); }
.related-insight-card { background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:var(--sp-4);text-decoration:none;
  transition:border-color .2s,transform .2s;display:block; }
.related-insight-card:hover { border-color:var(--border-h);transform:translateY(-2px); }
.related-insight-card__tag { font-size:.65rem;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;color:var(--green);margin-bottom:.4rem;display:block; }
.related-insight-card__title { font-size:.875rem;font-weight:700;color:var(--text);line-height:1.3; }

/* Responsive */
@media(max-width:768px) {
  .insight-grid { grid-template-columns:1fr; }
  .related-insights { grid-template-columns:1fr; }
  .subscribe-form { flex-direction:column; }
  .subscribe-input { min-width:100%; }
}
