:root {
  --ink: #12161a;
  --muted: #5d6772;
  --paper: #f8fafb;
  --white: #ffffff;
  --teal: #0bacd0;
  --teal-dark: #057a94;
  --gold: #f4a62a;
  --lime: #98c93c;
  --line: #dbe3e7;
  --soft: #edf4f6;
  --shadow: 0 18px 46px rgba(18, 22, 26, 0.12);
  --max: 1180px;
  --section-top-space: 48px;
  --section-bottom-space: 88px;
  --heading-kicker-gap: 0px;
  --heading-copy-gap: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 113px;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 227, 231, 0.85);
  backdrop-filter: blur(18px);
}

.top-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.top-strip p,
.top-strip a {
  margin: 0;
  text-decoration: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  object-position: 50% 34%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand span {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 11px 12px;
  color: #263039;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 760;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--soft);
  color: var(--teal-dark);
  outline: none;
}

.nav-menu .nav-action {
  margin-left: 4px;
  color: var(--white);
  background: var(--teal);
}

.nav-menu .nav-action:hover,
.nav-menu .nav-action:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(620px, calc(100svh - 104px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/repair-bench.jpg");
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 17, 21, 0.9) 0%, rgba(13, 17, 21, 0.72) 45%, rgba(13, 17, 21, 0.14) 100%),
    linear-gradient(0deg, rgba(13, 17, 21, 0.1), rgba(13, 17, 21, 0.22));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.45fr);
  gap: 0 58px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 58px 0 54px;
}

.hero-logo {
  grid-column: 2;
  grid-row: 1 / span 5;
  justify-self: end;
  width: clamp(230px, 28vw, 340px);
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.hero-content .eyebrow,
.hero-content h1,
.hero-copy,
.hero-actions,
.hero-stats {
  grid-column: 1;
}

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

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
  outline: none;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.button.secondary.dark {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: var(--white);
}

.button.secondary.dark:hover,
.button.secondary.dark:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 14px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding-top: 16px;
  border-top: 3px solid var(--gold);
}

