:root {
  --ink: #101113;
  --muted: #666a70;
  --soft: #f6f7f4;
  --paper: #fbfbf8;
  --line: #e7e7e1;
  --leaf: #5b745f;
  --leaf-dark: #24392b;
  --gold: #b98f50;
  --sky: #f3f5f1;
  --soil: #24201b;
  --blush: #f7f2e8;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(16, 17, 19, 0.12);
  --soft-shadow: 0 18px 48px rgba(16, 17, 19, 0.07);
}

html.dark-mode,
body.dark-mode {
  --ink: #f4f3ef;
  --muted: #b7b4ac;
  --soft: #1b1b18;
  --paper: #10100e;
  --line: #30302b;
  --leaf: #90a184;
  --leaf-dark: #d8dccf;
  --gold: #d1aa68;
  --sky: #181a17;
  --soil: #0b0b0a;
  --blush: #211f1a;
  --white: #181816;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

img,
picture,
svg {
  max-width: 100%;
}

main section {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 252, 0.9);
  border-bottom: 1px solid rgba(231, 231, 225, 0.92);
  backdrop-filter: blur(22px);
}

body.dark-mode .site-header {
  background: rgba(15, 23, 18, 0.94);
  border-bottom-color: rgba(44, 58, 48, 0.9);
}

html.dark-mode body {
  color: var(--ink);
  background: var(--paper);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
}

.brand span:last-child {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-weight: 800;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 17, 19, 0.08);
}

nav {
  flex-wrap: wrap;
  gap: clamp(12px, 2.4vw, 28px);
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
}

nav a:hover {
  color: var(--leaf-dark);
}

.theme-toggle {
  min-width: 62px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: none;
}

.theme-toggle:hover {
  border-color: var(--leaf);
}

body.dark-mode .theme-toggle {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

html.dark-mode .hero-scrim {
  background:
    linear-gradient(90deg, rgba(16, 16, 14, 0.94), rgba(16, 16, 14, 0.84) 58%, rgba(16, 16, 14, 0.62)),
    linear-gradient(0deg, rgba(16, 16, 14, 0.18), transparent 42%);
}

html.dark-mode .hero-picture {
  opacity: 0.2;
  filter: saturate(0.45) contrast(1.08) brightness(0.72);
}

html.dark-mode .hero-copy {
  color: var(--ink);
}

html.dark-mode .hero-copy > p:not(.kicker),
html.dark-mode .comfort-note span,
html.dark-mode .hero-stats dt {
  color: var(--muted);
}

html.dark-mode .eyebrow,
html.dark-mode .button.ghost,
html.dark-mode .comfort-note span,
html.dark-mode .hero-stats {
  background: rgba(24, 24, 22, 0.78);
}

html.dark-mode .button.primary {
  color: #10100e;
  background: #f4f3ef;
}

html.dark-mode .hero-stats dd {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246, 247, 244, 0.9), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.hero-picture,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-picture {
  display: block;
  opacity: 0.16;
  filter: saturate(0.35) contrast(1.05);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(255, 255, 252, 0.96), rgba(255, 255, 252, 0.9) 48%, rgba(255, 255, 252, 0.62)),
    linear-gradient(0deg, rgba(251, 251, 248, 0.98), rgba(251, 251, 248, 0.18) 42%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(52px, 8vh, 92px) 0;
}

.hero-copy {
  max-width: 720px;
  color: var(--ink);
}

.kicker {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Manrope", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.6vw, 6.25rem);
  letter-spacing: 0;
}

.hero-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(16, 17, 19, 0.16);
}

.button.primary:hover {
  background: #000000;
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.button.light {
  color: var(--leaf-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.comfort-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.comfort-note span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
}

.button.full {
  width: 100%;
}

.hidden {
  display: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin: 34px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 16px;
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-stats dd {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 950;
}

.booking-panel,
.review-form,
.payment-panel,
.service-card,
.process-list article,
.review-card,
.comparison-card,
.bio-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.booking-panel {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 26px);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(246, 247, 244, 0.78), rgba(255, 255, 255, 0) 40%),
    var(--white);
}

.panel-head h2 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1;
}

.panel-head span,
.form-status,
.quote-note,
.payment-note,
.section-head p,
.recurring-note p,
.service-card p,
.service-card li,
.process-list p,
footer span {
  color: var(--muted);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
  border-color: var(--line);
  color: var(--ink);
  background: #101812;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 143, 80, 0.18);
  border-color: var(--gold);
}

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

.quote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(246, 247, 244, 0.96), rgba(247, 242, 232, 0.88));
}

.quote-row span {
  color: var(--muted);
  font-weight: 850;
}

