@font-face {
  font-family: "Auxin";
  src: url("assets/fonts/Auxin-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #18211f;
  --muted: #5d6965;
  --paper: #f8f6f0;
  --soft: #eef4ef;
  --sage: #6e8c7d;
  --deep: #244139;
  --clay: #b86f4d;
  --mist: #dfe7e2;
  --cream: #fff9f1;
  --gold: #c58d3f;
  --line: rgba(36, 65, 57, 0.12);
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(24, 33, 31, 0.11);
  --soft-shadow: 0 18px 42px rgba(24, 33, 31, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 111, 77, 0.06), transparent 32rem),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 38rem);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.86);
  border-bottom: 1px solid rgba(36, 65, 57, 0.1);
  box-shadow: 0 12px 34px rgba(24, 33, 31, 0.045);
  backdrop-filter: blur(22px) saturate(130%);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(190px, 16vw, 226px);
  height: auto;
  filter: drop-shadow(0 9px 18px rgba(36, 65, 57, 0.14));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.site-footer a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--clay);
  transition: transform 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--deep);
}

.site-footer a:hover {
  color: #f2d5bb;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(36, 65, 57, 0.14);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(24, 33, 31, 0.06);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(24, 33, 31, 0.1);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -7px;
}

.menu-toggle-lines::after {
  top: 7px;
}

.site-header.menu-open .menu-toggle-lines {
  background: transparent;
}

.site-header.menu-open .menu-toggle-lines::before {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(18px, 4vw, 56px);
  display: grid;
  min-width: min(320px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(36, 65, 57, 0.12);
  border-radius: 8px;
  padding: 8px;
  background: #fffdf9;
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--deep);
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: var(--soft);
}

.nav-cta,
.button,
.package-card button {
  justify-self: center;
  width: min(100%, 360px);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.button.primary,
.package-card button {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), #31584d);
}

.button.secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.nav-cta:hover,
.button:hover,
.package-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(36, 65, 57, 0.18);
}

.package-card button.is-selected {
  box-shadow: inset 0 0 0 2px rgba(242, 213, 187, 0.72), 0 12px 28px rgba(36, 65, 57, 0.16);
}

.package-card:not(.featured) button.is-selected {
  background: linear-gradient(135deg, #31584d, var(--deep));
}

.package-card.featured button.is-selected {
  color: var(--deep);
  background: #f2d5bb;
}

.hero {
  min-height: min(820px, 88svh);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(118px, 14vw, 168px) clamp(18px, 5vw, 72px) clamp(56px, 8vw, 88px);
}

.hero-media {
  --hero-parallax-y: 0px;
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/aya-recovery-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.16);
  transform-origin: center;
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 28, 25, 0.84) 0%, rgba(16, 28, 25, 0.56) 40%, rgba(16, 28, 25, 0.12) 76%),
    linear-gradient(0deg, rgba(16, 28, 25, 0.5), rgba(16, 28, 25, 0.02));
}

