:root{
  --bg: #ffffff;
  --surface: #f6fbf9;
  --surface2:#f2f7f5;
  --ink: #062f2a;
  --muted: #3d4b49;
  --border: #e3ece8;
  --green: #0b3d36;
  --green2:#0e4b42;
  --red: #b10f14;
  --red2:#d0181f;
  --shadow: 0 18px 55px rgba(6,47,42,.10);
  --shadow2: 0 10px 30px rgba(6,47,42,.08);
  --radius: 18px;
  --radius2: 12px;
  --container: 1120px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:88px;
}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  background:var(--bg);
  font-family:Manrope,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
  text-rendering:optimizeLegibility;
}
a{color:inherit}
img{max-width:100%; height:auto}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 12px;
  border-radius:10px;
  background:var(--ink);
  color:#fff;
  z-index:9999;
}
.skip-link:focus{left:14px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.75);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header[data-elevate="true"]{
  border-bottom-color:var(--border);
  box-shadow:0 6px 20px rgba(6,47,42,.05);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-text{
  display:inline-flex;
  align-items:center;
  font-weight:950;
  letter-spacing:-.02em;
  color:var(--ink);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.70);
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav-link{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color:rgba(6,47,42,.85);
  padding:10px 10px;
  border-radius:999px;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover{background:var(--surface2)}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:var(--shadow2);
}
.menu-btn-lines{
  display:block;
  width:18px;
  height:12px;
  margin:auto;
  position:relative;
}
.menu-btn-lines::before,
.menu-btn-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:var(--ink);
  border-radius:999px;
}
.menu-btn-lines::before{top:2px}
.menu-btn-lines::after{bottom:2px}

.mobile-nav{
  border-top:1px solid var(--border);
  background:#fff;
}
.mobile-nav-inner{
  display:flex;
  flex-direction:column;
  padding:10px 0 18px;
}
.mobile-link{
  text-decoration:none;
  padding:12px 8px;
  border-radius:12px;
  font-weight:700;
}
.mobile-link:hover{background:var(--surface2)}

.hero{
  padding:44px 0 18px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-240px -220px auto -220px;
  height:520px;
  background:
    radial-gradient(closest-side, rgba(14,75,66,.12), transparent 72%),
    radial-gradient(closest-side, rgba(208,24,31,.10), transparent 70%),
    radial-gradient(closest-side, rgba(11,61,54,.10), transparent 70%);
  filter: blur(0px);
  transform: rotate(-7deg);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:start;
}
.hero-copy,
.hero-card{
  min-width:0;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.70);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.hero-logo{
  display:block;
  width:min(520px, 100%);
  height:auto;
  margin:14px 0 10px;
  border-radius:16px;
  box-shadow: 0 18px 55px rgba(6,47,42,.10);
}
.hero-tagline{
  margin:0 0 14px;
  font-weight:800;
  font-size:clamp(17px, 2.1vw, 21px);
  line-height:1.45;
  letter-spacing:.01em;
  color:rgba(6,47,42,.78);
  max-width:100%;
  white-space:normal;
  overflow-wrap:break-word;
}
h1{
  font-family:Newsreader,serif;
  font-weight:700;
  letter-spacing:-.02em;
  line-height:1.06;
  font-size: clamp(40px, 4.3vw, 64px);
  margin:14px 0 12px;
}
.lead{
  color:rgba(6,47,42,.80);
  max-width:60ch;
  font-size:16px;
  margin:0 0 16px;
}

.cta-row{display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin:16px 0 18px}
.hero-below-grid{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:100%;
  margin-top:8px;
  padding-bottom:8px;
}
.cta-row--hero-below{
  justify-content:center;
  margin:20px 0 0;
  width:100%;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.01em;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); box-shadow:var(--shadow2)}
.btn:active{transform: translateY(0px); box-shadow:none}
.btn-primary{
  color:#fff;
  border-color:transparent;
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 52%, rgba(6,47,42,.98) 100%);
}
.btn-primary:hover{filter:saturate(1.05)}
.btn-ghost{
  background:rgba(255,255,255,.75);
}
.btn-block{width:100%}

