@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --dark:       #0B1A14;
  --dark-mid:   #112219;
  --dark-dk:    #071009;
  --green:      #1A6B52;
  --green-lt:   #22886A;
  --green-pale: #E4F2ED;
  --green-sky:  #B8DDD4;
  --white:      #FFFFFF;
  --off:        #F6FAF8;
  --gray-50:    #EEF5F2;
  --gray-100:   #DAE9E3;
  --gray-200:   #B8D2C9;
  --gray-400:   #6E9E8F;
  --gray-600:   #2E5E50;
  --text:       #0B1A14;
  --text-mid:   #1E3D32;
  --text-lt:    #4A7265;
  --r:          8px;
  --r-lg:       16px;
  --r-xl:       24px;
  --shadow-sm:  0 2px 8px rgba(11,26,20,.08);
  --shadow:     0 4px 20px rgba(11,26,20,.12);
  --shadow-lg:  0 12px 48px rgba(11,26,20,.18);
  --nh:         72px;
  --mw:         1180px;
}

.section-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; font-family: 'Inter', sans-serif; }
h4 { font-size: .95rem; font-weight: 700; color: var(--dark); }
p  { color: var(--text-mid); line-height: 1.72; }
a  { text-decoration: none; color: inherit; }

.wrap { max-width: var(--mw); margin: 0 auto; padding: 0 2rem; }
section { padding: 5.5rem 0; }
.label {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: .85rem; display: block;
}
.bar {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-lt));
  border-radius: 2px; margin: 1.1rem 0 2rem;
}
.bar.c { margin-left: auto; margin-right: auto; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.6rem; border-radius: var(--r);
  font-size: .875rem; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; border: none; transition: all .22s ease; white-space: nowrap;
}
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-lt) 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(26,107,82,.4);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,107,82,.5); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-dark { background: var(--dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--dark-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-400); }

.nav-drop.open .drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* NAV */
.nav-about-link {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: .5rem .8rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-about-link:hover {
  color: #fff;
  background: rgba(255,255,255,.09);
}

nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nh); z-index: 1000;
  transition: background .25s, box-shadow .25s;
}
nav.site-nav.scrolled {
  background: rgba(7,16,9,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
nav.site-nav.solid { background: var(--dark-dk); }
.nav-in {
  max-width: var(--mw); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: .8rem; }
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-lt) 100%);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: #fff; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,107,82,.4);
}
.logo-txt span:first-child { display: block; font-size: 1rem; font-weight: 700; color: #fff; }
.logo-txt span:last-child {
  display: block; font-size: .66rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.42);
}
.nav-links { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav-links a {
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.72);
  padding: .5rem .8rem; border-radius: 6px; transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.09); }
.nav-drop { position: relative; }
.nav-drop > a { display: flex; align-items: center; gap: .3rem; cursor: pointer; }
.nav-drop > a::after {
  content: ''; border-left: 4px solid transparent;
  border-right: 4px solid transparent; border-top: 5px solid currentColor;
  opacity: .52; transition: transform .2s;
}
.nav-drop:hover > a::after { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(11,26,20,.18);
  min-width: 230px; padding: .6rem; opacity: 0;
  pointer-events: none; transition: opacity .2s, transform .2s;
  border: 1px solid var(--gray-100); border-top: 3px solid var(--green);
}
.nav-drop:hover .drop-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.drop-menu a {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem 1rem; font-size: .85rem; font-weight: 500;
  color: var(--text) !important; border-radius: var(--r);
  transition: background .15s; background: none !important;
}
.drop-menu a:hover { background: var(--green-pale) !important; color: var(--green) !important; }
.drop-icon {
  width: 26px; height: 26px; background: var(--green-pale); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--green); flex-shrink: 0;
}
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.burger span {
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px; transition: all .22s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav {
  display: none; position: fixed;
  top: var(--nh); left: 0; right: 0; bottom: 0;
  background: var(--dark-dk); z-index: 999;
  overflow-y: auto; padding: 1.5rem 2rem;
  flex-direction: column; gap: .35rem;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  color: rgba(255,255,255,.75); font-size: .95rem; font-weight: 500;
  padding: .8rem 1rem; border-radius: 8px; transition: background .15s;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mob-nav a:hover { background: rgba(255,255,255,.07); color: #fff; }
.mob-section {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #5CBFA3;
  padding: .9rem 1rem .3rem; margin-top: .5rem;
}
.mob-sub { padding-left: 2rem !important; }
.mob-nav .btn { margin-top: 1.25rem; justify-content: center; }

/* HERO */
.hero {
  min-height: 100vh; background: var(--dark-dk);
  display: flex; align-items: center;
  padding-top: var(--nh); position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; top: -10%; right: -5%;
  width: 70vw; height: 70vw;
  background: radial-gradient(ellipse at center, rgba(26,107,82,.25) 0%, transparent 65%);
}
.hero-bg::after {
  content: ''; position: absolute; bottom: -20%; left: -5%;
  width: 50vw; height: 50vw;
  background: radial-gradient(ellipse at center, rgba(34,136,106,.08) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,107,82,.18); border: 1px solid rgba(26,107,82,.38);
  color: #5CBFA3; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .45rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #5CBFA3;
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: #5CBFA3; }
.hero-left > p {
  color: rgba(255,255,255,.58); font-size: 1.06rem;
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1);
}
.stat-val {
  font-family: 'Playfair Display', serif; font-size: 2.1rem;
  color: #fff; line-height: 1; font-weight: 700;
}
.stat-lbl {
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.38);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .3rem;
}
.hero-card {
  background: rgba(255,255,255,.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-xl); padding: 2.5rem;
  border-top: 3px solid var(--green-lt);
}
.hc-label {
  font-size: 1.7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #5CBFA3; margin-bottom: 1.5rem;
}
.hc-list { list-style: none; }
.hc-list li {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.82); font-size: 1.4rem; font-weight: 500;
}
.hc-list li:last-child { border-bottom: none; }
.hc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-lt); flex-shrink: 0; }
.hc-footer {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: .75rem;
  font-size: .78rem; color: rgba(255,255,255,.35);
}
.iso-pill {
  background: rgba(26,107,82,.22); color: #5CBFA3;
  padding: .25rem .65rem; border-radius: 4px;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
}

