:root {
  --white:  #F9F6F0;
  --off:    #F1EDE4;
  --off2:   #E9E4DA;
  --ink:    #1A1714;
  --ink-80: rgba(26,23,20,.88);
  --ink-55: rgba(26,23,20,.68);
  --ink-35: rgba(26,23,20,.50);
  --ink-15: rgba(26,23,20,.15);
  --ink-07: rgba(26,23,20,.08);
  --sage:   #6B8260;
  --sage-l: #A4BC96;
  --sage-bg:#D8E6D0;
  --display: 'Albra Display TRIAL', 'Albra TRIAL', 'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', sans-serif;
  --max:  1300px;
  --pad:  72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='.03'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.albra       { font-family: var(--display); font-weight: 400; font-style: normal }
.albra-med   { font-family: var(--display); font-weight: 500; font-style: normal }
.albra-bold  { font-family: var(--display); font-weight: 700; font-style: normal }
.albra-ital  { font-family: var(--display); font-weight: 400; font-style: italic }
.albra-ital-med { font-family: var(--display); font-weight: 500; font-style: italic }
nav {
  position: sticky; top: 0; z-index: 300;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(249,246,240,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-07);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img { height: 24px; width: auto; display: block; }

.nav-book {
  background: var(--ink); color: var(--white);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  padding: 12px 28px; border-radius: 100px; text-decoration: none; font-weight: 500;
  transition: background .2s, transform .2s;
}
.nav-book:hover { background: #2d2926; transform: translateY(-1px) }

/* ── NAV DROPDOWNS ── */
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 0; list-style: none; }
.nav-links > li { position: relative }
.nav-links > li > a {
  display: block; padding: 0 18px;
  font-size: 12px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-55); text-decoration: none; font-weight: 400;
  transition: color .18s; line-height: 66px; white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > a.nav-active { color: var(--ink) }
.nav-links > li.has-drop > a::after {
  content: ''; display: inline-block;
  width: 4px; height: 4px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px; vertical-align: middle; opacity: .45; transition: transform .2s;
}
.nav-links > li.has-drop:hover > a::after { transform: rotate(225deg) translateY(1px) }
.nav-drop {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: rgba(249,246,240,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ink-07); border-top: 2px solid var(--sage-l);
  min-width: 220px; z-index: 600; box-shadow: 0 12px 40px rgba(26,23,20,.08);
}
.nav-links > li.has-drop:hover > .nav-drop { display: block }
.nav-drop a {
  display: block; padding: 12px 22px;
  font-size: 13px; color: var(--ink-55); text-decoration: none;
  letter-spacing: .03em; font-weight: 300;
  border-bottom: 1px solid var(--ink-07);
  transition: background .15s, color .15s; white-space: nowrap; line-height: 1;
}
.nav-drop a:last-child { border-bottom: none }
.nav-drop a:hover { background: var(--off); color: var(--ink) }
.drop-sub { display: block; font-size: 11px; color: var(--ink-35); margin-top: 3px; letter-spacing: .04em; font-weight: 300; }
.sdots {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 400;
}
.sdot {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--ink-35); background: transparent;
  display: block; text-decoration: none; transition: all .3s;
}
.sdot.active { background: var(--ink); border-color: var(--ink) }
.sdot:hover  { background: var(--ink-35) }
.hero {
  display: grid; grid-template-columns: 1fr 500px;
  min-height: calc(100svh - 66px);
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad); gap: 64px;
  align-items: center;
}
.hero-left {
  display: flex; flex-direction: column; gap: 34px;
  padding: 72px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--ink-15); border-radius: 100px;
  padding: 7px 18px 7px 8px; width: fit-content;
}
.badge-pip {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sage);
  position: relative; flex-shrink: 0;
}
.badge-pip::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--sage); opacity: 0;
  animation: pipPulse 2.6s ease-in-out infinite;
}
@keyframes pipPulse {
  0%,100%{ transform: scale(.5); opacity: .5 }
  60%{ transform: scale(2.2); opacity: 0 }
}
.hero-badge span {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-55); font-weight: 400;
}
.badge-short { display: none }
.hero-hl {
  font-size: clamp(62px, 7.2vw, 100px);
  letter-spacing: -.025em;
  color: var(--ink);
}
.hl-line {
  display: block;
  line-height: .94;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 400; font-style: normal;
  color: var(--ink);
}
.hl-b {
  font-family: var(--display);
  font-weight: 400; font-style: italic;
  color: var(--ink-55);
}
.hl-c {
  font-family: var(--display);
  font-weight: 600; font-style: normal;
  color: var(--ink);
}
.hero-mantra {
  font-family: var(--sans);
  font-size: 13px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-35);
}
.hero-body {
  font-size: 18px; line-height: 1.80;
  color: var(--ink-80); max-width: 460px; font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 28px }
.btn-primary {
  background: var(--ink); color: var(--white);
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  padding: 17px 40px; border-radius: 2px; text-decoration: none; font-weight: 500;
  transition: background .2s, transform .2s; display: inline-block;
}
.btn-primary:hover { background: #2d2926; transform: translateY(-2px) }
.btn-ghost {
  font-size: 13px; color: var(--ink-55); text-decoration: none;
  border-bottom: 1px solid var(--ink-15); padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-35) }
.hero-left > .hero-pill { margin-top: 4px; max-width: 460px; }
.hero-right {
  height: 100%; min-height: 580px;
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center; padding: 60px 0;
}
.hero-img-frame {
  flex: 1; min-height: 460px;
  border-radius: 250px 250px 0 0;
  overflow: hidden; position: relative;
  background: var(--off);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block }