.hero-card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.86);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card-top{
  padding:18px 18px 8px;
  background:
    linear-gradient(180deg, rgba(246,251,249,.9) 0%, rgba(255,255,255,.84) 100%);
  border-bottom:1px solid var(--border);
}
.hero-card h2{margin:0 0 6px; font-size:18px; letter-spacing:-.01em}
.muted{color:rgba(6,47,42,.70)}
.tiny{font-size:12px}

.quick-form{
  padding:14px 18px 18px;
  display:grid;
  gap:12px;
}
label span{display:block; font-weight:800; font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:rgba(6,47,42,.78); margin-bottom:6px}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--ink);
  outline:none;
}
textarea{resize:vertical; min-height:110px}
input:focus,select:focus,textarea:focus{
  border-color: rgba(14,75,66,.55);
  box-shadow: 0 0 0 4px rgba(14,75,66,.12);
}
.form-status{
  margin:0;
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
}
.form-status--ok{
  color:var(--green2);
  background:rgba(14,75,66,.08);
  border:1px solid var(--border);
}
.form-status--error{
  color:var(--red2);
  background:rgba(208,24,31,.06);
  border:1px solid rgba(208,24,31,.22);
}

.section{padding:52px 0}
.section-alt{
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.01em;
}

/* Services: sidebar + collapsible list (flex: reliable two-column layout) */
.services-xec-layout{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:clamp(24px, 4vw, 48px);
}
.services-xec-sidebar{
  flex:0 1 320px;
  width:100%;
  max-width:360px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  box-shadow:var(--shadow2);
  padding:22px 20px;
  position:sticky;
  top:88px;
  align-self:flex-start;
}
.services-xec-title{
  margin:0 0 12px;
  font-weight:800;
  font-size:clamp(26px, 2.8vw, 36px);
  letter-spacing:-.02em;
  line-height:1.2;
  color:var(--ink);
}
.services-xec-subtitle{
  margin:0 0 18px;
  max-width:none;
  font-size:15px;
  line-height:1.55;
}
.services-xec-nav{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:4px;
  margin:0 0 18px;
  padding:14px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.services-xec-nav-link{
  font-weight:800;
  font-size:14px;
  color:var(--green2);
  text-decoration:none;
  padding:10px 10px;
  border-radius:10px;
  margin-inline:-6px;
}
.services-xec-nav-link:hover{
  color:var(--red2);
  background:rgba(14,75,66,.06);
}
.services-xec-intro{
  margin:0;
  color:rgba(6,47,42,.82);
  font-size:14px;
  line-height:1.6;
}
.services-xec-main{
  flex:1 1 480px;
  min-width:0;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:8px 20px 12px;
}
.services-xec-body{
  display:flex;
  flex-direction:column;
  gap:0;
}
.service-accordion{
  scroll-margin-top:92px;
  border-top:1px solid var(--border);
}
.service-accordion:first-of-type{
  border-top:none;
}
.service-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 0;
  cursor:pointer;
  list-style:none;
  font-weight:800;
  font-size:clamp(17px, 1.85vw, 22px);
  letter-spacing:-.01em;
  color:var(--ink);
  user-select:none;
}
.service-summary::-webkit-details-marker{display:none}
.service-summary::marker{display:none}
.service-summary:hover .service-summary-label{color:var(--green2)}
.service-summary:focus-visible{
  outline:2px solid rgba(14,75,66,.45);
  outline-offset:4px;
  border-radius:10px;
}
.service-summary-label{
  flex:1;
  min-width:0;
  line-height:1.25;
}
.service-chevron{
  width:12px;
  height:12px;
  border-right:2.5px solid var(--ink);
  border-bottom:2.5px solid var(--ink);
  transform:rotate(45deg);
  flex-shrink:0;
  margin-top:-5px;
  opacity:.75;
  transition:transform .2s ease, opacity .2s ease;
}
.service-accordion[open] .service-chevron{
  transform:rotate(-135deg);
  margin-top:5px;
  opacity:1;
}
.service-panel{
  padding:0 0 22px;
  border-top:1px solid transparent;
}
.service-accordion[open] .service-panel{
  border-top-color:var(--border);
  padding-top:14px;
}
.service-panel > p{
  margin:0 0 14px;
  max-width:none;
  color:rgba(6,47,42,.78);
}
.service-list{
  max-width:none;
}
.service-list li{margin:10px 0}