/* TRUST BAR */
.trust-bar {
  background: var(--off);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.75rem 0;
}
.trust-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
}
.trust-icon {
  width: 32px; height: 32px; background: var(--green-pale);
  border-radius: 7px; display: flex; align-items: center;
  justify-content: center; font-size: .95rem; flex-shrink: 0;
}

/* ABOUT */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-card {
  background: var(--dark); border-radius: var(--r-xl);
  padding: 3rem; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(26,107,82,.3) 0%, transparent 70%);
  pointer-events: none;
}
.about-card::after {
  content: ''; position: absolute; bottom: -10%; left: -10%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(34,136,106,.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(26,107,82,.2); border: 1px solid rgba(26,107,82,.35);
  color: #5CBFA3; font-size: .72rem; font-weight: 700;
  padding: .35rem .85rem; border-radius: 100px;
  margin-bottom: 1.25rem; letter-spacing: .06em;
}
.about-card h3 {
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 1.35rem; margin-bottom: .85rem;
  font-weight: 700; position: relative; z-index: 1;
}
.about-card > p {
  color: rgba(255,255,255,.55); font-size: .9rem;
  line-height: 1.75; position: relative; z-index: 1;
}
.about-list { list-style: none; margin-top: 1.75rem; position: relative; z-index: 1; }
.about-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .55rem 0; color: rgba(255,255,255,.68);
  font-size: .875rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before { content: '✓'; color: #5CBFA3; font-weight: 700; flex-shrink: 0; }
.about-txt > p { font-size: 1rem; line-height: 1.78; color: var(--text-mid); margin-bottom: 1.15rem; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 2rem; }
.pillar {
  background: var(--off); border: 1.5px solid var(--gray-100);
  border-left: 3px solid var(--green); border-radius: var(--r); padding: 1.2rem;
}
.pillar h4 { font-size: .88rem; margin-bottom: .3rem; }
.pillar p  { font-size: .8rem; color: var(--text-lt); line-height: 1.6; }

/* SERVICES */
.svc-bg { background: var(--off); }
.svc-head { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.svc-head p { font-size: .97rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 2rem;
  position: relative; overflow: hidden; transition: all .25s;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.svc-card:hover { border-color: var(--green-sky); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico {
  width: 52px; height: 52px; background: var(--green-pale);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem;
  margin-bottom: 1.25rem; transition: background .25s;
}
.svc-card:hover .svc-ico { background: var(--green); }
.svc-card h3 { font-size: 1.05rem; margin-bottom: .6rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.svc-card p  { font-size: .86rem; line-height: 1.68; color: var(--text-lt); }
.svc-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.25rem; font-size: .82rem;
  font-weight: 700; color: var(--green); letter-spacing: .01em;
}
.svc-link::after { content: '→'; transition: transform .2s; }
.svc-card:hover .svc-link::after { transform: translateX(5px); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-c {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 1.75rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.why-c:hover { box-shadow: var(--shadow); }
.why-c:nth-child(2) { margin-top: 1.75rem; }
.why-c:nth-child(4) { margin-top: -1.75rem; }
.why-num {
  font-family: 'Playfair Display', serif; font-size: 2.3rem;
  color: var(--green); line-height: 1; margin-bottom: .35rem; font-weight: 700;
}
.why-c h4 { font-size: .85rem; color: var(--dark); margin-bottom: .3rem; }
.why-c p  { font-size: .78rem; color: var(--text-lt); line-height: 1.55; }
.why-txt h2 { margin-bottom: 1rem; }
.why-txt > p { font-size: .97rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.feat-list { list-style: none; }
.feat-list li {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: .9rem 0; border-bottom: 1px solid var(--gray-100);
}
.feat-list li:last-child { border-bottom: none; }
.feat-ico {
  width: 38px; height: 38px; background: var(--green-pale);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1rem;
}
.feat-list h4 { font-size: .9rem; margin-bottom: .2rem; }
.feat-list p  { font-size: .82rem; color: var(--text-lt); line-height: 1.6; }

/* TEAM */
.team-sec { background: var(--dark); }
.team-sec .label { color: rgba(92,191,163,.85); }
.team-sec h2 { color: #fff; }
.team-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3.5rem; }
.team-head p { color: rgba(255,255,255,.52); font-size: .97rem; line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.team-chip {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 1.5rem 1.25rem;
  text-align: center; transition: all .2s;
}
.team-chip:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(26,107,82,.45);
  transform: translateY(-3px);
}
.team-chip-ico { font-size: 1.6rem; margin-bottom: .65rem; }
.team-chip h4 { font-size: .88rem; color: #fff; font-family: 'Inter', sans-serif; font-weight: 600; }
.team-quote {
  text-align: center; margin-top: 2.5rem; padding: 1.75rem;
  background: rgba(26,107,82,.1); border: 1px solid rgba(26,107,82,.25);
  border-radius: var(--r-lg);
}
.team-quote p { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #5CBFA3; font-style: italic; }

/* QUALITY */
.qual-bg { background: linear-gradient(180deg, var(--off) 0%, var(--white) 100%); }
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.qual-txt h2 { margin-bottom: 1rem; }
.qual-txt > p { font-size: .97rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; }
.qual-badges { display: flex; flex-wrap: wrap; gap: .65rem; }
.qbadge {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r); padding: .55rem 1rem;
  font-size: .8rem; font-weight: 700; color: var(--dark); box-shadow: var(--shadow-sm);
}
.qual-items { display: flex; flex-direction: column; gap: .85rem; }
.qi {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: box-shadow .2s, border-color .2s;
}
.qi:hover { box-shadow: var(--shadow); border-color: var(--green-sky); }
.qi-ico {
  width: 44px; height: 44px; background: var(--green-pale);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.qi h4 { font-size: .92rem; margin-bottom: .3rem; }
.qi p  { font-size: .82rem; color: var(--text-lt); line-height: 1.62; }

/* CTA */
.cta-sec {
  background: linear-gradient(135deg, var(--dark-dk) 0%, var(--dark-mid) 60%, #0D3D2B 100%);
  padding: 6rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,107,82,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-sec h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-sec > div > p {
  color: rgba(255,255,255,.55); max-width: 500px;
  margin: 0 auto 2.5rem; font-size: 1.02rem; position: relative;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* FOOTER */
footer { background: #030A05; padding: 4rem 0 0; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.foot-grid .foot-col:first-of-type {
  margin-left: auto;
  padding-left: 6rem;
}
.foot-brand p {
  font-size: .86rem; color: rgba(255,255,255,.35);
  line-height: 1.72; margin-top: .9rem; max-width: 280px;
}
.foot-col h5 {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.25rem;
}
.foot-col a { display: block; font-size: .86rem; color: rgba(255,255,255,.48); margin-bottom: .6rem; transition: color .2s; }
.foot-col a:hover { color: #5CBFA3; }
.foot-bot {
  padding: 1.5rem 0; display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.foot-bot p { font-size: .78rem; color: rgba(255,255,255,.26); }
.foot-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.foot-legal a { font-size: .78rem; color: rgba(255,255,255,.26); transition: color .2s; }
.foot-legal a:hover { color: #5CBFA3; }

/* PAGE HEADER */
.page-hd {
  background: var(--dark-dk); padding: 8.5rem 0 4.5rem;
  position: relative; overflow: hidden;
}
.page-hd::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark-dk) 0%, var(--dark-mid) 100%);
}
.page-hd::after {
  content: ''; position: absolute; top: -30%; right: -5%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(26,107,82,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hd .wrap { position: relative; z-index: 1; }
.page-hd h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hd p { color: rgba(255,255,255,.52); margin-top: .7rem; font-size: 1rem; max-width: 540px; }
.crumb { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.38); margin-bottom: .85rem; }
.crumb a { color: #5CBFA3; }
.crumb span { color: rgba(255,255,255,.2); }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; padding: 5.5rem 0; align-items: start; }
.ci h3 { font-size: 1.3rem; font-family: 'Playfair Display', serif; margin-bottom: .75rem; }
.ci > p { font-size: .93rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; }
.cd { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: 1.4rem; }
.cd-ico {
  width: 42px; height: 42px; background: var(--green-pale);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.cd h4 { font-size: .88rem; margin-bottom: .2rem; }
.cd p  { font-size: .84rem; color: var(--text-lt); }
.contact-note {
  margin-top: 2.5rem; padding: 1.4rem;
  background: var(--green-pale); border: 1.5px solid var(--green-sky);
  border-radius: var(--r-lg);
}
.contact-note h4 { font-size: .88rem; margin-bottom: .4rem; color: var(--green); }
.contact-note p  { font-size: .82rem; color: var(--text-lt); line-height: 1.6; }
.cform {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}
.cform h3 { font-size: 1.45rem; font-family: 'Playfair Display', serif; margin-bottom: .4rem; }
.cform > .sub { color: var(--text-lt); font-size: .9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.15rem; }
.fg label { display: block; font-size: .8rem; font-weight: 700; color: var(--dark); margin-bottom: .45rem; letter-spacing: .02em; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: .78rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--r);
  font-family: 'Inter', sans-serif; font-size: .9rem;
  color: var(--text); background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,107,82,.1);
}
.fg textarea { resize: vertical; min-height: 140px; }
.req { color: var(--green); }
.form-foot { font-size: .79rem; color: var(--text-lt); text-align: center; margin-top: .85rem; }
.form-foot a { color: var(--green); }
.f-success { display: none; text-align: center; padding: 3rem 2rem; }
.f-success .s-ico { font-size: 3.5rem; margin-bottom: 1rem; }
.f-success h3 { margin-bottom: .5rem; font-family: 'Playfair Display', serif; }
.f-success p  { color: var(--text-lt); font-size: .95rem; }

/* LEGAL */
.legal-wrap { padding: 5.5rem 0; }
.legal-body { max-width: 800px; margin: 0 auto; }
.legal-meta {
  background: var(--green-pale); border: 1.5px solid var(--green-sky);
  border-left: 3px solid var(--green); border-radius: var(--r);
  padding: 1.2rem 1.5rem; margin-bottom: 2.5rem;
  font-size: .875rem; color: var(--text-mid);
}
.legal-toc {
  background: var(--off); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 1.75rem; margin-bottom: 3rem;
}
.legal-toc h4 { font-size: .85rem; margin-bottom: .9rem; }
.legal-toc ol { list-style: decimal; padding-left: 1.25rem; }
.legal-toc li { padding: .22rem 0; }
.legal-toc a { font-size: .85rem; color: var(--green); font-weight: 500; }
.legal-toc a:hover { text-decoration: underline; }
.legal-body h2 {
  font-size: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 700;
  color: var(--dark); margin: 2.75rem 0 .85rem;
  padding-top: 2.75rem; border-top: 1.5px solid var(--gray-100);
}
.legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body p { font-size: .93rem; color: var(--text-mid); line-height: 1.82; margin-bottom: .9rem; }
.legal-body strong { color: var(--dark); }
.legal-back { margin-top: 3.5rem; padding-top: 2rem; border-top: 1.5px solid var(--gray-100); }

/* ACCESSIBILITY */
.a11y-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin: 3rem 0; }
.a11y-card {
  background: var(--off); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 2rem;
}
.a11y-ico { font-size: 2rem; margin-bottom: 1rem; }
.a11y-card h4 { margin-bottom: .5rem; }
.a11y-card p  { font-size: .875rem; color: var(--text-lt); line-height: 1.65; }

/* RESPONSIVE */
@media(max-width:1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:860px) {
  section { padding: 3.75rem 0; }
  .hero-grid, .about-wrap, .why-grid, .qual-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .team-head { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .why-c:nth-child(2), .why-c:nth-child(4) { margin-top: 0; }
  .a11y-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media(max-width:640px) {
  :root { --nh: 64px; }
  .wrap { padding: 0 1.25rem; }
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .svc-grid, .team-grid, .foot-grid, .a11y-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .why-c:nth-child(2), .why-c:nth-child(4) { margin-top: 0; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .foot-bot { flex-direction: column; text-align: center; }
}