.hero-pill {
  background: var(--off); border: 1px solid var(--ink-07);
  border-radius: 100px; padding: 14px 22px;
  display: flex; align-items: center; gap: 14px;
}
.hp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0 }
.hp-text p { font-size: 11px; color: var(--ink-35); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px }
.hp-text strong { font-family: var(--display); font-size: 14px; font-weight: 500; color: var(--ink); }
.marquee-bar {
  border-top: 1px solid var(--ink-07);
  border-bottom: 1px solid var(--ink-07);
  overflow: hidden; background: var(--white); padding: 17px 0;
}
.mq-track {
  display: flex; white-space: nowrap;
  animation: mqScroll 30s linear infinite;
}
@keyframes mqScroll { from{ transform:translateX(0) } to{ transform:translateX(-50%) } }
.mq-item {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 0 36px;
  font-family: var(--display);
  font-size: 13px; font-style: italic; font-weight: 400;
  letter-spacing: .06em; color: var(--ink-35); flex-shrink: 0;
}
.mq-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sage-l) }
.wrap { max-width: var(--max); margin: 0 auto; padding: 100px var(--pad) }
.eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage); display: flex; align-items: center;
  gap: 12px; margin-bottom: 40px; font-weight: 500;
}
.eyebrow::before { content:''; width: 18px; height: 1px; background: var(--sage) }
.sec-h {
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.06; letter-spacing: -.02em;
  margin-bottom: 32px;
}
.sec-h .w-reg  { font-family: var(--display); font-weight: 400; font-style: normal; color: var(--ink); }
.sec-h .w-med  { font-family: var(--display); font-weight: 500; font-style: normal; color: var(--ink); }
.sec-h .w-ital { font-family: var(--display); font-weight: 400; font-style: italic; color: var(--ink-55); }
.sec-h .w-ital-med { font-family: var(--display); font-weight: 500; font-style: italic; color: var(--ink); }
.body  { font-size: 18px; line-height: 1.80; color: var(--ink-80); font-weight: 300; }
.body-sm { font-size: 16px; line-height: 1.78; color: var(--ink-55); font-weight: 300; }
.stat-band { background: var(--off); border-top: 1px solid var(--ink-07); border-bottom: 1px solid var(--ink-07) }
.stat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; max-width: var(--max); margin: 0 auto;
  padding: 80px var(--pad);
}
.stat-cell + .stat-cell { padding-left: 52px; border-left: 1px solid var(--ink-07) }
.stat-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-35); margin-bottom: 12px; font-weight: 400; }
.stat-n {
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 500; line-height: .95;
  color: var(--ink); letter-spacing: -.03em; margin-bottom: 14px;
}
.stat-n sup { font-size: .4em; font-weight: 400; color: var(--ink-35); vertical-align: super; letter-spacing: 0; }
.stat-desc { font-size: 16px; line-height: 1.72; color: var(--ink-55); font-weight: 300 }
.cond-sec { background: var(--white) }
.cond-layout { display: grid; grid-template-columns: 380px 1fr; gap: 100px; align-items: start }
.cond-sticky { position: sticky; top: 80px }
.cond-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink-07); }
.cond-item {
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--ink-07);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: 21px; font-weight: 400; font-style: normal;
  color: var(--ink); transition: color .2s; cursor: default;
  letter-spacing: -.005em;
}
.cond-item:hover { color: var(--sage) }
.cond-item:hover .cond-n { color: var(--sage-l) }
.cond-n { font-family: var(--sans); font-size: 11px; color: var(--ink-35); min-width: 22px; font-weight: 400; transition: color .2s; }
.svc-sec { background: var(--off) }
.svc-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.svc-list { border-top: 1px solid var(--ink-07) }
.svc-row {
  display: grid; grid-template-columns: 52px 1fr auto;
  gap: 40px; align-items: start;
  padding: 36px 0; border-bottom: 1px solid var(--ink-07);
  transition: background .2s;
}
.svc-row:hover { background: rgba(26,23,20,.018) }
.svc-n { font-family: var(--sans); font-size: 12px; color: var(--ink-35); padding-top: 5px }
.svc-name {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500; color: var(--ink);
  line-height: 1.1; margin-bottom: 10px;
  letter-spacing: -.01em;
}
.svc-name em { font-style: italic; font-weight: 400; color: var(--ink-55) }
.svc-desc { font-size: 16px; line-height: 1.74; color: var(--ink-55); font-weight: 300; max-width: 520px }
.svc-link {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); text-decoration: none; white-space: nowrap;
  padding-top: 6px; transition: color .2s;
}
.svc-link:hover { color: var(--ink) }
.about-sec { background: var(--white) }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center }
.about-img-col { position: relative }
.about-img {
  height: 680px; background: var(--off); border-radius: 4px; overflow: hidden;
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block }
.about-medal {
  position: absolute; bottom: -20px; right: -20px;
  width: 148px; height: 148px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.am-n { font-family: var(--display); font-size: 36px; font-weight: 500; line-height: 1 }
.am-l { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; opacity: .5; text-align: center; line-height: 1.5 }
.about-text { display: flex; flex-direction: column; gap: 28px }
.pull-quote {
  border-left: 2px solid var(--sage-l);
  padding: 24px 28px; background: var(--off); border-radius: 0 4px 4px 0;
}
.pull-quote p {
  font-family: var(--display);
  font-size: 21px; font-weight: 400; font-style: italic;
  color: var(--ink-80); line-height: 1.5; margin-bottom: 12px;
  letter-spacing: -.005em;
}
.pull-quote cite { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-35); font-style: normal }
.cred-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink-07) }
.cred-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--ink-07);
  font-size: 16px; color: var(--ink-80); line-height: 1.55; font-weight: 300;
}
.cred-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); flex-shrink: 0; margin-top: 6px }
.testi-sec { background: var(--off) }
.testi-layout { display: grid; grid-template-columns: 320px 1fr; gap: 100px; align-items: start }
.testi-cards { display: flex; flex-direction: column; gap: 1px; background: var(--ink-07) }
.testi-card { background: var(--white); padding: 36px 40px }
.testi-card:nth-child(even) { background: var(--off2) }
.t-stars { display: flex; gap: 4px; margin-bottom: 16px }
.star { color: var(--sage); font-size: 12px }
.t-quote {
  font-family: var(--display);
  font-size: 22px; font-weight: 400; font-style: italic;
  color: var(--ink); line-height: 1.45; margin-bottom: 18px;
  letter-spacing: -.01em;
}
.t-attr { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-35); padding-top: 14px; border-top: 1px solid var(--ink-07) }
.book-sec { background: var(--off2); border-top: 1px solid var(--ink-07) }
.book-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 100px var(--pad);
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.book-pre {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage); display: flex; align-items: center;
  gap: 12px; margin-bottom: 22px; font-weight: 500;
}
.book-pre::before { content:''; width: 18px; height: 1px; background: var(--sage) }
.book-h {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.04; letter-spacing: -.025em; margin-bottom: 20px;
}
.book-h .w-reg  { font-family: var(--display); font-weight: 400; color: var(--ink) }
.book-h .w-ital { font-family: var(--display); font-weight: 400; font-style: italic; color: var(--ink-55) }
.book-h .w-med  { font-family: var(--display); font-weight: 600; color: var(--ink) }
.book-sub { font-size: 18px; line-height: 1.78; color: var(--ink-80); font-weight: 300; max-width: 480px }
.book-right { display: flex; flex-direction: column; align-items: flex-end; gap: 18px }
.book-btn {
  background: var(--ink); color: var(--white);
  font-size: 13px; letter-spacing: .15em; text-transform: uppercase;
  padding: 20px 52px; text-decoration: none; font-weight: 500;
  transition: background .2s, transform .2s; display: inline-block; white-space: nowrap;
}
.book-btn:hover { background: #2d2926; transform: translateY(-2px) }
.book-hours { font-size: 14px; color: var(--ink-55); text-align: right; line-height: 1.9; font-weight: 300 }
.book-hours strong { color: var(--ink-80); font-weight: 400 }
footer { background: var(--ink); padding: 64px var(--pad) 40px }
.ft-inner { max-width: var(--max); margin: 0 auto }
.ft-top {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 80px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.ft-logo { display: block; text-decoration: none; margin-bottom: 12px; }
.ft-logo-img { height: 20px; width: auto; display: block; }
.ft-tag { font-size: 14px; color: rgba(249,246,240,.55); font-weight: 300; line-height: 1.7; max-width: 220px }
.ft-col h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(249,246,240,.40); margin-bottom: 18px }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px }
.ft-col a { font-size: 14px; color: rgba(249,246,240,.65); text-decoration: none; font-weight: 300; transition: color .2s }
.ft-col a:hover { color: #F9F6F0 }
.ft-contact-lbl { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(249,246,240,.30); font-weight: 500; }
.ft-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; }
.ft-copy { font-size: 12px; color: rgba(249,246,240,.40); letter-spacing: .06em }
.ft-addr { font-size: 12px; color: rgba(249,246,240,.45); text-align: right; line-height: 1.7; font-weight: 300 }
.ft-powered a { font-size: 11px; color: rgba(107,130,96,.84); text-decoration: none; letter-spacing: .08em; transition: color .2s; }
.ft-powered a:hover { color: rgba(107,130,96,1); }
.ft-powered strong { font-weight: 700; }
[data-r] { opacity: 0; transform: translateY(22px); transition: opacity .95s cubic-bezier(.22,.68,0,1.1), transform .95s cubic-bezier(.22,.68,0,1.1); }
[data-r].on { opacity: 1; transform: none }
[data-r][data-d="1"]{ transition-delay:.10s }
[data-r][data-d="2"]{ transition-delay:.20s }
[data-r][data-d="3"]{ transition-delay:.30s }
[data-r][data-d="4"]{ transition-delay:.40s }
[data-r][data-d="5"]{ transition-delay:.50s }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.li1{ animation: fadeUp .9s .10s cubic-bezier(.22,.68,0,1.1) both }
.li2{ animation: fadeUp .9s .22s cubic-bezier(.22,.68,0,1.1) both }
.li3{ animation: fadeUp .9s .36s cubic-bezier(.22,.68,0,1.1) both }
.li4{ animation: fadeUp .9s .50s cubic-bezier(.22,.68,0,1.1) both }
.li5{ animation: fadeUp .9s .64s cubic-bezier(.22,.68,0,1.1) both }
.li6{ animation: fadeUp .9s .78s cubic-bezier(.22,.68,0,1.1) both }
.li-img{ animation: fadeIn 1.4s .2s ease both }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) }
.nav-toggle.open span:nth-child(2) { opacity: 0 }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) }
@media(max-width:960px){
  :root { --pad: 36px }
  .nav-links { gap: 24px }
  .nav-book { padding: 10px 20px }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 0; padding-top: 32px; padding-bottom: 32px; }
  .hero-left { padding: 0; gap: 24px; order: 1 }
  .hero-right { order: 2; min-height: auto; padding: 24px 0 0; height: auto }
  .hero-img-frame { min-height: 320px; max-height: 360px; border-radius: 4px }
  .hero-hl { font-size: clamp(48px, 7vw, 72px) }
  .stat-grid { grid-template-columns: repeat(3,1fr); padding: 56px var(--pad) }
  .stat-cell + .stat-cell { padding-left: 28px }
  .stat-n { font-size: clamp(48px, 5vw, 72px) }
  .cond-layout { grid-template-columns: 1fr; gap: 48px }
  .cond-sticky { position: relative; top: 0 }
  .svc-head { grid-template-columns: 1fr; gap: 28px }
  .svc-row { grid-template-columns: 40px 1fr; gap: 20px }
  .svc-link { grid-column: 2; padding-top: 0 }
  .about-grid { grid-template-columns: 1fr; gap: 48px; align-items: start }
  .about-img-col { order: 2 }
  .about-text { order: 1 }
  .testi-layout { grid-template-columns: 1fr; gap: 48px }
  .book-grid { grid-template-columns: 1fr; gap: 40px }
  .book-right { align-items: flex-start }
  .book-hours { text-align: left }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 40px }
}
@media(max-width:640px){
  :root { --pad: 20px }
  nav { padding: 0 var(--pad); height: 56px }
  .nav-logo-img { width: 140px; height: auto; }
  .nav-links {
    display: none; position: fixed; top: 56px; left: 0; right: 0;
    background: rgba(249,246,240,.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch;
    padding: 16px 0 24px;
    transform: translateY(-120%);
    transition: transform .35s cubic-bezier(.22,.68,0,1.1);
    border-bottom: 1px solid var(--ink-07);
    z-index: 299;
  }
  .nav-links.open { display: flex; transform: translateY(0) }
  .nav-links > li > a { line-height: 2.4; padding: 0 var(--pad); font-size: 14px; letter-spacing: .1em }
  .nav-links > li > a::after { display: none }
  .nav-drop { display: none; position: static; transform: none; box-shadow: none; border: none; border-top: 1px solid var(--ink-07); background: transparent; min-width: 0; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .has-drop.open > .nav-drop { display: block }
  .nav-drop a { padding: 10px var(--pad) 10px calc(var(--pad) + 14px); font-size: 13px; white-space: normal; }
  .drop-sub { display: none }
  .nav-links > li.has-drop > a::after { display: inline-block !important }
  .has-drop.open > a::after { transform: rotate(225deg) translateY(1px) }
  .nav-book { font-size: 9px; padding: 10px 14px }
  .nav-toggle { display: flex }
  .sdots { display: none }
  .hero { display: flex; flex-direction: column; min-height: auto; gap: 0; max-width: 100%; padding: 24px var(--pad) 16px; align-items: stretch; }
  .hero-left { display: contents }
  .hero-badge { order: 1; padding: 5px 14px 5px 6px; margin-bottom: 16px }
  .hero-badge span { font-size: 10px }
  .badge-full  { display: none }
  .badge-short { display: inline }
  .hero-hl { order: 2; font-size: clamp(38px, 10vw, 56px); margin-bottom: 0 }
  .hl-line { white-space: normal }
  .hero-right { order: 3; min-height: auto; padding: 20px 0; height: auto; gap: 10px; }
  .hero-img-frame { min-height: 0; flex: none; height: auto; aspect-ratio: 1 / 1; border-radius: 4px; }
  .hero-pill { padding: 10px 16px; gap: 10px }
  .hp-text p { font-size: 10px }
  .hp-text strong { font-size: 12px }
  .hero-mantra { order: 4; font-size: 11px; letter-spacing: .14em; margin-bottom: 4px }
  .hero-body { order: 5; font-size: 16px; line-height: 1.7; max-width: 100%; margin-bottom: 4px }
  .hero-actions { order: 6; gap: 16px; flex-wrap: wrap; margin-bottom: 8px }
  .btn-primary { padding: 14px 28px; font-size: 11px; width: 100%; text-align: center }
  .btn-ghost { font-size: 12px }
  .hero-left > .hero-pill { order: 7; margin-top: 4px }
  .marquee-bar { padding: 12px 0 }
  .mq-item { font-size: 11px; padding: 0 20px; gap: 16px }
  .wrap { padding: 64px var(--pad) }
  .eyebrow { font-size: 10px; margin-bottom: 24px }
  .sec-h { font-size: clamp(30px, 8vw, 44px); margin-bottom: 20px }
  .body { font-size: 16px; line-height: 1.72 }
  .body-sm { font-size: 14px }
  .stat-grid { grid-template-columns: 1fr; padding: 48px var(--pad); gap: 0; }
  .stat-cell + .stat-cell { padding-left: 0; border-left: none; padding-top: 28px; margin-top: 28px; border-top: 1px solid var(--ink-07); }
  .stat-n { font-size: clamp(48px, 14vw, 72px) }
  .stat-label { font-size: 10px; margin-bottom: 8px }
  .stat-desc { font-size: 14px }
  .cond-layout { grid-template-columns: 1fr; gap: 32px }
  .cond-sticky { position: relative; top: 0 }
  .cond-grid { grid-template-columns: 1fr }
  .cond-item { font-size: 18px; padding: 14px 0 }
  .svc-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px }
  .svc-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .svc-n { display: none }
  .svc-name { font-size: clamp(20px, 5vw, 28px) }
  .svc-desc { font-size: 14px; max-width: 100% }
  .svc-link { padding-top: 8px }
  .about-sec .wrap { padding-left: var(--pad); padding-right: var(--pad) }
  .about-grid { display: flex; flex-direction: column; gap: 0; align-items: stretch; }
  .about-text { display: contents }
  .about-text .eyebrow { order: 1; margin-bottom: 16px; justify-content: flex-start }
  .about-text .sec-h { order: 2; margin-bottom: 0 }
  .about-img-col { order: 3; margin: 24px 0; }
  .about-img { height: auto; aspect-ratio: 1 / 1; border-radius: 4px }
  .about-medal { bottom: -12px; right: -8px; width: 100px; height: 100px; }
  .am-n { font-size: 24px }
  .am-l { font-size: 8px }
  .about-text .body:nth-of-type(1) { order: 4; margin-bottom: 16px }
  .about-text .body:nth-of-type(2) { order: 5; margin-bottom: 16px }
  .about-text .pull-quote { order: 6; padding: 18px 20px; margin-bottom: 16px }
  .pull-quote p { font-size: 18px }
  .pull-quote cite { font-size: 11px }
  .about-text .cred-list { order: 7 }
  .cred-row { font-size: 14px; padding: 12px 0 }
  .testi-layout { grid-template-columns: 1fr; gap: 32px }
  .testi-card { padding: 24px 20px }
  .t-quote { font-size: 18px }
  .t-attr { font-size: 11px }
  .book-grid { grid-template-columns: 1fr; gap: 32px; padding: 64px var(--pad); }
  .book-h { font-size: clamp(32px, 8vw, 48px) }
  .book-sub { font-size: 16px }
  .book-right { align-items: stretch }
  .book-btn { text-align: center; padding: 18px 32px; font-size: 12px }
  .book-hours { text-align: center; font-size: 13px }
  footer { padding: 48px var(--pad) 28px }
  .ft-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .ft-tag { max-width: 100% }
  .ft-col h4 { margin-bottom: 12px }
  .ft-col ul { gap: 8px }
  .ft-bot { flex-direction: column; gap: 12px; text-align: center }
  .ft-copy { order: 1; }
  .ft-addr { text-align: center; order: 2; }
  .ft-powered { order: 3; }
  .ft-powered a { color: rgba(107,130,96,1); }
}

.nav-active { color: var(--ink) !important }

/* ── TESTIMONIALS PAGE ── */
.testi-pg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink-07); }
.tpc { background: var(--white); padding: 44px 40px; display: flex; flex-direction: column; }
.tpc:nth-child(even) { background: var(--off); }
.tpc-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.tpc-quote { font-family: var(--display); font-size: 19px; font-style: italic; font-weight: 400; color: var(--ink); line-height: 1.5; margin-bottom: 20px; flex: 1; }
.tpc-attr { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-35); font-weight: 400; border-top: 1px solid var(--ink-07); padding-top: 18px; }
.testi-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--ink-07); margin-bottom: 0; }
.testi-stat { padding: 32px 36px; border-right: 1px solid var(--ink-07); }
.testi-stat:last-child { border-right: none; }
.testi-stat-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-35); margin-bottom: 10px; }
.testi-stat-val { font-family: var(--display); font-size: 52px; font-weight: 500; line-height: .9; color: var(--ink); letter-spacing: -.03em; }
.testi-stat-val sup { font-size: .38em; font-weight: 400; vertical-align: super; }
.testi-cta { background: var(--ink); padding: 80px var(--pad); margin-top: 80px; }
.testi-cta-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.testi-cta-h { font-family: var(--display); font-size: clamp(28px,3.5vw,46px); font-weight: 500; color: #F9F6F0; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; }
.testi-cta-h em { font-weight: 400; font-style: italic; opacity: .65; }
.testi-cta-sub { font-size: 16px; color: rgba(249,246,240,.5); font-weight: 300; max-width: 400px; line-height: 1.8; }
.testi-cta-btn { background: #F9F6F0; color: var(--ink); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; padding: 20px 44px; text-decoration: none; font-weight: 500; white-space: nowrap; display: inline-block; transition: opacity .2s; }
.testi-cta-btn:hover { opacity: .85; }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; max-width: var(--max); margin: 0 auto; padding: 72px var(--pad); }
.ci-block { margin-bottom: 40px; }
.ci-block:last-child { margin-bottom: 0; }
.ci-lbl { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); font-weight: 500; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ci-lbl::before { content: ''; width: 16px; height: 1px; background: var(--sage); }
.ci-sublbl { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-35); font-weight: 500; }
.ci-block p { font-size: 15px; color: var(--ink-80); font-weight: 300; line-height: 1.8; }
.ci-block p a { color: var(--ink); text-decoration: none; }
.ci-block p a:hover { color: var(--sage); }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 3px 20px; font-size: 15px; color: var(--ink-55); font-weight: 300; }
.hours-grid .day { color: var(--ink-80); font-weight: 400; }
.hours-legend { grid-column: 1 / -1; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--ink-07); display: flex; flex-direction: column; gap: 4px; }
.hours-legend-row { display: flex; align-items: baseline; gap: 8px; font-size: 12px; font-weight: 300; }
.hours-legend-prac { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); font-weight: 500; min-width: 58px; }
.hours-legend-detail { color: var(--ink-55); }

