:root {
  --paper: #fbfcfa;
  --white: #ffffff;
  --ink: #1b2523;
  --muted: #66716c;
  --line: #dfe6e1;
  --sage: #6e8d7d;
  --sage-dark: #2f5c4d;
  --clay: #be6d55;
  --clay-dark: #954d3c;
  --gold: #c79f62;
  --shadow: 0 18px 48px rgba(25, 43, 36, 0.11);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.snap-stack > .hero,
.snap-stack > .snap-panel,
.snap-stack > .section {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(223, 230, 225, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  font-size: 0.94rem;
  color: #43504b;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--clay-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #263431;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover {
  background: var(--white);
  border-color: var(--sage);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 70px);
  min-height: min(850px, calc(100vh - 72px));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 252, 250, 0.98) 0%, rgba(251, 252, 250, 0.9) 42%, rgba(251, 252, 250, 0.36) 74%, rgba(251, 252, 250, 0.12) 100%),
    url("assets/tactile-hero-consultation.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 150px;
  background: linear-gradient(180deg, rgba(251, 252, 250, 0), var(--paper));
}

.hero-copy {
  max-width: 760px;
}

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

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 5.55rem);
  line-height: 0.94;
  font-weight: 520;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 520;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy p,
.section-heading p,
.split-section > div > p,
.join-section > div > p,
.admin-preview p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #52615b;
  font-size: 0.94rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.booking-panel,
.compact-form,
.dashboard,
.service-card,
.therapist-card,
.safety-grid article,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-panel {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.panel-header h2 {
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 780;
}

.panel-header p,
.microcopy,
.note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

label {
  display: grid;
  gap: 8px;
  color: #34433e;
  font-size: 0.88rem;
  font-weight: 730;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d4ddd8;
  border-radius: var(--radius);
  padding: 11px 12px;
  background: #fcfdfc;
  color: var(--ink);
  outline: none;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 3px rgba(110, 141, 125, 0.15);
}

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

.price-preview {
  padding: 13px 14px;
  border-radius: var(--radius);
  background: #eff5f1;
  color: var(--sage-dark);
  font-weight: 800;
}

.checkbox-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 620;
  line-height: 1.45;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--sage-dark);
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status[data-type="success"] {
  color: var(--sage-dark);
  font-weight: 760;
}

.form-status[data-type="warning"] {
  color: var(--clay-dark);
  font-weight: 760;
}

.image-band {
  padding: 18px clamp(18px, 5vw, 72px) 34px;
}

.image-band img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.split-section,
.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
}

.section-label {
  margin-bottom: 14px;
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.workflow-list span {
  color: var(--clay-dark);
  font-weight: 850;
}

.workflow-list h3,
.workflow-list p {
  grid-column: 2;
}

.workflow-list p,
.service-card p,
.therapist-card p,
.safety-grid p,
details p {
  color: var(--muted);
  line-height: 1.58;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  box-shadow: none;
}

.service-card span {
  margin-bottom: 32px;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card strong {
  margin-top: auto;
  color: var(--clay-dark);
}

.therapist-section,
.pricing-section,
.faq-section {
  background: #f3f6f2;
}

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

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.standards-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.trust-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fbf8f1, #d9d0c3);
  color: var(--metal);
  box-shadow: var(--shadow-raised);
  font-weight: 850;
}

.standards-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--clay-dark);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.therapist-card {
  padding: 24px;
  box-shadow: none;
}

.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #dfe9e3;
  color: var(--sage-dark);
  font-weight: 850;
}

dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

dl div {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  line-height: 1.45;
}

.compact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: none;
}

.safety-grid article {
  min-height: 210px;
  padding: 24px;
  box-shadow: none;
}

.pricing-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.pricing-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.pricing-table div:last-child {
  border-bottom: 0;
}

.pricing-table span {
  color: #3b4944;
  font-weight: 720;
}

.pricing-table strong {
  color: var(--clay-dark);
  text-align: right;
}

.benefit-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.benefit-list li {
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

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

.dashboard {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 420px;
  overflow: hidden;
  box-shadow: none;
}

.dashboard aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #f7faf7;
}

.dash-tab {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #475650;
  text-align: left;
  font-weight: 780;
  cursor: pointer;
}

