:root {
  --teal-900: #0f3d3a;
  --teal-700: #1f6f6b;
  --teal-500: #2f9a92;
  --teal-100: #d8f3ee;
  --teal-050: #eef9f7;
  --ink: #16302e;
  --slate: #4a5a58;
  --line: #e2ece9;
  --bg: #ffffff;
  --bg-soft: #f6faf9;
  --shadow: 0 18px 50px rgba(15, 61, 58, 0.08);
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }

a { color: var(--teal-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand img { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--slate);
  font-weight: 500;
  font-size: 0.97rem;
}
.nav-cta {
  background: var(--teal-700);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-cta:hover { background: var(--teal-900); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 82% -10%, rgba(47, 154, 146, 0.16), transparent 60%),
    linear-gradient(180deg, var(--teal-050), #ffffff 70%);
  padding: 84px 0 76px;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: #fff;
  border: 1px solid var(--teal-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 1.22rem;
  color: var(--slate);
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--teal-700); color: #fff; }
.btn-primary:hover { background: var(--teal-900); text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--teal-700); border-color: var(--teal-100); }
.btn-ghost:hover { background: var(--teal-050); text-decoration: none; }

/* Sections */
section { padding: 76px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head .eyebrow { background: var(--teal-050); border-color: var(--teal-100); }

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.card .ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal-050);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card .ico svg { width: 24px; height: 24px; stroke: var(--teal-700); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 1rem; }

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split .panel {
  background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
  border-radius: 22px;
  padding: 40px;
  color: var(--teal-100);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split .panel h3 { color: #fff; }
.split .panel ul { margin: 0; padding-left: 18px; }
.split .panel li { margin-bottom: 12px; }

/* SMS program */
.sms {
  background:
    linear-gradient(180deg, #ffffff, var(--teal-050));
}
.sms-card {
  background: #fff;
  border: 1px solid var(--teal-100);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.sms-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.sms-list li {
  position: relative;
  padding-left: 34px;
  font-size: 1.02rem;
}
.sms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-050);
  border: 2px solid var(--teal-500);
}
.sms-list li strong { color: var(--ink); }
.kw { font-weight: 700; color: var(--teal-700); letter-spacing: 0.02em; }

/* Form */
.optin {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg-soft);
}
.field input:focus {
  outline: none;
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47, 154, 146, 0.14);
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--teal-050);
  border: 1px solid var(--teal-100);
  border-radius: 12px;
  padding: 15px 16px;
  margin-bottom: 20px;
}
.consent input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--teal-700); }
.consent label { font-size: 0.86rem; line-height: 1.5; color: var(--slate); }
.form-box .btn-primary { width: 100%; text-align: center; }
.form-note { font-size: 0.82rem; color: #7a8a88; margin: 14px 0 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-card h3 { margin-bottom: 10px; }
.contact-card p { margin-bottom: 0; }
.contact-card address { font-style: normal; color: var(--slate); }

/* Footer */
.site-footer {
  background: var(--teal-900);
  color: #bcd9d4;
  padding: 56px 0 34px;
  font-size: 0.95rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Fraunces", Georgia, serif;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
}
.footer-brand img { width: 30px; height: 30px; }
.footer-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: #bcd9d4; }
.footer-links a:hover { color: #fff; }
.footer-legal { padding-top: 24px; line-height: 1.7; }
.footer-legal p { margin: 0 0 6px; }

/* Legal pages */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.legal h1 { margin-bottom: 6px; }
.legal .updated { color: #7a8a88; font-size: 0.9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.4rem; margin-top: 40px; }
.legal h3 { font-size: 1.1rem; margin-top: 26px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal .back { display: inline-block; margin-bottom: 30px; font-weight: 600; }
.entity-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-top: 40px;
}
.entity-block p { margin: 0 0 4px; }
.entity-block strong { color: var(--ink); }

/* Responsive */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .optin { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  section { padding: 58px 0; }
  .sms-card, .form-box { padding: 30px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