@media (max-width: 900px){
  .services-xec-sidebar{
    flex:1 1 100%;
    max-width:none;
    position:static;
  }
  .services-xec-main{
    flex:1 1 100%;
  }
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 12px; color:rgba(6,47,42,.76)}
.list{
  padding-left:18px;
  margin:0;
  color:rgba(6,47,42,.78);
}
.list li{margin:8px 0}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.panel{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:18px;
}
.panel-accent{
  border-color: rgba(208,24,31,.20);
  background:
    linear-gradient(135deg, rgba(208,24,31,.08) 0%, rgba(14,75,66,.06) 45%, #fff 100%);
}
.tag-row{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.tag{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface2);
  font-weight:800;
  font-size:12px;
}
.tag-invert{
  background:#fff;
  border-color: rgba(208,24,31,.20);
}

.cta-strip{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.75);
  box-shadow:var(--shadow2);
}
.cta-strip h3{margin:0 0 4px; font-size:16px}
.cta-strip p{margin:0}

.coming-soon{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:
    linear-gradient(135deg, rgba(14,75,66,.08) 0%, rgba(255,255,255,.88) 45%, rgba(208,24,31,.06) 100%);
  box-shadow:var(--shadow2);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.coming-soon h3{margin:6px 0 8px; font-size:18px}
.coming-soon p{margin:0; max-width:70ch}
.coming-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(6,47,42,.14);
  background:rgba(255,255,255,.70);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.stats-visuals{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin: 10px 0 12px;
}
.visual{
  margin:0;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow2);
  overflow:hidden;
}
.visual-zoom{
  display:block;
  width:100%;
  margin:0;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  font:inherit;
  text-align:left;
}
.visual-zoom:focus-visible{
  outline:2px solid rgba(14,75,66,.55);
  outline-offset:2px;
}
.visual img{
  display:block;
  width:100%;
  height:160px;
  object-fit:cover;
  background: linear-gradient(135deg, rgba(14,75,66,.08), rgba(255,255,255,.90), rgba(208,24,31,.06));
}
.lightbox-overlay{
  position:fixed;
  inset:0;
  z-index:10000;
  display:grid;
  place-items:center;
  align-content:center;
  padding:24px 16px;
  overflow:auto;
  overscroll-behavior:contain;
  background:rgba(6,47,42,.78);
  cursor:pointer;
}
.lightbox-overlay[hidden]{
  display:none !important;
}
.lightbox-dialog{
  position:relative;
  cursor:default;
  max-width:min(96vw, 1200px);
  width:max-content;
  margin:auto;
  padding:48px 20px 20px;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
}
.lightbox-img{
  display:block;
  max-width:min(90vw, 1100px);
  max-height:min(82vh, 900px);
  width:auto;
  height:auto;
  object-fit:contain;
  margin:0 auto;
}
.lightbox-close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:2;
  width:40px;
  height:40px;
  padding:0;
  border:1px solid var(--border);
  border-radius:12px;
  background:rgba(255,255,255,.95);
  color:var(--ink);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox-close:hover{
  background:var(--surface2);
}
.visual figcaption{
  padding:10px 12px 12px;
  font-weight:800;
  font-size:13px;
  color:rgba(6,47,42,.74);
}