.hero-stats dt {
  font-size: 1.7rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -34px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.intro-item {
  min-height: 104px;
  padding: 22px;
  color: var(--white);
  background: var(--teal-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-item:nth-child(2) {
  background: var(--ink);
}

.intro-item:nth-child(3) {
  background: var(--gold);
  color: #161616;
  border-right: 0;
}

.intro-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-item strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.25;
}

.section,
.business-section,
.contact-section,
.booking-section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: var(--section-top-space) 0 var(--section-bottom-space);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 0 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: var(--heading-kicker-gap);
}

.section-heading p:last-child {
  padding-top: 10px;
}

.section-heading-stacked {
  grid-template-columns: minmax(0, 760px);
  row-gap: 0;
  align-items: start;
}

.section-heading-stacked h2,
.section-heading-stacked p:last-child {
  grid-column: 1;
}

.section-heading-stacked p:last-child {
  max-width: 680px;
  padding-top: 0;
}

.section-heading h2,
.price-copy h2,
.story h2,
.console-banner h2,
.contact-copy h2,
.booking-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:last-child,
.price-copy p,
.story p,
.console-banner p,
.contact-copy p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading-stacked p:last-child {
  margin-top: var(--heading-copy-gap);
}

.price-copy h2 + p,
.contact-copy h2 + p,
.console-banner h2 + p,
.booking-copy h2 + p {
  margin-top: var(--heading-copy-gap);
}

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

.service-card {
  display: grid;
  grid-template-rows: 170px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(18, 22, 26, 0.06);
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff, #e9f7fb);
}

.service-card:nth-child(4) img {
  background: #eef0f4;
}

.service-card div {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

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

.service-card p {
  margin: 8px 0 18px;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
}

.service-card a:hover,
.service-card a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.booking-widget {
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(18, 22, 26, 0.07);
}

.booking-step {
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.booking-step-heading {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.booking-step-heading span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 900;
}

.booking-step-heading h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.booking-step-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-step label {
  display: grid;
  gap: 8px;
  color: #263039;
  font-weight: 820;
}

.booking-step select {
  width: 100%;
  min-height: 49px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
}

.booking-step select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(11, 172, 208, 0.18);
}

.service-meta,
.booking-summary {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-meta strong,
.booking-summary strong {
  font-size: 0.98rem;
}

.service-meta span,
.booking-summary span {
  color: var(--muted);
  font-size: 0.92rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.day-button,
.slot-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.day-button {
  display: grid;
  gap: 2px;
  min-height: 82px;
  align-content: center;
  padding: 9px 6px;
  text-align: center;
}

.day-button strong {
  font-size: 1.2rem;
  line-height: 1;
}

.day-button span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.day-button .day-name,
.day-button .day-status {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.day-button:hover:not(:disabled),
.day-button:focus-visible,
.slot-button:hover:not(:disabled),
.slot-button:focus-visible {
  border-color: var(--teal);
  outline: 3px solid rgba(11, 172, 208, 0.16);
}

.day-button.is-active,
.slot-button.is-active {
  border-color: var(--teal-dark);
  color: var(--white);
  background: var(--teal-dark);
}

.day-button.is-active .day-name,
.day-button.is-active .day-status {
  color: rgba(255, 255, 255, 0.78);
}

.day-button:disabled,
.slot-button:disabled {
  color: #83909a;
  background: var(--soft);
  cursor: not-allowed;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 8px;
}

.slot-button {
  min-height: 44px;
  padding: 10px;
  font-weight: 850;
}

.booking-form,
.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(18, 22, 26, 0.07);
}

.booking-widget .booking-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

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

.booking-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: #263039;
  font-weight: 820;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
}

.booking-form select {
  min-height: 49px;
}

.booking-form textarea,
.contact-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(11, 172, 208, 0.18);
}

.price-section {
  padding: var(--section-top-space) 20px var(--section-bottom-space);
  background: var(--ink);
  color: var(--white);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.price-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.price-note {
  margin-top: 26px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
}

.price-tool {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tool-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #f4f8f9;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.tab.is-active {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.search-label input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.search-label input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(11, 172, 208, 0.18);
}

.price-results {
  display: grid;
  max-height: 600px;
  overflow: auto;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) minmax(220px, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row h3 {
  margin: 0;
  font-size: 1rem;
}

.price-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-row li {
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--soft);
  color: #263039;
  font-size: 0.88rem;
  font-weight: 750;
}

.empty-state {
  padding: 28px;
  color: var(--muted);
}

.process-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.process-band div {
  min-height: 210px;
  padding: 34px;
  background: var(--white);
}

.process-band span {
  display: block;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 900;
}

.process-band h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.process-band p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 46px;
  align-items: start;
}

.story p {
  margin-top: 20px;
}

.story p.eyebrow {
  margin-top: 0;
}

.story h2 + p {
  margin-top: var(--heading-copy-gap);
}

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

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

.proof-grid span {
  display: inline-block;
  margin-bottom: 26px;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #dff6fb;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-grid h3 {
  margin: 0 0 8px;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

.business-section {
  border-top: 1px solid var(--line);
}

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

.data-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.data-panel h3 {
  margin: 0;
  padding: 18px;
  color: var(--white);
  background: var(--teal-dark);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  background: #f4f8f9;
  font-size: 0.82rem;
  text-transform: uppercase;
}

td:last-child,
th:last-child {
  text-align: right;
  font-weight: 850;
}

.console-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 0;
  align-items: stretch;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 56px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.console-banner img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.console-banner div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 42px;
}

.console-banner p {
  color: rgba(255, 255, 255, 0.76);
}

.console-banner .button {
  align-self: flex-start;
  margin-top: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  font-style: normal;
}

address a,
.facebook-link {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
}

address a:hover,
.facebook-link:hover,
address a:focus-visible,
.facebook-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.hours {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hours h3 {
  margin: 0 0 8px;
}

.hours p {
  margin: 4px 0;
}

.facebook-link {
  display: inline-block;
  margin-top: 22px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 980px) {
  .top-strip,
  .intro-band,
  .section-heading,
  .price-layout,
  .split-section,
  .business-grid,
  .console-banner,
  .contact-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .section-heading p:last-child {
    padding-top: 0;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 17, 21, 0.92) 0%, rgba(13, 17, 21, 0.7) 68%, rgba(13, 17, 21, 0.35) 100%),
      linear-gradient(0deg, rgba(13, 17, 21, 0.18), rgba(13, 17, 21, 0.28));
  }

  .intro-band {
    margin-top: 0;
    padding: 0;
  }

  .intro-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .tool-bar {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  html {
    scroll-padding-top: 70px;
  }

  .top-strip {
    display: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    inset: 70px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 20px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(18, 22, 26, 0.12);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu .nav-action {
    margin: 12px 0 0;
    border-radius: 8px;
    text-align: center;
  }

  .hero {
    min-height: calc(100svh - 70px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 56px 0 46px;
  }

  .hero-logo {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: min(52vw, 184px);
  }

  .hero-stats,
  .service-grid,
  .proof-grid,
  .process-band {
    grid-template-columns: 1fr;
  }

  .section,
  .business-section,
  .contact-section,
  .booking-section {
    padding: 56px 0 70px;
  }

  .price-section {
    padding: 56px 20px 70px;
  }

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

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

  .console-banner {
    margin-bottom: 26px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 150px);
  }

  .hero-content {
    padding: 36px 0 30px;
  }

  .hero-logo {
    width: min(48vw, 164px);
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 24px;
  }

  .hero-stats div {
    padding-top: 10px;
  }

  .hero-stats dt {
    font-size: 1.08rem;
  }

  .hero-stats dd {
    font-size: 0.74rem;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section,
  .business-section,
  .contact-section,
  .booking-section,
  .console-banner {
    width: min(100% - 28px, var(--max));
  }

  .contact-form,
  .booking-form,
  .booking-widget,
  .console-banner div,
  .process-band div {
    padding: 22px;
  }

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

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