@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #eff5f6;
  --surface: #ffffff;
  --surface-soft: #f7fbfb;
  --ink: #14333b;
  --muted: #5d7980;
  --line: #d8e7ea;
  --teal: #1f7a86;
  --teal-soft: rgba(31, 122, 134, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f5fbfb 0%, #edf5f6 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1120px, 92vw); margin: 0 auto; }

.topbar {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.topbar .shell {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand-lockup { display: inline-flex; align-items: center; gap: 10px; }
.brand-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.08rem;
  color: var(--ink);
}
.site-logo-emblem { width: 42px; height: 42px; border-radius: 50%; }
.footer-logo-emblem { width: 68px; height: 68px; border-radius: 50%; }
.footer-brand-name-text { font-size: 1rem; }
.nav { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}
.nav a.active,
.nav a:hover {
  color: var(--ink);
  background: var(--teal-soft);
}

.hero,
.page-hero {
  padding: 72px 0 24px;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}
.hero-copy h1,
.page-hero h1,
.section-head h2,
.panel h2,
.panel h3 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  line-height: 1.08;
}
.hero-copy h1,
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.hero-copy p,
.page-hero p,
.panel p,
.journey-card p,
.service-card p { color: var(--muted); line-height: 1.75; }

.text-new {
  color: var(--teal);
  font-weight: 700;
}

.text-old {
  opacity: 0.45;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.25rem; }
.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-card,
.panel,
.stat-card,
.journey-card,
.service-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(20, 51, 59, 0.08);
}
.hero-card,
.panel { padding: 22px; }
.panel-soft { background: var(--surface-soft); }
.card-label {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}
.feature-list li {
  padding-left: 1rem;
  position: relative;
  color: var(--muted);
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 122, 134, 0.24);
}
.btn-sm { padding: 0.75rem 1rem; }

.section { padding: 28px 0 54px; }
.stat-grid,
.journey-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.stat-card {
  padding: 18px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
}
.stat-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.photo {
  min-height: 100%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}
.photo-care {
  min-height: 360px;
  background-image: linear-gradient(180deg, rgba(18, 52, 58, 0.08), rgba(18, 52, 58, 0.28)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1600&q=90');
}
.section-head { margin-bottom: 1rem; }
.journey-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.journey-card,
.service-card {
  padding: 18px;
}
.journey-card h3,
.service-card h3 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
}
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.booking-steps {
  display: grid;
  gap: 10px;
  margin-top: 1rem;
}
.booking-steps div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}
.booking-steps strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
}
.intake-form {
  display: grid;
  gap: 12px;
  margin-top: 1rem;
}
.intake-form label {
  display: grid;
  gap: 0.45rem;
}
.intake-form span {
  font-size: 0.88rem;
  color: var(--muted);
}
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.footer {
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .hero,
  .split-grid,
  .service-grid,
  .journey-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar .shell {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
  }
  .nav a,
  .hero-actions .btn,
  .intake-form .btn {
    width: 100%;
  }
  .hero,
  .page-hero {
    padding-top: 44px;
  }
}
