*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Georgia', serif;
  background: #f4f7f4;
  color: #2c2c2c;
  min-height: 100vh;
}

/* ── Header ── */
header {
  background: linear-gradient(135deg, #4a7c59 0%, #5e8f6b 60%, #6fa07a 100%);
  color: white;
  padding: 36px 48px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.allium-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,230,190,0.55) 0%, rgba(120,190,140,0.18) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.allium {
  width: 100px;
  height: 118px;
}

.header-text {
  padding-bottom: 32px;
}

.header-text h1 {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.header-text p {
  font-size: 0.95rem;
  opacity: 0.88;
  font-style: italic;
  line-height: 1.5;
}

.header-text .doula-name {
  font-size: 1rem;
  font-style: normal;
  opacity: 0.95;
  margin-top: 10px;
  letter-spacing: 0.4px;
}

/* ── Nav ── */
nav.site-nav {
  width: 100%;
  display: flex;
  gap: 4px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 4px;
}

nav.site-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 12px 18px;
  border-bottom: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

nav.site-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

nav.site-nav a.active {
  color: white;
  border-color: #ffffff;
  font-weight: bold;
}

/* ── Main content container ── */
main {
  max-width: 780px;
  margin: 36px auto 48px;
  padding: 0 20px;
}

/* ── Form ── */
form {
  background: white;
  border-radius: 12px;
  padding: 40px 44px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.row .field {
  margin-bottom: 0;
}

label {
  font-family: 'Georgia', serif;
  font-size: 0.82rem;
  font-weight: bold;
  color: #4a7c59;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

label .hint {
  display: block;
  font-size: 0.78rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  color: #7a9a82;
  font-style: italic;
  margin-top: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
  width: 100%;
  background: #e8f0f5;
  border: 1.5px solid #c5d8e8;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Georgia', serif;
  font-size: 0.97rem;
  color: #2c2c2c;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #b0bec5;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
  border-color: #5e8f6b;
  box-shadow: 0 0 0 3px rgba(94,143,107,0.15);
}

textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

.section-divider {
  border: none;
  border-top: 1px solid #dde8dd;
  margin: 8px 0 28px;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-submit {
  background: #4a7c59;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 13px 28px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-submit:hover { background: #3d6b4c; }

.btn-print {
  background: white;
  color: #4a7c59;
  border: 1.5px solid #4a7c59;
  border-radius: 6px;
  padding: 13px 28px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-print:hover { background: #f0f7f1; }

/* ── Footer ── */
footer {
  text-align: center;
  font-size: 0.8rem;
  color: #7a9a82;
  font-style: italic;
  margin-top: 20px;
  padding-bottom: 32px;
}

/* ── "What to Expect" content page ── */
.intro-card {
  background: white;
  border-radius: 12px;
  padding: 36px 44px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin-bottom: 24px;
}

.intro-card p {
  line-height: 1.7;
  margin-bottom: 16px;
}

.intro-card p:last-child { margin-bottom: 0; }

main.wide {
  max-width: 980px;
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.expect-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.expect-card.span-2 {
  grid-column: 1 / -1;
}

.expect-card h2 {
  background: #dfeee1;
  color: #3d6b4c;
  font-size: 0.82rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 28px;
}

.expect-card ul {
  list-style: none;
  padding: 22px 28px 26px;
}

.expect-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  line-height: 1.6;
  color: #3a3a3a;
}

.expect-card li:last-child { margin-bottom: 0; }

.expect-card li::before {
  content: '\25CF';
  color: #8B4FA8;
  position: absolute;
  left: 0;
  top: 0.35em;
  font-size: 0.6rem;
}

.expect-card li strong { color: #2c2c2c; }

.touchpoints-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin-bottom: 24px;
}

.touchpoints-card > h2 {
  background: #ece1f2;
  color: #6f3f8f;
  font-size: 0.82rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 28px;
}

.touchpoints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 24px 28px 28px;
}

.touchpoints-grid h3 {
  color: #8B4FA8;
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.touchpoints-grid ul {
  list-style: none;
}

.touchpoints-grid li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.55;
  font-size: 0.92rem;
  color: #3a3a3a;
}

.touchpoints-grid li:last-child { margin-bottom: 0; }

.touchpoints-grid li::before {
  content: '\25CF';
  color: #8B4FA8;
  position: absolute;
  left: 0;
  top: 0.3em;
  font-size: 0.55rem;
}

.cta-card {
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 36px 44px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.cta-card h2 {
  font-size: 1.2rem;
  font-weight: normal;
  color: #4a7c59;
  margin-bottom: 10px;
}

.cta-card p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #3a3a3a;
}

@media (max-width: 700px) {
  .expect-grid { grid-template-columns: 1fr; }
  .touchpoints-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 560px) {
  header { flex-direction: column; text-align: center; padding: 28px 24px 0; }
  .header-text { padding-bottom: 20px; }
  nav.site-nav { justify-content: center; margin-top: 12px; }
  form { padding: 28px 20px; }
  .row { grid-template-columns: 1fr; }
  .intro-card, .cta-card { padding: 24px 22px; }
  .expect-card h2, .touchpoints-card > h2 { padding: 12px 20px; }
  .expect-card ul { padding: 18px 20px 22px; }
  .touchpoints-grid { padding: 18px 20px 22px; }
}