.dash-tab.active,
.dash-tab:hover {
  background: var(--ink);
  color: var(--white);
}

.dash-panel {
  display: none;
  padding: 22px;
}

.dash-panel.active {
  display: block;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-row div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.metric-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.metric-row strong {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.request-list {
  display: grid;
  gap: 10px;
}

.request-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.request-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.status {
  align-self: start;
  padding: 6px 8px;
  border-radius: 6px;
  background: #eff5f1;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

details {
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: none;
}

summary {
  cursor: pointer;
  font-weight: 820;
}

details p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
  scroll-snap-align: end;
  scroll-snap-stop: always;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 70px);
  background: linear-gradient(180deg, #fbfcfa 0%, #f3f6f2 100%);
}

.page-hero-inner {
  max-width: 880px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
}

.page-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.content-page {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 42px);
}

.content-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.content-block h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.content-block p,
.content-block li {
  color: var(--muted);
  line-height: 1.65;
}

.content-block ul,
.content-block ol {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.content-block a {
  color: var(--clay-dark);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-body {
  background: #f3f6f2;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 250, 0.94);
  backdrop-filter: blur(16px);
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-mode {
  padding: 8px 10px;
  border-radius: 6px;
  background: #eff5f1;
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 820;
}

.admin-shell {
  padding: clamp(24px, 4vw, 48px);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.admin-hero h1 {
  max-width: 840px;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.admin-hero p {
  max-width: 740px;
  color: var(--muted);
  line-height: 1.65;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.admin-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 20px;
}

.backend-readiness-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.backend-readiness-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.backend-readiness-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.readiness-grid {
  display: grid;
  gap: 10px;
}

.readiness-grid article {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.readiness-grid strong {
  color: var(--ink);
}

.readiness-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.admin-grid {
  display: grid;
  grid-template-columns: 220px minmax(320px, 0.92fr) minmax(380px, 1.08fr);
  gap: 18px;
  align-items: start;
}

.admin-tabs,
.admin-list-panel,
.admin-detail-panel,
.activity-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-tabs {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 8px;
  padding: 14px;
}

.admin-list-panel,
.admin-detail-panel {
  min-height: 620px;
  padding: 18px;
}

.admin-panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-panel-heading h2,
.detail-card h2,
.activity-panel h2 {
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 820;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-record {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.admin-record:hover,
.admin-record.selected {
  border-color: var(--sage);
  background: #eff5f1;
}

.admin-record small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.admin-record em {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 820;
}

.detail-card {
  display: grid;
  gap: 16px;
}

.detail-card > p {
  color: var(--muted);
}

.detail-dl {
  margin-top: 4px;
}

.detail-dl div {
  grid-template-columns: minmax(110px, 0.32fr) 1fr;
  gap: 12px;
}

.empty-detail {
  display: grid;
  min-height: 240px;
  place-content: center;
  text-align: center;
}

.empty-detail h2 {
  font-family: inherit;
  font-size: 1.5rem;
}

.empty-detail p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}

.activity-panel {
  margin-top: 22px;
  padding: 22px;
}

.tour-highlight {
  position: relative;
  z-index: 12;
  outline: 3px solid rgba(84, 109, 96, 0.36);
  outline-offset: 5px;
}

.tour-overlay {
  position: fixed;
  inset: auto 22px 22px auto;
  z-index: 30;
  width: min(430px, calc(100vw - 44px));
}

.tour-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.tour-card h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.tour-card p:not(.section-label) {
  color: var(--muted);
  line-height: 1.55;
}

.tour-actions {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-top: 18px;
}

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

  .hero,
  .split-section,
  .join-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 252, 250, 0.98) 0%, rgba(251, 252, 250, 0.94) 48%, rgba(251, 252, 250, 0.68) 100%),
      url("assets/tactile-hero-consultation.jpg");
    background-size: cover;
    background-position: center top;
  }

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

  .admin-hero,
  .admin-grid,
  .backend-readiness-panel {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    position: static;
  }

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

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header .button-small {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.25rem, 8.9vw, 2.95rem);
    line-height: 1.02;
    max-width: 330px;
  }

  .hero-copy,
  .booking-panel,
  .compact-form,
  .dashboard {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy > p,
  .hero-actions {
    max-width: 340px;
  }

  .booking-panel {
    max-width: 340px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-grid,
  .service-grid,
  .therapist-grid,
  .standards-grid,
  .safety-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dash-tab {
    text-align: center;
    font-size: 0.88rem;
  }

  .admin-header,
  .admin-header-actions,
  .admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tour-overlay {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .tour-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .pricing-table div,
  .request-item,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pricing-table strong {
    text-align: left;
  }
}

/* Tactile Skeuomorphic Minimalism restyle */
:root {
  --paper: #f3f0e8;
  --white: #fbf8f1;
  --ink: #292823;
  --muted: #6d665d;
  --line: #d4ccc0;
  --sage: #7f9185;
  --sage-dark: #546d60;
  --clay: #a98263;
  --clay-dark: #6f5845;
  --gold: #b89a6d;
  --plaster: #f6f2ea;
  --linen: #e8dfd1;
  --stone: #bdb4a7;
  --wood: #b69367;
  --metal: #5f5b51;
  --shadow: 0 24px 58px rgba(68, 58, 45, 0.15), 0 2px 5px rgba(255, 255, 255, 0.8) inset;
  --shadow-soft: 0 18px 44px rgba(70, 61, 49, 0.12);
  --shadow-raised: 10px 12px 28px rgba(67, 58, 47, 0.16), -8px -8px 22px rgba(255, 255, 255, 0.78);
  --shadow-inset: inset 5px 5px 12px rgba(70, 61, 49, 0.13), inset -5px -5px 12px rgba(255, 255, 255, 0.8);
  --radius: 18px;
}

body {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.68), transparent 24%),
    radial-gradient(circle at 80% 8%, rgba(191, 177, 158, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #f5f1e9 0%, #ebe3d7 100%);
  background-size: auto, auto, 54px 54px, auto;
}

.site-header {
  top: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(244, 239, 229, 0.82);
  box-shadow: var(--shadow-raised);
  backdrop-filter: blur(18px) saturate(1.04);
}

.snap-page .site-header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.snap-controls {
  position: fixed;
  right: clamp(12px, 2.5vw, 30px);
  top: 50%;
  z-index: 20;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.snap-button {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(221, 211, 198, 0.94));
  box-shadow: var(--shadow-raised);
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.snap-button::before {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--metal);
  border-bottom: 2px solid var(--metal);
}

.snap-prev::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

.snap-next::before {
  transform: rotate(45deg) translate(-1px, -1px);
}

.snap-button:hover {
  transform: translateY(-1px);
}

.snap-button:active {
  box-shadow: var(--shadow-inset);
  transform: translateY(1px);
}

.snap-button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
  transform: none;
}

.snap-next:not(:disabled) {
  animation: snapPulse 1800ms ease-in-out infinite;
}

@keyframes snapPulse {
  0%,
  100% {
    box-shadow: var(--shadow-raised);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(127, 145, 133, 0.13), var(--shadow-raised);
  }
}

.brand {
  padding-left: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 540;
}

.brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #f4efe6;
  color: transparent;
  overflow: hidden;
  box-shadow: 5px 6px 12px rgba(56, 49, 40, 0.24), -4px -4px 10px rgba(255, 255, 255, 0.7);
}

.desktop-nav {
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-inset);
}

.desktop-nav a {
  padding: 8px 13px;
  border-radius: 999px;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  box-shadow: 3px 4px 8px rgba(70, 61, 49, 0.1), -3px -3px 8px rgba(255, 255, 255, 0.72);
}

.button {
  min-height: 48px;
  border: 1px solid rgba(54, 50, 43, 0.72);
  border-radius: 999px;
  background: linear-gradient(145deg, #6e685e, #35332e);
  color: #faf6ee;
  box-shadow: 7px 8px 15px rgba(65, 55, 44, 0.24), -5px -5px 14px rgba(255, 255, 255, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 0.94rem;
  letter-spacing: 0;
}

.button:hover {
  background: linear-gradient(145deg, #7b7468, #34312c);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-inset);
}

.button-secondary {
  border-color: rgba(160, 149, 133, 0.72);
  background: linear-gradient(145deg, #fbf8f1, #dfd6ca);
  color: var(--ink);
  box-shadow: 7px 8px 14px rgba(71, 61, 50, 0.12), -6px -6px 15px rgba(255, 255, 255, 0.82), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  background: linear-gradient(145deg, #fffaf2, #e1d8cc);
  border-color: rgba(121, 110, 94, 0.8);
}

.hero {
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.26fr);
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  min-height: 100svh;
  padding-top: clamp(58px, 7vh, 86px);
  padding-bottom: clamp(22px, 4vh, 44px);
}

.hero::before {
  inset: 20px clamp(16px, 3vw, 42px) 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(244, 239, 229, 0.98) 0%, rgba(244, 239, 229, 0.92) 43%, rgba(244, 239, 229, 0.36) 68%, rgba(244, 239, 229, 0.08) 100%),
    url("assets/tactile-hero-consultation.jpg");
  background-size: cover;
  background-position: center right;
  box-shadow: var(--shadow-raised);
}

.hero::after {
  height: 190px;
  background: linear-gradient(180deg, rgba(243, 240, 232, 0), var(--paper));
}

.hero-copy {
  padding: clamp(6px, 1vw, 16px) 0;
}

h1,
h2 {
  color: #27241f;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.2vw, 5rem);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-copy p,
.section-heading p,
.split-section > div > p,
.join-section > div > p,
.admin-preview p {
  color: #665f56;
}

.trust-row {
  max-width: 650px;
  gap: 10px;
}

.trust-row span {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(247, 243, 234, 0.62);
  box-shadow: 4px 5px 10px rgba(72, 62, 50, 0.11), -4px -4px 10px rgba(255, 255, 255, 0.76);
}

.trust-row span::before {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 32% 30%, #fbf8f1 0 18%, #7f9185 19% 100%);
  box-shadow: 0 1px 2px rgba(44, 40, 34, 0.2);
}

.video-proof {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(82px, 10vh, 116px) clamp(18px, 5vw, 72px) clamp(32px, 5vh, 56px);
}

.video-frame {
  position: relative;
  width: min(1180px, calc(100vw - 72px));
  height: min(74svh, 680px);
  min-height: 520px;
  overflow: hidden;
  border: 12px solid rgba(246, 242, 234, 0.9);
  border-radius: 32px;
  background: var(--plaster);
  box-shadow: var(--shadow-raised);
}

.proof-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 32, 27, 0.52) 0%, rgba(36, 32, 27, 0.16) 46%, rgba(36, 32, 27, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(36, 32, 27, 0.1));
  pointer-events: none;
}

.video-glass {
  position: absolute;
  left: clamp(22px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 54px);
  z-index: 1;
  width: min(460px, calc(100% - 44px));
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 24px;
  background: rgba(246, 242, 234, 0.76);
  box-shadow: 9px 11px 24px rgba(36, 31, 25, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
}

.video-glass h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
}

.video-glass p:not(.section-label) {
  color: #5f574e;
  line-height: 1.55;
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.proof-pills span,
.match-console strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: linear-gradient(145deg, #f8f3ea, #ded4c6);
  color: var(--sage-dark);
  box-shadow: var(--shadow-inset);
  font-size: 0.78rem;
  font-weight: 820;
}

.booking-panel,
.compact-form,
.dashboard,
.service-card,
.therapist-card,
.safety-grid article,
details,
.standards-grid article,
.content-block,
.pricing-table,
.estimate-console,
.estimate-dial,
.estimate-list article,
.admin-tabs,
.admin-list-panel,
.admin-detail-panel,
.activity-panel {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.92), rgba(232, 224, 212, 0.84)),
    var(--plaster);
  box-shadow: var(--shadow-raised);
}

.booking-panel {
  position: relative;
  gap: 10px;
  max-height: calc(100svh - 124px);
  padding: clamp(14px, 1.7vw, 22px);
  overflow: hidden;
}

.booking-snap {
  justify-items: center;
}

.booking-snap .booking-panel {
  width: min(920px, calc(100vw - 96px));
  max-height: calc(100svh - 118px);
  overflow: auto;
  overscroll-behavior: contain;
}

#bookingForm {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 8px;
}

#bookingForm .honeypot,
#bookingForm .panel-header,
#bookingForm > label,
#bookingForm .microcopy,
#bookingForm .form-status {
  grid-column: 1 / -1;
}

#bookingForm > .form-grid {
  display: contents;
}

#bookingForm > .form-grid label {
  grid-column: span 2;
}

