@font-face {
  font-family: "Geist";
  src: url("../fonts/geist/Geist-Variable.woff2?v=1.7.2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

/* Only ş uses this local Georgia-compatible glyph; all other letters keep Georgia. */
@font-face {
  font-family: "IF Serif Cedilla";
  src: url("../fonts/gelasio/Gelasio-Cedilla.ttf?v=1") format("truetype");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  unicode-range: U+015F;
}

:root {
  --ink: #3d4647;
  --ink-soft: #5f6d6b;
  --sage: #6f8a83;
  --sage-dark: #4f6962;
  --terracotta: #c57c5a;
  --terracotta-dark: #a96243;
  --sand: #e5dbca;
  --ivory: #f8f5ef;
  --paper: #fffdf9;
  --line: rgba(61, 70, 71, 0.12);
  --shadow: 0 24px 60px rgba(61, 70, 71, 0.12);
  --radius: 28px;
  --font-sans: "Geist", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.section-shell,
.header-inner,
.hero-inner {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.section { padding: 112px 0; }

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 94px;
  border-bottom: 1px solid rgba(61, 70, 71, 0.08);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 330px;
}

.brand img { width: 65px; height: 60px; object-fit: contain; }
.brand-copy { display: block; }

.brand-copy small {
  display: block;
  margin-bottom: 4px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand-copy strong {
  display: block;
  color: var(--ink);
  font: 500 21px/1.05 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: #53615f;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav > a:not(.nav-cta) { position: relative; padding: 10px 0; }

.desktop-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 14px 22px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 10px 25px rgba(197, 124, 90, 0.22);
  transition: background 160ms ease, transform 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible { background: var(--terracotta-dark); transform: translateY(-2px); }

.mobile-menu { display: none; position: relative; }

.mobile-menu summary {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 19px; height: 1.5px; background: var(--ink); }

.mobile-menu nav {
  position: absolute;
  top: 58px;
  right: 0;
  width: min(300px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  gap: 3px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu nav a { padding: 12px 14px; border-radius: 10px; font-weight: 650; }
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { background: var(--ivory); }

.menu-toggle {
  position: relative;
  z-index: 91;
  width: 48px;
  height: 48px;
  display: none;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(61, 70, 71, 0.14);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.64);
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}

.menu-toggle span {
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 280ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.offcanvas-backdrop {
  position: fixed;
  z-index: 75;
  inset: 0;
  border: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(31, 39, 39, 0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: opacity 360ms ease, visibility 0s linear 560ms;
}

.offcanvas {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  width: min(430px, 92vw);
  height: 100vh;
  height: 100dvh;
  overflow: hidden auto;
  padding: 25px 26px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.68);
  visibility: hidden;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(248, 245, 239, 0.46) 48%, rgba(229, 219, 202, 0.42)),
    rgba(248, 245, 239, 0.62);
  box-shadow: -28px 0 80px rgba(45, 54, 54, 0.2), inset 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(34px) saturate(175%);
  -webkit-backdrop-filter: blur(34px) saturate(175%);
  transform: translate3d(104%, 0, 0);
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 560ms;
}

.offcanvas::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 255, 255, 0.9), transparent 29%),
    radial-gradient(circle at 95% 74%, rgba(111, 138, 131, 0.2), transparent 35%),
    linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.28) 48%, transparent 70%);
}

.offcanvas::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -205px;
  bottom: -165px;
  pointer-events: none;
  border: 2px solid rgba(197, 124, 90, 0.38);
  border-left-color: transparent;
  border-bottom-color: rgba(111, 138, 131, 0.36);
  border-radius: 50%;
  transform: rotate(-14deg);
}

body.menu-open { overflow: hidden; }
body.menu-open .offcanvas-backdrop { opacity: 1; visibility: visible; transition-delay: 0s; }
body.menu-open .offcanvas { visibility: visible; transform: translate3d(0, 0, 0); transition-delay: 0s; }

.offcanvas__top,
.offcanvas__brand,
.offcanvas__nav,
.offcanvas__contact {
  position: relative;
  z-index: 1;
}

.offcanvas__top {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offcanvas__brand img { width: 56px; height: 52px; object-fit: contain; }
.offcanvas__brand strong { display: block; font: 500 18px/1.08 "IF Serif Cedilla", Georgia, "Times New Roman", serif; }
.offcanvas__brand small { display: block; margin-top: 3px; color: var(--sage); font-size: 9px; font-weight: 750; letter-spacing: 0.13em; text-transform: uppercase; }

.offcanvas__close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(61, 70, 71, 0.13);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.offcanvas__nav {
  display: grid;
  margin-top: clamp(52px, 9vh, 92px);
}

.offcanvas__nav > a:not(.offcanvas__cta) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 2px;
  border-bottom: 1px solid rgba(61, 70, 71, 0.12);
  font: 620 clamp(24px, 6.5vw, 32px)/1.1 "Geist", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.02em;
}

