:root {
  color-scheme: light;
  --ink: #152522;
  --muted: #5f706d;
  --deep: #17332f;
  --evergreen: #24584f;
  --sage: #dfe8df;
  --mist: #f6f3ed;
  --paper: #fffdf8;
  --line: rgba(21, 37, 34, 0.14);
  --gold: #b68a4d;
  --rose: #b98678;
  --shadow: 0 24px 70px rgba(18, 35, 31, 0.18);
  --radius: 8px;
  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  color: white;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  color: var(--deep);
  box-shadow: 0 10px 40px rgba(18, 35, 31, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.brand strong,
.brand em {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand em {
  color: currentColor;
  font-size: 0.78rem;
  font-style: normal;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-call svg,
.button svg,
.contact-list svg {
  width: 1.05rem;
  height: 1.05rem;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 32, 28, 0.9), rgba(13, 32, 28, 0.56) 43%, rgba(13, 32, 28, 0.08) 74%),
    linear-gradient(0deg, rgba(13, 32, 28, 0.7), transparent 44%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding: 10rem clamp(1rem, 5vw, 5rem) clamp(5.5rem, 10vh, 8rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 11vw, 8.5rem);
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #17110a;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.68);
  color: white;
}

.button-dark {
  background: var(--deep);
  color: white;
}

.button-outline {
  border-color: var(--line);
  color: var(--deep);
  background: transparent;
}

.hero-panel {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 5vw, 4rem);
  width: min(300px, calc(100% - 2rem));
  padding: 1.2rem;
  background: rgba(255, 253, 248, 0.92);
  color: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin: 0.2rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.trust-band div {
  min-height: 142px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.credentials.section {
  padding-top: clamp(3.5rem, 7vw, 5.6rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.6rem);
}

.intro-grid,
.section-heading,
.service-layout,
.method-summary-grid,
.methods-learn-more,
.visit-content {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

h2 {
  color: var(--deep);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.52fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.credentials {
  background: var(--deep);
  color: white;
}

.credentials h2 {
  color: white;
}

.credentials .section-heading {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.4rem);
}

.credentials h2 {
  max-width: 780px;
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
}

.credentials .section-heading p,
.credentials .credential-card p {
  color: rgba(255, 255, 255, 0.74);
}

.credential-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.credential-card {
  min-height: 178px;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.credential-card h3 {
  margin-bottom: 0.55rem;
}

.credential-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.5rem;
  color: #17110a;
  background: var(--gold);
  border-radius: 50%;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(1.25rem, 4vw, 3rem);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-list article,
.quote-panel,
.appointment-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 48px rgba(18, 35, 31, 0.08);
}

.service-list article {
  min-height: 196px;
  padding: 1.35rem;
}

.service-list p {
  color: var(--muted);
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(1.5rem, 4vw, 2rem);
  background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.9)),
    linear-gradient(135deg, var(--sage), rgba(185, 134, 120, 0.32));
}

.quote-panel p {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.12;
}

.quote-panel span {
  color: var(--muted);
  font-weight: 750;
}

.methods-overview {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.methods-overview h2 {
  max-width: 780px;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
}

.method-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.method-summary-grid article {
  min-height: 190px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 48px rgba(18, 35, 31, 0.08);
}

.method-summary-grid strong {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-summary-grid h3 {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.method-summary-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.methods-learn-more {
  margin-top: 1.4rem;
}

.lifewave-preview {
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(3rem, 6vw, 4.5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.lifewave-feature {
  width: min(820px, 100%);
  margin: -1.25rem max(1rem, calc((100vw - 1180px) / 2)) 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.55fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.95), rgba(247, 244, 239, 0.9)),
    radial-gradient(circle at 92% 12%, rgba(40, 111, 181, 0.14), transparent 34%);
  box-shadow: 0 12px 34px rgba(18, 35, 31, 0.08);
}

.lifewave-feature h2 {
  max-width: 380px;
  font-size: clamp(1.7rem, 2.9vw, 2.35rem);
}

.lifewave-feature p {
  max-width: 480px;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--deep);
  font-weight: 850;
}

.feature-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.lifewave-product-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.45rem;
}

.lifewave-product-stack img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(25, 44, 60, 0.12);
}

.lifewave-product-stack img:first-child {
  grid-column: auto;
  grid-row: auto;
}

.lifewave-product-stack img:nth-child(2) {
  grid-column: auto;
  grid-row: auto;
  transform: none;
}

.lifewave-product-stack img:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
  transform: none;
}

.visit {
  background: var(--mist);
}

.visit-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.visit-content > div > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-list {
  margin-top: 2rem;
}

.contact-list a,
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep);
  font-weight: 750;
}

.appointment-card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.appointment-card h3 {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.appointment-card > p:not(.eyebrow):not(.form-note) {
  color: var(--muted);
}

.booking-mini-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.3rem 0;
}

.booking-mini-list span {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--deep);
  font-weight: 750;
}

label {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 1rem;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--evergreen);
  box-shadow: 0 0 0 4px rgba(36, 88, 79, 0.12);
}

textarea {
  resize: vertical;
}

.appointment-card .button {
  width: 100%;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 5vw, 5rem);
  background: #10241f;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: white;
}

.site-footer p {
  margin: 0;
  max-width: 520px;
}

.booking-page {
  background: var(--paper);
}

.booking-page .site-header {
  color: var(--deep);
}