#bookingForm .checkbox-line,
#bookingForm .price-preview,
#bookingForm .button.full-width {
  grid-column: span 3;
}

#bookingForm textarea {
  height: 70px;
  min-height: 70px;
  resize: none;
}

.booking-snap .panel-header {
  max-width: none;
}

.booking-panel::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 20px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: linear-gradient(145deg, #fbf8f1, #d9d0c3);
  box-shadow: 7px 8px 16px rgba(65, 55, 44, 0.14), -6px -6px 16px rgba(255, 255, 255, 0.84);
}

.panel-header {
  max-width: calc(100% - 82px);
}

.panel-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 2px;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  font-weight: 540;
}

.booking-panel .panel-header p,
.booking-panel .microcopy,
.booking-panel label,
.booking-panel .checkbox-line,
.booking-panel .form-status {
  font-size: 0.78rem;
  line-height: 1.32;
}

.booking-panel .microcopy {
  margin-bottom: 0;
}

input,
select,
textarea {
  min-height: 37px;
  border: 1px solid rgba(162, 151, 135, 0.62);
  border-radius: 14px;
  padding: 8px 10px;
  background: rgba(239, 232, 221, 0.72);
  box-shadow: var(--shadow-inset);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(84, 109, 96, 0.9);
  box-shadow: var(--shadow-inset), 0 0 0 3px rgba(127, 145, 133, 0.2);
}