.offcanvas__nav > a:not(.offcanvas__cta)::after {
  content: "↗";
  color: var(--terracotta);
  font: 400 19px/1 "Geist", "Segoe UI", Arial, sans-serif;
}

.offcanvas__cta {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 15px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 16px 36px rgba(197, 124, 90, 0.28);
  font-size: 15px;
  font-weight: 740;
}

.offcanvas__contact {
  margin-top: 34px;
  padding: 20px 21px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.29);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.56);
}

.offcanvas__contact small {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offcanvas__contact a {
  display: block;
  padding: 3px 0;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 680;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 2% 6%, rgba(229, 219, 202, 0.72), transparent 35%), var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -250px;
  bottom: -260px;
  border: 2px solid rgba(197, 124, 90, 0.32);
  border-left-color: transparent;
  border-bottom-color: rgba(111, 138, 131, 0.22);
  border-radius: 50%;
  transform: rotate(24deg);
}

.hero-inner {
  min-height: 720px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
}

.hero-copy { position: relative; z-index: 2; padding: 116px 48px 90px 0; }

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font: 500 clamp(58px, 5.1vw, 82px) / 0.98 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
  letter-spacing: -0.052em;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }

.button-primary {
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 12px 28px rgba(197, 124, 90, 0.24);
}

.button-primary:hover, .button-primary:focus-visible { background: var(--terracotta-dark); }

.button-secondary {
  border-color: rgba(79, 105, 98, 0.26);
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.4);
}

