:root {
  --teal: #0fb0b7;
  --teal-dark: #0a7d85;
  --black: #0d0d0d;
  --bg: #f4fbfc;
  --card: #ffffff;
  --muted: #50616a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
  scroll-padding-top: 90px;
}

img {
  max-width: 100%;
  border-radius: calc(var(--radius) - 6px);
}

a {
  color: var(--teal-dark);
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(244, 251, 252, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(15, 176, 183, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  background: #ffffff;
  border-radius: 20px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 176, 183, 0.2);
}

.logo {
  width: 175px;
  height: auto;
  display: block;
}

.brand-name {
  font-weight: 700;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 600;
}

.pill-link {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 176, 183, 0.3);
  font-weight: 700;
  color: var(--teal-dark);
}

.hero {
  position: relative;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: radial-gradient(circle at 20% 20%, rgba(15, 176, 183, 0.12), transparent 38%), radial-gradient(circle at 70% 10%, rgba(122, 241, 255, 0.25), transparent 34%), radial-gradient(circle at 80% 70%, rgba(15, 176, 183, 0.15), transparent 40%), linear-gradient(135deg, #e8f8fb 0%, #f4fbfc 55%, #ffffff 100%);
  z-index: 0;
}

.hero-content, .hero-visual {
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 10px 0;
}

h1 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
}

h3 {
  font-size: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--teal-dark);
  font-weight: 800;
  margin: 0 0 6px;
}

.lede {
  font-size: 18px;
  max-width: 640px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--teal), #7af1ff);
  color: var(--black);
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: rgba(15, 176, 183, 0.1);
  color: var(--teal-dark);
  border: 1px solid rgba(15, 176, 183, 0.3);
}

.btn.text {
  background: transparent;
  color: var(--teal-dark);
  padding-left: 0;
}

.hero-visual {
  justify-self: end;
  max-width: 320px;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 176, 183, 0.12);
  color: var(--teal-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: inset 0 0 0 1px rgba(15, 176, 183, 0.16);
}

.section {
  padding: 52px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.cards.two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card.highlight {
  background: linear-gradient(135deg, rgba(15, 176, 183, 0.1), rgba(122, 241, 255, 0.12));
  border: 1px solid rgba(15, 176, 183, 0.18);
}

.card.soft {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 176, 183, 0.08);
}

.stacked-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: grid;
  gap: 10px;
}

.stacked-list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 176, 183, 0.06);
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.tag {
  background: rgba(15, 176, 183, 0.14);
  color: var(--teal-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

details {
  margin-top: 10px;
}

details summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: center;
}

.service h3 {
  margin-top: 0;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input, textarea, select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 176, 183, 0.35);
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.scripture {
  font-style: italic;
  color: var(--teal-dark);
}

.subscribe-section {
  background: linear-gradient(135deg, rgba(15, 176, 183, 0.1), rgba(122, 241, 255, 0.08));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 52px auto;
  padding: 32px;
  max-width: 1200px;
}

.subscribe-content {
  flex: 1;
  min-width: 280px;
}

.subscribe-content h2 {
  margin-top: 0;
}

.subscribe-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.subscribe-inline input {
  min-width: 260px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(15, 176, 183, 0.35);
  font-family: inherit;
  font-size: 16px;
}

.footer {
  padding: 24px 28px 40px;
  background: #0a1a1d;
  color: #e8f8fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: #b7e4ea;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .topbar {
    position: sticky;
    top: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
    justify-content: flex-start;
  }
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding: 32px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    justify-self: center;
    max-width: 280px;
    order: -1;
  }
  .section {
    padding: 44px 20px;
  }
  .brand-mark {
    padding: 8px 12px;
  }
  .logo {
    width: 115px;
  }
  .subscribe-section {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    margin: 44px 20px;
  }
  .subscribe-inline {
    width: 100%;
    flex-direction: column;
  }
  .subscribe-inline input {
    width: 100%;
    min-width: unset;
  }
}
