/* Stephanie Santora — custom static site
   Palette, spacing and components are centralized here for easy editing. */
:root {
  --ink: #20312f;
  --ink-soft: #53615e;
  --navy: #1f3438;
  --sage: #82998c;
  --sage-deep: #536e61;
  --sage-pale: #dce5dd;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --sand: #e9dfd0;
  --clay: #b98268;
  --white: #ffffff;
  --line: rgba(32,49,47,.14);
  --shadow-sm: 0 10px 30px rgba(28,46,43,.07);
  --shadow-lg: 0 30px 80px rgba(28,46,43,.12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --container: 1180px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open, body.modal-open { overflow: hidden; }
html.site-intro-pending, html.site-intro-pending body,
html.site-intro-revealing, html.site-intro-revealing body { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -.025em; }
h1 { font-size: clamp(3.5rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.45rem, 4.6vw, 4.4rem); }
h3 { font-size: clamp(1.45rem, 2.1vw, 2rem); }
address { font-style: normal; }
::selection { background: var(--sage-pale); color: var(--navy); }

:focus-visible { outline: 3px solid var(--clay); outline-offset: 4px; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 1000; padding: 12px 18px; border-radius: 0 0 10px 10px; color: var(--white); background: var(--navy); transition: top .2s; }
.skip-link:focus { top: 0; }
.site-shell { overflow: clip; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section-pad { padding: clamp(78px, 10vw, 140px) 0; }

/* Site loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  transform: translateZ(0);
}
.site-loader::before {
  content: "";
  position: absolute;
  width: min(70vw, 560px);
  aspect-ratio: 1.15;
  border-radius: 52% 48% 58% 42% / 47% 56% 44% 53%;
  background: radial-gradient(ellipse, rgba(220,229,221,.62) 0%, rgba(220,229,221,.22) 48%, transparent 72%);
  transform: rotate(-7deg);
}
html.site-intro-pending .site-loader,
html.site-intro-revealing .site-loader { display: grid; }
.site-loader__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(88vw, 430px);
  padding-bottom: 2vh;
  text-align: center;
  will-change: opacity, transform;
}
.site-loader__botanical {
  width: 96px;
  height: 114px;
  overflow: visible;
  fill: none;
  stroke: var(--sage-deep);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .84;
}
.site-loader__botanical path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
}
html.site-intro-pending .site-loader__stem { animation: loaderDraw .62s .07s var(--ease) forwards; }
html.site-intro-pending .site-loader__branch--one { animation: loaderDraw .34s .27s var(--ease) forwards; }
html.site-intro-pending .site-loader__branch--two { animation: loaderDraw .37s .34s var(--ease) forwards; }
html.site-intro-pending .site-loader__branch--three { animation: loaderDraw .33s .41s var(--ease) forwards; }
html.site-intro-pending .site-loader__branch--four { animation: loaderDraw .35s .48s var(--ease) forwards; }
.site-loader__name,
.site-loader__credentials { opacity: 0; transform: translateY(8px); filter: blur(3px); }
.site-loader__name {
  margin: 15px 0 2px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.site-loader__credentials {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .21em;
  text-transform: uppercase;
}
html.site-intro-pending .site-loader__name { animation: loaderTextIn .38s .50s var(--ease) forwards; }
html.site-intro-pending .site-loader__credentials { animation: loaderTextIn .36s .60s var(--ease) forwards; }
.site-loader__rule {
  width: 42px;
  height: 1px;
  margin-top: 18px;
  background: var(--sage);
  opacity: .78;
  transform: scaleX(0);
}
html.site-intro-pending .site-loader__rule { animation: loaderRuleIn .28s .66s var(--ease) forwards; }
html.site-intro-pending .page-enter { animation-play-state: paused; }
html.site-intro-revealing .site-loader { animation: loaderCurtainOut .68s var(--ease) forwards; }
html.site-intro-revealing .site-loader__content { animation: loaderContentOut .42s var(--ease) forwards; }
@keyframes loaderDraw { to { stroke-dashoffset: 0; } }
@keyframes loaderTextIn { to { opacity: 1; filter: blur(0); transform: translateY(0); } }
@keyframes loaderRuleIn { to { transform: scaleX(1); } }
@keyframes loaderContentOut { to { opacity: 0; transform: translateY(-12px); } }
@keyframes loaderCurtainOut { to { transform: translate3d(0,-100%,0); } }

/* Navigation */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,244,237,.88); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: border-color .3s, box-shadow .3s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(32,49,47,.05); }
.nav-wrap { width: min(calc(100% - 48px), 1320px); min-height: 88px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; position: relative; z-index: 102; }
.brand-mark { overflow: hidden; display: grid; place-items: center; width: 44px; aspect-ratio: 1; border: 1px solid rgba(83,110,97,.4); border-radius: 50%; background: var(--sage-pale); }
.brand-mark img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.brand strong, .brand small { display: block; line-height: 1.2; }
.brand strong { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.brand small { margin-top: 4px; color: var(--ink-soft); font-size: 10px; letter-spacing: .18em; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav > a:not(.nav-cta) { position: relative; color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--sage-deep); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.site-nav > a[aria-current="page"] { color: var(--ink); }
.nav-cta { display: inline-flex; align-items: center; gap: 14px; padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 500; transition: color .25s, background .25s, transform .25s; }
.nav-cta:hover { color: white; background: var(--navy); transform: translateY(-2px); }
.nav-toggle { display: none; width: 45px; height: 45px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.nav-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: var(--ink); transition: transform .3s; }

@media (min-width: 821px) {
  .nav-wrap { position: relative; }
  .site-nav { position: absolute; left: 50%; transform: translateX(-50%); }
}

/* Shared typography and controls */
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: var(--sage-deep); font-size: 11px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #c9d7ce; }
.lead { font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 1.8rem); line-height: 1.45; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 38px; }
.button { border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 24px; border-radius: 999px; font-family: var(--sans); font-size: 14px; font-weight: 600; transition: transform .3s var(--ease), box-shadow .3s, background .3s; }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 12px 26px rgba(31,52,56,.16); }
.button-primary:hover { transform: translateY(-3px); background: var(--sage-deep); box-shadow: 0 16px 34px rgba(31,52,56,.22); }
.button-text { min-height: auto; padding: 8px 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.button-text:hover { border-color: var(--ink); transform: translateX(4px); }
.text-link { display: inline-flex; gap: 16px; margin-top: 14px; padding-bottom: 5px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.text-link:hover { border-color: var(--ink); }
.section-heading { max-width: 760px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { margin-bottom: 0; }

/* Home hero */
.hero { min-height: calc(100vh - 88px); display: flex; align-items: center; position: relative; padding-top: clamp(58px, 7vw, 100px); background: radial-gradient(circle at 78% 32%, rgba(220,229,221,.8), transparent 30%); }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 720px; margin-bottom: 26px; }
.hero h1 em { color: var(--sage-deep); font-weight: 400; }
.hero-positioning { max-width: 570px; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.45; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 40px; color: var(--ink-soft); font-size: 13px; }
.availability-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 5px rgba(130,153,140,.14); }
.availability-dot::after { content: ""; position: absolute; inset: -5px; border: 1px solid var(--sage); border-radius: inherit; animation: pulse 2.8s infinite; }
@keyframes pulse { 0%,100% { transform: scale(.6); opacity: 0 } 35% { opacity: .55 } 75% { transform: scale(1.35); opacity: 0 } }
.portrait-composition { position: relative; width: min(100%, 340px); margin-inline: auto; }
.portrait-photo { overflow: hidden; position: relative; aspect-ratio: 1; border-radius: 2px; background: var(--sage-pale); box-shadow: 0 28px 70px rgba(31,52,56,.17); }
.portrait-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 68%, rgba(20,35,36,.2)); pointer-events: none; }
.portrait-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 47%; }
.portrait-composition::before { content: ""; position: absolute; top: 18px; right: -18px; bottom: -18px; left: 18px; z-index: -1; border: 1px solid rgba(83,110,97,.42); border-radius: 2px; }
.portrait-caption { position: absolute; right: -38px; bottom: 38px; z-index: 2; display: flex; align-items: center; gap: 13px; padding: 16px 20px; border-radius: var(--radius-sm); background: rgba(255,253,248,.94); box-shadow: var(--shadow-lg); backdrop-filter: blur(8px); font-size: 11px; line-height: 1.4; }
.caption-number { font-family: var(--serif); font-size: 30px; color: var(--sage-deep); }
.botanical-line { position: absolute; top: -44px; right: -62px; z-index: -1; width: 130px; fill: none; stroke: var(--sage); stroke-width: 1; opacity: .55; }
.ambient-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(1px); }
.orb-one { left: -100px; bottom: 5%; width: 280px; height: 280px; background: rgba(233,223,208,.45); animation: drift 12s ease-in-out infinite; }
.orb-two { right: -100px; top: -120px; width: 330px; height: 330px; background: rgba(220,229,221,.55); }
.orb-three { right: 8%; bottom: -120px; width: 260px; height: 260px; background: rgba(233,223,208,.5); }
@keyframes drift { 50% { transform: translate(30px,-24px) } }