@media(max-width:960px) {
  .testi-pg-grid { grid-template-columns: 1fr; }
  .testi-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media(max-width:640px) {
  .tpc { padding: 32px 24px; }
  .testi-stats { grid-template-columns: 1fr; }
  .testi-stat { border-right: none; border-bottom: 1px solid var(--ink-07); }
  .testi-stat:last-child { border-bottom: none; }
  .testi-cta { padding: 48px var(--pad); }
  .contact-layout { padding: 48px var(--pad); }
}

/* ── LEARN HUB ── */
.learn-hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink-07); margin-top: 56px; }
.learn-card { background: var(--white); padding: 48px 44px; cursor: pointer; transition: background .2s; display: flex; flex-direction: column; gap: 16px; text-decoration: none; }
.learn-card:hover { background: var(--off); }
.learn-card:nth-child(even) { background: var(--off); }
.learn-card:nth-child(even):hover { background: var(--off2); }
.lc-cat { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); font-weight: 500; }
.lc-title { font-family: var(--display); font-size: clamp(22px,2.5vw,30px); font-weight: 500; color: var(--ink); line-height: 1.15; letter-spacing: -.01em; }
.lc-body { font-size: 15px; line-height: 1.82; color: var(--ink-55); font-weight: 300; flex: 1; }
.lc-link { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); font-weight: 500; }
.cond-ref-banner { margin-top: 64px; padding: 48px 52px; background: var(--off); border: 1px solid var(--ink-07); display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }

