:root{
  --brand:#054F4F;

  --text:#0b1f1f;
  --muted:rgba(11,31,31,.70);

  --wrap:1200px;
  --r:22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:"Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color:#0a1b1b;               /* darker than before */
  background:#fff;
  font-weight:500;             /* ⬅️ key change */
}


.wrap{ width:min(var(--wrap), calc(100% - 28px)); margin:0 auto; }
a{ color:inherit; text-decoration:none; }

/* ===== HEADER (solid teal, logo blends) ===== */
.siteHeader{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--brand);
  border-bottom:1px solid rgba(255,255,255,.16);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.logo{ height:34px; width:auto; display:block; }

.name{
  font-weight:700;
  font-size:18px;
  letter-spacing:.3px;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.links{
  display:flex;
  gap:10px;
  align-items:center;
}

.links a{
  padding:10px 14px;
  border-radius:999px;
  color:rgba(255,255,255,.84);
  font-weight:600;
  transition: background .18s ease, transform .18s ease;
}

.links a:hover{
  background:rgba(255,255,255,.14);
  transform: translateY(-1px);
}

.links a.active{
  background:rgba(255,255,255,.18);
  color:#fff;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 18px;
  font-weight:700;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.04);
  color:var(--text);
  transition: transform .18s ease, background .18s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background:rgba(0,0,0,.06);
}

.btn.primary{
  background: linear-gradient(180deg, #0a6a6a, #054F4F);
  border-color: rgba(0,0,0,0);
  color:#fff;
}

.btn.primary:hover{
  background: linear-gradient(180deg, #0b7777, #065b5b);
}

.btn.ghost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.30);
  color:#fff;
  backdrop-filter: blur(10px);
}

.headerBtn{
  background:#fff;
  color:var(--brand);
  border:1px solid rgba(255,255,255,.35);
  padding:10px 16px;
  border-radius:12px;
  font-weight:800;
  white-space:nowrap;
}

/* ===== HERO (full-bleed image + overlay like Replit) ===== */
.hero{
  position:relative;
  min-height:80vh;
  overflow:hidden;
}

.heroImg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
  filter: saturate(.95) contrast(1.05);
}

.heroOverlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.60) 45%, rgba(0,0,0,.40) 100%),
    radial-gradient(900px 520px at 20% 0%, rgba(5,79,79,.25), transparent 55%);
}

.heroInner{
  position:relative;
  z-index:2;
  min-height:80vh;
  display:flex;
  align-items:center;
  padding:72px 0;
}

.heroText{ max-width: 740px; }

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  color:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  padding:10px 14px;
  border-radius:999px;
}

.kicker .dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(5,79,79,.35);
}

.hero h1{
  margin:18px 0 14px;
  color:#fff;
  font-size: clamp(44px, 5.2vw, 72px);
  letter-spacing:-0.045em;
  line-height:0.98;
}

.sub{
  margin:0;
  color:rgba(255,255,255,.88);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height:1.65;
  max-width: 62ch;
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.arrow{ opacity:.9; }

/* Highlights row */
.highlights{
  display:flex;
  flex-wrap:wrap;
  gap:18px 22px;
  margin-top:28px;
  color:rgba(255,255,255,.92);
}

.highlight{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  font-size:14px;
}

.check{
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background: rgba(5,79,79,.65);
  border:1px solid rgba(255,255,255,.18);
}

/* ===== BELOW FOLD (original style) ===== */
.section{ padding:60px 0 10px; }

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
  padding: 0 0 40px;
}

.card{
  grid-column: span 6;
  padding:22px;
  border-radius: var(--r);
  border:1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.10);
}

.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0; color:rgba(11,31,31,.72); line-height:1.6; font-size:14px; }

.tag{
  display:inline-flex;
  margin-top:12px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(5,79,79,.08);
  border: 1px solid rgba(5,79,79,.18);
  color: var(--brand);
  font-size:12px;
  font-weight:700;
}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  padding: 0 0 64px;
}

.panel{
  padding:22px;
  border-radius: var(--r);
  background: #fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.10);
}

.panel h2{ margin:0 0 12px; font-size:20px; }
.panel p{ margin:0; color:rgba(11,31,31,.72); line-height:1.65; }

.list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.list li{
  padding:14px;
  border-radius:16px;
  background: rgba(5,79,79,.05);
  border:1px solid rgba(5,79,79,.14);
  color:rgba(11,31,31,.86);
  line-height:1.45;
  font-size:13px;
}