.checkbox-line input {
  border-radius: 5px;
  box-shadow: none;
}

.price-preview,
.admin-mode,
.status {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(145deg, #eee8dd, #dcd2c3);
  color: var(--sage-dark);
  box-shadow: var(--shadow-inset);
}

.image-band {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(72px, 9vh, 110px) clamp(18px, 5vw, 72px);
}

.image-band img {
  display: block;
  height: min(76svh, 720px);
  max-height: 580px;
  object-fit: cover;
  border: 12px solid rgba(246, 242, 234, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow-raised);
}

.section {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding-top: clamp(68px, 9vh, 112px);
  padding-bottom: clamp(48px, 7vh, 90px);
}

.booking-snap {
  align-content: start;
  padding-top: clamp(82px, 10vh, 116px);
  padding-bottom: clamp(20px, 4vh, 40px);
}

.therapist-section,
.pricing-section,
.faq-section,
.page-hero,
.admin-body {
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 255, 255, 0.54), transparent 24%),
    linear-gradient(180deg, #eee7dc 0%, #e7ddcf 100%);
}

.section-label {
  color: var(--metal);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.workflow-list article {
  margin-bottom: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 20px;
  background: rgba(246, 242, 234, 0.58);
  box-shadow: 6px 8px 18px rgba(72, 62, 50, 0.1), -5px -5px 16px rgba(255, 255, 255, 0.66);
}

.match-console article {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
}

.workflow-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fbf8f1, #d9d0c3);
  color: var(--metal);
  box-shadow: var(--shadow-raised);
}