/* ── ARTICLE LAYOUT ── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 72px; max-width: var(--max); margin: 0 auto; padding: 72px var(--pad); }
.article-content { display: flex; flex-direction: column; gap: 28px; }
.article-h2 { font-family: var(--display); font-size: clamp(22px,2.5vw,30px); font-weight: 500; color: var(--ink); letter-spacing: -.01em; line-height: 1.15; }
.article-p { font-size: 16px; line-height: 1.88; color: var(--ink-80); font-weight: 300; }
.article-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
.article-cta { padding: 36px 32px; background: var(--off); border-left: 3px solid var(--sage-l); border-radius: 0 4px 4px 0; }
.aside-card { background: var(--off); border: 1px solid var(--ink-07); padding: 28px 26px; border-radius: 2px; }
.aside-card h4 { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; font-weight: 500; }
.aside-card p { font-size: 14px; line-height: 1.8; color: var(--ink-55); font-weight: 300; margin-bottom: 14px; }
.aside-more-label { padding: 18px 18px 10px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); font-weight: 500; }
.aside-more { display: flex; flex-direction: column; gap: 1px; background: var(--ink-07); }
.aside-more-item { background: var(--white); padding: 16px 18px; cursor: pointer; transition: background .15s; text-decoration: none; display: block; }
.aside-more-item:hover { background: var(--off); }
.aside-more-cat { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: 4px; }
.aside-more-title { font-size: 14px; color: var(--ink-80); font-weight: 300; line-height: 1.4; }

/* ── CONDITIONS PAGE GRID ── */
.cond-pg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--ink-07); }
.cond-pg-item { padding: 28px; border-bottom: 1px solid var(--ink-07); border-right: 1px solid var(--ink-07); }
.cond-pg-item:nth-child(3n) { border-right: none; }
.cpg-num { font-size: 10px; letter-spacing: .14em; color: var(--sage-l); margin-bottom: 8px; display: block; font-weight: 500; }
.cpg-title { font-family: var(--display); font-size: 21px; font-weight: 400; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }
.cpg-desc { font-size: 14px; line-height: 1.75; color: var(--ink-35); font-weight: 300; }

