:root {
  --ink: var(--brand-ink);
  --muted: var(--brand-muted);
  --line: var(--brand-line-strong);
  --paper: var(--brand-paper);
  --soft: var(--brand-bg-alt);
  --brand: var(--brand-primary);
  --brand-dark: var(--brand-primary-dark);
  --accent: var(--brand-accent);
  --sky: var(--brand-sky);
  --hero-eyebrow: #ffb19f;
  --status-bg: #f7f2ed;
  --header-bg: rgba(255, 255, 255, 0.78);
  --hero-overlay-a: 0.84;
  --hero-overlay-b: 0.42;
  --hero-overlay-c: 0.16;
  --shadow: var(--brand-shadow);
  --card-shadow: var(--brand-shadow-card);
  --radius: var(--brand-radius-sm);
  --focus-ring: rgba(20, 108, 99, 0.18);
  --font-body: var(--brand-font);
  --section-space: var(--brand-section-space);
  --page-gutter: var(--brand-gutter);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--brand-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.site-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.site-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.site-blob-a {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, var(--blob-a, rgba(20, 108, 99, 0.22)), transparent 70%);
}

.site-blob-b {
  width: min(440px, 60vw);
  height: min(440px, 60vw);
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, var(--blob-b, rgba(217, 79, 56, 0.14)), transparent 72%);
}

body[data-decorative-bg="off"] .site-bg,
body[data-decorative-bg="off"] .hero::before,
body[data-decorative-bg="off"] .hero::after {
  display: none;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

body.is-loading main {
  opacity: 0.55;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
  min-height: var(--brand-header-h);
  padding: 14px var(--page-gutter);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--brand-line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--brand-shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  min-width: 0;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.top-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.top-nav a:hover {
  color: var(--brand-dark);
  background: rgba(20, 108, 99, 0.07);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--brand-line-strong);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.header-phone {
  justify-self: end;
  color: var(--brand-dark);
  font-weight: 700;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-primary-light);
}

.demo-banner {
  margin: 0;
  padding: 12px var(--page-gutter);
  background: var(--sky);
  color: var(--brand-dark);
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--brand-line);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 80px var(--page-gutter);
  background:
    linear-gradient(
      90deg,
      rgba(9, 25, 33, var(--hero-overlay-a)),
      rgba(9, 25, 33, var(--hero-overlay-b)),
      rgba(9, 25, 33, var(--hero-overlay-c))
    ),
    var(--soft);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-glow-a, rgba(20, 108, 99, 0.35)), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-glow-b, rgba(217, 79, 56, 0.15)), transparent 68%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero .eyebrow { color: var(--hero-eyebrow); }

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

p.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.6;
}

.hero-trust {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s var(--brand-ease), border-color 0.2s;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  padding: 14px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .mobile-sticky-cta:not([hidden]) {
    display: block;
  }
}

.review-card {
  display: grid;
  gap: 10px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--brand);
  background: var(--soft);
  border: 1px solid var(--brand-line);
}

.reviews-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.reviews-scroll > article {
  scroll-snap-align: start;
}

.service-card-actions {
  margin-top: 14px;
}

.service-duration {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.service-promo-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
}

.btn,
.primary-button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-primary-mid, #1a8579) 100%);
  color: white;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(20, 108, 99, 0.28);
  transition: transform 0.2s var(--brand-ease), box-shadow 0.2s, filter 0.2s;
}

.btn:hover,
.primary-button:hover,
.button-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(20, 108, 99, 0.34);
  filter: brightness(1.03);
  color: #fff;
}

.btn:disabled,
.primary-button:disabled { opacity: 0.65; cursor: wait; transform: none; }

body[data-button-style="outline"] .btn,
body[data-button-style="outline"] .primary-button,
body[data-button-style="outline"] .button-link {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
  box-shadow: none;
}

body[data-button-style="outline"] .hero .primary-button,
body[data-button-style="outline"] .form-band > .form-copy .primary-button {
  color: white;
  border-color: rgba(255, 255, 255, 0.72);
}

body[data-button-style="outline"] .form-band .lead-form .primary-button,
body[data-button-style="outline"] .cards > article .primary-button,
body[data-button-style="outline"] .status-form .primary-button {
  color: var(--brand-dark);
  background: transparent;
  border-color: var(--brand);
  box-shadow: none;
}

.form-band .lead-form .primary-button {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-primary-mid, #1a8579) 100%);
  color: #fff;
  border-color: transparent;
}

