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

:root {
  --bg: #f9f7f4;
  --text: #2c2c2c;
  --muted: #666;
  --light: #aaa;
  --accent: #5c7a6e;
  --accent-light: #eaf0ee;
  --border: #e0dbd4;
}

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.nav-name {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

nav ul { list-style: none; display: flex; gap: 2rem; }

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: system-ui, sans-serif;
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--accent); }

/* ── Shared Layout ── */
.section-inner { max-width: 820px; margin: 0 auto; padding: 5rem 2rem; }
section + section { border-top: 1px solid var(--border); }

.section-label {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: normal;
  margin-bottom: 2rem;
}

h2 { font-size: 1.9rem; font-weight: normal; line-height: 1.3; margin-bottom: 1.5rem; }
h3 { font-size: 1.15rem; font-weight: normal; margin-bottom: 0.75rem; margin-top: 2.5rem; }
h3:first-of-type { margin-top: 0; }
h4 { font-size: 1rem; font-weight: normal; margin-bottom: 0.4rem; margin-top: 0; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Home Hero ── */
#hero .section-inner { text-align: center; padding-top: 6rem; padding-bottom: 6rem; }

#hero h1 {
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.hero-name {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 2.25rem;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ── Page Hero (inner pages) ── */
.page-hero { border-bottom: 1px solid var(--border); }

.page-hero .section-inner { padding-top: 4.5rem; padding-bottom: 3.5rem; }

.page-hero h1 {
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.page-intro { font-size: 1.05rem; color: var(--muted); max-width: 680px; line-height: 1.8; }

/* ── Buttons ── */
.cta-btn,
.spwidget-button {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 2.25rem;
  border-radius: 2px;
  transition: background 0.2s;
  border: none;
  font-weight: normal;
  cursor: pointer;
}

.cta-btn:hover, .spwidget-button:hover { background: #4a6659 !important; color: #fff !important; }
.spwidget-button:active { background: #3d574d !important; box-shadow: none !important; }
.spwidget-button-wrapper { margin-bottom: 2.5rem; }

/* ── About ── */
.about-layout { display: grid; grid-template-columns: 210px 1fr; gap: 3.5rem; align-items: start; }

.about-photo img {
  width: 210px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
  border: 1px solid var(--border);
}

.cred-list { list-style: none; margin-top: 0.25rem; }

.cred-list li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 2;
  padding-left: 1.1rem;
  position: relative;
}

.cred-list li::before { content: "—"; color: var(--accent); position: absolute; left: 0; }

/* ── Service Tiles ── */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: 2px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(92,122,110,0.08); }
.service-card h3 { font-size: 1rem; margin-top: 0; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin: 0; }

.card-arrow {
  display: block;
  margin-top: 1rem;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Insurance ── */
.insurance-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.75rem 0 1.25rem; }

.ins-tag {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
}

.ins-tag.active { background: var(--accent-light); color: var(--accent); }
.fee-note { font-size: 0.875rem; color: var(--muted); font-style: italic; }

/* ── Contact ── */
.contact-block { font-size: 1.05rem; line-height: 2.2; }

.contact-block a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.contact-block a:hover { color: var(--accent); border-color: var(--accent); }

.address {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.map-wrap { margin-top: 2.5rem; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; line-height: 0; }
.map-wrap iframe { width: 100%; height: 280px; border: none; }

/* ── Focus Areas (Individual) ── */
.focus-area { padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--border); }
.focus-area:first-of-type { padding-top: 0; margin-top: 1rem; border-top: none; }
.focus-area h3 { margin-top: 0; }

/* ── Expect Items ── */
.expect-item { margin-bottom: 2rem; }
.expect-item:last-child { margin-bottom: 0; }
.expect-label {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

/* ── Process Steps (Couples) ── */
.process-step { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; margin-bottom: 2.25rem; align-items: start; }
.process-step:last-child { margin-bottom: 0; }

.step-num {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 0.2rem;
}

.step-body h4 { font-family: Georgia, serif; font-size: 1rem; margin-bottom: 0.4rem; }

/* ── Resources ── */
.resource-category { margin-top: 3.5rem; }
.resource-category:first-of-type { margin-top: 0; }

.resource-category h3 {
  margin-top: 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.resource-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.5rem;
  row-gap: 0.15rem;
  align-items: baseline;
}

.resource-item:last-child { border-bottom: none; }

.resource-name { font-size: 0.95rem; }

.resource-name a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.resource-name a:hover { color: var(--accent); border-color: var(--accent); }

.resource-contact {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--accent);
  white-space: nowrap;
}

.resource-desc {
  font-size: 0.83rem;
  color: var(--muted);
  grid-column: 1 / -1;
  line-height: 1.55;
}

.resources-note {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2rem;
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  color: var(--light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Mobile ── */
@media (max-width: 640px) {
  nav ul { gap: 1rem; }
  nav a { font-size: 0.72rem; letter-spacing: 0.06em; }

  #hero h1 { font-size: 1.75rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .section-inner { padding: 3.5rem 1.5rem; }

  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo img { width: 160px; height: 200px; margin: 0 auto; }

  .process-step { grid-template-columns: 2.25rem 1fr; gap: 0.75rem; }

  .resource-item { grid-template-columns: 1fr; }
  .resource-contact { margin-top: 0.1rem; }
}