@media(max-width:960px) {
  .learn-hub-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .cond-pg-grid { grid-template-columns: repeat(2,1fr); }
  .cond-pg-item:nth-child(3n) { border-right: 1px solid var(--ink-07); }
  .cond-pg-item:nth-child(2n) { border-right: none; }
}
@media(max-width:640px) {
  .learn-card { padding: 32px 28px; }
  .cond-ref-banner { padding: 32px var(--pad); grid-template-columns: 1fr; gap: 20px; }
  .cond-ref-banner .btn-primary { width: 100%; text-align: center; }
  .article-layout { padding: 48px var(--pad); }
  .cond-pg-grid { grid-template-columns: 1fr; }
  .cond-pg-item { border-right: none; }
}

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-35); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; max-width: var(--max); margin: 0 auto; padding: 24px var(--pad) 0; }
.breadcrumb a { color: var(--sage); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .bc-sep { opacity: .35; }

/* ── SERVICE OVERVIEW GRID ── */
.svc-ov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink-07); margin-top: 56px; }
.svc-ov-card { background: var(--white); padding: 52px 48px; position: relative; overflow: hidden; cursor: pointer; transition: background .2s; text-decoration: none; color: inherit; display: block; }
.svc-ov-card:hover { background: var(--off); }
.svc-ov-card:nth-child(even) { background: var(--off); }
.svc-ov-card:nth-child(even):hover { background: var(--off2); }
.soc-n { font-family: var(--display); font-size: 80px; font-weight: 500; color: var(--ink-07); line-height: 1; position: absolute; top: 16px; right: 22px; letter-spacing: -.04em; pointer-events: none; }
.soc-cat { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: 14px; }
.soc-name { font-family: var(--display); font-size: clamp(24px,2.5vw,34px); font-weight: 500; color: var(--ink); line-height: 1.12; margin-bottom: 14px; letter-spacing: -.01em; max-width: 260px; }
.soc-name em { font-weight: 400; font-style: italic; color: var(--ink-55); }
.soc-body { font-size: 15px; line-height: 1.82; color: var(--ink-55); font-weight: 300; margin-bottom: 24px; max-width: 360px; }
.soc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.soc-tag { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); border: 1px solid var(--sage-l); padding: 4px 11px; border-radius: 100px; font-weight: 500; }

/* ── SERVICE DEEP-DIVE LAYOUT ── */
.svc-deep { display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; max-width: var(--max); margin: 0 auto; padding: 72px var(--pad); }
.svc-deep-content { display: flex; flex-direction: column; gap: 36px; }
.svc-deep-sticky { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; }
.svc-deep-img { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; background: var(--off); }
.svc-deep-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-aside-card { background: var(--off); border: 1px solid var(--ink-07); padding: 30px 28px; border-radius: 2px; }
.svc-aside-card h4 { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; font-weight: 500; }
.svc-aside-card p { font-size: 14px; line-height: 1.8; color: var(--ink-55); font-weight: 300; margin-bottom: 14px; }

/* ── sec-lbl ── */
.sec-lbl { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); font-weight: 500; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sec-lbl::before { content: ''; width: 16px; height: 1px; background: var(--sage); }

/* ── BENEFIT LIST ── */
.benefit-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink-07); }
.benefit-item { padding: 14px 0; border-bottom: 1px solid var(--ink-07); display: flex; gap: 14px; font-size: 15px; color: var(--ink-80); font-weight: 300; line-height: 1.65; }
.benefit-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); flex-shrink: 0; margin-top: 7px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink-07); }
.faq-item { border-bottom: 1px solid var(--ink-07); }
.faq-q { padding: 18px 0; font-size: 15px; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 400; gap: 20px; user-select: none; }
.faq-q::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--ink-35); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 0 18px; font-size: 15px; color: var(--ink-55); font-weight: 300; line-height: 1.82; }
.faq-item.open .faq-a { display: block; }

/* ── TAGS (shared across service detail pages) ── */
.svc-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

@media(max-width:960px) {
  .svc-ov-grid { grid-template-columns: 1fr; }
  .svc-deep { grid-template-columns: 1fr; }
  .svc-deep-sticky { position: static; }
}
@media(max-width:640px) {
  .svc-ov-card { padding: 36px 28px; }
  .svc-deep { padding: 48px var(--pad); }
}

