:root{
  --teal-dark:#0a4a44;
  --teal:#0e5c54;
  --teal-light:#3f8f86;
  --gold:#f5b942;
  --gold-light:#fbd888;
  --cream:#faf6ef;
  --white:#ffffff;
  --ink:#1c2422;
  --gray:#5c6b68;
  --border:#e6e0d4;
  --radius:16px;
  --shadow:0 12px 30px rgba(10,42,38,.10);
  --font-head:'Poppins',sans-serif;
  --font-body:'Inter',sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
}
h1,h2,h3,h4{font-family:var(--font-head); margin:0 0 .5em; line-height:1.2;}
p{margin:0 0 1em;}
a{color:inherit; text-decoration:none;}
ul,ol{margin:0; padding:0; list-style:none;}
img{max-width:100%; display:block;}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--gold);
  color:var(--teal-dark);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(245,185,66,.35);
}
.btn-outline{
  border-color:rgba(255,255,255,.6);
  color:var(--white);
}
.btn-outline:hover{
  background:rgba(255,255,255,.12);
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(250,246,239,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:14px 24px;
}
.logo{display:flex; align-items:center; gap:10px;}
.logo-mark{flex-shrink:0;}
.logo-text{font-family:var(--font-head); font-size:1.2rem; font-weight:600; color:var(--teal-dark);}
.logo-text strong{font-weight:800;}
.logo-text-light{color:var(--white);}

.main-nav{display:flex; gap:28px; align-items:center;}
.main-nav a{font-weight:500; font-size:.95rem; color:var(--ink); position:relative;}
.main-nav a:hover{color:var(--teal);}

.header-cta{flex-shrink:0;}

.menu-toggle{
  display:none;
  flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px;
  background:none; border:none; cursor:pointer;
  padding:0;
}
.menu-toggle span{
  display:block; height:2px; width:100%;
  background:var(--teal-dark); border-radius:2px;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 55%, #0c534c 100%);
  color:var(--white);
  padding:96px 0 72px;
}
.hero-shapes{position:absolute; inset:0; z-index:0;}
.shape{position:absolute; border-radius:50%;}
.shape-circle-gold{
  width:180px; height:180px;
  background:var(--gold);
  opacity:.9;
  top:-60px; right:8%;
}
.shape-blob-teal{
  width:420px; height:420px;
  background:var(--teal-light);
  opacity:.25;
  bottom:-220px; left:-120px;
}
.hero-inner{position:relative; z-index:1; max-width:760px;}
.eyebrow{
  text-transform:uppercase; letter-spacing:.14em; font-size:.8rem;
  font-weight:700; color:var(--gold-light); margin-bottom:14px;
}
.hero h1{font-size:2.9rem; font-weight:800; max-width:680px;}
.hero-sub{font-size:1.1rem; color:rgba(255,255,255,.85); max-width:600px;}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin:28px 0 56px;}

.hero-stats{display:flex; gap:48px; flex-wrap:wrap; border-top:1px solid rgba(255,255,255,.18); padding-top:32px;}
.stat{display:flex; flex-direction:column;}
.stat-number{font-family:var(--font-head); font-size:2rem; font-weight:800; color:var(--gold);}
.stat-label{font-size:.9rem; color:rgba(255,255,255,.75);}

/* Section headings */
.section-eyebrow{
  text-transform:uppercase; letter-spacing:.14em; font-size:.8rem;
  font-weight:700; color:var(--teal); margin-bottom:10px;
}
.section-eyebrow-light{color:var(--gold-light);}
.section-title{font-size:2.1rem; font-weight:700; color:var(--ink); max-width:640px;}
.section-title-light{color:var(--white);}
.section-lead{color:var(--gray); max-width:620px; font-size:1.05rem;}
.section-lead-light{color:rgba(255,255,255,.8);}

