:root {
  --cream: #f4f1ec;
  --card: #fbf9f7;
  --ink: #2c2a26;
  --muted: #6f6a61;
  --sage: #3d5a4c;
  --sageD: #32483c;
  --clay: #c8b9a6;
  --line: rgba(44, 42, 38, 0.10);
}

@media (max-width: 860px) {
  .admin-hero,
  .admin-grid,
  .admin-services {
    grid-template-columns: 1fr;
  }

  .admin-result {
    position: static;
  }

  .admin-panel {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .admin-hero {
    gap: 28px;
    padding-top: 48px;
  }

  .admin-panel {
    padding: 22px;
  }

  .admin-service {
    padding: 18px;
  }

  .admin-actions .btn,
  .admin-result-actions .btn {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .lead-row {
    grid-template-columns: 1fr;
  }

  .lead-actions {
    justify-content: flex-start;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(185, 130, 111, 0.10), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(61, 90, 76, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 244, 0.72), rgba(244, 241, 236, 0) 420px),
    var(--cream);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(200, 185, 166, 0.08), transparent 28%, transparent 72%, rgba(61, 90, 76, 0.05)),
    var(--cream);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 56px;
}

.narrow {
  max-width: 760px;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0;
  background: transparent;
  pointer-events: none;
}

.topbar {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 18px 12px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(44, 42, 38, 0.08);
  border-radius: 999px;
  background: rgba(251, 249, 247, 0.88);
  box-shadow: 0 18px 44px -34px rgba(44, 42, 38, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.brand {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  font-weight: 380;
  letter-spacing: -0.2px;
  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  margin-right: 5px;
  color: var(--ink);
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  opacity: 0.78;
  text-decoration: none;
  transition: opacity 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--sage);
  opacity: 1;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--sage);
  color: #f6f3ee;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 28px -24px rgba(44, 42, 38, 0.6);
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--sageD);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -24px rgba(44, 42, 38, 0.66);
}

.btn svg,
.back-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-small svg {
  width: 15px;
  height: 15px;
}

.btn-small {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-quiet {
  background: rgba(251, 249, 247, 0.54);
  color: var(--sage);
  border-color: rgba(61, 90, 76, 0.35);
}

.btn-quiet:hover {
  background: rgba(61, 90, 76, 0.07);
  color: var(--sage);
}

.btn-light {
  background: var(--cream);
  color: var(--sage);
}

.btn-light:hover {
  background: #fff;
  color: var(--sage);
}

.menu-button,
.mobile-panel {
  display: none;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--sage);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 2.5px;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero .eyebrow {
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(61, 90, 76, 0.08);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.display {
  margin: 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.2px;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 58px;
}

.hero-copy,
.page-hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-copy .lead {
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-care-row {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  margin-top: 10px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(44, 42, 38, 0.10);
}

.hero-care-row span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61, 90, 76, 0.22);
  border-radius: 999px;
  background: rgba(251, 249, 247, 0.62);
  color: var(--sage);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.8px;
}

.hero-care-row span svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-care-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.45;
}

.portrait-block {
  position: relative;
  min-height: 460px;
}

.portrait-block::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 62%;
  height: 70%;
  border: 1px solid rgba(61, 90, 76, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent),
    var(--clay);
  opacity: 0.54;
}

.portrait-block::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: 42px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(61, 90, 76, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(61, 90, 76, 0.13) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(61, 90, 76, 0.13) 50%, transparent 51%),
    rgba(251, 249, 247, 0.50);
  backdrop-filter: blur(8px);
}

.portrait {
  position: relative;
  height: 460px;
  border-radius: 18px;
  box-shadow: 0 24px 60px -42px rgba(44, 42, 38, 0.55);
  filter: saturate(0.72) sepia(0.08) brightness(1.03);
}

.clinical-note {
  position: absolute;
  left: -28px;
  bottom: 32px;
  z-index: 2;
  width: min(268px, 72%);
  padding: 20px;
  border: 1px solid rgba(44, 42, 38, 0.10);
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 22px 58px -34px rgba(44, 42, 38, 0.50);
  backdrop-filter: blur(16px);
}