/* ── CONTACT / FORM ── */
.cf-h2 { font-family: var(--display); font-size: clamp(28px,3.2vw,42px); font-weight: 500; letter-spacing: -.018em; line-height: 1.1; margin-bottom: 36px; color: var(--ink) }
.cf-h2 em { font-weight: 400; font-style: italic; color: var(--ink-55) }
.cf-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px }
.cf-field label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-35); font-weight: 500 }
.cf-field input, .cf-field select, .cf-field textarea { background: var(--off); border: 1px solid var(--ink-07); color: var(--ink); font-family: var(--sans); font-size: 15px; font-weight: 300; padding: 13px 16px; border-radius: 2px; transition: border-color .2s; outline: none; -webkit-appearance: none }
.cf-field select { padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1714' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--sage-l) }
.cf-field textarea { resize: vertical; min-height: 110px; line-height: 1.7 }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.cf-submit { background: var(--ink); color: var(--white); font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; padding: 17px 44px; border: none; cursor: pointer; font-weight: 500; transition: background .2s, transform .2s; border-radius: 2px }
.cf-submit:hover { background: #2d2926; transform: translateY(-2px) }

/* ── INSURANCE PAGE ── */
.ins-layout { max-width: var(--max); margin: 0 auto; padding: 72px var(--pad); display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start }
.ins-section { padding-top: 32px; border-top: 1px solid var(--ink-07); margin-top: 32px }
.ins-right { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px }
.ins-card { border: 1px solid var(--ink-07); padding: 30px 28px; border-radius: 2px }
.ins-card-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: 14px }
.ins-card-body { font-size: 14px; color: var(--ink-55); font-weight: 300; line-height: 1.8; margin-bottom: 16px }
.ins-card-link { font-size: 13px; color: var(--sage); text-decoration: none; display: block; margin-bottom: 8px }
.ins-card-link:last-child { margin-bottom: 0 }
.ins-card-link:hover { text-decoration: underline }
.ins-card-action { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); font-weight: 500; text-decoration: none }
.ins-success { display: none; margin-top: 24px; padding: 28px 32px; background: var(--sage-bg); border-left: 3px solid var(--sage); border-radius: 0 4px 4px 0 }
.ins-success-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); margin-bottom: 8px; font-weight: 500 }
.ins-success-h { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 8px }
.ins-success-body { font-size: 14px; color: var(--ink-55); font-weight: 300; line-height: 1.75 }
.ins-success-body a { color: var(--sage) }

@media(max-width:960px) {
  .ins-layout { grid-template-columns: 1fr }
  .ins-right { position: static }
}
@media(max-width:640px) {
  .ins-layout { padding: 48px var(--pad) }
  .cf-row { grid-template-columns: 1fr }
}

/* ── SCHEDULE PAGE ── */
.sched-layout { max-width: var(--max); margin: 0 auto; padding: 72px var(--pad); display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; }
.sched-left { display: flex; flex-direction: column; gap: 48px; }
.sched-right { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }

.sched-cta { padding: 52px 48px; background: var(--ink); border-radius: 2px; }
.sched-cta-pre { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(249,246,240,.4); font-weight: 500; margin-bottom: 16px; }
.sched-cta-h { font-family: var(--display); font-size: clamp(28px,3.2vw,42px); font-weight: 500; color: #F9F6F0; line-height: 1.1; letter-spacing: -.018em; margin-bottom: 14px; }
.sched-cta-h em { font-weight: 400; font-style: italic; opacity: .65; }
.sched-cta-body { font-size: 15px; color: rgba(249,246,240,.5); font-weight: 300; line-height: 1.8; margin-bottom: 32px; max-width: 420px; }
.sched-cta-btn { display: inline-block; background: #F9F6F0; color: var(--ink); font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; padding: 18px 48px; text-decoration: none; font-weight: 500; border-radius: 2px; transition: opacity .2s; }
.sched-cta-btn:hover { opacity: .85; }

.sched-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink-07); }
.sched-contact-cell { padding: 32px 28px; }
.sched-contact-cell:first-child { background: var(--white); }
.sched-contact-cell:last-child { background: var(--off); }
.sched-contact-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: 12px; }
.sched-contact-val { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--ink); text-decoration: none; display: block; margin-bottom: 8px; }
.sched-contact-val-sm { font-size: 18px; word-break: break-all; }
.sched-contact-sub { font-size: 13px; color: var(--ink-35); font-weight: 300; line-height: 1.7; }

.sched-insurance { border-top: 1px solid var(--ink-07); padding-top: 40px; }
.sched-field-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink-07); margin-bottom: 20px; }
.sched-field-item { padding: 13px 0; border-bottom: 1px solid var(--ink-07); display: flex; gap: 14px; font-size: 15px; color: var(--ink-80); font-weight: 300; }
.sched-field-item span { color: var(--sage); flex-shrink: 0; }
.sched-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.sched-divider-line { flex: 1; height: 1px; background: var(--ink-07); }
.sched-divider-text { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-35); font-weight: 400; }

.sched-card { background: var(--off); border: 1px solid var(--ink-07); padding: 30px 28px; border-radius: 2px; }
.sched-card-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: 18px; }
.sched-hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 5px 20px; font-size: 14px; }
.sched-hours-grid .day { color: var(--ink); font-weight: 400; }
.sched-hours-grid .day-off { color: var(--ink-35); font-weight: 300; }
.sched-hours-grid .time { color: var(--ink-55); font-weight: 300; }
.sched-hours-grid .time-off { color: var(--ink-35); font-weight: 300; }
.sched-hours-grid .hours-legend { font-size: 13px; }
.sched-location-addr { font-size: 14px; color: var(--ink-80); font-weight: 300; line-height: 1.8; margin-bottom: 12px; }
.sched-location-link { font-size: 12px; color: var(--sage); text-decoration: none; letter-spacing: .04em; }
.sched-location-link:hover { text-decoration: underline; }

@media(max-width:960px) {
  .sched-layout { grid-template-columns: 1fr; }
  .sched-right { position: static; }
}
@media(max-width:640px) {
  .sched-layout { padding: 48px var(--pad); }
  .sched-cta { padding: 36px 28px; }
  .sched-contact { grid-template-columns: 1fr; }
}

/* ── PAGE HERO ── */
.pg-hero { padding: 80px var(--pad) 64px; background: var(--off); border-bottom: 1px solid var(--ink-07) }
.pg-hero-inner { max-width: var(--max); margin: 0 auto }
.pg-h1 { font-family: var(--display); font-size: clamp(44px, 5.6vw, 78px); line-height: 1.04; letter-spacing: -.025em; margin-bottom: 18px; max-width: 14ch }
.pg-h1-mobile { display: none; }
.pg-intro { font-size: 17px; line-height: 1.82; color: var(--ink-55); font-weight: 300; max-width: 560px }

/* ── PRACTITIONER GRID ── */
.prac-section { border-bottom: 1px solid var(--ink-07) }
.prac-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start;
  max-width: var(--max); margin: 0 auto; padding: 80px var(--pad);
}
.prac-img { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; background: var(--off); position: relative }
.prac-img img { width: 100%; height: 100%; object-fit: cover; display: block }
.prac-badge {
  position: absolute; bottom: -16px; right: -16px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.prac-badge-n { font-family: var(--display); font-size: 26px; font-weight: 500; line-height: 1 }
.prac-badge-l { font-size: 8px; letter-spacing: .18em; text-transform: uppercase; opacity: .5; text-align: center; line-height: 1.6 }
.prac-content { display: flex; flex-direction: column; gap: 24px; padding-top: 8px }
.prac-role { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); font-weight: 500 }
.prac-name { font-family: var(--display); font-size: clamp(34px, 4vw, 50px); font-weight: 500; line-height: 1.06; letter-spacing: -.02em; color: var(--ink) }
.prac-name em { font-weight: 400; font-style: italic; color: var(--ink-55) }
.prac-name a { color: inherit; text-decoration: none }
.hours-prac { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); font-weight: 500; }
.prac-website { margin-top: -4px; margin-bottom: 0 }
.prac-website-link { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); text-decoration: none; border-bottom: 1px solid var(--sage-l); padding-bottom: 2px; font-weight: 400; transition: color .2s, border-color .2s }
.prac-website-link:hover { color: var(--ink); border-color: var(--ink-35) }

