:root {
  --orange: #f17901;
  --orange-deep: #c46200;
  --orange-glow: rgba(241, 121, 1, 0.45);
  --gold: #efbd23;
  --gold-soft: #ffe08a;
  --ink: #0f0e0d;
  --ink-soft: #1c1917;
  --muted: #6b6560;
  --line: rgba(28, 25, 23, 0.08);
  --paper: #faf7f2;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow-sm: 0 2px 8px rgba(15, 14, 13, 0.04), 0 12px 32px rgba(15, 14, 13, 0.06);
  --shadow-lg: 0 24px 64px rgba(15, 14, 13, 0.14);
  --radius: 20px;
  --radius-sm: 14px;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 124px;
  --space-section: 2.5rem;
  --space-stack: 1.75rem;
  --space-card: 1.75rem;
  --space-page-top: 2rem;
  --site-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --content-pad: clamp(1.25rem, 3vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: calc(var(--header-h) + 0.75rem); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--site-gutter);
}
main { overflow-x: clip; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 4px 24px rgba(15, 14, 13, 0.08);
}
.header-shell {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.55rem 0 0.65rem;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
}
.site-header.is-scrolled .header-top { min-height: 48px; }
.site-header.is-scrolled .brand img { width: 44px; height: 44px; }
.site-header.is-scrolled .header-slogan { display: none; }
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
  max-width: min(360px, 38vw);
}
.brand img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(241, 121, 1, 0.25));
  transition: width 0.35s, height 0.35s;
}
.brand-text { min-width: 0; }
.header-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-slogan {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.header-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.header-phones a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-phones a:hover { color: var(--orange); }
.header-phones .email {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.74rem;
  color: var(--muted);
}
.header-cta { padding: 0.65rem 1.1rem; font-size: 0.88rem; }
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.28rem;
  box-shadow: var(--shadow-sm);
}
.nav a {
  padding: 0.42rem 0.72rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: rgba(255,255,255,0.85); }
.nav a.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 3px 12px var(--orange-glow);
}
.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  width: 42px; height: 42px;
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 14px;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a2e 50%, var(--orange-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 28px var(--orange-glow);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 36px var(--orange-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border: 1px solid rgba(28, 25, 23, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(15, 14, 13, 0.06);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-deep); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; border-radius: 16px; }
.btn-icon { width: 1.1em; height: 1.1em; }

/* ── Hero ── */
.hero {
  position: relative;
  display: block;
  padding: calc(var(--header-h) + var(--space-page-top)) 0 var(--space-section);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(239, 189, 35, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% 10%, rgba(241, 121, 1, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(239, 189, 35, 0.15), transparent 45%),
    linear-gradient(165deg, #fff9ee 0%, var(--paper) 45%, #f5f0e8 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}
.hero-orb--1 { width: 420px; height: 420px; background: rgba(241,121,1,0.18); top: -10%; right: -5%; }
.hero-orb--2 { width: 320px; height: 320px; background: rgba(239,189,35,0.25); bottom: 10%; left: -8%; animation-delay: -4s; }
.hero-orb--3 { width: 200px; height: 200px; background: rgba(241,121,1,0.12); top: 40%; left: 35%; animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-deep);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0.08); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.hero-lead strong { color: var(--ink); font-weight: 700; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.hero-stat span {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.25rem;
  display: block;
}
.hero-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(239,189,35,0.6), rgba(241,121,1,0.3), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-panel-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(241,121,1,0.3));
}
.hero-panel h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.hero-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
.hero-points li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--orange));
  color: var(--ink-soft);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 0.1rem;
}
.hero-panel .btn { width: 100%; }

/* ── Sections ── */
main { padding-top: 0; }
.section {
  padding: var(--space-section) 0;
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}
.section + .section { padding-top: 0; }
.section-dark {
  background: var(--ink-soft);
  color: #e8e4df;
}
.section-dark + .section,
.section-dark + .cta-section { padding-top: 0; }
.section-dark .section-label { color: var(--gold); }
.section-dark .section-title { color: #fff; }
.section-dark .section-desc { color: rgba(255,255,255,0.55); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.65rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 48ch;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: var(--space-stack);
}
.section-head a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
  white-space: nowrap;
}
.section-head a:hover { gap: 0.6rem; color: var(--orange-deep); }

/* ── Service cards ── */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-stack);
  width: 100%;
}
.service-card {
  grid-column: auto;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  min-height: 190px;
}
.service-card:nth-child(1),
.service-card:nth-child(2) { grid-column: auto; min-height: 190px; }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(241,121,1,0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(241,121,1,0.2);
}
.service-card:hover::after { opacity: 1; }
.svc-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff5e6, #ffe8c8);
  border-radius: 14px;
  color: var(--orange-deep);
  position: relative;
  z-index: 1;
}
.svc-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--orange-deep);
  font-weight: 600;
}
.service-card .more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-stack);
}
.services-grid .service-card { grid-column: auto; min-height: 180px; }