.hero-content {
  max-width: 820px;
  color: var(--white);
  min-width: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.hero-logo-mark {
  display: block;
  width: clamp(128px, 14vw, 176px);
  height: auto;
  margin: 0 0 12px;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 20px;
  color: #f2d5bb;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.85rem, 9.2vw, 7.75rem);
  line-height: 0.92;
}

.hero-brand-name {
  font-family: "Auxin", Inter, system-ui, sans-serif;
  font-size: clamp(3.15rem, 8.7vw, 6.6rem);
  font-weight: 500;
  letter-spacing: 0.018em;
  line-height: 0.94;
  margin-bottom: 10px;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.8vw, 4.35rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  text-wrap: balance;
}

p,
li,
dt,
dd,
figcaption,
.button,
.nav-cta,
.trust-row span,
.badge {
  text-wrap: pretty;
}

.nowrap {
  white-space: nowrap;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 2.1vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
}

.trust-row span {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.trust-row span::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f2d5bb;
}

section {
  padding: clamp(72px, 8.2vw, 120px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 92px;
}

main > section:not(.hero) > * {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
    var(--soft);
}

.services {
  background:
    radial-gradient(circle at 18% 10%, rgba(242, 213, 187, 0.12), transparent 26rem),
    radial-gradient(circle at 82% 24%, rgba(110, 140, 125, 0.18), transparent 28rem),
    linear-gradient(180deg, #142720, #1f3b34 58%, #142720);
  color: rgba(255, 255, 255, 0.86);
}

.approach {
  background:
    radial-gradient(circle at 86% 12%, rgba(184, 111, 77, 0.07), transparent 22rem),
    linear-gradient(180deg, #eef4ef, #e3ede7);
}

.safety {
  background:
    radial-gradient(circle at 16% 12%, rgba(242, 213, 187, 0.13), transparent 24rem),
    radial-gradient(circle at 84% 16%, rgba(110, 140, 125, 0.2), transparent 28rem),
    linear-gradient(180deg, #13241f, #203b34 58%, #142720);
  color: rgba(255, 255, 255, 0.86);
}

.services .section-heading h2,
.safety .section-heading h2 {
  color: var(--white);
}

.services .section-heading .eyebrow,
.safety .section-heading .eyebrow {
  color: #f2d5bb;
}

.services .service-card,
.safety .safety-grid article,
.faq .faq-grid details {
  color: var(--ink);
}

.packages {
  background:
    radial-gradient(circle at 8% 8%, rgba(110, 140, 125, 0.14), transparent 24rem),
    linear-gradient(180deg, #f3f6f1, #e8f0ea);
}

.faq {
  background:
    radial-gradient(circle at 18% 10%, rgba(242, 213, 187, 0.13), transparent 24rem),
    radial-gradient(circle at 84% 18%, rgba(110, 140, 125, 0.2), transparent 28rem),
    linear-gradient(180deg, #142720, #203b34 58%, #13241f);
  color: rgba(255, 255, 255, 0.86);
}

.faq .section-heading h2 {
  color: var(--white);
}

.faq .section-heading .eyebrow {
  color: #f2d5bb;
}

.booking {
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 111, 77, 0.1), transparent 22rem),
    linear-gradient(135deg, #e6f0ea, #fbfaf6 58%, #fff1e2);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(30px, 4.4vw, 52px);
  max-width: 940px;
}

.intro .section-heading {
  max-width: 980px;
}

.intro .section-heading h2 {
  max-width: 980px;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.intro-grid,
.booking-layout {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  align-items: stretch;
}

.intro-grid {
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 36px);
}

.booking-layout {
  grid-template-columns: minmax(360px, 0.9fr) minmax(500px, 1fr);
  gap: clamp(48px, 7vw, 86px);
  align-items: start;
}

.intro-grid > *,
.booking-layout > * {
  min-width: 0;
}

.intro-grid p,
.section-copy,
.booking-layout > div > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.pricing-packages {
  margin-bottom: 22px;
}

.price-table {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.table-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.table-group h3 {
  margin-bottom: 8px;
}

.table-group > p {
  color: var(--muted);
}

.table-group dl {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
}

.table-group dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(36, 65, 57, 0.1);
}

.table-group dl div[data-package] {
  position: relative;
  padding-right: 44px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.table-group dl div[data-package]::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(36, 65, 57, 0.14);
  border-radius: 999px;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.table-group dl div[data-package]:hover {
  background: rgba(255, 255, 255, 0.58);
}

.table-group dl div[data-package]:hover::after {
  border-color: rgba(184, 111, 77, 0.36);
  color: var(--clay);
  transform: translate(2px, -50%);
}

.table-group dl div[data-package]:focus-visible {
  outline: 3px solid rgba(184, 111, 77, 0.55);
  outline-offset: 4px;
}

.table-group dl div[data-package].is-selected {
  border-color: rgba(184, 111, 77, 0.34);
  background: rgba(255, 248, 239, 0.82);
}

.table-group dl div[data-package].is-selected::after {
  content: "✓";
  border-color: var(--deep);
  color: var(--white);
  background: var(--deep);
  transform: translateY(-50%);
}

.table-group dt,
.table-group dd {
  margin: 0;
}

.table-group dt {
  color: var(--muted);
}

.table-group dt strong,
.table-group dt span {
  display: block;
}

.table-group dt strong {
  color: var(--deep);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.18;
}

.table-group dt span {
  margin-top: 3px;
  color: #68746f;
  font-size: 0.94rem;
  line-height: 1.35;
}

.table-group dd {
  color: var(--deep);
  font-weight: 800;
}

.table-group dl div[data-package].is-selected dd::before {
  content: "Selected";
  display: block;
  margin-bottom: 5px;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 920px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(24, 33, 31, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.faq-grid details[open] {
  border-color: rgba(184, 111, 77, 0.32);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.faq-grid summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  color: var(--deep);
  padding: 18px 20px;
  font-weight: 800;
  text-wrap: balance;
  list-style: none;
}

.faq-grid summary::marker {
  content: "";
}

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

.faq-grid summary::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), #31584d);
  font-family: Fraunces, Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
}

.faq-grid summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(36, 65, 57, 0.12);
  border-radius: 50%;
  color: var(--deep);
  background: var(--soft);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.faq-grid details[open] summary {
  border-bottom: 1px solid rgba(36, 65, 57, 0.1);
}

.faq-grid details[open] summary::after {
  content: "-";
  color: var(--white);
  background: var(--deep);
  transform: rotate(180deg);
}

.faq-grid p {
  margin: 0;
  padding: 18px 20px 20px 76px;
  color: var(--muted);
  line-height: 1.58;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-stats span {
  min-height: 116px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(36, 65, 57, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(24, 33, 31, 0.05);
}

.mini-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 1.5rem;
}

.booking-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
  border: 1px solid rgba(36, 65, 57, 0.09);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 246, 0.82)),
    radial-gradient(circle at 92% 12%, rgba(184, 111, 77, 0.1), transparent 18rem);
  box-shadow: 0 18px 42px rgba(24, 33, 31, 0.055);
}

.booking-steps-heading {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: clamp(10px, 1.8vw, 18px);
  padding-bottom: clamp(16px, 2.2vw, 24px);
  border-bottom: 1px solid rgba(36, 65, 57, 0.12);
}

.booking-steps-heading h3 {
  max-width: 520px;
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 1;
}

.booking-steps-heading .eyebrow {
  display: inline-flex;
  justify-self: end;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-items: center;
  min-height: auto;
  margin-bottom: 0;
  border-left: 3px solid rgba(184, 111, 77, 0.42);
  padding-left: 12px;
  color: var(--clay);
  font-size: 0.82rem;
}

.booking-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  grid-template-rows: auto auto auto auto 1fr;
  border: 1px solid rgba(36, 65, 57, 0.1);
  border-radius: 8px;
  padding: 16px 16px 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 36px rgba(24, 33, 31, 0.05);
}

.booking-steps article img {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  border-radius: 8px;
  object-fit: cover;
}

.booking-steps article span {
  display: inline-grid;
  place-items: center;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  min-height: 0;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), #31584d);
  box-shadow: 0 12px 24px rgba(36, 65, 57, 0.22);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.booking-steps article h3 {
  margin: 0 0 4px;
}

.booking-steps article .step-context {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-steps article .step-context::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 5px rgba(184, 111, 77, 0.1);
}

.booking-steps article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-steps article > h3,
.booking-steps article > p {
  grid-column: auto;
}

.service-grid,
.package-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pricing-packages {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.12fr) minmax(0, 0.96fr);
  align-items: start;
}

.service-card,
.package-card,
.process-step,
.booking-form,
.booking-note {
  border: 1px solid rgba(36, 65, 57, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 0;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(24, 33, 31, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: filter 420ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  transform: scaleX(0.18);
  transform-origin: left;
  background: var(--clay);
  transition: transform 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 111, 77, 0.28);
  box-shadow: var(--soft-shadow);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover .service-media img {
  filter: saturate(1.04) contrast(1.03);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--mist), #f4eadf);
  border-radius: 8px;
  font-weight: 800;
}

.service-card h3,
.package-card h3,
.process-step h3 {
  margin-bottom: 10px;
}

.service-card p,
.package-card p,
.process-step p {
  margin-bottom: 0;
}

.service-card p,
.process-step p,
.package-card p {
  color: var(--muted);
}

.process-step {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(24, 33, 31, 0.05);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), #31584d);
  box-shadow: 0 14px 32px rgba(36, 65, 57, 0.2);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 46px;
  height: 3px;
  background: var(--clay);
}

.method-prep {
  display: grid;
  gap: 20px;
  margin-top: 22px;
  border: 1px solid rgba(36, 65, 57, 0.12);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 34px rgba(24, 33, 31, 0.05);
}

.method-prep h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

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

.method-prep li {
  position: relative;
  border-left: 3px solid rgba(184, 111, 77, 0.5);
  border-radius: 8px;
  padding: 4px 0 4px 16px;
  color: var(--muted);
  line-height: 1.52;
}

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

.safety-grid article {
  border: 1px solid rgba(36, 65, 57, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.safety-grid .caution-card {
  border-color: rgba(184, 111, 77, 0.22);
  background: linear-gradient(180deg, #fff8ef, #f5eadf);
}

.safety-grid ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.safety-grid li {
  position: relative;
  padding-left: 24px;
}

.safety-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.caution-card li::before {
  background: var(--clay);
}

.safety-note {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  border-top: 1px solid rgba(36, 65, 57, 0.1);
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.safety-note p {
  margin: 0;
}

.safety-note strong {
  color: var(--deep);
}

.provider-pause-note {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  border-top: 1px solid rgba(184, 111, 77, 0.22);
  padding-top: 18px;
  color: #5f5149;
  font-size: 0.96rem;
  line-height: 1.6;
}

.provider-pause-note p {
  margin: 0;
}

.provider-pause-note p:first-child {
  color: #4d5d57;
  font-weight: 500;
}

.package-card {
  position: relative;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 16px;
  padding: 30px;
  min-height: 332px;
  box-shadow: 0 14px 34px rgba(24, 33, 31, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-card.is-selected {
  border-color: rgba(184, 111, 77, 0.42);
  box-shadow: 0 24px 56px rgba(24, 33, 31, 0.12), inset 0 0 0 2px rgba(184, 111, 77, 0.18);
}

.package-card.featured {
  color: var(--white);
  min-height: 378px;
  border-color: rgba(245, 196, 109, 0.45);
  padding: 34px;
  background:
    radial-gradient(circle at 85% 18%, rgba(245, 196, 109, 0.22), transparent 10rem),
    linear-gradient(135deg, var(--deep), #19332d);
  box-shadow: 0 30px 74px rgba(24, 33, 31, 0.24);
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.package-card.featured button {
  color: var(--deep);
  background: var(--white);
}

.package-card.featured.is-selected {
  border-color: rgba(245, 196, 109, 0.78);
  box-shadow: 0 30px 74px rgba(24, 33, 31, 0.24), inset 0 0 0 2px rgba(245, 196, 109, 0.22);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  right: 18px;
  width: auto;
  height: auto;
  min-height: 0;
  margin-bottom: 0;
  border: 1px solid rgba(245, 196, 109, 0.42);
  border-radius: 999px;
  padding: 7px 10px;
  color: #172d28;
  background: linear-gradient(180deg, #ffe7b3, #f5c46d);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.package-kicker {
  margin: 0;
  padding-right: 0;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card.featured .package-kicker {
  max-width: calc(100% - 142px);
  color: #f2d5bb;
}

.package-value {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  border-top: 1px solid rgba(36, 65, 57, 0.1);
  border-bottom: 1px solid rgba(36, 65, 57, 0.1);
  padding: 20px 0;
}

.package-card.featured .package-value {
  border-color: rgba(255, 255, 255, 0.18);
}

.package-value span {
  border: 0;
  border-left: 3px solid rgba(36, 65, 57, 0.2);
  padding: 2px 0 2px 10px;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.package-card.featured .package-value span {
  border-color: rgba(242, 213, 187, 0.62);
  color: #f2d5bb;
  background: transparent;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.package-save {
  justify-self: start;
  margin: -2px 0 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--deep);
  background: rgba(245, 196, 109, 0.2);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
}

.package-card.featured .package-save {
  color: #ffe0a3;
  background: rgba(245, 196, 109, 0.12);
}

.package-detail {
  min-height: 3em;
}

.price {
  margin-bottom: 0;
  color: var(--deep);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1;
  font-weight: 800;
}

.package-card.featured .price {
  color: var(--white);
}

.booking-note {
  margin-top: 28px;
  padding: 18px 20px;
  color: var(--deep);
  background: linear-gradient(180deg, #fff8ef, #f5eadf);
  line-height: 1.48;
}

.prep-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.prep-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.48;
}

.prep-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.booking h2 {
  max-width: 700px;
  font-size: clamp(2.45rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.booking-copy {
  display: grid;
  align-content: start;
  gap: 0;
  padding-top: clamp(14px, 2vw, 26px);
}

.booking-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  margin-bottom: 0;
  line-height: 1.6;
}

.booking-copy > .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(184, 111, 77, 0.22);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--deep);
  background: rgba(255, 248, 239, 0.84);
  box-shadow: 0 12px 28px rgba(24, 33, 31, 0.055);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.booking-copy > .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--clay);
}

.booking-form {
  position: relative;
  display: grid;
  gap: 16px;
  scroll-margin-top: 104px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 249, 0.98)),
    var(--white);
}

.honeypot {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  min-width: 0;
  min-height: 0;
  margin: 0;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  pointer-events: none;
  white-space: nowrap;
}

.honeypot input {
  width: 1px;
  min-width: 0;
  height: 1px;
  min-height: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.selected-session {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 14px;
  align-items: start;
  scroll-margin-top: 104px;
  border: 1px solid rgba(36, 65, 57, 0.14);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--deep);
  background: var(--soft);
}

.selected-session:focus-visible {
  outline: 3px solid rgba(184, 111, 77, 0.45);
  outline-offset: 4px;
}

.selected-session[hidden] {
  display: none;
}

.selected-session span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-session a {
  align-self: center;
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration-color: rgba(36, 65, 57, 0.34);
  text-underline-offset: 3px;
}

.selected-session strong {
  grid-column: 1 / -1;
  font-size: 1rem;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(36, 65, 57, 0.2);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input[type="date"] {
  display: block;
  min-height: 54px;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}

input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.5em;
  margin: 0;
  text-align: left;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  margin-left: auto;
}

.form-row.two > label {
  min-width: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(110, 140, 125, 0.25);
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(24, 33, 31, 0.06);
}

.check-label {
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  column-gap: 16px;
  row-gap: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.check-label input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--deep);
}

.submit-button {
  width: 100%;
}

.intake-form .submit-button {
  margin-top: 14px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 0;
  color: var(--deep);
  font-weight: 700;
}

.form-status a {
  color: var(--clay);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(140px, auto) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid rgba(242, 213, 187, 0.22);
  padding: clamp(44px, 6vw, 68px) clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 78% 0%, rgba(47, 111, 143, 0.26), transparent 22rem),
    radial-gradient(circle at 12% 100%, rgba(184, 111, 77, 0.16), transparent 20rem),
    linear-gradient(135deg, #101c19, #17332d 58%, #10201c);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(18px, 5vw, 72px);
  left: clamp(18px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 213, 187, 0.65), rgba(47, 111, 143, 0.28), transparent);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  display: block;
  width: min(238px, 100%);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.footer-copy {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.footer-license {
  display: grid;
  justify-items: start;
  gap: 2px;
  margin-top: 4px;
  border-left: 2px solid rgba(242, 213, 187, 0.72);
  padding: 4px 0 4px 12px;
}

.footer-license span {
  color: #f2d5bb;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-license strong {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.96rem;
  line-height: 1.4;
}

.footer-license p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 800;
}

.footer-links span {
  color: #f2d5bb;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-policy {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  line-height: 1.55;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.footer-policy strong {
  color: #f2d5bb;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
}

.intake-page {
  background:
    radial-gradient(circle at top left, rgba(184, 111, 77, 0.08), transparent 32rem),
    linear-gradient(180deg, #fffdf9 0%, var(--soft) 100%);
}

.intake-header {
  position: static;
}

.private-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-left: 3px solid rgba(184, 111, 77, 0.42);
  padding-left: 12px;
  color: var(--deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intake-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 34px) clamp(64px, 8vw, 100px);
}

.intake-hero {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(36, 65, 57, 0.12);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 14%, rgba(242, 213, 187, 0.18), transparent 12rem),
    linear-gradient(135deg, var(--deep), #19332d);
  box-shadow: var(--shadow);
}

.intake-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
}

.intake-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.intake-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.intake-section {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 249, 0.98)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.intake-section-heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.intake-section-heading > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--deep);
  background: linear-gradient(135deg, var(--mist), #f4eadf);
  font-weight: 800;
}

.intake-section-heading h2 {
  font-size: clamp(1.65rem, 4vw, 3rem);
}

.owner-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 34px) clamp(64px, 8vw, 100px);
}

.owner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid rgba(36, 65, 57, 0.12);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(242, 213, 187, 0.2), transparent 13rem),
    linear-gradient(135deg, var(--deep), #19332d);
  box-shadow: var(--shadow);
}

.owner-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.owner-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
  line-height: 1.65;
}

.owner-quick-actions,
.owner-form-actions {
  display: grid;
  gap: 12px;
}

.owner-quick-actions .button,
.owner-form-actions .button {
  width: 100%;
  max-width: none;
}

.owner-button-secondary {
  color: var(--deep);
  background: #f3e2d2;
  box-shadow: inset 0 0 0 1px rgba(242, 213, 187, 0.72);
}

.owner-panel {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 249, 0.99)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.owner-panel-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 26px;
}

.owner-panel-heading > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--deep);
  background: linear-gradient(135deg, var(--mist), #f4eadf);
  font-weight: 800;
}

.owner-panel-heading h2,
.owner-guide h2 {
  font-size: clamp(1.65rem, 4vw, 2.7rem);
}

.owner-panel-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.owner-form {
  display: grid;
  gap: 18px;
}

.owner-link-preview {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(36, 65, 57, 0.14);
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--soft);
}