/* Home sections */
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 140px); }
.intro-copy { padding-top: 52px; }
.intro-copy > p:not(.lead) { max-width: 640px; color: var(--ink-soft); }
.glance { background: var(--paper); padding-top: 30px; }
.glance-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 65px; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.glance-card { min-height: 290px; padding: 28px; border-right: 1px solid var(--line); background: rgba(247,244,237,.35); transition: background .35s, transform .35s var(--ease); }
.glance-card:last-child { border-right: 0; }
.glance-card:hover { background: var(--cream); transform: translateY(-6px); }
.card-index { display: block; color: var(--sage-deep); font-size: 10px; letter-spacing: .14em; }
.line-icon { margin: 50px 0 24px; color: var(--sage-deep); font-family: var(--serif); font-size: 30px; }
.glance-card h3 { margin-bottom: 12px; font-size: 1.6rem; }
.glance-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }
.approach { color: #eff2ed; background: var(--navy); }
.approach-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 140px); align-items: center; }
.approach-visual { position: relative; }
.office-photo { overflow: hidden; position: relative; min-height: 580px; border-radius: 48% 52% 18px 30px / 24% 21% 18px 16px; background: #43534f; box-shadow: 0 34px 80px rgba(5,19,21,.3); }
.office-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,28,30,.03) 50%, rgba(12,28,30,.25)); pointer-events: none; }
.office-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 51% 52%; }
.approach-visual::before { content: ""; position: absolute; top: -18px; right: 28px; bottom: 32px; left: -22px; border: 1px solid rgba(201,215,206,.28); border-radius: 49% 51% 24px 35px / 24% 21% 18px 16px; pointer-events: none; }
.quiet-card { position: absolute; right: -50px; bottom: 42px; padding: 20px 24px; color: var(--ink); border-radius: 12px; background: var(--paper); box-shadow: var(--shadow-lg); font-family: var(--serif); font-size: 19px; line-height: 1.4; }
.quiet-card > span { color: var(--clay); font-size: 34px; }
.quiet-card .quiet-card__closing { display: inline; margin-left: 2px; color: var(--clay); font-size: 34px; line-height: 0; vertical-align: -.18em; }
.approach-copy h2 { max-width: 620px; }
.approach-copy > p:not(.eyebrow) { max-width: 650px; color: #cbd4d0; }
.method-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 36px; }
.method-list span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #dae1dd; font-size: 12px; }
.closing-cta { background: var(--paper); }
.cta-panel { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding: clamp(38px, 6vw, 76px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--cream), #e4ece4); }
.cta-panel h2 { margin-bottom: 12px; }
.cta-panel p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; color: var(--ink-soft); }
.cta-panel .button { flex: 0 0 auto; }