/* ── About / prose ── */
/* ── Unified page layout ── */
.page-section {
  padding: calc(var(--header-h) + var(--space-page-top)) 0 var(--space-section);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}
.page-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-stack);
  width: 100%;
}
.page-stack--tight { gap: 1.25rem; }
.page-head { margin: 0; }
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.1;
}
.page-head__lead {
  color: var(--muted);
  margin: 0.75rem 0 0;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.6;
}
.page-head .section-label { margin-bottom: 0.5rem; }

.page-card .page-head {
  margin-bottom: 1.25rem;
}

.page-card .page-head:only-child {
  margin-bottom: 0;
}

.content-card,
.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--content-pad);
  box-shadow: var(--shadow-sm);
  width: 100%;
}
.content-card.prose,
.about-card.prose,
.prose--wide { max-width: none; width: 100%; }
.prose { max-width: none; font-size: 1.02rem; }
.prose > *:first-child { margin-top: 0; }
.prose h1, .prose h2, .prose h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}
.prose h2 { font-size: 1.45rem; margin: 2rem 0 0.75rem; }
.prose h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
.prose p, .prose li { color: var(--muted); margin: 0 0 0.9rem; }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0 0 1rem; }
.prose a { color: var(--orange-deep); font-weight: 600; }
.prose a:hover { color: var(--orange); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 1.75rem 0; }
.prose [style] { color: inherit !important; font-size: inherit !important; }
.prose p[style*="font-weight"] { font-weight: 700 !important; color: var(--ink) !important; }

/* ── Reviews ── */
.reviews-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.review-card--featured {
  grid-row: span 2;
  background: linear-gradient(160deg, #fff 0%, #fff8ec 100%);
  border-color: rgba(239,189,35,0.3);
  padding: 2rem;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.review-card .quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -0.5rem;
}
.review-card .stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
.review-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}
.review-card--featured p { font-size: 1.05rem; color: var(--ink); }
.review-card .author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-stack);
  width: 100%;
  align-items: stretch;
}
.reviews-grid--home .review-card {
  min-height: 100%;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.reviews-grid--home .review-card p { color: rgba(255,255,255,0.72); }
.reviews-grid--home .review-card .author { color: #fff; border-color: rgba(255,255,255,0.12); }

.masters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-stack);
}
.master-card { display: flex; flex-direction: column; gap: 0.65rem; }
.master-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(239, 189, 35, 0.45);
}
.master-specialty { color: var(--muted); font-weight: 600; margin: 0; }

/* ── CTA ── */
.cta-section {
  padding: 0;
  background: var(--ink-soft);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}
.cta-band {
  position: relative;
  width: 100%;
  border-radius: 0;
  padding: var(--space-section) 0;
  background: var(--ink-soft);
  color: #fff;
  overflow: hidden;
  box-shadow: none;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 100% 0%, rgba(241,121,1,0.45), transparent 55%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(239,189,35,0.2), transparent 50%);
  pointer-events: none;
}
.cta-band-inner > * { position: relative; z-index: 1; }
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.cta-copy p { margin: 0; color: rgba(255,255,255,0.65); font-size: 1rem; }
.cta-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