.owner-link-preview span {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-link-preview a {
  overflow-wrap: anywhere;
  color: var(--deep);
  font-weight: 700;
  text-underline-offset: 3px;
}

.owner-form-actions {
  grid-template-columns: 1.25fr 0.75fr;
}

.owner-print-button {
  grid-column: 1 / -1;
}

.owner-status {
  min-height: 1.5em;
}

.owner-guide {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(20px, 4vw, 44px);
  margin-top: 22px;
  border: 1px solid rgba(242, 213, 187, 0.26);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background: linear-gradient(135deg, #172f29, #10221e);
  box-shadow: var(--soft-shadow);
}

.owner-guide ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.owner-guide strong {
  color: #f2d5bb;
}

.owner-guide > p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.owner-records {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(36, 65, 57, 0.12);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.owner-records h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
}

.owner-records p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.owner-records .button {
  width: 100%;
}

.notes-page {
  background: #edf2ee;
}

.notes-header {
  gap: 20px;
}

.notes-print-action {
  width: auto;
  min-width: 190px;
}

.notes-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 36px 24px 80px;
}

.notes-title,
.notes-section {
  border: 1px solid rgba(36, 65, 57, 0.14);
  padding: 30px;
  background: #fff;
}

.notes-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  border-radius: 8px 8px 0 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), #19332d);
}