/* Inner-page hero and services */
.page-hero { position: relative; border-bottom: 1px solid var(--line); background: var(--paper); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 9vw, 130px); align-items: end; }
.page-hero h1 { margin-bottom: 0; font-size: clamp(3.8rem, 7vw, 6.5rem); }
.page-hero .lead { color: var(--ink-soft); }
.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 62px; }
.service-card { overflow: hidden; position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform .4s var(--ease), background .4s, box-shadow .4s; }
.service-card::after { content: ""; position: absolute; top: -85px; right: -78px; width: 190px; height: 190px; border: 1px solid rgba(83,110,97,.1); border-radius: 50%; pointer-events: none; transition: transform .55s var(--ease), border-color .4s; }
.service-card:hover { transform: translateY(-7px); background: var(--white); box-shadow: var(--shadow-sm); }
.service-card:hover::after { border-color: rgba(83,110,97,.22); transform: scale(1.08); }
.service-card-head { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 44px; }
.service-kind { padding-top: 9px; color: var(--sage-deep); font-size: 9px; font-weight: 600; letter-spacing: .15em; line-height: 1.45; text-align: right; text-transform: uppercase; }
.service-icon { display: grid; flex: 0 0 auto; place-items: center; width: 72px; height: 72px; color: var(--sage-deep); border: 1px solid rgba(83,110,97,.26); border-radius: 54% 46% 58% 42% / 46% 57% 43% 54%; background: linear-gradient(145deg, rgba(255,255,255,.8), var(--sage-pale)); box-shadow: inset 0 0 0 5px rgba(255,253,248,.58), 0 9px 20px rgba(31,52,56,.08); transition: color .35s, border-color .35s, transform .45s var(--ease); }
.service-card:nth-child(even) .service-icon { border-radius: 45% 55% 43% 57% / 57% 44% 56% 43%; }
.service-icon svg { width: 39px; height: 39px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.service-icon-accent { stroke: var(--clay); }
.service-card:hover .service-icon { color: var(--navy); border-color: rgba(83,110,97,.42); transform: translateY(-3px) rotate(-2deg); }
.service-card h3 { margin-bottom: 14px; }
.service-card p { color: var(--ink-soft); font-size: 14px; }
.service-card a { display: inline-flex; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: var(--sage-deep); font-size: 12px; font-weight: 600; }
.focus-band { color: var(--white); background: var(--navy); }
.focus-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.focus-copy p:not(.eyebrow) { max-width: 640px; color: #c9d3cf; }
.office-detail-photo { overflow: hidden; position: relative; aspect-ratio: 1.14; border-radius: 46% 54% 42% 58% / 32% 29% 71% 68%; background: #43534f; box-shadow: 0 30px 70px rgba(5,19,21,.3); }
.office-detail-photo::before { content: ""; position: absolute; inset: 14px; z-index: 1; border: 1px solid rgba(255,255,255,.35); border-radius: inherit; pointer-events: none; }
.office-detail-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(31,52,56,.02), rgba(31,52,56,.18)); pointer-events: none; }
.office-detail-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 50%; transform: scale(1.025); transition: transform 1.1s var(--ease); }
.office-detail-photo:hover img { transform: scale(1.065); }
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 140px); }
.accordion-item { border-top: 1px solid var(--line); }
.accordion-item:last-child { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 4px; border: 0; background: none; cursor: pointer; text-align: left; }
.accordion-item button span { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.55rem); }
.accordion-item i { position: relative; flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.accordion-item i::before, .accordion-item i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--ink); transform: translate(-50%,-50%); transition: transform .25s; }
.accordion-item i::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-item button[aria-expanded="true"] i::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { overflow: hidden; }
.accordion-panel p { max-width: 620px; padding: 0 40px 25px 4px; color: var(--ink-soft); }