/* Services */
.services{padding:96px 0; position:relative; overflow:hidden;}
.services-shapes{position:absolute; inset:0; z-index:0; pointer-events:none;}
.shape-circle-gold-sm{
  width:120px; height:120px; background:var(--gold);
  opacity:.14; top:40px; right:6%;
}
.shape-ring-teal{
  width:260px; height:260px; border-radius:50%;
  border:36px solid var(--teal);
  opacity:.07; bottom:-80px; left:-100px;
}
.services > .container{position:relative; z-index:1;}

.services-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; flex-wrap:wrap;
}
.services-head-cta{flex-shrink:0;}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:28px; margin-top:48px;
  align-items:stretch;
}
.service-card{
  position:relative;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px 32px 28px;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
  display:flex; flex-direction:column;
}
.service-card:hover{transform:translateY(-6px); box-shadow:0 18px 36px rgba(10,42,38,.14);}

.service-card-featured{
  background:var(--teal-dark);
  border-color:var(--teal-dark);
}
.service-card-featured .service-index{color:rgba(255,255,255,.35);}
.service-card.service-card-featured h3, .service-card.service-card-featured p{color:var(--white);}
.service-card-featured .tag{
  background:rgba(255,255,255,.1); color:var(--white); border-color:rgba(255,255,255,.18);
}
.service-card-featured .service-icon{background:var(--gold); color:var(--teal-dark);}
.service-card-featured .card-link{color:var(--gold-light);}

.service-index{
  position:absolute; top:28px; right:32px;
  font-family:var(--font-head); font-weight:800; font-size:1.3rem;
  color:var(--border);
}
.service-icon{
  width:56px; height:56px; border-radius:14px;
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.service-card h3{font-size:1.3rem; color:var(--teal-dark);}
.service-card p{color:var(--gray); margin-bottom:0;}

.tag-list{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:20px; padding-top:20px;
  border-top:1px solid var(--border);
}
.service-card-featured .tag-list{border-top-color:rgba(255,255,255,.18);}
.tag{
  font-size:.78rem; font-weight:600; color:var(--teal-dark);
  background:var(--cream); border:1px solid var(--border);
  border-radius:999px; padding:6px 12px;
}

.card-link{
  font-weight:700; font-size:.92rem; color:var(--teal);
  display:inline-flex; align-items:center; gap:6px;
  margin-top:auto; padding-top:20px;
}
.card-link span{transition:transform .2s ease;}
.card-link:hover span{transform:translateX(4px);}

/* Methodology */
.methodology{
  background:var(--teal-dark);
  color:var(--white);
  padding:88px 0;
}
.methodology-inner{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
.method-steps{display:flex; flex-direction:column; gap:18px;}
.method-steps li{
  display:flex; align-items:center; gap:16px;
  font-size:1.02rem; color:rgba(255,255,255,.92);
}
.step-num{
  flex-shrink:0;
  width:36px; height:36px; border-radius:50%;
  background:var(--gold); color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-family:var(--font-head);
}

/* About */
.about{padding:96px 0;}
.about-inner{display:grid; grid-template-columns:1.3fr 1fr; gap:56px; align-items:start;}
.about-text p{color:var(--gray); font-size:1.02rem;}
.about-text strong{color:var(--teal-dark);}

.commitment-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px; margin-top:32px;
}
.commitment-item{
  background:var(--white); border:1px solid var(--border); border-radius:12px;
  padding:20px;
}
.commitment-icon{color:var(--gold); font-size:1.1rem;}
.commitment-item p{margin:8px 0 0; font-size:.92rem; color:var(--ink);}

.founder-card{
  background:var(--teal-dark); color:var(--white);
  border-radius:var(--radius); padding:36px;
  box-shadow:var(--shadow);
}
.founder-photo{
  width:76px; height:76px; border-radius:50%;
  background:var(--gold); color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:800; font-size:1.4rem;
  margin-bottom:18px;
}
.founder-card h3{font-size:1.25rem; margin-bottom:2px;}
.founder-role{color:var(--gold-light); font-weight:600; margin-bottom:20px;}
.founder-card ul{display:flex; flex-direction:column; gap:12px;}
.founder-card li{
  font-size:.92rem; color:rgba(255,255,255,.85); padding-left:18px; position:relative;
}
.founder-card li::before{
  content:"—"; position:absolute; left:0; color:var(--gold);
}

/* Why us */
.why-us{background:var(--white); padding:96px 0;}
.why-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px; margin-top:40px;
}
.why-item{
  display:flex; gap:16px; align-items:flex-start;
  background:var(--cream); border-radius:14px; padding:22px;
}
.why-icon{
  flex-shrink:0; width:32px; height:32px; border-radius:50%;
  background:var(--teal); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-weight:700;
}
.why-item p{margin:0; color:var(--ink); font-size:.98rem;}