.notes-title h1 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.notes-title p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.notes-document-label {
  margin-bottom: 8px !important;
  color: #f2d5bb !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.notes-reference {
  display: grid;
  gap: 4px;
  min-width: 180px;
  border-left: 3px solid rgba(242, 213, 187, 0.7);
  padding-left: 14px;
}

.notes-reference span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notes-reference strong {
  font-size: 1.1rem;
}

.notes-section {
  border-top: 0;
}

.notes-section:last-child {
  border-radius: 0 0 8px 8px;
}

.notes-section h2 {
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.notes-grid {
  display: grid;
  gap: 16px;
}

.notes-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notes-section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}

.notes-section-heading-row h2 {
  margin-bottom: 8px;
}

.notes-section-heading-row p {
  margin: 0;
  color: var(--muted);
}

.notes-section-heading-row > span {
  border-left: 3px solid rgba(184, 111, 77, 0.42);
  padding-left: 12px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.progress-note-list {
  display: grid;
  gap: 20px;
}

.progress-note {
  display: grid;
  gap: 14px;
  break-inside: avoid;
  border: 1px solid rgba(36, 65, 57, 0.16);
  border-radius: 8px;
  padding: 20px;
  background: #fffdf9;
}

.progress-note-topline {
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.7fr;
  gap: 14px;
}

.notes-signoff {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin: 0 0 18px;
  border: 0;
  padding: 0;
}

.check-grid legend {
  margin-bottom: 12px;
  color: var(--deep);
  font-weight: 800;
}

.check-grid label {
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  column-gap: 14px;
  row-gap: 0;
  min-height: 44px;
  border: 1px solid rgba(36, 65, 57, 0.12);
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
  font-weight: 600;
  line-height: 1.35;
}

.check-grid input {
  justify-self: start;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--deep);
}