.quote-row strong {
  font-size: 1.75rem;
}

.quote-note {
  margin: -4px 0 0;
  font-size: 0.86rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.92rem;
}

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

.proof-band div {
  display: grid;
  gap: 4px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, var(--white), var(--paper));
}

body.dark-mode .proof-band div {
  background: linear-gradient(180deg, #172019, var(--paper));
}

.proof-band strong {
  font-size: 1rem;
}

.proof-band span {
  color: var(--muted);
}

.section {
  padding: clamp(60px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.payment-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.03;
}

.section-head p,
.payment-copy p {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 1.02rem;
}

.area-section {
  background: var(--white);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.area-chips span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 900;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(246, 247, 244, 0.92), rgba(251, 251, 248, 0) 48%),
    var(--paper);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.service-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 340px;
  padding: clamp(20px, 2.5vw, 30px);
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink);
}

.service-card.featured {
  border-color: rgba(16, 17, 19, 0.26);
  box-shadow: 0 24px 58px rgba(16, 17, 19, 0.12);
  background:
    linear-gradient(180deg, rgba(246, 247, 244, 0.9), rgba(255, 255, 255, 0.98)),
    var(--white);
}

body.dark-mode .service-card.featured,
body.dark-mode .booking-panel {
  background:
    linear-gradient(180deg, rgba(209, 170, 104, 0.08), rgba(24, 24, 22, 0) 38%),
    var(--white);
}

.service-card.selected {
  border-color: var(--ink);
  box-shadow: 0 24px 58px rgba(16, 17, 19, 0.16);
}

