:root{
  --paper:#F7F4EC;
  --paper-dim:#EFEADD;
  --forest:#173A2C;
  --forest-2:#204A38;
  --sage:#5C8570;
  --lime:#C7DD5B;
  --coral:#E97B4C;
  --ink:#152018;
  --ink-soft:#4A5750;
  --line:rgba(21,32,24,0.12);
  --radius:18px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Manrope', sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,.display{
  font-family:'Fraunces', serif;
  font-weight:600;
  letter-spacing:-0.01em;
  color:var(--forest);
}
.mono{
  font-family:'IBM Plex Mono', monospace;
  letter-spacing:0.02em;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}
::selection{ background:var(--lime); color:var(--forest); }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline:2.5px solid var(--coral);
  outline-offset:3px;
  border-radius:4px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(247,244,236,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
.logo{
  display:flex; align-items:center; gap:10px;
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:1.15rem;
  color:var(--forest);
}
.logo .mark{
  width:30px; height:30px;
  display:flex; align-items:flex-end; gap:3px;
  padding-bottom:2px;
}
.logo .mark span{
  display:block; width:5px; background:var(--coral); border-radius:2px 2px 0 0;
}
.logo .mark span:nth-child(1){height:10px; background:var(--sage);}
.logo .mark span:nth-child(2){height:16px; background:var(--forest);}
.logo .mark span:nth-child(3){height:24px; background:var(--coral);}

nav ul{
  list-style:none;
  display:flex; gap:34px;
  font-size:0.95rem; font-weight:600;
}
nav ul li a{
  color:var(--ink-soft);
  position:relative;
  padding:6px 0;
  transition:color .2s ease;
}
nav ul li a:hover, nav ul li a.active{ color:var(--forest); }
nav ul li a.active{ border-bottom:2px solid var(--coral); }
.nav-cta{
  background:var(--forest);
  color:var(--paper) !important;
  padding:11px 22px;
  border-radius:100px;
  font-size:0.9rem;
  font-weight:700;
  transition:background .2s ease, transform .2s ease;
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--coral); transform:translateY(-1px); }
.nav-links{display:flex; align-items:center; gap:34px;}
.burger{display:none; background:none; border:none; cursor:pointer; padding:8px;}
.burger span{display:block; width:24px; height:2px; background:var(--forest); margin:5px 0; border-radius:2px;}