.button-secondary:hover, .button-secondary:focus-visible { background: #fff; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }

.hero-tags span,
.values span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(111, 138, 131, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-visual { position: relative; padding: 52px 0 52px 20px; }

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 115px -120px 0 200px;
  border-radius: 50% 50% 0 0;
  background: rgba(229, 219, 202, 0.72);
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 220px 28px 28px 28px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  z-index: 3;
  left: -12px;
  bottom: 76px;
  width: 218px;
  padding: 22px 23px;
  border: 1px solid rgba(61, 70, 71, 0.08);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 18px 44px rgba(61, 70, 71, 0.14);
  font: 500 19px/1.35 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
}

.hero-note small {
  display: block;
  margin-bottom: 9px;
  color: var(--terracotta);
  font: 750 10px/1 "Geist", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.belief { color: #fff; background: var(--sage-dark); }

.belief-inner {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 70px;
  padding-block: 36px;
}

.belief blockquote {
  margin: 0;
  font: 500 clamp(28px, 3vw, 42px) / 1.2 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.belief p { margin: 0; color: rgba(255, 255, 255, 0.74); font-size: 16px; line-height: 1.62; }

.intro-grid,
.support-grid,
.treatments-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.intro h2,
.support h2,
.section-heading h2,
.treatments h2,
.process h2,
.family h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font: 500 clamp(42px, 4.2vw, 62px) / 1.04 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}

.intro-copy .large-copy {
  margin-bottom: 24px;
  color: var(--ink);
  font: 500 26px/1.45 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
}

.intro-copy > p:not(.large-copy),
.support-content > p,
.treatments-intro > p:last-child,
.process-heading > p:last-child,
.family-copy > p:last-child,
.section-heading > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.values { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.support { background: #f2f2ed; }
.support-grid { align-items: center; }
.support-image { position: relative; min-height: 660px; }

.support-image::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -45px;
  bottom: -40px;
  border: 2px solid rgba(197, 124, 90, 0.42);
  border-left-color: transparent;
  border-radius: 50%;
}

.support-image img {
  position: absolute;
  inset: 0 44px 0 0;
  width: calc(100% - 44px);
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  border-radius: 28px 180px 28px 28px;
  box-shadow: var(--shadow);
}

.support-caption {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 220px;
  padding: 20px 22px;
  border-radius: 17px;
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 18px 40px rgba(197, 124, 90, 0.22);
  font: 500 18px/1.35 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
}

.support-content h2 { margin-bottom: 28px; }

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 45px;
  border: 1px solid rgba(61, 70, 71, 0.08);
  border-radius: 12px;
  color: #53615f;
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.38;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-size: 11px;
  transform: translateY(-50%);
}

.offers { background: var(--paper); }

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.section-heading > p { margin: 0 0 4px; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 39px 42px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f2f5f2;
}

.offer-card-large { background: var(--ivory); }
.offer-card-warm { background: #f5ebe3; }
.offer-card-dark { color: #fff; background: var(--ink); }

.offer-number {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer-card h3 {
  max-width: 520px;
  margin: 45px 0 17px;
  font: 500 34px/1.08 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.offer-card > p { max-width: 585px; color: var(--ink-soft); font-size: 16px; line-height: 1.62; }
.offer-card-dark > p { color: rgba(255, 255, 255, 0.72); }

.offer-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li { position: relative; padding-left: 16px; color: #5e6d6b; font-size: 14px; }

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

.text-link {
  position: absolute;
  z-index: 2;
  left: 42px;
  bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 740;
}

.text-link span { font-size: 20px; }
.small-note { margin-top: 28px; font-size: 13px !important; }

.offer-curve {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -124px;
  bottom: -125px;
  border: 2px solid rgba(197, 124, 90, 0.34);
  border-left-color: transparent;
  border-radius: 50%;
}

.offer-card-dark .offer-curve {
  border-top-color: rgba(197, 124, 90, 0.72);
  border-right-color: rgba(111, 138, 131, 0.72);
}

.treatments { background: var(--ivory); }
.treatments-intro { position: sticky; top: 132px; }
.treatments-intro h2 { margin-bottom: 26px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }

.accordion summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: 48px 1fr 26px;
  align-items: center;
  gap: 17px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font: 500 23px/1.25 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary span {
  color: var(--terracotta);
  font: 750 11px/1 "Geist", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.12em;
}

.accordion summary b {
  color: var(--sage);
  font: 400 29px/1 "Geist", "Segoe UI", Arial, sans-serif;
  transition: transform 160ms ease;
}

.accordion details[open] summary b { transform: rotate(45deg); }

.accordion details p {
  margin: -8px 36px 20px 65px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.treatment-additions {
  margin: 0 36px 28px 65px;
  padding-left: 21px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.treatment-additions li::marker { color: var(--terracotta); }

.process { background: #f0f3f0; }
.process-heading { max-width: 780px; margin-bottom: 58px; }
.process-heading h2 { margin-bottom: 22px; }

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 280px;
  padding: 30px 31px;
  border: 1px solid rgba(61, 70, 71, 0.09);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.8);
}

.process-list li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--terracotta);
  font-size: 11px;
  font-weight: 750;
}

.process-list h3 { margin: 46px 0 14px; font: 500 25px/1.15 "IF Serif Cedilla", Georgia, "Times New Roman", serif; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

.cost-note {
  margin-top: 20px;
  padding: 25px 30px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  color: #fff;
  background: var(--sage-dark);
}

.cost-note strong { font: 500 20px/1.25 "IF Serif Cedilla", Georgia, "Times New Roman", serif; }
.cost-note p { margin: 0; color: rgba(255, 255, 255, 0.74); font-size: 14px; line-height: 1.55; }

.family {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background: var(--terracotta);
}

.family::before,
.family::after { content: ""; position: absolute; border-radius: 50%; }

.family::before {
  width: 440px;
  height: 440px;
  left: -245px;
  top: -260px;
  border: 2px solid rgba(255, 255, 255, 0.34);
}

.family::after {
  width: 370px;
  height: 370px;
  right: -210px;
  bottom: -260px;
  border: 2px solid rgba(61, 70, 71, 0.24);
}

.family-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  align-items: center;
  gap: 80px;
}

.family-mark {
  width: min(100%, 290px);
  min-height: 290px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 20px 48px rgba(61, 70, 71, 0.12);
}

.family-mark img { width: 100%; height: auto; display: block; }

.family-copy { max-width: 850px; color: #fff; }
.family-copy .section-kicker { color: #fff; }
.family-copy h2 { color: #fff; margin-bottom: 24px; }
.family-copy > p:last-child { max-width: 780px; margin: 0; color: rgba(255, 255, 255, 0.8); }
.team { background: var(--paper); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 38px;
  padding: 46px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}

.team-card:nth-child(2) { background: #f0f3f0; }

.team-photo {
  position: relative;
  width: 180px;
  aspect-ratio: 4 / 5;
  align-self: start;
  overflow: hidden;
  margin: 0;
  border-radius: 90px 90px 24px 24px;
  background: var(--sand);
  box-shadow: 0 18px 40px rgba(61, 70, 71, 0.14);
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: inherit;
  box-shadow: inset 0 -28px 42px rgba(61, 70, 71, 0.08);
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-monogram {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font: 500 42px/1 "IF Serif Cedilla", Georgia, "Times New Roman", serif;
}

.team-card:nth-child(2) .team-monogram { background: var(--terracotta); }

.team-role {
  margin: 2px 0 9px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.team-card h3 { margin: 0 0 23px; font: 500 34px/1.05 "IF Serif Cedilla", Georgia, "Times New Roman", serif; }
.team-card p:not(.team-role) { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.contact::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -290px;
  top: -300px;
  border: 2px solid rgba(197, 124, 90, 0.72);
  border-left-color: transparent;
  border-bottom-color: rgba(111, 138, 131, 0.72);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 100px;
  align-items: center;
}

.contact-main .section-kicker { color: #e6aa8d; }
.contact-main h2 { max-width: 730px; color: #fff; }

.contact-main > p:not(.section-kicker) {
  max-width: 680px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.65;
}

.button-light { color: var(--ink); background: #fff; }
.button-outline-light { border-color: rgba(255, 255, 255, 0.26); color: #fff; }
.button-outline-light:hover, .button-outline-light:focus-visible { background: rgba(255, 255, 255, 0.08); }

.contact-card {
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
  backdrop-filter: blur(10px);
}

.contact-row {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-row > span {
  color: #e6aa8d;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row strong { color: rgba(255, 255, 255, 0.92); font-size: 15px; line-height: 1.6; }
.contact-row a:hover, .contact-row a:focus-visible { color: #e6aa8d; }

.map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.map-link span { font-size: 21px; }
.footer { background: #f2eee7; }

.footer-inner {
  min-height: 220px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 50px;
}

.footer-brand img { width: 155px; height: 145px; object-fit: contain; }
.footer-links { display: grid; gap: 17px; }
.footer-nav,
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; color: var(--ink-soft); font-size: 14px; font-weight: 650; }
.footer-nav a,
.footer-legal a { text-underline-offset: 4px; }
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--terracotta-dark); text-decoration: underline; }
.footer-legal { gap: 22px; color: rgba(61, 70, 71, 0.68); font-size: 12px; font-weight: 600; }
.footer-inner > p { margin: 0; color: rgba(61, 70, 71, 0.55); font-size: 12px; }

body.legal-open { overflow: hidden; }

.legal-dialog {
  width: min(900px, calc(100% - 40px));
  max-width: none;
  max-height: min(88vh, 920px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 36px 100px rgba(38, 46, 45, 0.26);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  backdrop-filter: blur(26px) saturate(135%);
  -webkit-backdrop-filter: blur(26px) saturate(135%);
}

.legal-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: legal-dialog-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.legal-dialog::backdrop {
  background: rgba(45, 53, 52, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: legal-backdrop-in 220ms ease both;
}

.legal-dialog__surface {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: min(88vh, 920px);
}

.legal-dialog__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 44px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.74);
}

.legal-dialog__header .section-kicker { margin-bottom: 8px; }
.legal-dialog__header h2 { margin: 0; font: 500 clamp(34px, 5vw, 52px)/1.02 "IF Serif Cedilla", Georgia, "Times New Roman", serif; }

.legal-dialog__close {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(61, 70, 71, 0.14);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.legal-dialog__close:hover,
.legal-dialog__close:focus-visible { color: #fff; background: var(--terracotta); transform: rotate(4deg); }

.legal-dialog__content {
  padding: 10px 44px 44px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(111, 138, 131, 0.55) transparent;
}

.legal-dialog__content section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-dialog__content section:last-child { border-bottom: 0; }
.legal-dialog__content h3 { margin-bottom: 12px; font-size: 18px; line-height: 1.35; }
.legal-dialog__content p,
.legal-dialog__content li { color: var(--ink-soft); font-size: 15px; line-height: 1.72; }
.legal-dialog__content p:last-child { margin-bottom: 0; }
.legal-dialog__content ul { margin: 0; padding-left: 20px; }
.legal-dialog__content a { color: var(--sage-dark); font-weight: 650; text-decoration: underline; text-decoration-color: rgba(79, 105, 98, 0.34); text-underline-offset: 4px; }
.legal-dialog__content a:hover,
.legal-dialog__content a:focus-visible { color: var(--terracotta-dark); text-decoration-color: currentColor; }
.legal-dialog__intro { margin: 24px 0 0; font-size: 17px !important; }

@keyframes legal-dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes legal-backdrop-in {
  from { background: rgba(45, 53, 52, 0); backdrop-filter: blur(0); }
  to { background: rgba(45, 53, 52, 0.5); backdrop-filter: blur(8px); }
}

:focus-visible { outline: 3px solid rgba(197, 124, 90, 0.52); outline-offset: 4px; }

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: reveal 700ms ease both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
  }

  @keyframes reveal {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 48px; }
  .hero-copy { padding: 82px 0 48px; }
  .hero-visual { min-height: 560px; padding: 0; }
  .hero-visual > img { max-height: none; border-radius: 160px 28px 28px 28px; }
  .belief-inner { grid-template-columns: 1fr; gap: 24px; padding-block: 45px; }
  .intro-grid, .support-grid, .treatments-grid { gap: 60px; }
  .section-heading, .contact-shell { grid-template-columns: 1fr; gap: 38px; }
  .team-card { grid-template-columns: 155px 1fr; gap: 28px; }
  .team-photo { width: 145px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .offcanvas,
  .offcanvas-backdrop,
  .menu-toggle span,
  .legal-dialog,
  .legal-dialog::backdrop { animation-duration: 1ms !important; transition-duration: 1ms !important; }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .offcanvas { background: rgba(248, 245, 239, 0.98); }
  .menu-toggle { background: var(--paper); }
  .legal-dialog { background: var(--paper); }
}

@media (max-width: 820px) {
  .section-shell, .header-inner, .hero-inner { width: min(100% - 34px, 700px); }
  .section { padding: 82px 0; }
  .site-header { height: 80px; }
  .brand { min-width: 0; }
  .brand img { width: 54px; height: 50px; }
  .brand-copy small { font-size: 8px; }
  .brand-copy strong { font-size: 18px; }
  .hero-copy { padding-top: 68px; }
  .hero h1 { font-size: clamp(48px, 13vw, 68px); }
  .hero-lead { font-size: 17px; }
  .hero-visual { min-height: 470px; }
  .hero-note { left: 15px; bottom: 27px; }
  .intro-grid, .support-grid, .treatments-grid { grid-template-columns: 1fr; gap: 42px; }
  .treatments-intro { position: static; }
  .support-image { min-height: 520px; }
  .section-heading { margin-bottom: 38px; }
  .offer-grid, .team-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; }
  .process-list h3 { margin-top: 30px; }
  .cost-note { grid-template-columns: 1fr; gap: 10px; }
  .family-inner { grid-template-columns: 1fr; gap: 35px; }
  .family-mark { width: 230px; min-height: 230px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; gap: 25px; padding-block: 45px; }
}

@media (max-width: 560px) {
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 16px; }
  .hero-copy { padding-top: 52px; }
  .eyebrow, .section-kicker { font-size: 11px; line-height: 1.45; }
  .hero h1 { font-size: clamp(43px, 13.6vw, 58px); }
  .hero-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-tags span { font-size: 10px; }
  .hero-visual { min-height: 390px; }
  .hero-visual > img { border-radius: 110px 20px 20px 20px; }
  .hero-note { width: 190px; padding: 16px 18px; font-size: 16px; }
  .belief blockquote { font-size: 28px; }
  .intro h2, .support h2, .section-heading h2, .treatments h2, .process h2, .family h2, .contact h2 { font-size: 39px; }
  .intro-copy .large-copy { font-size: 22px; }
  .support-image { min-height: 430px; }
  .support-image img { right: 20px; width: calc(100% - 20px); border-radius: 22px 115px 22px 22px; }
  .support-caption { right: -2px; bottom: 28px; width: 180px; font-size: 15px; }
  .check-list, .offer-card ul { grid-template-columns: 1fr; }
  .offer-card { min-height: 0; padding: 30px 25px 80px; }
  .offer-card h3 { margin-top: 32px; font-size: 29px; }
  .text-link { left: 25px; bottom: 28px; }
  .accordion summary { min-height: 82px; grid-template-columns: 34px 1fr 24px; gap: 10px; font-size: 19px; }
  .accordion details p { margin-left: 44px; }
  .treatment-additions { margin-left: 44px; }
  .family { padding: 75px 0; }
  .team-card { grid-template-columns: 1fr; min-height: 0; padding: 32px 27px; }
  .team-photo { width: min(100%, 230px); }
  .contact-row { grid-template-columns: 1fr; gap: 8px; }
  .contact-card { padding: 26px 24px; }
  .footer-nav { gap: 18px; }
  .legal-dialog { width: calc(100% - 22px); max-height: calc(100dvh - 22px); border-radius: 22px; }
  .legal-dialog__surface { max-height: calc(100dvh - 22px); }
  .legal-dialog__header { padding: 25px 22px 20px; }
  .legal-dialog__header h2 { font-size: 34px; }
  .legal-dialog__close { width: 42px; height: 42px; font-size: 27px; }
  .legal-dialog__content { padding: 4px 22px 28px; }
  .legal-dialog__content section { padding: 23px 0; }
}
