:root {
  --teal: #3A9B8F;
  --teal-dark: #2F3A3A;
  --leaf: #7BBF7D;
  --cream: #F4F0E6;
  --text: #2F3A3A;
  --muted: #5B6A6A;
  --card: #FFFFFF;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: "Lora", "Times New Roman", serif;
  color: var(--teal-dark);
  margin: 0 0 0.35em;
}
p { margin: 0 0 1em; color: var(--muted); }
a { color: var(--teal-dark); text-decoration: none; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6vw;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.brand-name { font-weight: 700; color: var(--teal-dark); }
.brand-tagline { font-size: 13px; color: var(--muted); }
.nav a {
  margin-left: 18px;
  font-weight: 600;
  color: var(--teal-dark);
}
.nav a:hover { color: var(--teal); }

.hero {
  padding: 80px 6vw 60px;
  background: linear-gradient(135deg, rgba(58,155,143,0.08), rgba(244,240,230,0.8));
}
.hero-content {
  max-width: 860px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.hero h1 {
  font-size: 44px;
  margin-bottom: 12px;
}
.lede {
  font-size: 18px;
  max-width: 700px;
  color: var(--text);
}
.cta-group {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.logo-badge {
  margin-bottom: 16px;
  background: rgba(255,255,255,0.72);
  padding: 8px 10px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: inline-flex;
}
.logo-badge img {
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
}
.btn.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn.primary:hover { background: #32887f; }
.btn.ghost {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
  color: var(--teal-dark);
}
.btn.ghost:hover { border-color: rgba(0,0,0,0.16); }
.btn.text {
  padding: 0;
  border: none;
  background: none;
  color: var(--teal);
  font-weight: 700;
}

.panel {
  padding: 60px 6vw;
}
.section-header {
  margin-bottom: 26px;
}
.section-sub {
  max-width: 720px;
}
.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.columns.two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.card {
  background: var(--card);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}
.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.card li { margin-bottom: 6px; }
.card.highlight {
  border: 1px solid rgba(58,155,143,0.22);
  background: linear-gradient(135deg, rgba(58,155,143,0.08), #fff);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.card.link {
  text-decoration: none;
  color: var(--text);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.card.link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--teal-dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  font: inherit;
  color: var(--text);
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.contact-form .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-msg {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}
.muted { color: var(--muted); font-size: 14px; }

.page {
  padding: 60px 6vw;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--cream);
}

.footer {
  text-align: center;
  padding: 28px 12px 36px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .topbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .nav a { margin-left: 0; margin-right: 12px; }
  .hero h1 { font-size: 34px; }
}

