:root {
  --background: #fbf6ef;
  --surface: #fffdf9;
  --surface-soft: #f4ebe3;
  --text: #372f3d;
  --muted: #726a75;
  --primary: #6e8f7c;
  --primary-soft: rgba(110, 143, 124, 0.16);
  --rose: #c98a93;
  --rose-soft: rgba(201, 138, 147, 0.15);
  --blue: #93b3cf;
  --border: rgba(55, 47, 61, 0.12);
  --shadow: rgba(55, 47, 61, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 138, 147, 0.22), transparent 34rem),
    radial-gradient(circle at top right, rgba(147, 179, 207, 0.28), transparent 30rem),
    var(--background);
  color: var(--text);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
}

a {
  color: var(--primary);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.site {
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 20px 72px;
}

.topbar {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.wordmark {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.mark {
  align-items: center;
  background: var(--primary-soft);
  border: 1px solid rgba(110, 143, 124, 0.24);
  border-radius: 18px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a,
.pill {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  text-decoration: none;
}

.hero,
.card,
.legal-card {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 60px var(--shadow);
}

.hero {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  margin-bottom: 24px;
  overflow: hidden;
  padding: clamp(28px, 6vw, 54px);
  position: relative;
}

.hero::after {
  background: linear-gradient(135deg, rgba(110, 143, 124, 0.14), rgba(201, 138, 147, 0.16));
  border-radius: 999px;
  content: "";
  height: 280px;
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 27px;
}

h3 {
  font-size: 20px;
}

p,
ul,
ol,
table {
  margin: 0 0 16px;
}

ul,
ol {
  padding-left: 22px;
}

li {
  margin: 6px 0;
}

table {
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  width: 100%;
}

td,
th {
  border-bottom: 1px solid var(--border);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--primary-soft);
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  align-items: center;
  background: var(--primary);
  border-radius: 999px;
  color: #fffdf9;
  display: inline-flex;
  font-weight: 900;
  padding: 13px 18px;
  text-decoration: none;
}

.button.secondary {
  background: var(--surface-soft);
  color: var(--text);
}

.hero-panel {
  align-self: center;
  background: linear-gradient(145deg, rgba(110, 143, 124, 0.14), rgba(201, 138, 147, 0.12));
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px;
}

.phone-card {
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
}

.phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.baby-bubble {
  align-items: center;
  background: var(--rose-soft);
  border-radius: 999px;
  display: flex;
  font-size: 44px;
  height: 98px;
  justify-content: center;
  margin: 18px auto;
  width: 98px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  padding: 22px;
}

.card-icon {
  align-items: center;
  background: var(--primary-soft);
  border-radius: 18px;
  display: flex;
  font-size: 24px;
  height: 48px;
  justify-content: center;
  margin-bottom: 14px;
  width: 48px;
}

.legal-shell {
  margin: 0 auto;
  max-width: 920px;
  padding: 28px 20px 72px;
}

.legal-hero {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 20px 60px var(--shadow);
  margin-bottom: 18px;
  padding: clamp(26px, 5vw, 46px);
}

.legal-card {
  margin-top: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.notice {
  background: var(--rose-soft);
  border-left: 4px solid var(--rose);
  border-radius: 16px;
  padding: 16px 18px;
}

.quote {
  background: var(--primary-soft);
  border-radius: 18px;
  font-weight: 700;
  padding: 18px;
}

.footer {
  color: var(--muted);
  font-size: 14px;
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .nav a,
  .pill {
    font-size: 13px;
  }
}