.clinical-note span,
.service-card small {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--sage);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.clinical-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 23px;
  font-weight: 390;
  line-height: 1.12;
}

.clinical-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.therapy-note-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(44, 42, 38, 0.09);
}

.therapy-note-list small {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(61, 90, 76, 0.18);
  border-radius: 999px;
  background: rgba(61, 90, 76, 0.06);
  color: var(--sage);
  font-size: 12px;
  line-height: 1;
}

.care-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: stretch;
  padding-top: 10px;
  padding-bottom: 78px;
}

.care-intro {
  padding: 30px 0;
}

.care-intro h2 {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 390;
  line-height: 1.1;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.care-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(44, 42, 38, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.08)),
    color-mix(in srgb, var(--card) 92%, var(--clay));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease;
}

.care-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background: rgba(61, 90, 76, 0.07);
}

.care-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 90, 76, 0.20);
}

.care-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 1px solid rgba(61, 90, 76, 0.22);
  border-radius: 999px;
  color: var(--sage);
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.care-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.care-card:hover .care-icon {
  border-color: rgba(61, 90, 76, 0.32);
  background: rgba(61, 90, 76, 0.08);
  transform: translateY(-1px);
}

.care-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 390;
  line-height: 1.2;
}

.care-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
}

.therapy-map {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(61, 90, 76, 0.06), transparent 38%),
    linear-gradient(180deg, #eee9e1, #f2eee7);
}

.therapy-map-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 52px;
  align-items: start;
}

.therapy-map-copy {
  position: sticky;
  top: 116px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.therapy-map-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 390;
  line-height: 1.08;
}

.therapy-map-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.therapy-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.therapy-step {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(44, 42, 38, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.78), rgba(255, 250, 243, 0.44)),
    var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.therapy-step > div {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 1px solid rgba(185, 130, 111, 0.24);
  border-radius: 999px;
  color: color-mix(in srgb, var(--accent, #b9826f) 78%, var(--sage));
  background: rgba(185, 130, 111, 0.07);
}

.therapy-step svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.therapy-step span {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.therapy-step h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 23px;
  font-weight: 390;
  line-height: 1.22;
}

.therapy-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
}

.intro-band,
.process-band {
  background: linear-gradient(180deg, #f0ece4, #eee9e1);
}

.intro-band {
  padding: 60px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
}

.room-image {
  height: 250px;
  border-radius: 18px;
  filter: saturate(0.64) sepia(0.08) brightness(1.04);
}

.quote-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-block p {
  max-width: 640px;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 380;
  line-height: 1.4;
}

.quote-block a,
.text-link {
  color: var(--sage);
  font-size: 15px;
  text-decoration: none;
}

.section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.section + .section {
  padding-top: 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head > div,
.process-band .wrap > .eyebrow + h2,
.featured-article > div {
  min-width: 0;
}

.section-head > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-head .eyebrow,
.fit-copy .eyebrow,
.intro-band .narrow .eyebrow,
.process-band > .wrap > .eyebrow,
.featured-article .eyebrow {
  margin-bottom: 0;
}

.section h2,
.intro-band h2,
.process-band h2,
.cta-band h2,
.featured-article h2,
.fit-band h2,
.faq-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.3px;
}

.section-head h2 {
  display: block;
}

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

.service-card {
  min-height: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  color: inherit;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent, #b9826f) 72%, var(--sage));
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 90, 76, 0.22);
  box-shadow: 0 22px 48px -28px rgba(44, 42, 38, 0.42);
}

.service-card span {
  display: none;
}

.service-card small {
  margin-top: 22px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--sage) 82%, var(--ink));
  letter-spacing: 1px;
}

.service-card h3,
.article-card h3,
.process-step h3,
.timeline-row h3,
.service-row h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 380;
  line-height: 1.3;
}

