@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --pink:    #D4537E;
  --pink-dk: #B8356A;
  --yellow:  #F9CB42;
  --blush:   #FBEAF0;
  --charcoal:#2C2C2A;
  --gray:    #888780;
  --cream:   #F1EFE8;
  --border:  rgba(44,44,42,0.12);
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background: var(--charcoal);
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
}
.nav-logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #B4B2A9;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--pink-dk) !important; }

/* ── LAYOUT ── */
.container { max-width: 960px; margin: 0 auto; padding: 0 32px; }
section { padding: 64px 0; }
section.dark { background: var(--charcoal); }
section.blush { background: var(--blush); }

/* ── HERO ── */
.hero { padding: 80px 0 64px; }
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
h1 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 20px;
}
h1 em { color: var(--pink); font-style: normal; }
h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
h2 em { color: var(--pink); font-style: normal; }
h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.dark h2, .dark h3 { color: #fff; }
.lead {
  font-size: 17px;
  color: #5F5E5A;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 28px;
}
p.body-copy {
  font-size: 15px;
  color: #5F5E5A;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 640px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .02em;
  margin-right: 10px;
  margin-bottom: 8px;
  transition: background .15s;
}
.btn-primary:hover { background: var(--pink-dk); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--pink);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--pink);
  text-decoration: none;
  letter-spacing: .02em;
  margin-bottom: 8px;
  transition: background .15s, color .15s;
}
.btn-secondary:hover { background: var(--pink); color: #fff; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }

/* ── CARDS ── */
.card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
}
.card-icon {
  width: 36px; height: 36px;
  background: var(--blush);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.card-icon svg { width: 18px; height: 18px; }
.card-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.card-body { font-size: 13px; color: #5F5E5A; line-height: 1.65; }

/* stat card */
.stat-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.stat-sub { font-size: 12px; color: var(--gray); }

/* ── STEPS ── */
.step-list { margin-top: 16px; }
.step-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 0.5px solid var(--border);
  align-items: flex-start;
}
.step-item:first-child { border-top: none; padding-top: 0; }
.step-num {
  width: 38px; height: 38px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 5px; }
.step-desc { font-size: 14px; color: #5F5E5A; line-height: 1.65; }

/* ── FAQ ── */
.faq-item { padding: 18px 0; border-top: 0.5px solid var(--border); }
.faq-item:first-child { border-top: none; padding-top: 0; }
.faq-q { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.faq-a { font-size: 14px; color: #5F5E5A; line-height: 1.7; }

/* ── LOC CARDS ── */
.loc-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}
.loc-card-header {
  background: var(--charcoal);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.loc-card-header h3 { color: #fff; margin-bottom: 0; }
.loc-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--pink);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: auto;
  white-space: nowrap;
}
.loc-card-body { padding: 22px 24px; }
.loc-headline { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.loc-body { font-size: 14px; color: #5F5E5A; line-height: 1.7; margin-bottom: 12px; }
.loc-bullets { list-style: none; margin-bottom: 16px; }
.loc-bullets li {
  font-size: 13px;
  color: #5F5E5A;
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.55;
}
.loc-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 600;
}
.loc-note { font-size: 13px; font-style: italic; color: var(--gray); margin-bottom: 14px; }

/* ── TABLE ── */
.area-table-wrap { background: #fff; border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--border);
}
td {
  padding: 12px 14px;
  border-bottom: 0.5px solid var(--border);
  color: #5F5E5A;
  vertical-align: top;
}
tr:last-child td { border-bottom: none; }
td strong { color: var(--charcoal); }

.tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-1 { background: var(--blush); color: var(--pink-dk); }
.tier-2 { background: #FAEEDA; color: #633806; }
.tier-3 { background: #F1EFE8; color: #444441; }

/* ── ZIP PILLS ── */
.zip-group { margin-bottom: 20px; }
.zip-group-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray);
  margin-bottom: 8px;
}
.zip-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.zip-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: #fff;
  border: 0.5px solid var(--border);
  color: #5F5E5A;
  font-family: monospace;
}

/* ── FORM ── */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; margin-top: 16px; }
.form-card { background: #fff; border: 0.5px solid var(--border); border-radius: 12px; padding: 28px; }
.form-row { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
label { font-size: 12px; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; display: block; }
input, select, textarea {
  width: 100%;
  border: 0.5px solid rgba(44,44,42,0.25);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--sans);
}
textarea { resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: .02em;
  transition: background .15s;
}
.form-submit:hover { background: var(--pink-dk); }
.form-note { font-size: 11px; color: var(--gray); margin-top: 10px; text-align: center; }
.form-aside { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: #fff; border: 0.5px solid var(--border); border-radius: 12px; padding: 22px; }
.contact-card-pink { background: var(--blush); border-color: rgba(212,83,126,0.2); }
.contact-card-title { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.contact-card-title.pink { color: var(--pink); }
.phone-num { font-size: 20px; font-weight: 700; color: var(--pink); display: block; margin: 4px 0; }
.phone-hours { font-size: 12px; color: #993556; }

/* ── REASSURANCE ── */
.reassure-card { text-align: center; padding: 24px 20px; }
.reassure-title { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.reassure-body { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ── DIVIDER ── */
hr.divider { border: none; border-top: 0.5px solid var(--border); margin: 0; }

/* ── SECTION FLAGS ── */
.section-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--blush);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.section-flag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 40px 32px;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--yellow); }
.footer-tagline { font-size: 13px; color: #888780; margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; }
.footer-links a { font-size: 12px; color: #888780; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 11px; color: #5F5E5A; }

/* ── INLINE QUOTE ── */
.inline-quote {
  background: var(--blush);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  font-style: italic;
  color: #72243E;
  line-height: 1.6;
  margin-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .grid-3, .grid-2, .form-wrap, .form-row-2 { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
  .container { padding: 0 20px; }
  section { padding: 48px 0; }
  .hero { padding: 52px 0 40px; }
}