/* Payment */
.payment-hero .page-hero-grid { display: block; }
.payment-hero .eyebrow { margin-bottom: clamp(30px, 4vw, 48px); }
.payment-hero .lead { width: 100%; max-width: 1100px; margin-bottom: 0; }
.payment-section { background: var(--paper); }
.payment-section + .payment-section { border-top: 1px solid var(--line); background: var(--cream); }
.payment-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(52px, 10vw, 140px); align-items: start; }
.payment-heading h2 { max-width: 430px; margin-bottom: 0; }
.payment-content { max-width: 720px; }
.payment-content > .lead { margin-bottom: 42px; }
.payment-kicker { margin-bottom: 19px; color: var(--sage-deep); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.insurance-name-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.insurance-name-list li { min-height: 62px; display: flex; align-items: center; padding: 14px 22px 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--serif); font-size: 1.2rem; line-height: 1.3; }
.insurance-name-list li:nth-child(odd) { margin-right: 24px; }
.insurance-note-text { margin: 22px 0 0; color: var(--ink-soft); font-size: 14px; }
.payment-callout { margin-top: 52px; padding: 28px 0 0 28px; border-top: 1px solid var(--line); border-left: 3px solid var(--sage); }
.payment-callout h3 { margin-bottom: 10px; font-size: clamp(1.6rem, 2.5vw, 2.15rem); }
.payment-callout p { margin-bottom: 0; color: var(--ink-soft); }
.payment-callout strong { color: var(--ink); font-family: var(--serif); font-size: 1.2em; font-weight: 500; }
.couples-facts { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.couples-facts p { margin-bottom: 12px; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(1.35rem, 2.25vw, 1.7rem); line-height: 1.4; }
.couples-facts p:last-child { margin-bottom: 0; }
.couples-facts strong { color: var(--ink); font-weight: 500; }

/* Contact */
.contact-hero { position: relative; padding-bottom: 190px; background: var(--paper); }
.contact-heading { max-width: 850px; text-align: center; }
.contact-heading .eyebrow { justify-content: center; }
.contact-heading h1 { margin-bottom: 24px; font-size: clamp(4rem, 7.5vw, 7rem); }
.contact-heading .lead { max-width: 760px; margin: auto; color: var(--ink-soft); }
.contact-section { position: relative; z-index: 2; margin-top: -110px; padding-bottom: 130px; }
.contact-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 20px; align-items: start; }
.contact-aside, .form-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); box-shadow: var(--shadow-sm); }
.contact-aside { overflow: hidden; }
.direct-card { display: grid; grid-template-columns: 52px 1fr; gap: 17px; padding: 25px; border-bottom: 1px solid var(--line); transition: background .3s var(--ease); }
.direct-card:last-of-type { border-bottom: 0; }
.direct-card:hover { background: rgba(255,253,248,.72); }
.direct-icon { position: relative; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(83,110,97,.28); border-radius: 58% 42% 55% 45% / 46% 56% 44% 54%; color: var(--sage-deep); background: linear-gradient(145deg, rgba(255,255,255,.7), var(--sage-pale)); box-shadow: inset 0 0 0 4px rgba(255,253,248,.48), 0 6px 16px rgba(31,52,56,.08); transition: color .3s, border-color .3s, transform .35s var(--ease); }
.direct-card:nth-child(even) .direct-icon { border-radius: 43% 57% 46% 54% / 57% 44% 56% 43%; }
.direct-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.direct-card:hover .direct-icon { color: var(--clay); border-color: rgba(185,130,104,.42); transform: translateY(-2px) rotate(-2deg); }
.direct-card small { display: block; margin-bottom: 4px; color: var(--ink-soft); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.direct-card a, .direct-card p, .direct-card address { margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.4; }
.direct-card a:hover { color: var(--sage-deep); }
.privacy-note { margin: 20px; padding: 22px; border-radius: var(--radius-sm); background: var(--paper); }
.privacy-note strong { font-size: 13px; }
.privacy-note p { margin: 8px 0 0; color: var(--ink-soft); font-size: 12px; }
.form-card { padding: clamp(28px, 5vw, 58px); background: var(--paper); }
.form-intro { margin-bottom: 38px; }
.form-intro > span { color: var(--sage-deep); font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.form-intro h2 { margin: 8px 0 10px; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.form-intro p { color: var(--ink-soft); font-size: 13px; }
.contact-company-field { overflow: hidden; position: absolute; left: -10000px; width: 1px; height: 1px; white-space: nowrap; clip-path: inset(50%); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; margin-bottom: 22px; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--cream); transition: border .2s, box-shadow .2s, background .2s; }
.field input, .field select { height: 60px; }
.field input, .field textarea { padding: 24px 16px 8px; }
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; padding: 20px 42px 8px 16px; background-image: linear-gradient(45deg,transparent 50%,var(--sage-deep) 50%),linear-gradient(135deg,var(--sage-deep) 50%,transparent 50%); background-position: calc(100% - 18px) 28px,calc(100% - 13px) 28px; background-size: 5px 5px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage-deep); box-shadow: 0 0 0 3px rgba(83,110,97,.11); background: var(--white); }
.floating-field label, .select-field label { position: absolute; top: 18px; left: 16px; color: var(--ink-soft); font-size: 13px; pointer-events: none; transform-origin: left; transition: transform .2s, top .2s; }
.floating-field input:focus + label, .floating-field input:not(:placeholder-shown) + label, .floating-field textarea:focus + label, .floating-field textarea:not(:placeholder-shown) + label, .select-field label { top: 7px; transform: scale(.78); }
.field label span, legend span { color: #a94f42; }
.field-hint { display: block; margin: 5px 2px 0; color: var(--ink-soft); font-size: 10px; }
.field-error { display: block; min-height: 17px; margin: 4px 2px 0; color: #9b3f36; font-size: 11px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b75f55; }
.choice-group { margin: 0 0 25px; padding: 0; border: 0; }
.choice-group legend { margin-bottom: 10px; font-size: 12px; font-weight: 600; }
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.choice-grid.three { grid-template-columns: repeat(3,1fr); }
.choice-pill { position: relative; cursor: pointer; }
.choice-pill input { position: absolute; opacity: 0; pointer-events: none; }
.choice-pill span { min-height: 46px; display: grid; place-items: center; padding: 8px 12px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink-soft); background: var(--cream); font-size: 12px; transition: border .2s, background .2s, transform .2s; }
.choice-pill input:checked + span { border-color: var(--sage-deep); color: var(--ink); background: var(--sage-pale); transform: translateY(-2px); }
.choice-pill input:focus-visible + span { outline: 3px solid var(--clay); outline-offset: 3px; }
.consent-field { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; cursor: pointer; color: var(--ink-soft); font-size: 11px; }
.consent-field input { position: absolute; opacity: 0; }
.checkmark { width: 21px; height: 21px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 5px; background: var(--cream); }
.consent-field input:checked + .checkmark { border-color: var(--sage-deep); background: var(--sage-deep); }
.consent-field input:checked + .checkmark::after { content: "✓"; color: white; font-size: 12px; }
.consent-field input:focus-visible + .checkmark { outline: 3px solid var(--clay); outline-offset: 3px; }
.consent-error { margin-left: 34px; }
.emergency-note { display: grid; grid-template-columns: 28px 1fr; gap: 12px; margin: 24px 0; padding: 14px; border-radius: 9px; background: #f3ebe2; }
.emergency-note > span { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid #a16755; border-radius: 50%; color: #8d5545; font-weight: 600; }
.emergency-note p { margin: 0; color: #6f5148; font-size: 11px; }
.submit-button { min-width: 220px; }
.button-loader { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.4); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
.submit-button.loading .button-loader { display: block; }
.submit-button.loading .button-arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg) } }
.form-status { margin: 12px 0 0; font-size: 12px; }
.form-status.is-error { color: #9b3f36; }
.form-status.is-success { color: var(--sage-deep); }
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 24px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(21,34,34,.66); backdrop-filter: blur(6px); animation: fadeIn .3s; }
.modal-panel { position: relative; z-index: 1; width: min(100%, 540px); padding: 55px; border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-lg); animation: modalIn .45s var(--ease); }
.modal-panel h2 { margin-bottom: 14px; font-size: 2.7rem; }
.modal-panel > p:not(.eyebrow) { color: var(--ink-soft); }
.modal-close { position: absolute; top: 17px; right: 17px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: none; cursor: pointer; font-size: 24px; }
.success-mark { width: 55px; height: 55px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 50%; color: white; background: var(--sage-deep); font-size: 22px; }
@keyframes fadeIn { from { opacity: 0 } }
@keyframes modalIn { from { opacity: 0; transform: translateY(25px) scale(.96) } }