.service-card p,
.article-card p,
.process-step p,
.timeline-row p,
.service-row p,
.sign-item p,
.trust-item p,
.faq-item p,
.intro-band p,
.featured-article p,
.cta-band p,
.contact-form p,
.form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.service-card p,
.article-card p,
.process-step p {
  font-size: 14.5px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.article-card img {
  height: 180px;
  border-radius: 18px;
  filter: saturate(0.64) sepia(0.08) brightness(1.04);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.article-card span,
.info-strip span,
.contact-list span {
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0;
  transition: color 0.18s ease;
}

.article-card:hover h3 {
  color: var(--sage);
}

.article-card:hover img {
  transform: scale(1.025);
  filter: saturate(0.72) sepia(0.08) brightness(1.06);
}

.fit-band {
  padding: 78px 0;
  background: linear-gradient(180deg, #f0ece4, #eee9e1);
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.fit-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fit-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.sign-list {
  border-top: 1px solid var(--line);
}

.sign-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.sign-item span {
  color: color-mix(in srgb, var(--clay) 78%, var(--sage));
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
}

.sign-item p {
  color: color-mix(in srgb, var(--ink) 92%, var(--sage));
  font-size: 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid rgba(44, 42, 38, 0.05);
}

.trust-item:hover span {
  color: var(--ink);
}

.trust-item {
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}

.trust-item span,
.service-details h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trust-item p {
  font-size: 14.5px;
}

.service-details {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-details ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-details li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.service-details li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--sage);
}

.service-details p {
  font-size: 14.5px;
}

.faq-section {
  padding: 78px 0;
  background: linear-gradient(180deg, #f0ece4, #eee9e1);
}

.faq-compact {
  background: var(--cream);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 42px 23px 0;
  cursor: pointer;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 23px;
  line-height: 1.25;
  list-style: none;
  transition: color 0.18s ease;
}

.faq-item summary:hover {
  color: var(--sage);
}

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

.faq-toggle {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--sage);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--sage);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.18s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 720px;
  padding: 0 42px 24px 0;
}

.faq-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
  will-change: height, opacity;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
    var(--sage);
  color: #eef0ea;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.cta-band h2 {
  max-width: 560px;
  color: #f4f1ec;
}

.cta-band p {
  max-width: 480px;
  margin-top: 14px;
  color: rgba(244, 241, 236, 0.8);
  font-size: 19px;
}

.footer {
  background: #26241f;
  color: #cfc9bd;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 52px;
  padding-bottom: 44px;
}

.footer-name {
  margin: 0 0 10px;
  color: #f4f1ec;
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  font-weight: 380;
}

.footer p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  min-width: 180px;
  flex-direction: column;
  gap: 10px;
}

.footer a,
.footer span {
  color: #cfc9bd;
  font-size: 15px;
  opacity: 0.78;
  text-decoration: none;
}

.footer a:hover {
  opacity: 1;
}

.page-hero {
  padding-top: 64px;
  padding-bottom: 80px;
}

.page-hero.narrow {
  max-width: 760px;
}

.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 440px;
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 60%;
  height: 60%;
  background: var(--clay);
  border-radius: 16px;
  opacity: 0.55;
}

.stack-main {
  position: relative;
  height: 440px;
  border-radius: 18px;
  box-shadow: 0 24px 60px -42px rgba(44, 42, 38, 0.55);
  filter: saturate(0.7) sepia(0.08) brightness(1.03);
}

.stack-small {
  display: none;
}