.service-card.selected .service-select {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.popular-tag {
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-price {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 950;
}

.service-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.service-card p {
  margin: 0;
}

.recurring-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(246, 247, 244, 0.86), rgba(255, 255, 255, 0.9)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.recurring-note h3,
.recurring-note p {
  margin: 0;
}

.recurring-note h3 {
  font-size: 1.35rem;
  line-height: 1.16;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding-left: 20px;
}

.service-select {
  align-self: end;
  margin-top: 8px;
}

.before-after-section {
  background:
    linear-gradient(180deg, rgba(247, 242, 232, 0.46), rgba(251, 251, 248, 0) 40%),
    var(--white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.comparison-card {
  overflow: hidden;
  margin: 0;
  box-shadow: var(--soft-shadow);
}

.comparison-card picture {
  display: block;
  aspect-ratio: 3 / 2;
  background: var(--soft);
}

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

.comparison-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 22px;
}

.comparison-label {
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.comparison-label.after {
  background: var(--leaf);
}

.bio-section {
  background:
    linear-gradient(180deg, rgba(246, 247, 244, 0.92), rgba(251, 251, 248, 0) 45%),
    var(--paper);
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.bio-card {
  box-shadow: var(--soft-shadow);
}

.bio-card div {
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: 24px;
}

.bio-tag {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.bio-card h3,
.bio-card p {
  margin: 0;
}

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

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

.process-section {
  background:
    linear-gradient(135deg, rgba(185, 143, 80, 0.13), transparent 40%),
    var(--ink);
  color: white;
}

body.dark-mode .process-section {
  background:
    linear-gradient(135deg, rgba(230, 183, 93, 0.1), transparent 40%),
    #0b130e;
}

.process-section .kicker {
  color: #f0c665;
}

.process-section .section-head p,
.process-list p {
  color: rgba(255, 255, 255, 0.72);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.process-list article {
  display: grid;
  gap: 12px;
  min-height: 240px;
  padding: 24px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 950;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.setup-note {
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 12px;
  color: #fff2ca;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

code {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.review-section {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.faq-list article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.faq-list h3,
.faq-list p {
  margin: 0;
}

.faq-list h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

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

.policy-section {
  background:
    linear-gradient(180deg, rgba(246, 247, 244, 0.92), rgba(251, 251, 248, 0) 45%),
    var(--paper);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.policy-card {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.policy-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: white;
  background: var(--ink);
  font-weight: 950;
}

.policy-card h3,
.policy-card p {
  margin: 0;
}

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

body.dark-mode .review-section {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 32px;
}

.review-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  box-shadow: var(--soft-shadow);
}

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

.review-card {
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.review-card p {
  margin: 0;
}

.stars {
  color: var(--gold);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.pay-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 540px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(185, 143, 80, 0.14), transparent 52%),
    var(--soft);
}

.payment-copy {
  max-width: 620px;
}

.payment-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.venmo-badge {
  display: grid;
  place-items: center;
  min-height: 110px;
  border-radius: 14px;
  color: white;
  background: #2487d8;
  font-size: 2.3rem;
  font-weight: 950;
}

body.dark-mode .venmo-badge {
  background: #1b75bb;
}

.payment-fields {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 12px;
}

.payment-fields label:first-child,
.payment-fields label:last-child {
  grid-column: 1 / -1;
}

.payment-note {
  margin: 0;
  font-size: 0.92rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: white;
  background:
    linear-gradient(135deg, rgba(185, 143, 80, 0.16), transparent 44%),
    var(--ink);
}

body.dark-mode footer {
  background:
    linear-gradient(135deg, rgba(230, 183, 93, 0.12), transparent 44%),
    #090d0a;
}

footer div {
  display: grid;
  gap: 4px;
}

footer span {
  color: rgba(255, 255, 255, 0.72);
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding-block: 10px;
  }

  nav {
    grid-column: 1 / -1;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    margin-inline: -4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 4px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    font-size: 0.88rem;
  }

  .hero-inner,
  .proof-band,
  .service-cards,
  .recurring-note,
  .before-after-grid,
  .bio-grid,
  .process-list,
  .reviews-layout,
  .review-list,
  .faq-list,
  .policy-grid,
  .pay-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: center;
    min-height: auto;
    padding: 32px 0 42px;
  }

  .booking-panel {
    width: 100%;
  }

  .payment-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 78px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(216, 226, 216, 0.9);
    border-radius: 14px;
    background: rgba(251, 252, 247, 0.96);
    box-shadow: 0 18px 54px rgba(25, 32, 25, 0.22);
    backdrop-filter: blur(16px);
  }

  body.dark-mode .mobile-action-bar {
    border-color: rgba(44, 58, 48, 0.9);
    background: rgba(15, 23, 18, 0.96);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    color: var(--leaf-dark);
    background: var(--white);
    font-weight: 950;
    text-decoration: none;
  }

  .mobile-action-bar a:first-child {
    color: white;
    background: var(--leaf-dark);
  }

  footer {
    padding-bottom: 96px;
  }
}

@media (max-width: 540px) {
  .site-header {
    gap: 8px 10px;
    padding: 8px 12px 9px;
  }

  main section {
    scroll-margin-top: 126px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .theme-toggle {
    min-width: 58px;
    min-height: 40px;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 255, 252, 0.96), rgba(255, 255, 252, 0.9) 46%, rgba(251, 251, 248, 0.98)),
      linear-gradient(0deg, rgba(251, 251, 248, 0.3), transparent 42%);
  }

  html.dark-mode .hero-scrim {
    background:
      linear-gradient(180deg, rgba(16, 16, 14, 0.94), rgba(16, 16, 14, 0.9) 46%, rgba(16, 16, 14, 0.96)),
      linear-gradient(0deg, rgba(16, 16, 14, 0.32), transparent 42%);
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.62rem);
  }

  .hero-copy > p:not(.kicker) {
    font-size: 1rem;
  }

  .hero-actions,
  .comfort-note {
    gap: 10px;
    margin-top: 22px;
  }

  .comfort-note span {
    font-size: 0.84rem;
  }

  .hero-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 24px;
  }

  .hero-stats div {
    padding: 12px 14px;
  }

  .button {
    width: 100%;
  }

  .booking-panel,
  .review-form,
  .payment-panel {
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
  }

  .section {
    padding: 48px 14px;
  }

  .section-head h2,
  .payment-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .proof-band div,
  .service-card,
  .process-list article,
  .review-card,
  .faq-list article,
  .policy-card {
    min-height: auto;
    padding: 18px;
  }

  .quote-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .quote-row strong {
    font-size: 1.6rem;
  }

  .service-cards,
  .before-after-grid,
  .bio-grid,
  .process-list,
  .reviews-layout,
  .review-list,
  .faq-list,
  .policy-grid {
    gap: 14px;
    margin-top: 24px;
  }

  .comparison-card figcaption,
  .bio-card div {
    min-height: auto;
    padding: 16px;
  }

  .venmo-badge {
    min-height: 86px;
    font-size: 1.8rem;
  }

  .recurring-note {
    padding: 18px;
  }

  footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2rem;
  }

  .site-header {
    padding-inline: 10px;
  }

  .section {
    padding-inline: 12px;
  }

  .booking-panel,
  .review-form,
  .payment-panel,
  .service-card,
  .policy-card,
  .faq-list article,
  .review-card {
    padding: 14px;
  }

  .mobile-action-bar {
    right: 8px;
    bottom: 8px;
    left: 8px;
    gap: 6px;
    padding: 6px;
  }

  .mobile-action-bar a {
    min-height: 46px;
    font-size: 0.92rem;
  }
}