.match-console h3,
.match-console p {
  grid-column: 2;
}

.match-console strong {
  grid-column: 3;
  grid-row: 1 / span 2;
  white-space: nowrap;
}

.service-grid {
  gap: 22px;
}

.service-card {
  min-height: 330px;
  padding: 14px 14px 22px;
  overflow: hidden;
}

.service-card span {
  order: 2;
  margin: 18px 10px 12px;
  color: var(--metal);
  letter-spacing: 0.14em;
}

.service-card h3,
.service-card p,
.service-card strong {
  order: 3;
  margin-inline: 10px;
}

.service-card strong {
  color: var(--clay-dark);
}

.service-image {
  order: 1;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  box-shadow: 6px 8px 18px rgba(69, 59, 47, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.standards-grid article,
.safety-grid article,
.compact-form,
details,
.content-block {
  box-shadow: 9px 11px 24px rgba(68, 58, 45, 0.12), -7px -7px 19px rgba(255, 255, 255, 0.68);
}

.pricing-table {
  overflow: hidden;
}

.pricing-table div {
  border-bottom-color: rgba(156, 145, 130, 0.36);
}

.estimate-section {
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.estimate-section > div:first-child p:not(.section-label) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.65;
}

.estimate-console {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}

.estimate-dial {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.estimate-dial span,
.estimate-list span {
  color: var(--metal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.estimate-dial strong {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fbf8f1, #d9d0c3);
  color: var(--sage-dark);
  box-shadow: var(--shadow-inset);
  font-size: 2.1rem;
}

.estimate-dial p,
.estimate-console .note {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.estimate-list {
  display: grid;
  gap: 12px;
}

.estimate-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.estimate-list strong {
  color: var(--clay-dark);
  text-align: right;
}

.estimate-console .note {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid rgba(156, 145, 130, 0.32);
}

.clarity-section {
  align-content: center;
}

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

.faq-console details {
  min-height: 150px;
  margin-bottom: 0;
}

.site-footer {
  margin: 0 clamp(14px, 3vw, 36px) 24px;
  border-radius: 26px;
  background: linear-gradient(145deg, #5d584f, #282721);
  box-shadow: var(--shadow-raised);
}

.snap-page .site-footer {
  min-height: 100svh;
  margin: 0;
  align-items: flex-start;
  border-radius: 0;
  padding-top: clamp(96px, 14vh, 142px);
  scroll-snap-align: start;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(14px, 5vw, 72px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(226, 216, 202, 0.9)),
    var(--plaster);
  box-shadow: var(--shadow-raised);
}

.snap-page .snap-stack > .final-cta {
  min-height: 100svh;
}

.final-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

.final-cta p:not(.section-label) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta .hero-actions {
  justify-content: end;
  margin: 0;
}

.toast {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, #5d584f, #282721);
}

@media (max-width: 960px) {
  .site-header {
    top: 10px;
  }

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

  .hero::before {
    background:
      linear-gradient(180deg, rgba(244, 239, 229, 0.98) 0%, rgba(244, 239, 229, 0.93) 52%, rgba(244, 239, 229, 0.6) 100%),
      url("assets/tactile-hero-consultation.jpg");
    background-size: cover;
    background-position: center top;
  }

  .booking-panel {
    width: min(100%, 720px);
  }

  .booking-snap .booking-panel {
    width: min(720px, calc(100vw - 48px));
  }

  .video-frame {
    width: min(860px, calc(100vw - 48px));
    min-height: 480px;
  }

  .trust-grid,
  .estimate-section,
  .estimate-console,
  .faq-console {
    grid-template-columns: 1fr 1fr;
  }

  .estimate-section {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta .hero-actions {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  html {
    scroll-snap-type: y proximity;
  }

  .snap-stack > .hero,
  .snap-stack > .snap-panel,
  .snap-stack > .section {
    scroll-snap-stop: normal;
  }

  body,
  main,
  .hero,
  .section,
  .image-band,
  .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .section {
    display: grid;
    height: 100svh;
    min-height: 100svh;
    align-content: start;
    justify-items: start;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 22px;
    padding-left: 22px;
  }

  .section > *,
  .split-section,
  .join-section,
  .video-frame,
  .video-glass,
  .section-heading,
  .workflow-list,
  .service-grid,
  .standards-grid,
  .safety-grid,
  .pricing-table,
  .estimate-console,
  .estimate-dial,
  .estimate-list,
  .estimate-list article,
  .faq-console,
  details,
  .content-page,
  .content-block,
  .compact-form {
    width: min(330px, calc(100vw - 44px)) !important;
    max-width: min(330px, calc(100vw - 44px)) !important;
    min-width: 0;
  }

  .split-section,
  .join-section,
  .form-grid,
  .service-grid,
  .therapist-grid,
  .standards-grid,
  .safety-grid,
  .trust-grid,
  .estimate-section,
  .estimate-console,
  .faq-console,
  .metric-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .workflow-list article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .match-console strong {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
    white-space: normal;
  }

  .split-section > *,
  .join-section > *,
  .workflow-list article,
  .service-card,
  .standards-grid article,
  .safety-grid article,
  .estimate-console,
  .estimate-dial,
  .estimate-list,
  .estimate-list article,
  .faq-console,
  .faq-console details {
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
  }

  .split-section p,
  .join-section p,
  .section-heading p,
  .workflow-list p,
  .service-card p,
  .standards-grid p,
  .safety-grid p,
  .note,
  details p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .section h2,
  .section-heading p,
  .split-section > div > p,
  .join-section > div > p,
  .service-card h3,
  .service-card p,
  .service-card strong,
  .standards-grid h3,
  .standards-grid p,
  .safety-grid h3,
  .safety-grid p,
  .pricing-table span,
  .pricing-table strong,
  .estimate-list span,
  .estimate-list strong,
  details summary,
  details p {
    max-width: calc(100vw - 88px) !important;
  }

  .workflow-list h3,
  .workflow-list p {
    max-width: calc(100vw - 150px) !important;
  }

  .split-section,
  .join-section,
  .service-grid,
  .standards-grid,
  .safety-grid,
  .estimate-console,
  .faq-console {
    justify-self: start;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    overflow-wrap: anywhere;
    text-wrap: auto;
  }

  .site-header {
    width: min(100% - 18px, 1180px);
    border-radius: 22px;
  }

  .brand {
    padding-left: 2px;
  }

  .hero {
    display: block;
    padding-top: 106px;
    padding-right: 22px;
    padding-left: 22px;
    gap: 24px;
  }

  .snap-controls {
    top: auto;
    right: 10px;
    bottom: 22px;
    gap: 8px;
    transform: none;
  }

  .snap-button {
    width: 38px;
    height: 38px;
  }

  .hero::before {
    inset: 10px 9px 0;
    border-radius: 24px;
  }

  .video-proof {
    padding: 78px 16px 28px;
  }

  .video-frame {
    height: calc(100svh - 108px);
    min-height: 0;
    border-width: 8px;
    border-radius: 24px;
  }

  .video-glass {
    left: 12px;
    bottom: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .video-glass h2 {
    font-size: clamp(1.65rem, 7.8vw, 2.2rem);
  }

  h1 {
    max-width: min(318px, calc(100vw - 56px));
    font-size: clamp(2rem, 9.4vw, 2.55rem);
    line-height: 1;
    overflow-wrap: anywhere;
    text-wrap: auto;
  }

  .hero-copy > p,
  .hero-copy,
  .hero-actions,
  .booking-panel {
    width: min(330px, calc(100vw - 28px));
    max-width: min(330px, calc(100vw - 28px));
  }

  .booking-panel {
    width: min(330px, calc(100vw - 28px));
    margin-top: 24px;
    padding: 18px;
  }

  .booking-snap {
    align-content: start;
    padding-top: 76px;
    padding-bottom: 20px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .booking-snap .booking-panel {
    width: min(342px, calc(100vw - 36px));
    max-width: min(342px, calc(100vw - 36px));
    max-height: calc(100svh - 96px);
    margin-top: 0;
    padding: 16px;
  }

  #bookingForm {
    grid-template-columns: 1fr;
  }

  #bookingForm > .form-grid label,
  #bookingForm .checkbox-line,
  #bookingForm .price-preview,
  #bookingForm .button.full-width {
    grid-column: 1 / -1;
  }

  .trust-row {
    max-width: min(330px, calc(100vw - 28px));
  }

  input,
  select,
  textarea,
  .button,
  .price-preview {
    min-width: 0;
    max-width: 100%;
  }

  .trust-row span {
    border-radius: 16px;
  }

  .booking-panel::before {
    width: 44px;
    height: 44px;
  }

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

  .trust-grid article {
    min-height: 0;
  }

  .estimate-dial {
    min-height: 210px;
  }

  .estimate-dial strong {
    width: 118px;
    height: 118px;
    font-size: 1.65rem;
  }

  .services {
    align-content: center;
  }

  .services .section-heading {
    margin-bottom: 18px;
  }

  .services .service-grid {
    display: flex;
    width: calc(100vw - 44px) !important;
    max-width: calc(100vw - 44px) !important;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 12px 20px 2px;
    scroll-snap-type: x mandatory;
  }

  .services .service-card {
    flex: 0 0 min(286px, calc(100vw - 74px));
    scroll-snap-align: start;
  }

  .services .service-image {
    aspect-ratio: 1.32;
  }

  .image-band img {
    max-height: 420px;
    border-width: 8px;
    border-radius: 22px;
  }

  .site-footer {
    margin-inline: 10px;
  }

  .final-cta {
    margin-inline: 10px;
    padding: 22px;
    border-radius: 24px;
  }

  .snap-page .snap-stack > .final-cta {
    min-height: 100svh;
  }
}