.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.stat{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:
    linear-gradient(180deg, rgba(246,251,249,.95) 0%, #fff 100%);
  padding:18px;
  box-shadow:var(--shadow2);
}
.stat-value{
  margin:0 0 6px;
  font-size:26px;
  font-weight:900;
  letter-spacing:-.02em;
}
.stat-label{margin:0; color:rgba(6,47,42,.74); font-weight:700}

.sources{
  margin-top:16px;
  border:1px dashed rgba(6,47,42,.22);
  border-radius:var(--radius);
  padding:14px 16px;
  background:rgba(255,255,255,.65);
}
.sources h3{margin:0 0 10px; font-size:14px; text-transform:uppercase; letter-spacing:.08em}
.sources ul{margin:0; padding-left:18px}
.sources li{margin:10px 0}
.sources a{color:var(--green2); font-weight:800; text-decoration:none}
.sources a:hover{text-decoration:underline}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.contact-grid--single{
  grid-template-columns:1fr;
  max-width:560px;
  margin-inline:auto;
}
.contact-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:clamp(20px, 3vw, 28px);
  align-items:start;
}
.contact-form-card{
  min-width:0;
}
.divider{height:1px; background:var(--border); margin:14px 0}
.link{color:var(--green2); font-weight:900; text-decoration:none}
.link:hover{text-decoration:underline}

.site-footer{
  border-top:1px solid var(--border);
  padding:22px 0 18px;
  background:#fff;
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.footer-brand{margin:0; font-weight:900; letter-spacing:-.01em}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-links a{
  text-decoration:none;
  font-weight:800;
  color:rgba(6,47,42,.78);
}
.footer-links a:hover{color:var(--green2); text-decoration:underline}
.footer-bottom{margin-top:12px}

.back-to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow2);
  font-weight:900;
  color:rgba(6,47,42,.82);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.back-to-top:hover{transform: translateY(-1px); box-shadow:var(--shadow)}
.back-to-top:active{transform: translateY(0px); box-shadow:var(--shadow2)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; gap:16px}
  .cards{grid-template-columns: 1fr; }
  .grid-2{grid-template-columns: 1fr}
  .stats{grid-template-columns: 1fr 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .contact-layout{grid-template-columns:1fr}
  .stats-visuals{grid-template-columns: 1fr}
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .section-head{flex-direction:column; align-items:flex-start}
}

@media (max-width: 520px){
  .stats{grid-template-columns: 1fr}
  .brand-mark{height:34px}
  .hero{padding-top:26px}
}

/* Legal / policy pages */
.legal-page{
  padding:40px 0 64px;
}
.legal-doc{
  width:min(72ch, calc(100% - 40px));
  margin-inline:auto;
}
.legal-doc h1{
  margin:0 0 8px;
  font-size:clamp(26px, 3vw, 34px);
  letter-spacing:-.02em;
  color:var(--ink);
}
.legal-doc .legal-updated{
  margin:0 0 24px;
  font-size:14px;
  color:rgba(6,47,42,.65);
}
.legal-doc h2{
  margin:28px 0 10px;
  font-size:17px;
  font-weight:800;
  color:var(--ink);
}
.legal-doc h3{
  margin:18px 0 8px;
  font-size:15px;
  font-weight:800;
  color:var(--ink);
}
.legal-doc p,
.legal-doc li{
  margin:10px 0;
  color:rgba(6,47,42,.82);
  font-size:15px;
  line-height:1.6;
}
.legal-doc ul,
.legal-doc ol{
  margin:10px 0;
  padding-left:1.35em;
}
.legal-doc a{
  color:var(--green2);
  font-weight:700;
}
.legal-doc a:hover{text-decoration:underline}
.legal-note{
  margin-top:36px;
  padding:16px 18px;
  border:1px dashed rgba(6,47,42,.22);
  border-radius:var(--radius);
  background:var(--surface);
  font-size:13px;
  line-height:1.55;
  color:rgba(6,47,42,.78);
}
.legal-back{
  display:inline-block;
  margin-bottom:20px;
  font-weight:800;
  font-size:14px;
  color:var(--green2);
  text-decoration:none;
}
.legal-back:hover{text-decoration:underline}