body[data-button-style="outline"] .primary-button:hover {
  color: var(--brand-dark);
}

body[data-button-style="outline"] .hero .primary-button:hover,
body[data-button-style="outline"] .form-band > .form-copy .primary-button:hover {
  color: #fff;
}

.form-band .lead-form .primary-button:hover {
  filter: brightness(1.05);
  color: #fff;
}

body[data-button-style="outline"] .form-band .lead-form .primary-button:hover,
body[data-button-style="outline"] .cards > article .primary-button:hover,
body[data-button-style="outline"] .status-form .primary-button:hover {
  background: var(--brand-primary-light);
  color: var(--brand-dark);
  filter: none;
}

body[data-button-style="outline"] .hero .primary-button:hover,
body[data-button-style="outline"] .form-band > .form-copy .primary-button:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section {
  padding: var(--section-space) var(--page-gutter);
  max-width: var(--brand-max);
  margin: 0 auto;
}

.muted {
  position: relative;
  max-width: none;
  width: 100%;
}

.muted::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: var(--soft);
  z-index: -1;
}

.muted > * {
  max-width: var(--brand-max);
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.portfolio-item {
  margin: 0;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s var(--brand-ease), box-shadow 0.2s;
}

.portfolio-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--brand-shadow-soft);
}

.portfolio-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-item figcaption {
  padding: 14px 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.45;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.team-card {
  text-align: center;
  padding: 24px 18px;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--card-shadow);
}

.team-card img {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--soft);
}

.team-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.team-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.custom-blocks-slot:not([hidden]) {
  display: contents;
}

.custom-block-body {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.custom-block-body p {
  margin: 0 0 14px;
}

.custom-block-body p:last-child {
  margin-bottom: 0;
}

.custom-block-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 14px;
  font-size: 15px;
}

.custom-block-body th,
.custom-block-body td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.custom-block-body th {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}

.custom-block-body ul,
.custom-block-body ol {
  margin: 0 0 14px;
  padding-left: 1.25em;
}

.custom-block-video {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f172a;
}

.custom-block-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.section-head p:not(.eyebrow) { color: var(--muted); font-size: 17px; }

.grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.cards > article,
.steps > div,
.service-card,
.lead-form,
.faq-list details {
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s var(--brand-ease), box-shadow 0.2s;
}

.cards > article:hover,
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--brand-shadow-soft);
}

.cards > article,
.service-card {
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.cards h3,
.service-card h3 { margin-bottom: 10px; font-size: 22px; }

.cards p,
.service-card p {
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.price {
  display: block;
  margin: 18px 0;
  color: var(--brand-dark);
  font-weight: 900;
}

.price-promo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-old {
  color: var(--muted);
  font-weight: 600;
  text-decoration: line-through;
  font-size: 15px;
}

.price-current {
  color: var(--accent);
  font-weight: 900;
  font-size: 20px;
}

.price-promo-note {
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
}

.review-rating {
  display: block;
  margin-top: 16px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 18px;
}

.compact > article { min-height: 160px; }

.icon-pill {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--brand-dark);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.steps > div { padding: 22px; }

.steps span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-primary-mid, #1a8579));
  color: white;
  font-weight: 800;
}

.steps strong { display: block; margin-bottom: 8px; font-size: 17px; }
.steps p { color: var(--muted); line-height: 1.5; }

.faq-section .faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list p { margin: 12px 0 0; color: var(--muted); line-height: 1.55; }

.form-band {
  display: grid;
  grid-template-columns: minmax(0, 32%) minmax(0, 68%);
  gap: 28px;
  align-items: start;
  background: var(--ink);
  color: white;
  max-width: none;
  border-radius: 0;
}

.form-copy h2 {
  font-size: clamp(26px, 2.6vw, 34px);
  max-width: 320px;
}

.form-copy p:not(.eyebrow) {
  max-width: 300px;
  font-size: 15px;
}

body[data-form-band="brand"] .form-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

body[data-form-band="light"] .form-band {
  background: var(--soft);
  color: var(--ink);
}

body[data-form-band="light"] .form-copy p:not(.eyebrow) { color: var(--muted); }

.form-copy p:not(.eyebrow) { color: rgba(255, 255, 255, 0.82); line-height: 1.6; }

.lead-form,
.status-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: var(--ink);
}

.form-band .lead-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 1fr;
  align-content: start;
  padding: 26px;
  min-width: 0;
  border: none;
}

.lead-form label.full,
.lead-form .lead-form-actions,
.lead-form .form-message {
  grid-column: 1 / -1;
}

