/* ===== 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: baseline; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 4vw, 1.8rem); color: var(--text); letter-spacing: 0.01em; white-space: nowrap; }
.brand-accent { color: var(--accent); }
.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; }
.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; }

/* ===== 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(3, 1fr); gap: 1.5rem; }
.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; }

/* ===== Contact ===== */
.contact { background: var(--bg-alt); }
.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; }

/* ===== Footer ===== */
.site-footer { padding: 4.5rem 0 2.5rem; text-align: center; background: var(--bg); border-top: 1px solid var(--line); }
.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: 1fr; }
  .section { padding: 4.5rem 0; }

  .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; }
}
