/* ===== Design tokens ===== */
:root {
  --bg: #0e0d0f;
  --bg-alt: #151316;
  --surface: #1c191d;
  --surface-2: #221e24;
  --text: #ece8e6;
  --text-muted: #b6afad;
  --line: rgba(255, 255, 255, 0.10);
  --accent: #d8a7a0;        /* soft blush rose */
  --accent-soft: #e9c9c4;
  --accent-deep: #c98c84;
  --max: 1120px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "EB Garamond", Georgia, serif;
  --script: "Pinyon Script", cursive;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.18rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 0.6rem;
  font-family: var(--body);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0 0 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h4 { font-family: var(--serif); font-weight: 600; font-size: 1.45rem; margin: 0 0 0.35rem; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 13, 15, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; line-height: 1; transition: opacity 0.25s; }
.brand:hover { opacity: 0.85; }
.brand-mark { height: 56px; width: auto; display: block; }
.brand-wordmark { display: flex; flex-direction: column; font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--text); line-height: 1.02; letter-spacing: 0.01em; }
.brand-wordmark .bw-line { font-size: clamp(1.25rem, 3.4vw, 1.7rem); white-space: nowrap; }
.main-nav ul { display: flex; gap: 2.2rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.82rem;
  color: var(--text-muted); padding: 0.4rem 0; position: relative; transition: color 0.25s;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width 0.25s;
}
.main-nav a:hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: linear-gradient(rgba(14,13,15,0.55), rgba(14,13,15,0.78)), url("../images/nurse-holding-baby.jpg");
  background-size: cover; background-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 70% 40%, transparent, rgba(14,13,15,0.6));
  pointer-events: none;
}
.hero-content { position: relative; text-align: center; padding-top: 4rem; padding-bottom: 4rem; }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 500; letter-spacing: 0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5); margin-bottom: 1.5rem;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--text); max-width: 640px;
  margin: 0 auto 2.5rem; font-style: italic;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-block; font-family: var(--body); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.2em; padding: 0.95rem 2rem;
  border: 1px solid transparent; cursor: pointer; transition: all 0.25s; border-radius: 2px;
}
.btn-primary { background: var(--accent); color: #2a1f1d; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-soft); }
.btn-light { background: #f4eeec; color: #2a1f1d; border-color: #f4eeec; }
.btn-light:hover { background: var(--accent-soft); border-color: var(--accent-soft); }

/* ===== About ===== */
.about { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-media img {
  border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  filter: saturate(1.02);
}
.about-text p { color: var(--text-muted); }
.about-text strong { color: var(--text); font-weight: 600; }
.about-text .about-lead { font-size: 1.32rem; line-height: 1.65; color: var(--text); }
.about-subhead { font-size: 1.6rem; margin-top: 2.25rem; color: var(--accent-soft); }

/* Credential pills */
.about-credentials { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; padding: 0; margin: 1.1rem 0 1.75rem; }
.about-credentials li {
  font-size: 0.88rem; letter-spacing: 0.04em; color: var(--accent-soft);
  border: 1px solid rgba(216, 167, 160, 0.45); border-radius: 999px; padding: 0.45rem 1.1rem;
}
.credential-note {
  text-align: center; font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--text-muted); margin: -1rem 0 1.9rem;
}
.credential-note a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 2px; }
.credential-note a:hover { color: var(--accent); }

/* Pull-quote */
.about-text .about-pullquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem); line-height: 1.45; color: var(--accent-soft);
  border-left: 2px solid var(--accent); padding-left: 1.15rem; margin: 1.9rem 0;
}

/* Gentle scroll reveal (added by JS; no-op without it) */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .js-reveal.is-visible { opacity: 1; transform: none; }
}
.link-arrow { color: var(--accent); letter-spacing: 0.05em; border-bottom: 1px solid transparent; transition: 0.2s; }
.link-arrow:hover { border-color: var(--accent); }

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-intro { color: var(--text-muted); font-size: 1.2rem; }

/* Circular line-art emblem */
.emblem {
  width: 132px; height: 132px; margin: 0 auto 1.6rem; padding: 20px;
  border-radius: 50%; background: #f4eeec;
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px var(--line), 0 0 0 8px rgba(216, 167, 160, 0.12), 0 14px 34px rgba(0, 0, 0, 0.4);
}
.emblem img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