.consent-copy,
.policy-box {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(184, 111, 77, 0.2);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 22px);
  color: var(--deep);
  background: linear-gradient(180deg, #fff8ef, #f5eadf);
}

.consent-copy p,
.policy-box p {
  margin: 0;
}

.initial-grid {
  display: grid;
  gap: 12px;
}

.initial-grid label {
  grid-template-columns: minmax(0, 1fr) 116px;
  align-items: center;
  border-top: 1px solid rgba(36, 65, 57, 0.1);
  padding-top: 12px;
  color: var(--muted);
  font-weight: 650;
}

.signature-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

#signaturePad {
  width: 100%;
  min-height: 180px;
  border: 1px solid rgba(36, 65, 57, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(transparent calc(100% - 42px), rgba(36, 65, 57, 0.12) calc(100% - 41px), transparent calc(100% - 40px)),
    #fffdf9;
  cursor: crosshair;
  touch-action: none;
}

.clear-signature {
  justify-self: start;
  border: 1px solid rgba(36, 65, 57, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .booking-layout,
  .pricing-packages {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-layout {
    max-width: 760px;
  }

  .pricing-packages {
    max-width: 680px;
  }

  .package-card,
  .package-card.featured {
    min-height: 0;
  }

  .package-card.featured .package-kicker {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .intro-grid,
  .booking-layout,
  .price-table,
  .faq-grid,
  .safety-grid,
  .service-grid,
  .package-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-steps,
  .method-prep ul {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .check-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-policy {
    max-width: 100%;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  section {
    padding-right: clamp(32px, 5vw, 48px);
    padding-left: clamp(32px, 5vw, 48px);
  }

  .section-heading {
    margin-bottom: clamp(30px, 4vw, 42px);
  }

  .intro .section-heading h2 {
    max-width: 620px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .package-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-packages {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 1.08rem;
  }

  .service-media {
    aspect-ratio: 16 / 10.5;
    margin: 0 0 18px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    font-size: 0.92rem;
  }

  .booking-steps article {
    gap: 12px;
    padding: 12px 12px 16px;
  }

  .booking-steps article span {
    width: 32px;
    height: 32px;
  }

  .process-step,
  .package-card,
  .method-prep {
    padding: 22px;
  }

  .package-card {
    gap: 12px;
    min-height: 320px;
  }

  .package-card.featured {
    min-height: 374px;
    padding: 24px;
  }

  .badge {
    top: 20px;
    right: 20px;
    width: auto;
    height: auto;
    padding: 3px 0 3px 9px;
    font-size: 0.58rem;
  }

  .package-card.featured .package-kicker {
    max-width: calc(100% - 116px);
  }

  .site-footer {
    grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1.35fr);
    gap: 28px 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .footer-links {
    align-self: start;
  }

  .footer-policy {
    align-self: start;
  }

  .package-value {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 16px 0;
  }

  .package-value span {
    justify-self: start;
  }

  .process-step span {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 14px;
    font-size: 1.22rem;
  }

  .price-table,
  .booking-layout {
    grid-column: 1 / -1;
  }

  .booking-copy {
    padding-top: 0;
  }

  .booking h2 {
    max-width: 680px;
    font-size: clamp(2.35rem, 5.4vw, 3.4rem);
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
  }

  section {
    padding-top: 54px;
    padding-bottom: 54px;
    scroll-margin-top: 84px;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 28px;
  }

  .nav-cta {
    display: none;
  }

  .brand-logo {
    width: 170px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    right: 18px;
    left: 18px;
    min-width: 0;
  }

  .hero {
    min-height: 86svh;
    align-items: end;
    padding: 92px 18px 96px;
  }

  .hero-media {
    background-position: 64% center;
    background-size: auto 100%;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.85rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.82rem, 8.2vw, 2.72rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.54;
  }

  .hero-logo-mark {
    width: 128px;
    margin-bottom: 10px;
  }

  .hero-content,
  .hero-copy,
  .hero-actions,
  .trust-row {
    max-width: 100%;
  }

  .booking h2 {
    font-size: clamp(2rem, 7.8vw, 2.48rem);
    line-height: 1.02;
  }

  .booking-copy {
    padding-top: 0;
  }

  .booking-copy > p:not(.eyebrow) {
    margin-top: 14px;
    line-height: 1.55;
  }

  .booking-note {
    margin-top: 22px;
    padding: 16px;
  }

  .prep-list {
    gap: 12px;
    margin-top: 20px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(16, 28, 25, 0.9) 0%, rgba(16, 28, 25, 0.68) 42%, rgba(16, 28, 25, 0.08) 76%),
      linear-gradient(90deg, rgba(16, 28, 25, 0.72) 0%, rgba(16, 28, 25, 0.22) 58%, rgba(16, 28, 25, 0.02) 100%);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 320px);
    justify-content: start;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .form-row.two,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 22px;
  }

  .footer-policy {
    padding: 16px;
  }

  .booking-steps article {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 12px 12px 16px;
  }

  .method-prep {
    gap: 14px;
    margin-top: 16px;
    padding: 18px;
  }

  .method-prep li {
    font-size: 0.98rem;
  }

  .booking-steps-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 18px;
  }

  .booking-steps-heading h3 {
    font-size: clamp(1.55rem, 7.4vw, 2.1rem);
    line-height: 1.02;
  }

  .booking-steps-heading .eyebrow {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    min-height: auto;
    padding-left: 12px;
  }

  .booking-steps article img {
    aspect-ratio: 16 / 8.8;
  }

  .booking-steps article > h3,
  .booking-steps article > p {
    grid-column: auto;
  }

  .booking-steps article span {
    width: 38px;
    height: 38px;
  }

  .process-step span {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .service-card,
  .package-card,
  .process-step {
    padding: 18px;
  }

  .service-card {
    grid-template-rows: auto auto auto auto;
  }

  .service-card h3,
  .package-card h3,
  .process-step h3 {
    margin-bottom: 8px;
  }

  .service-card p,
  .process-step p,
  .package-card p,
  .faq-grid p,
  .safety-grid li {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .service-media {
    aspect-ratio: 16 / 8.7;
    margin: 0 0 16px;
  }

  .service-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    font-size: 0.9rem;
  }

  .package-grid {
    gap: 14px;
  }

  .pricing-packages {
    grid-template-columns: 1fr;
  }

  .packages {
    padding-top: 64px;
    padding-bottom: 64px;
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.82), rgba(248, 246, 240, 0.96)),
      var(--paper);
  }

  .packages .section-heading {
    margin-bottom: 22px;
  }

  .packages .section-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 10vw, 3.1rem);
    line-height: 0.98;
  }

  .packages .section-heading .nowrap {
    white-space: normal;
  }

  .package-card {
    gap: 14px;
    min-height: 0;
    border-color: rgba(36, 65, 57, 0.1);
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 249, 0.98)),
      var(--white);
    box-shadow: 0 16px 40px rgba(24, 33, 31, 0.07);
  }

  .package-card.featured {
    margin: 4px 0 6px;
    min-height: 0;
    border-width: 2px;
    border-color: rgba(245, 196, 109, 0.52);
    padding: 26px 22px;
    background:
      radial-gradient(circle at 82% 18%, rgba(245, 196, 109, 0.22), transparent 12rem),
      linear-gradient(145deg, #244139, #17332d);
    box-shadow: 0 24px 56px rgba(24, 33, 31, 0.22);
  }

  .package-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
  }

  .package-detail {
    min-height: 0;
    color: #53605c;
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .package-card.featured .package-detail {
    color: rgba(255, 255, 255, 0.78);
  }

  .package-card h3 {
    font-size: 1.35rem;
  }

  .package-card.featured h3 {
    font-size: 1.55rem;
  }

  .package-kicker {
    color: #9f654b;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .price {
    font-size: 1.72rem;
  }

  .package-value span {
    flex: 0 0 auto;
    color: var(--deep);
    font-size: 0.9rem;
  }

  .package-save {
    font-size: 0.88rem;
  }

  .package-card button {
    width: min(100%, 292px);
    min-height: 54px;
    margin-top: 4px;
    font-size: 1rem;
  }

  .faq-grid summary {
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 16px;
  }

  .faq-grid summary::before {
    width: 34px;
    height: 34px;
  }

  .faq-grid summary::after {
    width: 30px;
    height: 30px;
  }

  .faq-grid p {
    padding: 16px 16px 18px 62px;
  }

  .badge {
    position: static;
    justify-content: start;
    width: auto;
    height: auto;
    margin-bottom: 0;
    padding: 9px 11px;
    font-size: 0.74rem;
    text-align: left;
  }

  .package-card.featured .package-kicker {
    max-width: none;
  }

  .price-table {
    margin-top: 26px;
  }

  .table-group {
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-group h3 {
    margin-bottom: 8px;
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(1.55rem, 7vw, 2.05rem);
    line-height: 1.04;
  }

  .table-group > p {
    max-width: 30ch;
    margin-bottom: 18px;
    color: #596761;
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .table-group dl {
    gap: 10px;
    margin-top: 0;
  }

  .table-group dl div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(36, 65, 57, 0.1);
    border-radius: 8px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 28px rgba(24, 33, 31, 0.045);
  }

  .table-group dl div[data-package] {
    padding-right: 52px;
  }

  .table-group dl div[data-package]::after {
    right: 14px;
  }

  .table-group dl div[data-package]:hover,
  .table-group dl div[data-package].is-selected {
    transform: translateY(-1px);
    border-color: rgba(184, 111, 77, 0.28);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(24, 33, 31, 0.07);
  }

  .table-group dt {
    font-size: 0.96rem;
    line-height: 1.34;
  }

  .table-group dt strong {
    margin-bottom: 2px;
    color: var(--deep);
    font-size: 1.02rem;
    line-height: 1.18;
  }

  .table-group dt span {
    color: #64716c;
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .table-group dd {
    align-self: center;
    border-left: 3px solid rgba(184, 111, 77, 0.42);
    padding-left: 12px;
    color: var(--deep);
    font-size: 1.08rem;
    line-height: 1;
    white-space: nowrap;
  }

  .booking-copy > .eyebrow {
    margin-bottom: 14px;
    padding: 10px 12px;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .safety-grid article {
    padding: 20px;
  }

  .safety-note,
  .provider-pause-note {
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .private-pill {
    display: none;
  }

  .intake-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .intake-hero {
    padding: 22px;
  }

  .intake-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .intake-section {
    padding: 18px;
  }

  .intake-section-heading,
  .initial-grid label {
    grid-template-columns: 1fr;
  }

  .intake-section-heading {
    gap: 12px;
    margin-bottom: 20px;
  }

  .intake-section-heading h2 {
    font-size: clamp(1.5rem, 7.2vw, 2.2rem);
    line-height: 1.06;
  }

  .check-grid label {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 16px;
    padding: 14px;
  }

  .intake-section > .check-label {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 18px;
    border: 1px solid rgba(36, 65, 57, 0.12);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.66);
  }

  .initial-grid label input {
    max-width: 140px;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: calc(86svh + 48px);
    padding-bottom: 64px;
  }

  .hero-media {
    background-position: 61% center;
  }

  .hero-brand-name {
    font-size: 2.76rem;
  }

  .brand-logo {
    width: 156px;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(184, 111, 77, 0.55);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .owner-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .owner-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .owner-guide {
    grid-template-columns: 1fr;
  }

  .owner-records {
    grid-template-columns: 1fr;
  }

  .notes-title {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .owner-guide > p {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .owner-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .owner-hero {
    padding: 22px;
  }

  .owner-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .owner-quick-actions,
  .owner-form-actions {
    grid-template-columns: 1fr;
  }

  .owner-panel {
    padding: 18px;
  }

  .owner-panel-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .owner-panel-heading h2,
  .owner-guide h2 {
    font-size: clamp(1.5rem, 7.2vw, 2.2rem);
    line-height: 1.06;
  }

  .notes-header {
    align-items: flex-start;
  }

  .notes-print-action {
    min-width: 0;
    width: auto;
  }

  .notes-shell {
    padding: 20px 14px 54px;
  }

  .notes-title,
  .notes-section {
    padding: 20px 18px;
  }

  .notes-grid.two,
  .progress-note-topline,
  .notes-signoff {
    grid-template-columns: 1fr;
  }

  .notes-section-heading-row {
    display: grid;
  }
}

@media print {
  @page {
    margin: 0.45in;
  }

  body.notes-page {
    color: #000;
    background: #fff;
    font-size: 10pt;
  }

  .notes-header {
    position: static;
    padding: 0 0 16px;
    border-bottom: 2px solid #244139;
    background: #fff;
    box-shadow: none;
  }

  .notes-header .notes-print-action {
    display: none;
  }

  .notes-shell {
    width: 100%;
    padding: 16px 0 0;
  }

  .notes-title,
  .notes-section {
    border-color: #9aa59f;
    padding: 18px;
    box-shadow: none;
  }

  .notes-title {
    color: #000;
    background: #fff;
  }

  .notes-title h1 {
    font-size: 28pt;
  }

  .notes-title p,
  .notes-document-label,
  .notes-reference span {
    color: #333 !important;
  }

  .notes-reference {
    border-color: #244139;
  }

  .notes-section h2 {
    font-size: 18pt;
  }

  .notes-section input,
  .notes-section textarea {
    border-color: #8a9690;
    color: #000;
    background: #fff;
    box-shadow: none;
  }

  .progress-note {
    border-color: #8a9690;
    background: #fff;
  }

  .notes-progress-section {
    break-before: page;
  }

  .notes-final-section {
    break-before: page;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    transform: none;
    will-change: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