.ctaPanel{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(0,0,0,.08);
  color:rgba(0,0,0,.55);
  font-size:12px;
}

/* Responsive */
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
  .card{ grid-column: span 12; }
}

@media (max-width: 640px){
  .name{ display:none; }
  .headerBtn{ display:none; } /* optional: keep header clean on mobile */
}
/* ===== Page hero (About/Contact) ===== */
.pageHero{
  position:relative;
  height:40vh;
  min-height:300px;
  overflow:hidden;
}

.pageHeroImg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
  filter: saturate(.95) contrast(1.05);
}

.pageHeroOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.65) 50%, rgba(0,0,0,.50) 100%);
}

.pageHeroInner{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  color:#fff;
}

.pageHeroInner h1{
  margin:0;
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing:-0.04em;
  line-height:1.02;
}

.pageHeroInner p{
  margin:0;
  color: rgba(255,255,255,.88);
  max-width: 64ch;
  line-height:1.6;
}

/* ===== Contact “what to include” box ===== */
.hintBox{
  margin-top:18px;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(5,79,79,.18);
  background: rgba(5,79,79,.06);
}

.hintBox strong{
  display:block;
  margin-bottom:10px;
}

.hintItem{
  padding:12px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(0,0,0,.06);
  margin-top:10px;
  color: rgba(11,31,31,.80);
}
/* ===== Typography punch (force visible change) ===== */
:root{
  --text:#071616;
  --muted:rgba(7,22,22,.82);
}

body{
  font-weight:500 !important;
  color: var(--text) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p, li{
  font-weight:500 !important;
  color: var(--muted) !important;
  line-height:1.55 !important;
}

h1{ font-weight:800 !important; letter-spacing:-0.045em !important; }
h2{ font-weight:750 !important; letter-spacing:-0.03em !important; }
h3{ font-weight:700 !important; letter-spacing:-0.02em !important; }

.card p, .panel p{ color: rgba(7,22,22,.85) !important; }

/* Make nav + buttons feel “confident” */
.links a{ font-weight:700 !important; }
.btn{ font-weight:800 !important; }

/* Hero subtitle higher contrast */
.sub{ color: rgba(255,255,255,.92) !important; }
/* ===== Typography polish (premium, not shouty) ===== */
:root{
  --text:#071616;
  --muted:rgba(7,22,22,.80);
}

body{
  font-weight:500;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p, li{
  font-weight:500;
  color: var(--muted);
  line-height:1.58;
}

h1{
  font-weight:800;
  letter-spacing:-0.045em;
}

h2{
  font-weight:700;
  letter-spacing:-0.03em;
}

h3{
  font-weight:700;
  letter-spacing:-0.02em;
}

.links a{ font-weight:650; }
.btn{ font-weight:750; }

/* Keep hero readable */
.sub{ color: rgba(255,255,255,.90); }
/* ===== Contact layout + form ===== */
.contactGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  padding: 60px 0 0;
}

@media (max-width: 900px){
  .contactGrid{ grid-template-columns: 1fr; }
}

.form{
  margin-top: 10px;
}

.fieldRow{
  display:flex;
  gap:12px;
  margin-top:12px;
  flex-wrap:wrap;
}

.field{
  flex: 1 1 240px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

label{
  font-size:13px;
  font-weight:650;
  color: rgba(7,22,22,.85);
}

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  color: rgba(7,22,22,.95);
  font: inherit;
  outline:none;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}

textarea{ resize: vertical; min-height: 140px; }

input:focus, select:focus, textarea:focus{
  border-color: rgba(5,79,79,.35);
  box-shadow: 0 0 0 6px rgba(5,79,79,.14);
}

.fineprint{
  margin:14px 0 0;
  font-size:12px;
  color: rgba(7,22,22,.70);
}

.inlineLink{
  color: var(--brand);
  font-weight:700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.infoStack{
  display:grid;
  gap:12px;
  margin-top: 8px;
}

.infoItem{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.85);
}

.infoLabel{
  font-size:12px;
  font-weight:700;
  color: rgba(7,22,22,.65);
  margin-bottom:6px;
}

.infoValue{
  font-size:14px;
  font-weight:600;
  color: rgba(7,22,22,.90);
}