/* ── Forms ── */
.lead-form { display: grid; gap: 0.65rem; }
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font: inherit;
  background: rgba(255,255,255,0.07);
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.lead-form input:focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}
.lead-form textarea { min-height: 96px; resize: vertical; }
.lead-form .btn-primary { width: 100%; margin-top: 0.25rem; }
.lead-consent {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.15rem;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.45;
  cursor: pointer;
}
.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}
.consent-row a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-row a:hover { color: #fff; }
.lead-form--light .consent-row { color: var(--muted); }
.lead-form--light .consent-row a { color: var(--orange-deep); }
.lead-form--light .consent-row a:hover { color: var(--orange); }
.lead-form--light input, .lead-form--light textarea {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.lead-form--light input::placeholder, .lead-form--light textarea::placeholder { color: #aaa; }
.lead-form--light input:focus, .lead-form--light textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.sidebar-card p { color: var(--muted); font-size: 0.92rem; margin: 0 0 1.25rem; }
.sidebar-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.sidebar-note a {
  color: var(--orange);
  font-weight: 700;
}

/* ── Page hero (legacy alias) ── */
.page-hero {
  padding: calc(var(--header-h) + var(--space-page-top)) 0 var(--space-stack);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.page-hero .lead { color: var(--muted); margin: 0.75rem 0 0; max-width: 52ch; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.breadcrumb a { color: var(--orange-deep); font-weight: 600; }
.breadcrumb span { opacity: 0.35; }

.children-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.65rem;
  margin: 0 0 2rem;
}
.children-list a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.92rem;
  transition: all 0.2s var(--ease);
}
.children-list a::before { content: "→"; color: var(--orange); }
.children-list a:hover {
  border-color: var(--orange);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.service-layout, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.sidebar-card h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.sidebar-card p { color: var(--muted); font-size: 0.92rem; margin: 0 0 1.25rem; }

/* ── Footer ── */
.site-footer {
  background: var(--ink-soft);
  color: #c8c4be;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { width: 64px; margin-bottom: 1rem; filter: drop-shadow(0 4px 12px rgba(241,121,1,0.3)); }
.footer-brand p { font-size: 0.92rem; line-height: 1.65; color: rgba(255,255,255,0.45); margin: 0; }
.site-footer h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--gold); }
.footer-phone {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff !important;
  display: block;
  margin-bottom: 0.35rem;
}
.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: 0.85rem;
}
.footer-legal a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-legal a:hover { color: var(--gold); }
.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1rem;
}
.copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-credit {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-credit a {
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.footer-credit a:hover { color: var(--gold); }

/* ── FAB ── */
.fab-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 8px 28px var(--orange-glow);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease);
}
.fab-call:hover { transform: scale(1.08); color: #fff; }
.fab-call svg { width: 26px; height: 26px; }

/* ── Alerts ── */
.alert {
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.alert-success { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Theme switcher bar ── */
.theme-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(15, 14, 13, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.65rem 1rem;
}
.theme-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.theme-bar-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.25rem;
}
.theme-bar-link {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.theme-bar-link:hover { color: #fff; border-color: rgba(255,255,255,0.25); }
.theme-bar-link.is-active {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  border-color: transparent;
}
.theme-bar-all {
  font-size: 0.78rem;
  color: var(--gold);
  margin-left: 0.5rem;
  font-weight: 600;
}
body:has(.theme-bar) { padding-bottom: 76px; }
body:has(.theme-bar) .fab-call { bottom: calc(76px + 1rem); }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(26, 18, 8, 0.97);
  color: #eee;
  border-top: 1px solid rgba(239, 189, 35, 0.28);
  padding: 1rem 0;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.22);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  margin: 0;
  flex: 1;
  min-width: min(100%, 240px);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: #fff; }
.cookie-banner-accept {
  flex-shrink: 0;
  min-width: 132px;
}
body:has(.cookie-banner.is-visible) {
  padding-bottom: calc(var(--cookie-h, 92px) + env(safe-area-inset-bottom));
}
body:has(.cookie-banner.is-visible):has(.theme-bar) {
  padding-bottom: calc(var(--cookie-h, 92px) + 76px);
}
body:has(.cookie-banner.is-visible) .fab-call {
  bottom: calc(var(--cookie-h, 92px) + 1rem);
}
body:has(.cookie-banner.is-visible):has(.theme-bar) .fab-call {
  bottom: calc(var(--cookie-h, 92px) + 76px + 1rem);
}
body:has(.cookie-banner.is-visible) .theme-bar {
  bottom: var(--cookie-h, 92px);
}
@media (max-width: 640px) {
  .cookie-banner-inner { align-items: stretch; }
  .cookie-banner-accept { width: 100%; }
}

/* ── Responsive ── */

/* Touch devices: larger tap targets, no iOS input zoom */
@media (pointer: coarse) {
  .btn,
  .nav a,
  .mobile-toggle,
  .fab-call,
  .theme-bar-link {
    min-height: 44px;
    touch-action: manipulation;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lead-form input,
  .lead-form textarea,
  .lead-form--light input,
  .lead-form--light textarea {
    font-size: 16px;
  }

  .mobile-toggle {
    width: 44px;
    height: 44px;
  }

  .fab-call {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 1200px) {
  .brand { max-width: 280px; }
  .header-phones .email { display: none; }
  .header-phones a { font-size: 0.82rem; }
  .services-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Tablet: keep nav visible, 2-column grids */
@media (max-width: 1024px) and (min-width: 769px) {
  .header-slogan { display: none; }
  .header-title { font-size: 0.82rem; white-space: normal; }
  .brand { max-width: none; }
  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.35rem;
  }
  .nav a {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }
  .mobile-toggle { display: none; }
  .header-right .header-cta { display: inline-flex; }
  .hero-grid,
  .service-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .fab-call { display: flex; }
  .masters-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Phone & small tablet portrait */
@media (max-width: 768px) {
  :root {
    --site-gutter: 1.25rem;
    --content-pad: 1.25rem;
  }
  .header-shell { gap: 0; padding: 0.5rem 0; }
  .header-top { min-height: 52px; }
  .brand { max-width: none; flex: 1; }
  .header-slogan { display: none; }
  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
    margin-top: 0.65rem;
    padding: 0.4rem;
  }
  .nav.is-open { display: flex; }
  .nav a { text-align: center; padding: 0.75rem 1rem; }
  .header-right .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero-grid,
  .cta-band-inner,
  .footer-top,
  .service-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .services-bento { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .masters-grid { grid-template-columns: 1fr; }
  .fab-call { display: flex; }
  .hero { padding: calc(var(--header-h) + 1rem) 0 2.5rem; }
}

@media (max-width: 640px) {
  .header-phones { display: none; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat strong { font-size: 1.4rem; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