.intro-band .narrow {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.timeline {
  background: transparent;
}

.timeline-row,
.service-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.timeline-row:last-child,
.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-row > span,
.row-number {
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-row h3 {
  font-size: 20px;
}

.service-list {
  padding-top: 40px;
  padding-bottom: 80px;
}

.service-row {
  grid-template-columns: 64px 1fr 280px;
  align-items: start;
  padding: 40px 56px;
}

.service-row:first-child {
  border-top: 1px solid var(--line);
}

.service-row h2 {
  font-size: 26px;
}

.row-number {
  color: var(--clay);
  font-family: "Newsreader", Georgia, serif;
  font-size: 30px;
  letter-spacing: 0;
}

.service-tags {
  font-size: 14px;
}

.process-band {
  padding: 80px 0;
}

.process-band h2 {
  margin-top: 12px;
  margin-bottom: 44px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step span {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61, 90, 76, 0.4);
  border-radius: 999px;
  color: var(--sage);
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}

.info-strip div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.info-strip div:last-child {
  border-right: none;
}

.info-strip strong {
  display: block;
  margin-top: 10px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-weight: 380;
}

.info-strip p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.featured-article {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}

.featured-article img {
  height: 360px;
  border-radius: 18px;
  filter: saturate(0.64) sepia(0.08) brightness(1.04);
}

.featured-article h2 {
  margin: 16px 0;
  font-size: 34px;
}

.article-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 64px;
  padding-bottom: 44px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 2px;
  color: var(--sage);
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
}

.article-hero .eyebrow {
  display: flex;
  margin-top: 2px;
}

.article-hero .display {
  margin-top: 2px;
}

.article-cover {
  padding-bottom: 66px;
}

.article-cover img {
  height: min(520px, 58vw);
  border-radius: 18px;
  filter: saturate(0.66) sepia(0.08) brightness(1.04);
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  gap: 64px;
  align-items: start;
  padding-bottom: 86px;
}

.article-aside {
  position: sticky;
  top: 112px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-aside span,
.article-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.article-aside strong {
  display: block;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 380;
}

.article-aside p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.article-body-section h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.14;
}

.article-body-section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.article-body-section p + p {
  margin-top: 18px;
}

.article-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}

.article-note p {
  margin: 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border 0.15s;
}

.subscribe-form input {
  min-width: 240px;
  border-color: rgba(244, 241, 236, 0.35);
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.12);
  color: #f4f1ec;
}

.contact-grid {
  align-items: start;
  padding-bottom: 56px;
}