/* Footer */
.site-footer { padding-top: 70px; color: #dbe2de; background: #17292c; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3,1fr); gap: 45px; padding-bottom: 60px; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand .brand-mark { color: #dbe2de; border-color: rgba(255,255,255,.3); }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.footer-brand div span { color: #98aaa4; font-size: 10px; letter-spacing: .15em; }
.footer-label { margin-bottom: 10px !important; color: #859a92 !important; font-size: 9px !important; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid p { margin: 0; color: #bbc8c3; font-size: 12px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 50px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #879a94; font-size: 9px; }
.footer-bottom p:last-child { max-width: 600px; text-align: right; }

/* Motion */
.page-enter { animation: pageEnter .9s var(--ease) both; }
.page-enter-delay { animation-delay: .12s; }
.page-enter-delay-two { animation-delay: .22s; }
@keyframes pageEnter { from { opacity: 0; transform: translateY(28px) } }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .site-loader { display: none !important; }
}

@media (max-width: 1050px) {
  .glance-grid { grid-template-columns: repeat(2,1fr); }
  .glance-card:nth-child(2) { border-right: 0; }
  .glance-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 820px) {
  .container, .nav-wrap { width: min(calc(100% - 32px), var(--container)); }
  .nav-wrap { min-height: 76px; gap: 14px; }
  .nav-toggle { display: block; position: relative; z-index: 102; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: fixed; top: 76px; right: 16px; left: 16px; z-index: 101; display: flex; max-height: calc(100vh - 92px); max-height: calc(100dvh - 92px); flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; padding: 12px 22px 18px; border: 1px solid var(--line); border-radius: 0 0 var(--radius-sm) var(--radius-sm); background: var(--paper); box-shadow: 0 24px 48px rgba(31,52,56,.14); visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .22s, transform .22s, visibility .22s; }
  .site-nav.open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a:not(.nav-cta) { display: flex; min-height: 54px; align-items: center; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.55rem; }
  .site-nav > a:not(.nav-cta):last-child { border-bottom: 0; }
  .site-nav > a:not(.nav-cta)::after { bottom: 7px; }
  .nav-cta { margin-top: 15px; }
  .hero { min-height: auto; }
  .hero-grid, .intro-grid, .approach-grid, .page-hero-grid, .focus-grid, .faq-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .portrait-composition { width: min(64vw, 330px); margin: 30px auto 0; }
  .intro-copy { padding-top: 0; }
  .approach-visual { width: min(80%, 500px); margin-inline: auto; }
  .page-hero-grid { align-items: start; }
  .focus-grid { gap: 50px; }
  .office-detail-photo { width: min(85%, 560px); margin-inline: auto; }
  .payment-layout { grid-template-columns: 1fr; gap: 38px; }
  .faq-grid { gap: 45px; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .contact-aside { display: grid; grid-template-columns: 1fr 1fr; }
  .direct-card { border-right: 1px solid var(--line); }
  .privacy-note { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(3.2rem, 16vw, 4.8rem); }
  .section-pad { padding: 76px 0; }
  .hero { padding-top: 58px; }
  .hero .eyebrow { max-width: 250px; align-items: flex-start; }
  .hero .eyebrow > span { margin-top: 8px; }
  .portrait-composition { width: min(78vw, 292px); }
  .portrait-caption { right: -12px; }
  .botanical-line { right: -35px; }
  .site-loader__botanical { width: 78px; height: 92px; }
  .site-loader__name { margin-top: 13px; font-size: 2rem; }
  .glance-grid, .services-grid { grid-template-columns: 1fr; }
  .glance-card { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .glance-card:last-child { border-bottom: 0; }
  .line-icon { margin-top: 34px; }
  .approach-visual { width: 90%; }
  .office-photo { min-height: 450px; }
  .office-detail-photo { width: 94%; }
  .quiet-card { right: -16px; }
  .service-card { min-height: 350px; }
  .insurance-name-list { grid-template-columns: 1fr; }
  .insurance-name-list li:nth-child(odd) { margin-right: 0; }
  .payment-callout { margin-top: 42px; padding: 24px 0 0 20px; }
  .contact-hero { padding-bottom: 150px; }
  .contact-heading h1 { font-size: 3.8rem; }
  .contact-aside { grid-template-columns: 1fr; }
  .privacy-note { grid-column: auto; }
  .form-card { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .choice-grid, .choice-grid.three { grid-template-columns: 1fr; }
  .modal-panel { padding: 45px 28px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 18px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (max-width: 360px) {
  .brand { gap: 10px; }
  .brand-mark { width: 40px; }
  .brand strong { font-size: 18px; }
  .nav-toggle { width: 43px; height: 43px; }
}