/* ===== Services ===== */
.price { font-family: var(--serif); color: var(--accent-soft); font-size: 1.8rem; font-weight: 600; white-space: nowrap; }
.package {
  max-width: 760px; margin: 0 auto 4.5rem; background: var(--surface);
  border: 1px solid var(--line); border-top: 3px solid var(--accent);
  border-radius: 6px; padding: 2.75rem;
}
.package-header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.package-header h3 { margin-bottom: 0; }
.package-header .price { font-size: 2.4rem; }
.package-blurb { color: var(--text-muted); font-style: italic; margin-top: 0.5rem; }
.package-list { list-style: none; margin: 2rem 0; padding: 0; }
.package-list li { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.package-list li:first-child { border-top: 0; }
.package-list p { color: var(--text-muted); margin: 0; }
.duration { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.alacarte-title { text-align: center; margin-bottom: 2.5rem; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 760px; margin: 0 auto; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: 2.5rem 1.75rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card h4 {
  margin: 0 0 0.75rem; min-height: 3.4rem;
  display: flex; align-items: center; justify-content: center;
}
.card .price { font-size: 2.1rem; margin: 0 0 0.6rem; }
.card .meta {
  color: var(--accent); font-size: 0.92rem; letter-spacing: 0.04em;
  margin: 0 0 1.1rem; padding-bottom: 1.1rem; width: 100%;
  border-bottom: 1px solid var(--line); min-height: 2.4rem;
  display: flex; align-items: center; justify-content: center;
}
.card-desc { color: var(--text-muted); margin: 0; font-size: 1.05rem; text-wrap: balance; }

/* ===== Testimonials ===== */
.testimonials { background: var(--bg-alt); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  border-top: 3px solid var(--accent); padding: 2.25rem 2rem;
  display: flex; flex-direction: column;
}
.quote-mark { font-family: var(--serif); font-size: 4rem; line-height: 0.4; color: var(--accent); opacity: 0.55; margin: 0.5rem 0 0.75rem; }
.testimonial .quote { color: var(--text); font-style: italic; font-size: 1.15rem; flex: 1 0 auto; margin: 0 0 1.5rem; text-wrap: pretty; }
.stars { color: var(--accent); letter-spacing: 3px; font-size: 1rem; margin-bottom: 0.85rem; }
.attribution { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--accent-soft); margin: 0; }
.attribution span { display: block; font-family: var(--body); font-weight: 400; font-size: 0.95rem; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 0.15rem; }

/* Featured testimonial */
.testimonial-featured {
  max-width: 840px; margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, #211b16, #1b1714);
  border: 1px solid var(--line); border-top: 3px solid var(--accent);
  border-radius: 10px; padding: 3.5rem clamp(1.75rem, 5vw, 3.75rem);
}
.testimonial-featured + .testimonial-featured { margin-top: 2rem; }
.t-category { text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.84rem; color: var(--accent); margin: 0 0 1.75rem; }
.t-quote { margin: 0 0 2.25rem; padding: 0; border: 0; }
.t-quote p { color: var(--text); font-size: 1.3rem; line-height: 1.9; margin: 0 0 1.25rem; text-wrap: pretty; }
.t-quote p:last-child { margin-bottom: 0; }
.t-lead {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  color: var(--accent-soft) !important; font-size: 2rem !important; line-height: 1.4 !important;
  margin-bottom: 1.75rem !important;
}
.t-highlights { list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; padding: 0; margin: 0 0 1.75rem; }
.t-highlights li {
  font-size: 0.92rem; letter-spacing: 0.05em; color: var(--accent-soft);
  border: 1px solid rgba(216, 167, 160, 0.45); border-radius: 999px; padding: 0.5rem 1.2rem;
}
.testimonial-featured .stars { font-size: 1.2rem; margin-bottom: 1.25rem; }
.testimonial-featured .attribution { font-size: 1.35rem; }

/* ===== Contact ===== */
.contact { background: var(--bg); }
.script-head { font-family: var(--script); font-weight: 400; font-size: clamp(2rem, 5vw, 3.4rem); color: var(--accent-soft); line-height: 1.2; }
.script-head a { color: var(--accent); border-bottom: 1px solid transparent; }
.script-head a:hover { border-color: var(--accent); }
.contact-head { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 0.5rem; }
.phone {
  display: inline-block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem); color: var(--accent); white-space: nowrap;
  letter-spacing: 0.02em; line-height: 1.1; border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.phone:hover { border-color: var(--accent); }
.divider { width: 60px; height: 1px; background: var(--accent); margin: 1.25rem auto; }
.contact-form { max-width: 680px; margin: 0 auto; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); margin-bottom: 0.4rem; }
.field input, .field textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--line); color: var(--text);
  font-family: var(--body); font-size: 1.1rem; padding: 0.9rem 1rem; border-radius: 4px; transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 0.65rem; color: var(--text-muted); font-size: 1rem; margin: 1.25rem 0; cursor: pointer; }
.checkbox input { margin-top: 6px; accent-color: var(--accent); }
.btn-light { display: block; margin: 0 auto; }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-top: 1.25rem; }
.form-status {
  text-align: center; font-size: 1rem; margin-top: 1.25rem; padding: 0.85rem 1rem;
  border-radius: 4px; border: 1px solid var(--line);
}
.form-status.pending { color: var(--text-muted); }
.form-status.success { color: #1f5e3a; background: #e7f4ec; border-color: #bfe0cd; }
.form-status.error { color: #7a2520; background: #f9e7e5; border-color: #e7bdb8; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===== Footer ===== */
.site-footer { padding: 4.5rem 0 2.5rem; text-align: center; background: var(--bg); border-top: 1px solid var(--line); }
.brand--footer { justify-content: center; margin: 0 auto 2.25rem; gap: 0.85rem; }
.brand--footer .brand-mark { height: 76px; }
.brand--footer .brand-wordmark .bw-line { font-size: clamp(1.6rem, 5vw, 2.2rem); }
.footer-head { margin: 0; }
.socials { display: flex; flex-wrap: wrap; gap: 1.1rem; justify-content: center; list-style: none; padding: 0; margin: 0 0 2.5rem; }
.socials a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); color: var(--text-muted); transition: all 0.25s;
}
.socials a:hover { background: var(--accent); color: #2a1f1d; transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; fill: currentColor; }
.copyright { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 0.04em; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: none; }
  .cards .card { padding: 1.75rem 1rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }

  .brand-mark { height: 46px; }
  .brand-wordmark .bw-line { font-size: 1.2rem; }
  .nav-toggle { display: block; z-index: 60; }
  .main-nav ul {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; gap: 0; background: var(--surface);
    padding: 6rem 2rem 2rem; transform: translateX(100%); transition: transform 0.3s ease;
    border-left: 1px solid var(--line);
  }
  .main-nav ul.open { transform: translateX(0); }
  .main-nav li { width: 100%; border-bottom: 1px solid var(--line); }
  .main-nav a { display: block; padding: 1.1rem 0; font-size: 0.95rem; }
}