/* ── SEC LABEL (within practitioner content) ── */
.sec-label { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); font-weight: 500; display: flex; align-items: center; gap: 10px; margin-bottom: 14px }
.sec-label::before { content: ''; width: 16px; height: 1px; background: var(--sage) }

/* ── SPEC LIST ── */
.spec-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink-07) }
.spec-item { padding: 13px 0; border-bottom: 1px solid var(--ink-07); font-size: 15px; color: var(--ink-80); font-weight: 300; line-height: 1.65; display: flex; gap: 12px; align-items: flex-start }
.spec-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); flex-shrink: 0; margin-top: 7px }

/* ── VALUES BAND ── */
.values-band { background: var(--ink); padding: 80px var(--pad) }
.values-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(249,246,240,.06) }
.values-cell { padding: 48px 40px }
.values-cell:nth-child(2) { background: rgba(249,246,240,.03) }
.values-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(249,246,240,.35); margin-bottom: 14px; font-weight: 500 }
.values-title { font-family: var(--display); font-size: 21px; font-weight: 400; color: #F9F6F0; line-height: 1.3; margin-bottom: 12px }
.values-body { font-size: 14px; color: rgba(249,246,240,.45); font-weight: 300; line-height: 1.8 }

/* ── SARAH'S SPECIALTIES ── */
.spec-sec { margin-top: 72px; padding: 56px 52px; background: var(--off); border: 1px solid var(--ink-07); border-radius: 2px; }
.spec-sec-title { font-family: var(--display); font-size: clamp(26px,3.2vw,38px); font-weight: 500; color: var(--ink); letter-spacing: -.015em; margin-bottom: 36px; line-height: 1.12; }
.spec-sec-title em { font-weight: 400; font-style: italic; color: var(--ink-55); }
.spec-cats { display: flex; flex-direction: column; }
.spec-cat { padding: 22px 0; border-top: 1px solid var(--ink-15); }
.spec-cat:last-child { border-bottom: 1px solid var(--ink-15); }
.spec-cat-num { font-size: 10px; letter-spacing: .14em; color: var(--sage); font-weight: 500; margin-bottom: 6px; display: block; }
.spec-cat-name { font-family: var(--display); font-size: 20px; font-weight: 500; color: var(--ink); letter-spacing: -.005em; margin-bottom: 8px; line-height: 1.2; }
.spec-cat-detail { font-size: 14px; line-height: 1.75; color: var(--ink-55); font-weight: 300; }
@media(max-width:640px) { .spec-sec { padding: 36px 24px; } }

/* ── RESPONSIVE: practitioner grid ── */
@media(max-width:960px) {
  .prac-grid { grid-template-columns: 1fr; gap: 40px }
  .values-grid { grid-template-columns: 1fr }
}
@media(max-width:640px) {
  .pg-hero { padding: 48px var(--pad) 40px }
  .pg-h1 { max-width: none }
  .pg-h1-desktop { display: none; }
  .pg-h1-mobile { display: block; }
  .prac-grid { padding: 48px var(--pad) }
  .prac-badge { width: 96px; height: 96px; bottom: -12px; right: -12px }
  .prac-badge-n { font-size: 20px }
  .values-band { padding: 48px var(--pad) }
  .values-cell { padding: 32px 24px }
}

/* ═══════════════════════════════════
   SCHEDULER MODAL
   ═══════════════════════════════════ */
.sched-overlay {
  position: fixed; inset: 0; z-index: 8000;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.sched-overlay.open { display: flex }
.sched-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,23,20,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.sched-modal {
  position: relative; width: 100%; max-width: 520px;
  height: min(780px, 92dvh);
  background: var(--white); border-radius: 3px;
  box-shadow: 0 24px 80px rgba(26,23,20,.2);
  overflow: hidden; display: flex; flex-direction: column;
  animation: schedUp .25s ease;
}
@keyframes schedUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.sched-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--ink-07); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; font-size: 16px; color: var(--ink-55);
}
.sched-close:hover { background: var(--off); color: var(--ink) }

/* ── WIDGET ── */
.sw { width: 100%; height: 100%; display: flex; flex-direction: column; background: var(--white); overflow: hidden }
.sw-header {
  padding: 16px 60px 14px 28px; border-bottom: 1px solid var(--ink-07);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.sw-brand { font-family: var(--display); font-size: 16px; font-weight: 500; color: var(--ink); letter-spacing: .01em }
.sw-track { display: flex; align-items: center; gap: 0 }
.sw-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--off2); border: 1.5px solid var(--ink-35); transition: all .3s;
}
.sw-dot.done { background: var(--ink); border-color: var(--ink) }
.sw-dot.active { background: var(--sage); border-color: var(--sage); box-shadow: 0 0 0 3px rgba(107,130,96,.18) }
.sw-line { width: 18px; height: 1.5px; background: var(--ink-15); transition: background .3s }
.sw-line.done { background: var(--ink) }

/* ── STEPS ── */
.sw-body { flex: 1; overflow: hidden; position: relative }
.sw-step {
  display: none; position: absolute; inset: 0;
  overflow-y: auto; padding: 20px 28px;
}
.sw-step::-webkit-scrollbar { width: 3px }
.sw-step::-webkit-scrollbar-thumb { background: var(--ink-07); border-radius: 2px }
.sw-step.sw-fill { overflow-y: hidden; flex-direction: column; padding: 20px 28px }
.sw-step.visible { display: block }
.sw-step.sw-fill.visible { display: flex }
.sw-step.fade-in { animation: swFade .18s ease forwards }
@keyframes swFade { from{opacity:0;transform:translateY(5px)} to{opacity:1;transform:translateY(0)} }

/* labels / nav */
.sw-lbl { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-35); margin-bottom: 4px }
.sw-title { font-family: var(--display); font-size: 22px; font-weight: 400; font-style: italic; margin-bottom: 12px; line-height: 1.2; color: var(--ink) }
.sw-back {
  background: none; border: none; color: var(--ink-35); font-size: 12px;
  cursor: pointer; display: flex; align-items: center; gap: 4px;
  margin-bottom: 6px; padding: 0; font-family: var(--sans);
  transition: color .15s; letter-spacing: .02em;
}
.sw-back:hover { color: var(--ink) }