/* ---------- HERO (home) ---------- */
.hero{
  padding:88px 0 60px;
  position:relative;
}
.hero .wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--sage);
  background:rgba(92,133,112,0.12);
  padding:7px 14px;
  border-radius:100px;
  margin-bottom:22px;
  font-weight:500;
}
.eyebrow::before{
  content:''; width:6px; height:6px; border-radius:50%; background:var(--coral);
}
.hero h1{
  font-size:clamp(2.4rem, 4.6vw, 3.7rem);
  line-height:1.06;
  margin-bottom:22px;
}
.hero h1 em{
  font-style:italic;
  color:var(--coral);
}
.hero p.sub{
  font-size:1.12rem;
  color:var(--ink-soft);
  max-width:480px;
  margin-bottom:34px;
}
.hero-ctas{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.btn-primary{
  background:var(--forest);
  color:var(--paper);
  padding:15px 28px;
  border-radius:100px;
  font-weight:700;
  font-size:0.98rem;
  display:inline-block;
  transition:background .2s ease, transform .2s ease;
  border:none; cursor:pointer;
}
.btn-primary:hover{ background:var(--coral); transform:translateY(-2px); }
.btn-ghost{
  padding:15px 6px;
  font-weight:700;
  color:var(--forest);
  border-bottom:2px solid var(--forest);
  font-size:0.98rem;
  transition:color .2s ease, border-color .2s ease;
}
.btn-ghost:hover{ color:var(--coral); border-color:var(--coral); }

/* signature growth chart */
.growth-card{
  background:var(--forest);
  border-radius:24px;
  padding:30px 30px 24px;
  position:relative;
  overflow:hidden;
  box-shadow:0 30px 60px -20px rgba(23,58,44,0.45);
}
.growth-card::before{
  content:'';
  position:absolute; top:-40px; right:-40px;
  width:180px; height:180px;
  background:radial-gradient(circle, rgba(199,221,91,0.25), transparent 70%);
}
.growth-head{
  display:flex; justify-content:space-between; align-items:flex-start;
  margin-bottom:20px;
  position:relative; z-index:1;
}
.growth-head .label{
  color:rgba(247,244,236,0.6);
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  margin-bottom:6px;
}
.growth-head .value{
  color:var(--paper);
  font-family:'Fraunces', serif;
  font-size:2.1rem;
  font-weight:600;
}
.growth-head .delta{
  background:rgba(199,221,91,0.18);
  color:var(--lime);
  font-family:'IBM Plex Mono', monospace;
  font-size:0.82rem;
  padding:5px 10px;
  border-radius:100px;
  font-weight:500;
}
svg.chart{ width:100%; height:150px; display:block; position:relative; z-index:1; }
.chart-path{
  fill:none;
  stroke:var(--lime);
  stroke-width:3;
  stroke-linecap:round;
  stroke-dasharray:400;
  stroke-dashoffset:400;
  animation:draw 1.8s ease forwards 0.3s;
}
.chart-fill{
  opacity:0;
  animation:fadein 1s ease forwards 1.4s;
}
.chart-dot{
  opacity:0;
  animation:fadein .4s ease forwards 2s;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }
@keyframes fadein{ to{ opacity:1; } }
.growth-foot{
  display:flex; justify-content:space-between;
  margin-top:14px;
  font-family:'IBM Plex Mono', monospace;
  font-size:0.7rem;
  color:rgba(247,244,236,0.45);
  position:relative; z-index:1;
}

.hero-strip{
  display:flex; gap:38px; flex-wrap:wrap;
  margin-top:56px;
  padding-top:32px;
  border-top:1px solid var(--line);
}
.hero-strip .stat b{
  display:block; font-family:'Fraunces', serif; font-size:1.7rem; color:var(--forest); font-weight:600;
}
.hero-strip .stat span{
  font-size:0.85rem; color:var(--ink-soft);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero{
  padding:64px 0 52px;
  border-bottom:1px solid var(--line);
}
.page-hero .breadcrumb{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;
  color:var(--sage);
  margin-bottom:18px;
}
.page-hero .breadcrumb a{ color:var(--sage); }
.page-hero .breadcrumb a:hover{ color:var(--forest); }
.page-hero h1{
  font-size:clamp(2rem, 3.6vw, 2.9rem);
  margin-bottom:14px;
  max-width:720px;
}
.page-hero p{
  color:var(--ink-soft);
  font-size:1.05rem;
  max-width:600px;
}

/* ---------- SECTION HEADERS ---------- */
section{ padding:96px 0; }
.sec-head{
  max-width:640px;
  margin-bottom:56px;
}
.sec-head .eyebrow{ margin-bottom:16px; }
.sec-head h2{ font-size:clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom:14px; }
.sec-head p{ color:var(--ink-soft); font-size:1.05rem; }

.section-alt{ background:var(--forest); color:var(--paper); }
.section-alt h2, .section-alt h3{ color:var(--paper); }
.section-alt .sec-head p{ color:rgba(247,244,236,0.68); }

/* ---------- SERVICES ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.service-card{
  background:var(--paper);
  padding:34px 30px;
  transition:background .25s ease;
}
.service-card:hover{ background:var(--paper-dim); }
.service-num{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;
  color:var(--coral);
  margin-bottom:22px;
  display:block;
}
.service-card h3{ font-size:1.25rem; margin-bottom:10px; }
.service-card p{ color:var(--ink-soft); font-size:0.94rem; }
.service-card .service-extra{
  margin-top:18px; padding-top:16px; border-top:1px solid var(--line);
  font-size:0.86rem; color:var(--sage); font-weight:600;
}
.service-card.expanded{ padding:38px 32px; }
.service-card .service-list{ list-style:none; margin-top:16px; display:flex; flex-direction:column; gap:8px; }
.service-card .service-list li{ font-size:0.88rem; color:var(--ink-soft); padding-left:18px; position:relative; }
.service-card .service-list li::before{ content:''; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background:var(--coral); }

/* ---------- PROCESS ---------- */
.process-list{ counter-reset:step; }
.process-item{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:28px;
  padding:30px 0;
  border-top:1px solid rgba(247,244,236,0.14);
  align-items:start;
}
.process-item:last-child{ border-bottom:1px solid rgba(247,244,236,0.14); }
.process-item .step-num{
  font-family:'Fraunces', serif;
  font-size:2.1rem;
  color:var(--lime);
  font-weight:500;
}
.process-item h3{ font-size:1.2rem; margin-bottom:8px; }
.process-item p{ color:rgba(247,244,236,0.68); max-width:520px; font-size:0.96rem; }

/* ---------- TESTIMONIALS ---------- */
.testi-scroller{
  display:flex; gap:22px;
  overflow-x:auto;
  padding-bottom:12px;
  scrollbar-width:thin;
}
.testi-card{
  flex:0 0 340px;
  background:var(--paper-dim);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
}
.testi-quote{ font-size:1.02rem; color:var(--ink); margin-bottom:22px; line-height:1.55; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%;
  background:var(--forest);
  color:var(--lime);
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces', serif; font-weight:600; font-size:1rem;
}
.testi-who b{ display:block; font-size:0.92rem; }
.testi-who span{ font-size:0.82rem; color:var(--ink-soft); }
.testi-metric{
  margin-top:18px; padding-top:16px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:baseline;
}
.testi-metric b{ font-family:'IBM Plex Mono', monospace; color:var(--coral); font-size:1.1rem; }
.testi-metric span{ font-size:0.76rem; color:var(--ink-soft); text-transform:uppercase; letter-spacing:0.04em; }

/* ---------- BLOG ---------- */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.blog-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--paper);
  transition:transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover{ transform:translateY(-4px); box-shadow:0 20px 40px -20px rgba(23,58,44,0.25); }
.blog-img{
  height:190px;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  background-color:var(--paper-dim);
}
.blog-img.has-photo{
  padding:10px;
}
.blog-grid .blog-card:nth-child(3n+1) .blog-img{ background:linear-gradient(135deg, var(--sage), var(--forest)); }
.blog-grid .blog-card:nth-child(3n+2) .blog-img{ background:linear-gradient(135deg, var(--coral), #c25a2f); }
.blog-grid .blog-card:nth-child(3n+3) .blog-img{ background:linear-gradient(135deg, var(--lime), var(--sage)); }
.blog-tag{
  color:rgba(255,255,255,0.9);
  font-family:'IBM Plex Mono', monospace;
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  position:absolute;
  top:12px;
  left:12px;
}
.blog-body{ padding:24px; }
.blog-body .date{ font-size:0.78rem; color:var(--sage); font-family:'IBM Plex Mono', monospace; margin-bottom:10px; display:block;}
.blog-body h3{ font-size:1.08rem; margin-bottom:10px; line-height:1.35; }
.blog-body p{ font-size:0.9rem; color:var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list{ max-width:760px; }
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:24px 0;
  display:flex; justify-content:space-between; align-items:center;
  gap:20px;
  font-family:'Fraunces', serif;
  font-size:1.08rem;
  color:var(--forest);
  font-weight:500;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item .plus{
  flex:none;
  width:26px; height:26px;
  border-radius:50%;
  border:1.5px solid var(--forest);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  transition:transform .25s ease, background .25s ease;
}
.faq-item .plus::before, .faq-item .plus::after{
  content:''; position:absolute; background:var(--forest);
}
.faq-item .plus::before{ width:10px; height:1.5px; }
.faq-item .plus::after{ width:1.5px; height:10px; transition:opacity .2s ease; }
.faq-item[open] .plus{ background:var(--forest); transform:rotate(45deg); }
.faq-item[open] .plus::before, .faq-item[open] .plus::after{ background:var(--paper); }
.faq-item p{ color:var(--ink-soft); padding-bottom:24px; max-width:600px; font-size:0.96rem; }

/* ---------- CONTACT ---------- */
.contact-box{
  background:var(--paper-dim);
  border:1px solid var(--line);
  border-radius:24px;
  padding:52px;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:50px;
}
.contact-info h2{ font-size:1.9rem; margin-bottom:16px; }
.contact-info p{ color:var(--ink-soft); margin-bottom:28px; }
.contact-line{ display:flex; gap:12px; align-items:center; margin-bottom:14px; font-size:0.95rem; }
.contact-line b{ font-family:'IBM Plex Mono', monospace; font-size:0.78rem; color:var(--coral); text-transform:uppercase; letter-spacing:0.04em; min-width:80px; }
form{ display:flex; flex-direction:column; gap:16px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
label{ font-size:0.8rem; font-weight:700; color:var(--forest); margin-bottom:6px; display:block; text-transform:uppercase; letter-spacing:0.03em; }
input, textarea, select{
  width:100%;
  padding:13px 14px;
  border-radius:10px;
  border:1.5px solid var(--line);
  background:var(--paper);
  font-family:'Manrope', sans-serif;
  font-size:0.95rem;
  color:var(--ink);
  transition:border-color .2s ease;
}
input:focus, textarea:focus, select:focus{ border-color:var(--sage); outline:none; }
textarea{ resize:vertical; min-height:100px; }
.form-submit{
  align-self:flex-start;
  margin-top:6px;
}
.form-note{ font-size:0.8rem; color:var(--ink-soft); margin-top:4px; }

/* ---------- MAP ---------- */
.map-box{
  margin-top:70px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
}
.map-box iframe{ width:100%; height:340px; border:0; display:block; }

/* ---------- FOOTER ---------- */
footer{
  background:var(--forest);
  color:rgba(247,244,236,0.6);
  padding:56px 0 30px;
}
.footer-top{
  display:flex; justify-content:space-between; align-items:flex-start;
  flex-wrap:wrap;
  gap:30px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(247,244,236,0.14);
  margin-bottom:26px;
}
.footer-top .logo{ color:var(--paper); }
.footer-cols{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-col b{ display:block; color:var(--paper); font-size:0.82rem; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:14px; }
.footer-col a{ display:block; font-size:0.9rem; margin-bottom:10px; transition:color .2s ease; }
.footer-col a:hover{ color:var(--lime); }
.footer-bottom{ display:flex; justify-content:space-between; font-size:0.8rem; flex-wrap:wrap; gap:10px; }

/* ---------- ARTICLE (blog post) ---------- */
.article-hero{
  padding:56px 0 0;
}
.article-hero .wrap{ max-width:820px; }
.article-hero .breadcrumb{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;
  color:var(--sage);
  margin-bottom:20px;
}
.article-hero .breadcrumb a{ color:var(--sage); }
.article-hero .breadcrumb a:hover{ color:var(--forest); }
.article-hero h1{
  font-size:clamp(2rem, 4vw, 2.9rem);
  line-height:1.14;
  margin-bottom:18px;
}
.article-hero .article-lede{
  font-size:1.1rem;
  color:var(--ink-soft);
  margin-bottom:20px;
}
.article-meta{
  display:flex; gap:16px; align-items:center; flex-wrap:wrap;
  font-family:'IBM Plex Mono', monospace;
  font-size:0.78rem;
  color:var(--sage);
  padding-bottom:32px;
  border-bottom:1px solid var(--line);
  margin-bottom:32px;
}
.article-meta .tag{
  background:rgba(92,133,112,0.12);
  padding:5px 12px;
  border-radius:100px;
  text-transform:uppercase;
  letter-spacing:0.04em;
}
.article-featured-img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  border-radius:var(--radius);
  margin-bottom:8px;
  border:1px solid var(--line);
}
.article-img-caption{
  font-size:0.8rem;
  color:var(--ink-soft);
  margin-bottom:48px;
  font-style:italic;
}
.article-body{
  max-width:760px;
  margin:0 auto;
  padding:0 0 40px;
}
.article-body h2{
  font-size:1.55rem;
  margin-top:52px;
  margin-bottom:18px;
  scroll-margin-top:100px;
}
.article-body h3{
  font-size:1.2rem;
  margin-top:34px;
  margin-bottom:14px;
  scroll-margin-top:100px;
}
.article-body p{
  color:var(--ink-soft);
  font-size:1.02rem;
  line-height:1.75;
  margin-bottom:18px;
}
.article-body ul, .article-body ol{
  margin:0 0 22px 22px;
  color:var(--ink-soft);
  font-size:1.02rem;
  line-height:1.75;
}
.article-body li{ margin-bottom:8px; }
.article-body strong{ color:var(--forest); }
.article-cta-box{
  background:var(--paper-dim);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  margin:40px 0;
  text-align:center;
}
.article-cta-box h3{ margin-top:0; margin-bottom:10px; }
.article-cta-box p{ margin-bottom:20px; }
.article-faq .faq-item summary{ font-size:1rem; }
.article-share{
  display:flex; gap:14px; align-items:center;
  margin-top:16px; margin-bottom:0;
  padding-top:28px; border-top:1px solid var(--line);
}
.article-share span{ font-size:0.85rem; color:var(--ink-soft); font-weight:600; }

.related-articles{
  margin:48px 0 8px;
  padding-top:36px;
  border-top:1px solid var(--line);
}
.related-articles h3{
  font-size:1.1rem;
  margin-bottom:18px;
}
.related-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.related-card{
  border:1px solid var(--line);
  border-radius:12px;
  padding:16px;
  transition:border-color .2s ease, transform .2s ease;
  display:block;
}
.related-card:hover{ border-color:var(--sage); transform:translateY(-2px); }
.related-card .tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.68rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:var(--coral);
  display:block;
  margin-bottom:8px;
}
.related-card h4{
  font-family:'Fraunces', serif;
  font-size:0.95rem;
  font-weight:600;
  color:var(--forest);
  line-height:1.35;
}
@media (max-width: 900px){
  .related-grid{ grid-template-columns:1fr; }
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float{
  position:fixed;
  bottom:24px; right:24px;
  width:58px; height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px -8px rgba(0,0,0,0.4);
  z-index:60;
  transition:transform .2s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float:focus-visible{ outline:2.5px solid var(--forest); outline-offset:3px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px){
  .hero .wrap{ grid-template-columns:1fr; }
  .services-grid{ grid-template-columns:1fr; }
  .blog-grid{ grid-template-columns:1fr; }
  .contact-box{ grid-template-columns:1fr; padding:34px; }
  .field-row{ grid-template-columns:1fr; }
  .nav-links{
    position:fixed; top:78px; left:0; right:0;
    background:var(--paper);
    flex-direction:column;
    align-items:flex-start;
    padding:24px 32px 32px;
    border-bottom:1px solid var(--line);
    transform:translateY(-130%);
    transition:transform .3s ease;
    gap:20px;
  }
  .nav-links.open{ transform:translateY(0); }
  nav ul{ flex-direction:column; gap:18px; width:100%; }
  .burger{ display:block; }
  .footer-top{ flex-direction:column; }
}
@media (max-width: 560px){
  .wrap{ padding:0 20px; }
  section{ padding:64px 0; }
  .hero{ padding:56px 0 40px; }
  .page-hero{ padding:44px 0 36px; }
  .contact-box{ padding:24px; }
}