.booking-hero {
  padding: clamp(8rem, 14vw, 11rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(120deg, rgba(23, 51, 47, 0.94), rgba(36, 88, 79, 0.74)),
    url("assets/proactive-chiropractic-hero.png") center / cover;
  color: white;
}

.booking-hero-content,
.booking-shell,
.process-steps,
.booking-note {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.booking-hero h1 {
  max-width: 880px;
  margin-bottom: 1.3rem;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
}

.booking-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.booking-section {
  background: var(--mist);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(290px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.portal-card,
.booking-grid article,
.process-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 48px rgba(18, 35, 31, 0.08);
}

.portal-card {
  position: sticky;
  top: 100px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.portal-card p,
.booking-grid p,
.process-steps p,
.booking-note p {
  color: var(--muted);
}

.portal-card .button {
  width: 100%;
}

.portal-topline {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.portal-topline span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-topline strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.08;
}

.booking-details h2 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.booking-grid article,
.process-steps article {
  padding: 1.35rem;
}

.booking-process {
  background: var(--paper);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-steps span {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.booking-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.booking-note h2 {
  max-width: 620px;
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.booking-note p {
  max-width: 760px;
  margin-bottom: 0;
}

.methods-hero {
  min-height: 660px;
  display: grid;
  align-items: end;
  padding: clamp(8rem, 14vw, 11rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(120deg, rgba(16, 36, 31, 0.98), rgba(32, 72, 64, 0.92)),
    linear-gradient(0deg, rgba(255, 253, 248, 0.08), transparent);
  color: white;
}

.methods-hero > div,
.method-detail-list,
.method-note {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.methods-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8.4vw, 7.2rem);
}

.methods-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.methods-detail-section {
  background: var(--mist);
}

.method-detail-list {
  display: grid;
  gap: 1rem;
}

.method-detail-list article {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 48px rgba(18, 35, 31, 0.08);
}

.method-detail-list span {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-detail-list h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
}

.method-detail-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.method-note {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  gap: 2rem;
  align-items: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.method-note h2 {
  max-width: 720px;
  margin-bottom: 0.8rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.method-note p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.lifewave-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(8rem, 14vw, 11rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(120deg, rgba(16, 36, 31, 0.98), rgba(22, 54, 71, 0.92) 58%, rgba(44, 74, 116, 0.86)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), transparent);
  color: white;
  overflow: hidden;
}

.lifewave-hero-copy,
.lifewave-hero-products,
.patch-pillars,
.product-grid,
.lifewave-cta,
.lifewave-disclaimer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lifewave-hero-copy {
  width: 100%;
}

.lifewave-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 9vw, 7.7rem);
}

.lifewave-hero p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.lifewave-hero-products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 0.8rem;
}

.lifewave-hero-products img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 24px 70px rgba(3, 13, 18, 0.28);
}

.lifewave-hero-products .product-main {
  grid-column: 1 / 6;
}

.lifewave-hero-products img:not(.product-main) {
  grid-column: span 2;
  margin-top: -1.5rem;
}

.lifewave-intro {
  background: var(--paper);
}

.patch-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.patch-pillars article,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 48px rgba(18, 35, 31, 0.08);
}

.patch-pillars article {
  padding: 1.35rem;
}

.patch-pillars p,
.product-card p,
.lifewave-cta p,
.lifewave-disclaimer p {
  color: var(--muted);
}

.product-section {
  background: var(--mist);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  background: #eef1ef;
}

.product-card div {
  padding: 1.25rem;
}

.product-tag {
  margin-bottom: 0.45rem;
  color: #286fb5;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card h3 {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.lifewave-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  gap: 2rem;
  align-items: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.lifewave-cta h2 {
  max-width: 720px;
  margin-bottom: 0.8rem;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
}

.lifewave-cta-actions {
  display: grid;
  gap: 0.8rem;
}

.lifewave-disclaimer {
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 4.5rem);
}

.lifewave-disclaimer p {
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.4rem);
    right: 1rem;
    display: none;
    width: min(320px, calc(100vw - 2rem));
    padding: 0.8rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: var(--paper);
    color: var(--deep);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .nav-call {
    justify-content: center;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 13rem;
  }

  .hero-panel {
    left: 1rem;
    right: 1rem;
  }

  .trust-band,
  .credential-grid,
  .service-layout,
  .method-summary-grid,
  .visit-content,
  .booking-shell,
  .process-steps,
  .lifewave-feature,
  .lifewave-hero,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifewave-hero {
    align-items: end;
  }

  .lifewave-feature {
    margin: 0 auto;
  }

  .patch-pillars,
  .lifewave-cta,
  .method-note {
    grid-template-columns: 1fr;
  }

  .portal-card {
    position: static;
  }

  .intro-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 0.8rem 1rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  h1 {
    font-size: 3.75rem;
  }

  .hero-content {
    padding-inline: 1rem;
  }

  .button,
  .contact-list a {
    width: 100%;
  }

  .trust-band,
  .credential-grid,
  .service-list,
  .service-layout,
  .method-summary-grid,
  .method-detail-list article,
  .visit-content,
  .booking-shell,
  .booking-grid,
  .process-steps,
  .lifewave-feature,
  .lifewave-hero,
  .patch-pillars,
  .product-grid,
  .lifewave-cta {
    grid-template-columns: 1fr;
  }

  .lifewave-product-stack {
    margin-top: 1.5rem;
  }

  .lifewave-hero-products img:not(.product-main) {
    margin-top: 0;
  }

  .booking-note {
    display: block;
  }

  .method-note .button {
    margin-top: 1.5rem;
  }

  .booking-note .button {
    margin-top: 1.5rem;
  }

  .trust-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band div:last-child {
    border-bottom: 0;
  }

  .credential-card,
  .service-list article {
    min-height: auto;
  }

  .site-footer {
    display: block;
  }

  .site-footer p {
    margin-top: 1rem;
  }
}