/* ── STEP 0: SERVICE SELECT ── */
.sw-intro { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--ink-07) }
.sw-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 10px;
}
.sw-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--sage); flex-shrink: 0 }
.sw-headline { font-family: var(--display); font-size: 28px; font-weight: 500; line-height: 1.1; margin-bottom: 10px; color: var(--ink); letter-spacing: -.01em }
.sw-headline em { font-weight: 400; font-style: italic; color: var(--ink-55) }
.sw-sub { font-size: 12px; color: var(--ink-35); line-height: 1.55; font-weight: 300 }
.sw-0-inner { display: flex; flex-direction: column; height: 100%; min-height: 0 }
.sw-svc-list {
  display: flex; flex-direction: column; gap: 7px;
  flex: 1; min-height: 0; overflow-y: auto;
  padding-right: 3px; padding-bottom: 16px;
}
.sw-svc-list::-webkit-scrollbar { width: 3px }
.sw-svc-list::-webkit-scrollbar-thumb { background: var(--ink-07); border-radius: 2px }
.sw-svc {
  border: 1.5px solid var(--ink-07); border-radius: 2px;
  padding: 14px 18px; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; background: var(--white); font-family: var(--sans);
}
.sw-svc:hover { border-color: var(--ink-15); background: var(--off) }
.sw-svc.selected { border-color: var(--ink); background: var(--ink); color: var(--white) }
.sw-svc-left { flex: 1; min-width: 0 }
.sw-svc-name { font-size: 14px; font-weight: 500; line-height: 1.2 }
.sw-svc-desc { font-size: 11px; color: var(--ink-35); margin-top: 3px; line-height: 1.45; font-weight: 300 }
.sw-svc.selected .sw-svc-desc { color: rgba(255,255,255,.5) }
.sw-svc-meta { text-align: right; flex-shrink: 0 }
.sw-svc-dur { font-size: 11px; color: var(--ink-35); font-weight: 300 }
.sw-svc.selected .sw-svc-dur { color: rgba(255,255,255,.5) }

/* ── STEP 1: CALENDAR ── */
.sw-cal-month { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px }
.sw-cal-month h3 { font-size: 14px; font-weight: 500; font-family: var(--sans) }
.sw-cal-nav {
  background: none; border: 1.5px solid var(--ink-07);
  width: 28px; height: 28px; border-radius: 2px;
  cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; font-family: var(--sans); color: var(--ink);
}
.sw-cal-nav:hover { border-color: var(--ink); background: var(--ink); color: var(--white) }
.sw-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 10px }
.sw-cal-dlbl {
  text-align: center; font-size: 10px; font-weight: 500;
  color: var(--ink-35); padding: 6px 0;
  text-transform: uppercase; letter-spacing: .04em;
}
.sw-cal-day {
  height: 42px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 400; cursor: pointer;
  transition: all .2s; border: 1.5px solid transparent;
}
.sw-cal-day:hover:not(.empty):not(.past):not(.no-slots) { background: var(--off); border-color: var(--ink-07) }
.sw-cal-day.today { border-color: var(--sage) }
.sw-cal-day.selected { background: var(--ink); color: var(--white); border-color: var(--ink) }
.sw-cal-day.empty, .sw-cal-day.past { opacity: .2; cursor: default; pointer-events: none }
.sw-cal-day.no-slots { opacity: .28; cursor: not-allowed; pointer-events: none; text-decoration: line-through }

/* time slots */
.sw-slot-lbl { font-size: 11px; color: var(--ink-35); margin-bottom: 8px; margin-top: 0; font-weight: 400 }
.sw-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px }
.sw-slot {
  border: 1.5px solid var(--ink-07); border-radius: 2px;
  padding: 10px 4px; text-align: center;
  font-size: 12px; font-weight: 400; cursor: pointer;
  transition: all .2s; background: var(--white);
}
.sw-slot:hover { border-color: var(--ink-15); background: var(--off) }
.sw-slot.selected { background: var(--ink); border-color: var(--ink); color: var(--white) }

/* ── STEP 2: FORM ── */
.sw-fg { margin-bottom: 10px }
.sw-fg label {
  display: block; font-size: 10px; font-weight: 500;
  color: var(--ink-35); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: .1em;
}
.sw-fg input, .sw-fg textarea, .sw-fg select {
  width: 100%; border: 1.5px solid var(--ink-07); border-radius: 2px;
  padding: 10px 14px; font-family: var(--sans); font-size: 14px;
  color: var(--ink); background: var(--off); transition: border-color .2s;
  outline: none; font-weight: 300;
}
.sw-fg input:focus, .sw-fg textarea:focus, .sw-fg select:focus { border-color: var(--sage-l); background: var(--white) }
.sw-fg textarea { resize: none; height: 56px }
.sw-fg select {
  -webkit-appearance: none; padding-right: 36px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231A1714' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.sw-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
.sw-summary {
  background: var(--off); border-radius: 2px;
  padding: 12px 14px; margin-bottom: 12px; border: 1px solid var(--ink-07);
}
.sw-sum-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 12px; padding: 2px 0; gap: 8px;
}
.sw-sum-row span:first-child { color: var(--ink-35); flex-shrink: 0; font-weight: 300 }
.sw-sum-row span:last-child { font-weight: 400; text-align: right }

/* buttons */
.sw-btn {
  width: 100%; padding: 14px; border-radius: 2px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  cursor: pointer; border: none; transition: all .2s;
  margin-top: 4px; letter-spacing: .1em; text-transform: uppercase;
}
.sw-btn-primary { background: var(--ink); color: var(--white) }
.sw-btn-primary:hover { background: #2d2926; transform: translateY(-1px) }
.sw-btn-ghost { background: transparent; border: 1.5px solid var(--ink-07); color: var(--ink); letter-spacing: .1em }
.sw-btn-ghost:hover { border-color: var(--ink) }

/* ── SUCCESS ── */
.sw-success { text-align: center; padding: 6px 0 }
.sw-success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage-bg); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px; color: var(--sage);
}
.sw-success-icon svg { width: 24px; height: 24px }
.sw-success-title { font-family: var(--display); font-size: 24px; font-weight: 400; font-style: italic; margin-bottom: 7px; color: var(--ink) }
.sw-success-sub { color: var(--ink-55); font-size: 13px; line-height: 1.65; margin-bottom: 18px; font-weight: 300 }
.sw-conf-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--off); border: 1px solid var(--ink-07);
  border-radius: 100px; padding: 7px 16px; font-size: 12px; font-weight: 400;
}
.sw-dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); animation: swPulse 1.5s infinite; flex-shrink: 0 }
@keyframes swPulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.sw-badges { display: flex; gap: 8px; justify-content: center; margin-top: 13px; flex-wrap: wrap }
.sw-badge { font-size: 11px; font-weight: 500; padding: 4px 12px; border-radius: 100px; background: var(--sage-bg); color: var(--sage) }

/* ── RESPONSIVE ── */
@media(max-width:640px) {
  .sched-overlay { padding: 0 }
  .sched-modal {
    max-width: 100%; height: 100dvh; border-radius: 0;
    /* dvh (dynamic viewport height) accounts for browser chrome on Chrome/Brave/Safari */
  }
  .sw-header { padding: 16px 56px 14px 20px }
  .sw-step { padding: 20px 20px }
  .sw-step.sw-fill { padding: 20px 20px }
  .sw-headline { font-size: 24px }
  .sw-slots { grid-template-columns: repeat(3,1fr) }
  .sw-frow { grid-template-columns: 1fr }
}