.contact-list {
  margin-top: 34px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 6px 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-list div:first-child {
  border-top: none;
}

.contact-list a,
.contact-list strong {
  grid-column: 2;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  font-weight: 380;
  text-decoration: none;
}

.contact-list span {
  grid-column: 2;
}

.contact-list svg {
  grid-row: 1 / span 2;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--sage);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form,
.form-success {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 20px 52px -42px rgba(44, 42, 38, 0.45);
}

.triage-block {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.triage-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.triage-options button {
  padding: 9px 13px;
  border: 1px solid rgba(61, 90, 76, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--sage);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.triage-options button:hover,
.triage-options button.is-selected {
  background: rgba(61, 90, 76, 0.08);
  border-color: rgba(61, 90, 76, 0.48);
  transform: translateY(-1px);
}

.whatsapp-action {
  width: 100%;
  margin-top: 10px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(61, 90, 76, 0.55);
}

.contact-form .btn {
  width: 100%;
}

.contact-form p {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
}

.form-success {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.form-success span {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(61, 90, 76, 0.12);
  color: var(--sage);
  font-size: 28px;
}

.form-success h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.gate-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 28% 18%, rgba(185, 130, 111, 0.12), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(61, 90, 76, 0.11), transparent 30%),
    var(--cream);
}

.gate-card {
  width: min(100%, 560px);
  padding: clamp(30px, 6vw, 52px);
  border: 1px solid rgba(44, 42, 38, 0.10);
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 28px 80px -52px rgba(44, 42, 38, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.gate-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(61, 90, 76, 0.22);
  border-radius: 999px;
  color: var(--sage);
  background: rgba(61, 90, 76, 0.07);
}

.gate-mark svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gate-card h1 {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 390;
  line-height: 1.02;
}

.gate-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.gate-example {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(44, 42, 38, 0.09);
  border-radius: 18px;
  background: rgba(244, 241, 236, 0.54);
}

.gate-example span {
  display: block;
  margin-bottom: 7px;
  color: var(--sage);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.gate-example strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.admin-page {
  min-height: 100vh;
  padding-bottom: 80px;
}

.admin-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 46px;
  align-items: end;
  padding-top: 64px;
  padding-bottom: 42px;
}

.admin-hero > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-result,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(251, 249, 247, 0.78);
  box-shadow: 0 20px 52px -42px rgba(44, 42, 38, 0.45);
  backdrop-filter: blur(12px);
}

.admin-result {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.admin-result > span,
.admin-service > span {
  color: var(--sage);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.admin-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-link {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-size: 14px;
}

.admin-result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-note {
  font-size: 13.5px;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-leads {
  margin-bottom: 24px;
}

.lead-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(244, 241, 236, 0.55);
}

.lead-row strong {
  display: block;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  font-weight: 380;
}

.lead-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.lead-status {
  padding: 7px 11px;
  border: 1px solid rgba(185, 130, 111, 0.34);
  border-radius: 999px;
  color: #8a5848;
  background: rgba(185, 130, 111, 0.08);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.lead-status.is-contacted {
  border-color: rgba(61, 90, 76, 0.32);
  color: var(--sage);
  background: rgba(61, 90, 76, 0.08);
}

.lead-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.empty-leads {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-panel {
  padding: 30px;
}

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

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.admin-form textarea {
  min-height: 96px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border-color: rgba(61, 90, 76, 0.55);
  box-shadow: 0 0 0 4px rgba(61, 90, 76, 0.08);
}

.admin-service {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(244, 241, 236, 0.55);
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: calc(var(--d, 0) * 55ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .wrap {
    padding: 0 24px;
  }

  .topbar {
    margin: 0 24px;
    padding: 10px 12px 10px 20px;
  }

  .desktop-nav,
  .topbar > .btn {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid rgba(61, 90, 76, 0.35);
    border-radius: 999px;
    background: transparent;
    color: var(--sage);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  }

  .menu-button:hover,
  .menu-button[aria-expanded="true"] {
    background: rgba(61, 90, 76, 0.08);
    border-color: rgba(61, 90, 76, 0.48);
    transform: translateY(-1px);
  }

  .mobile-panel {
    position: fixed;
    top: 72px;
    left: 48px;
    right: 48px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 22px 22px;
    border: 1px solid rgba(44, 42, 38, 0.08);
    border-top-color: rgba(44, 42, 38, 0.04);
    border-radius: 8px 8px 26px 26px;
    background: rgba(251, 249, 247, 0.94);
    box-shadow: 0 24px 44px -34px rgba(44, 42, 38, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scaleY(0.96);
    transform-origin: top center;
    transition:
      opacity 0.22s ease,
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.24s;
  }

  .mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
    transition:
      opacity 0.22s ease,
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

  .mobile-panel .nav-link,
  .mobile-panel .btn {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-panel.is-open .nav-link,
  .mobile-panel.is-open .btn {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-panel.is-open .nav-link:nth-child(1) {
    transition-delay: 0.03s;
  }

  .mobile-panel.is-open .nav-link:nth-child(2) {
    transition-delay: 0.06s;
  }

  .mobile-panel.is-open .nav-link:nth-child(3) {
    transition-delay: 0.09s;
  }

  .mobile-panel.is-open .nav-link:nth-child(4) {
    transition-delay: 0.12s;
  }

  .mobile-panel.is-open .nav-link:nth-child(5) {
    transition-delay: 0.15s;
  }

  .mobile-panel.is-open .btn {
    transition-delay: 0.18s;
  }

  .nav-wrap:has(.menu-button[aria-expanded="true"]) .topbar {
    border-bottom-color: rgba(44, 42, 38, 0.04);
    border-radius: 28px 28px 12px 12px;
    box-shadow: 0 10px 26px -28px rgba(44, 42, 38, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }

  .hero,
  .intro-grid,
  .care-panel,
  .therapy-map-grid,
  .two-col,
  .contact-grid,
  .featured-article,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-aside {
    position: static;
  }

  .service-grid,
  .article-grid,
  .care-grid,
  .therapy-steps,
  .process-grid,
  .info-strip,
  .fit-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 0;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 18px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .section-head,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-inner {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .footer-grid {
    padding-top: 42px;
    padding-bottom: 38px;
  }

  .service-row,
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

  .info-strip div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .info-strip div:last-child {
    border-bottom: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px;
  }

  .care-panel {
    padding-bottom: 56px;
  }

  .care-intro {
    padding: 0;
  }

  .care-card {
    min-height: 0;
  }

  .therapy-map {
    padding: 56px 0;
  }

  .therapy-map-copy {
    position: static;
  }

  .therapy-step {
    min-height: 0;
  }

  .clinical-note {
    left: 18px;
    bottom: 18px;
  }
}

@media (max-width: 620px) {
  .wrap {
    padding-right: 24px;
    padding-left: 24px;
  }

  .topbar {
    margin: 0 14px;
    padding: 10px 12px 10px 20px;
  }

  .mobile-panel {
    left: 14px;
    right: 14px;
    top: 72px;
  }

  .brand {
    font-size: 20px;
  }

  .display {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.04;
  }

  .lead {
    font-size: 17px;
    line-height: 1.62;
  }

  .hero {
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .portrait-block {
    min-height: auto;
  }

  .portrait {
    height: 390px;
  }

  .portrait-block::after {
    right: -10px;
    bottom: 18px;
    width: 92px;
    height: 92px;
  }

  .clinical-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -42px;
  }

  .hero-care-row {
    align-items: flex-start;
  }

  .care-panel {
    padding-top: 0;
    padding-bottom: 48px;
  }

  .care-grid {
    gap: 12px;
  }

  .care-card {
    padding: 22px;
    border-radius: 20px;
  }

  .care-icon {
    margin-bottom: 24px;
  }

  .therapy-map {
    padding: 48px 0;
  }

  .therapy-map-grid {
    gap: 30px;
  }

  .therapy-step {
    padding: 22px;
    border-radius: 20px;
  }

  .therapy-step > div {
    margin-bottom: 24px;
  }

  .intro-band {
    padding: 48px 0;
  }

  .intro-grid {
    gap: 28px;
  }

  .room-image {
    height: 220px;
  }

  .quote-block p {
    font-size: 24px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section + .section {
    padding-top: 0;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 24px;
  }

  .section h2,
  .intro-band h2,
  .process-band h2,
  .cta-band h2,
  .featured-article h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .service-grid,
  .article-grid,
  .process-grid {
    gap: 28px;
  }

  .service-card {
    padding: 26px;
  }

  .article-card {
    gap: 12px;
  }

  .article-card img {
    height: 170px;
  }

  .article-card h3 {
    font-size: 21px;
  }

  .article-card p {
    font-size: 15px;
  }

  .cta-inner {
    gap: 24px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .cta-band p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.7;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .footer-links {
    gap: 12px;
  }

  .page-hero {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .stack-main {
    height: 390px;
  }

  .image-stack {
    min-height: 390px;
  }

  .service-list {
    padding-top: 16px;
    padding-bottom: 64px;
  }

  .service-row {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .process-band {
    padding: 58px 0;
  }

  .fit-band,
  .faq-section {
    padding: 58px 0;
  }

  .fit-grid {
    gap: 34px;
  }

  .sign-item {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .sign-item p {
    font-size: 16.5px;
  }

  .faq-item summary {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 21px;
  }

  .featured-article {
    padding-bottom: 56px;
  }

  .featured-article img {
    height: 240px;
  }

  .article-hero {
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .article-cover {
    padding-bottom: 44px;
  }

  .article-cover img {
    height: 260px;
  }

  .article-layout {
    padding-bottom: 58px;
  }

  .article-body {
    gap: 32px;
  }

  .article-body-section p {
    font-size: 17px;
  }

  .article-note {
    padding: 24px;
  }

  .article-note p {
    font-size: 22px;
  }

  .contact-grid {
    padding-bottom: 48px;
  }
}

@media (max-width: 860px) {
  .lead-row {
    grid-template-columns: 1fr;
  }

  .lead-actions {
    justify-content: flex-start;
  }
}
