
:root {
  --bg: #f3f6f4;
  --surface: #fff;
  --ink: #17211e;
  --muted: #3d4b46;
  --pine: #0f6e56;
  --pine-deep: #0c5644;
  --on-pine: #f4faf7;
  --mist: #e5f3ee;
  --line: #dde5e1;
  --sand: #e7eeea;
}
* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}
p { margin: 0; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip {
  position: absolute; left: 16px; top: 16px;
  transform: translateY(-160%);
  background: #fff; padding: 12px 16px;
}
.skip:focus { transform: none; z-index: 50; }
header {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(243,246,244,.92);
  backdrop-filter: blur(10px);
}
.bar { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 12px; }
.logo { font-family: Fraunces, Georgia, serif; font-size: 1.15rem; text-decoration: none; }
.nav { display: none; gap: 32px; }
.nav a { text-decoration: none; color: var(--muted); font-size: .95rem; }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.actions { display: flex; align-items: center; gap: 8px; }
.btn, button.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 20px; border-radius: 6px;
  background: var(--pine); color: var(--on-pine);
  text-decoration: none; font: 500 .95rem Outfit, sans-serif; border: 0; cursor: pointer;
}
.btn.line { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.menu {
  width: 48px; height: 48px; border: 0; background: transparent; font-size: 1.4rem; cursor: pointer;
}
.mobile { display: none; border-top: 1px solid var(--line); padding: 8px 0 16px; }
.mobile a { display: flex; align-items: center; height: 48px; text-decoration: none; }
.mobile.open { display: block; }
.hero, .page { padding: 48px 0 64px; }
.grid-2 { display: grid; gap: 40px; }
.eyebrow { color: var(--pine); font-weight: 500; font-size: .95rem; }
h1 { font-size: clamp(2.6rem, 6vw, 4rem); max-width: 14ch; margin-top: 12px; }
.lede { margin-top: 20px; max-width: 38rem; color: var(--muted); font-size: 1.15rem; }
.row { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.note { margin-top: 16px; color: var(--muted); font-size: .95rem; }
.photo { width: 100%; height: auto; object-fit: cover; background: var(--sand); }
.photo.wide { aspect-ratio: 3/2; }
.photo.portrait { aspect-ratio: 3/4; }
.facts { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts dl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; padding: 28px 0; margin: 0; }
.facts dt { color: var(--muted); font-size: .95rem; }
.facts dd { margin: 4px 0 0; }
.section { padding: 64px 0; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.split-top { display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.link { color: inherit; font-weight: 500; }
.service { display: grid; gap: 8px; border-bottom: 1px solid var(--line); padding: 22px 0; }
.muted { color: var(--muted); }
.mist { background: var(--mist); }
.steps { display: grid; gap: 32px; margin-top: 28px; }
.num { font-family: Fraunces, Georgia, serif; color: var(--pine); }
.band { border-top: 1px solid var(--line); padding: 56px 0; display: flex; flex-direction: column; gap: 20px; }
.crisis { background: var(--mist); padding: 28px 0; }
.crisis-in { display: flex; flex-direction: column; gap: 16px; }
.crisis a, .textlink { text-underline-offset: 4px; }
footer { border-top: 1px solid var(--line); padding: 48px 0 16px; }
.foot { display: grid; gap: 32px; }
.tiny { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--line); margin-top: 28px; padding: 16px 0 8px; color: var(--muted); font-size: .8rem; }
.hours { list-style: none; padding: 0; margin: 16px 0 0; }
.hours li { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding: 8px 0; font-size: .95rem; }
.list { list-style: none; padding: 0; margin: 16px 0 0; }
.list li { border-top: 1px solid var(--line); padding: 12px 0; color: var(--muted); }
details { border-top: 1px solid var(--line); padding: 14px 0; }
summary { cursor: pointer; font-weight: 500; }
form { display: grid; gap: 14px; margin-top: 28px; max-width: 36rem; }
label { display: grid; gap: 6px; font-size: .95rem; }
input, select, textarea {
  font: inherit; color: inherit; background: #fff;
  border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px; width: 100%;
}
textarea { min-height: 140px; resize: vertical; }
.two { display: grid; gap: 12px; }
@media (min-width: 800px) {
  .nav { display: flex; }
  .menu { display: none; }
  .grid-2 { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .grid-2.top { align-items: start; }
  .facts dl { grid-template-columns: repeat(4, 1fr); }
  .service { grid-template-columns: 40px 1.2fr 1.6fr auto; align-items: baseline; gap: 16px; }
  .service.pair { grid-template-columns: minmax(14rem, 0.85fr) 1.5fr; align-items: start; gap: 36px; }
  .about-grid, .offer { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .place { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .band { flex-direction: row; justify-content: space-between; align-items: end; }
  .crisis-in { flex-direction: row; justify-content: space-between; align-items: end; }
  .foot { grid-template-columns: 1.4fr .8fr 1fr; }
  .tiny { flex-direction: row; justify-content: space-between; }
  .row { flex-direction: row; }
  .two { grid-template-columns: 1fr 1fr; }
  .contact { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
}