.lead-form label[hidden] {
  display: none !important;
}

.lead-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.lead-form label.checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
}

.lead-form input,
.lead-form textarea,
.lead-form select,
.status-form input {
  width: 100%;
  border: 1px solid var(--brand-line-strong);
  border-radius: var(--brand-radius-xs);
  padding: 11px 12px;
  color: var(--ink);
  background: white;
  font-size: 15px;
}

.lead-form textarea {
  min-height: 68px;
  max-height: 110px;
  resize: vertical;
}

.lead-form .form-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.lead-form .form-note.full {
  grid-column: 1 / -1;
  margin-top: -4px;
}

.lead-form-actions {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  flex-shrink: 0;
}

.lead-form-actions .primary-button {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.lead-form [data-booking-field] .slot-grid {
  max-height: 160px;
  overflow-y: auto;
  margin-top: 8px;
}

.slot-pick.busy {
  opacity: 0.55;
  cursor: not-allowed;
  background: #fff5f5;
  border-color: #f3c0c0;
}

.slot-pick.free small,
.slot-pick.busy small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
}

.slot-pick.free small { color: var(--brand); }
.slot-pick.busy small { color: #b45309; }

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus,
.status-form input:focus {
  outline: 3px solid var(--focus-ring);
  border-color: var(--brand);
}

.slug-input-wrap {
  display: flex;
  align-items: stretch;
}

.slug-input-wrap input {
  flex: 1 1 auto;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.slug-suffix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--brand-line-strong);
  border-left: 0;
  border-radius: 0 var(--brand-radius-xs) var(--brand-radius-xs) 0;
  background: var(--soft);
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.slug-hint { margin-top: -4px; }

.checkbox input { width: 18px; height: 18px; }

.form-message { margin: 0; font-weight: 800; }
.form-message.ok { color: var(--brand); }
.form-message.error { color: var(--accent); }

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

.form-note.ok { color: var(--brand); font-weight: 800; }
.form-note.error { color: var(--accent); font-weight: 800; }

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

.status-section { background: var(--status-bg); }

.status-form {
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 760px;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: white;
}

.status-form .form-message { grid-column: 1 / -1; }

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.contact-grid > * {
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--paper);
  box-shadow: var(--card-shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px var(--page-gutter);
  border-top: 1px solid var(--brand-line);
  color: var(--muted);
  max-width: var(--brand-max);
  margin: 0 auto;
}

.container {
  width: min(720px, 100%);
  margin: 0 auto;
}

.container.narrow { width: min(560px, 100%); }

.service-paused-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(11, 18, 32, 0.88), rgba(20, 108, 99, 0.78)),
    var(--soft);
  background-position: center;
  background-size: cover;
}

.service-unavailable {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px var(--page-gutter);
  color: white;
}

.service-unavailable-content { width: min(720px, 100%); }

.service-unavailable h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 6px;
  margin-top: 8px;
}
.slot-pick,
.slot-card {
  border: 1px solid var(--brand-line-strong);
  border-radius: var(--brand-radius-xs);
  padding: 8px 6px;
  background: var(--paper);
  text-align: center;
  cursor: pointer;
  font-size: 13px;
}
.slot-pick.active,
.slot-pick.free,
.slot-card.free { border-color: var(--brand); background: var(--soft); }
.slot-card.busy { opacity: 0.72; background: #fff5f5; border-color: #f3c0c0; }
.slot-card strong,
.slot-pick { display: block; font-weight: 800; }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.schedule-day {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--brand-line-strong);
  border-radius: var(--brand-radius-xs);
  background: white;
  text-align: left;
  cursor: pointer;
}
.schedule-day.free { background: #ecfdf5; border-color: #86efac; }
.schedule-day.partial { background: #fffbeb; border-color: #fcd34d; }
.schedule-day.busy { background: #fef2f2; border-color: #fca5a5; }
.schedule-nav { display: flex; gap: 10px; align-items: center; }
.schedule-day.panel { margin-top: 18px; }

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    position: relative;
  }

  .nav-toggle { display: inline-flex; }

  .header-phone { justify-self: end; font-size: 14px; }

  .top-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px var(--page-gutter);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--brand-line);
    backdrop-filter: blur(18px);
  }

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

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

  .form-band .lead-form {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .status-form { grid-template-columns: 1fr; }
  .hero { min-height: 72vh; }
}

@media (max-width: 560px) {
  .header-phone { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