/* Quote */
.quote-section{
  background:linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding:80px 0;
}
.quote-section blockquote{
  margin:0; text-align:center;
  font-family:var(--font-head); font-style:italic; font-weight:600;
  font-size:1.6rem; color:var(--white); max-width:760px; margin:0 auto;
}

/* Contact */
.contact{padding:96px 0;}
.contact-inner{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;}
.contact-details{margin-top:28px; display:flex; flex-direction:column; gap:18px;}
.contact-details li{display:flex; align-items:center; gap:14px; font-size:1.02rem;}
.contact-icon{
  width:40px; height:40px; border-radius:50%;
  background:var(--teal); color:var(--white);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-details a:hover{color:var(--teal);}

.contact-form{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius);
  padding:36px; box-shadow:var(--shadow);
  display:flex; flex-direction:column; gap:18px;
}
.contact-form label{display:flex; flex-direction:column; gap:6px; font-size:.9rem; font-weight:600; color:var(--teal-dark);}
.contact-form input, .contact-form textarea{
  font-family:var(--font-body); font-size:1rem; padding:12px 14px;
  border:1px solid var(--border); border-radius:10px; background:var(--cream);
  color:var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus{
  outline:2px solid var(--teal-light); outline-offset:1px;
}
.contact-form button{align-self:flex-start;}
.form-note{font-size:.88rem; color:var(--teal); min-height:1.2em;}

/* Footer */
.site-footer{background:var(--teal-dark); color:rgba(255,255,255,.85); padding-top:64px;}
.footer-inner{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-brand p{color:rgba(255,255,255,.7); font-size:.92rem; margin-top:12px;}
.footer-links, .footer-contact{display:flex; flex-direction:column; gap:12px;}
.footer-links h4, .footer-contact h4{color:var(--white); font-family:var(--font-head); font-size:1rem; margin-bottom:6px;}
.footer-links a, .footer-contact a{color:rgba(255,255,255,.75); font-size:.94rem;}
.footer-links a:hover, .footer-contact a:hover{color:var(--gold);}
.footer-bottom{text-align:center; padding:24px; font-size:.85rem; color:rgba(255,255,255,.55);}

/* Responsive */
@media (max-width: 900px){
  .main-nav{
    position:fixed; top:70px; left:0; right:0;
    background:var(--cream); flex-direction:column; align-items:flex-start;
    padding:20px 24px; gap:16px;
    border-bottom:1px solid var(--border);
    transform:translateY(-140%); opacity:0;
    transition:transform .25s ease, opacity .25s ease;
  }
  .main-nav.open{transform:translateY(0); opacity:1;}
  .header-cta{display:none;}
  .menu-toggle{display:flex;}

  .hero h1{font-size:2.1rem;}
  .methodology-inner, .about-inner, .contact-inner{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr; text-align:left;}
}

@media (max-width:520px){
  .hero{padding:72px 0 48px;}
  .hero-stats{gap:28px;}
  .services, .about, .why-us, .contact, .methodology{padding:64px 0;}
}
