@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("../fonts/inter-tight-cz-en-subset.woff2") format("woff2");
}

:root {
  --yellow: #f7c600;
  --yellow-strong: #ffdd1a;
  --yellow-soft: #fff7d6;
  --yellow-dark: #8a6a00;
  --ink: #111315;
  --ink-2: #22282f;
  --muted: #5e6670;
  --line: #dfe3e8;
  --soft: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(17, 19, 21, 0.14);
  --shadow-soft: 0 14px 34px rgba(17, 19, 21, 0.08);
  --shadow-lift: 0 24px 70px rgba(17, 19, 21, 0.12);
  --radius: 8px;
  --section-pad: 108px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

section[id],
article[id],
.price-tabs[id] {
  scroll-margin-top: 108px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

a {
  color: inherit;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  color: var(--white);
  background: rgba(17, 19, 21, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

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

.brand img {
  width: 136px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: color 160ms ease;
}

.mobile-language-links {
  display: none;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--yellow-strong);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  padding: 6px 8px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-switch a.is-active {
  background: var(--yellow);
  color: var(--ink);
}

.language-switch a:not(.is-active):hover,
.language-switch a:not(.is-active):focus {
  color: var(--yellow-strong);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.header-phone:hover,
.header-phone:focus {
  background: var(--yellow-strong);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(247, 198, 0, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  padding: 10px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  margin: 5px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04) brightness(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.9) 0%, rgba(17, 19, 21, 0.72) 43%, rgba(17, 19, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 19, 21, 0.42), rgba(17, 19, 21, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8a6a00;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.trust-section .eyebrow,
.form-section .eyebrow {
  color: var(--yellow-strong);
}

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

h1,
h2,
h3,
.btn,
.main-nav a,
.header-phone,
.quick-contact strong,
.trust-strip-inner strong,
.service-mark,
.price-row strong {
  font-family: var(--font-display);
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  color: var(--ink);
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 900;
  margin-bottom: 16px;
}

h3 {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.hero-services {
  display: inline-flex;
  align-items: center;
  max-width: min(100%, 680px);
  min-height: 36px;
  margin: -4px 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(247, 198, 0, 0.42);
  border-radius: 4px;
  background: rgba(17, 19, 21, 0.6);
  color: var(--yellow-strong);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.signature-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(100%, 680px);
  margin: 0 0 30px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.signature-line::before {
  content: "";
  flex: 0 0 40px;
  height: 4px;
  background: var(--yellow);
}

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

.hero-action-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--yellow-strong);
  border-color: var(--yellow-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(247, 198, 0, 0.22);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.section-light .btn-secondary,
.visual-proof-section .btn-secondary,
.work-section .btn-secondary,
.service-form .btn-secondary,
.contact-details .btn-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.section-light .btn-secondary:hover,
.section-light .btn-secondary:focus,
.visual-proof-section .btn-secondary:hover,
.visual-proof-section .btn-secondary:focus,
.work-section .btn-secondary:hover,
.work-section .btn-secondary:focus,
.service-form .btn-secondary:hover,
.service-form .btn-secondary:focus,
.contact-details .btn-secondary:hover,
.contact-details .btn-secondary:focus {
  background: var(--soft);
  border-color: #b9c1ca;
}

.btn:active,
.header-phone:active {
  transform: translateY(0);
}

.hero-facts {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts div {
  min-height: 112px;
  padding: 22px;
  background: rgba(17, 19, 21, 0.72);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--yellow-strong);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.12;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.quick-contact {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact-inner {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, 1fr);
}

.quick-contact a {
  min-height: 112px;
  padding: 24px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 160ms ease;
}

.quick-contact a:hover,
.quick-contact a:focus {
  background: rgba(255, 255, 255, 0.05);
}

.quick-contact a:last-child {
  border-right: 0;
}

.quick-contact span,
.quick-contact strong {
  display: block;
}

.quick-contact span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-contact strong {
  margin-top: 6px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
}

.quick-contact a:first-child strong {
  color: var(--yellow-strong);
}

.quick-contact a[href^="mailto"] strong {
  font-size: 18px;
  white-space: nowrap;
}

.trust-strip {
  background: var(--ink-2);
  color: var(--white);
  border-top: 1px solid rgba(247, 198, 0, 0.32);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip-inner div {
  min-height: 128px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip-inner div:last-child {
  border-right: 0;
}

.trust-strip-inner strong,
.trust-strip-inner span {
  display: block;
}

.trust-strip-inner strong {
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
}

.trust-strip-inner span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

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

.section-heading.compact {
  max-width: 700px;
}

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

.mobile-service-grid {
  display: none;
}

.service-card {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid #cfd6dd;
  border-radius: var(--radius);
  box-shadow: none;
  transition: border-color 180ms ease, border-top-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: color 160ms ease;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 2px;
  margin-left: 8px;
  background: var(--yellow);
  transition: width 160ms ease, background-color 160ms ease;
}

.text-link:hover,
.text-link:focus {
  color: #8a6a00;
}

.text-link:hover::after,
.text-link:focus::after {
  width: 26px;
  background: var(--yellow-strong);
}

.service-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
  font-weight: 900;
}

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

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

.visual-proof-grid figure {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
}

.visual-proof-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
}

.visual-proof-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(17, 19, 21, 0.9);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.season-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.season-cta span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.season-cta h3 {
  max-width: 740px;
  color: var(--white);
  margin-bottom: 8px;
}

.season-cta p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.season-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.trust-section,
.form-section {
  background: var(--ink);
  color: var(--white);
}

.trust-section h2,
.trust-section h3,
.form-section h2,
.form-section h3 {
  color: var(--white);
}

.trust-section p,
.form-section p {
  color: rgba(255, 255, 255, 0.76);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 56px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 460px minmax(0, 1fr);
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.process-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
}

.process-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(247, 198, 0, 0.7);
  border-radius: 50%;
  font-weight: 900;
}

.process-list span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0c0d0f;
  box-shadow: var(--shadow-soft);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.image-panel.map-panel .map-frame {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  min-height: 0;
  border: 0;
  background: #f2efe9;
  touch-action: pan-x pan-y pinch-zoom;
}

.image-panel.map-panel figcaption a {
  color: var(--white);
  font-weight: 900;
  text-underline-offset: 3px;
}

.image-panel.map-panel figcaption a:hover,
.image-panel.map-panel figcaption a:focus {
  color: var(--yellow-strong);
}

.image-panel-portrait img {
  aspect-ratio: 4 / 5;
  object-position: center 58%;
}

.image-panel figcaption {
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.local-section .image-panel figcaption {
  color: var(--white);
}

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

.review-card {
  min-height: 238px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.review-card span {
  display: inline-flex;
  min-width: 40px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 4px;
  background: var(--soft);
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 900;
}

.review-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.google-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 24px;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.google-proof span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.google-proof strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
}

.google-proof p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.proof-points li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.review-request {
  margin-top: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(17, 19, 21, 0.05);
}

.review-request strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.review-request p {
  max-width: 820px;
  margin: 8px 0 12px;
  color: var(--muted);
}

.review-request ul {
  display: grid;
  gap: 7px;
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.review-request li::marker {
  color: var(--yellow-strong);
}

.team-proof {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.team-proof figure {
  margin: 0;
  background: var(--ink);
}

.team-proof img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.06);
}

.team-proof > div {
  padding: 28px 28px 28px 0;
}

.team-proof span {
  display: block;
  margin-bottom: 8px;
  color: #8a6a00;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-proof h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.team-proof p {
  max-width: 780px;
  color: var(--muted);
}

.team-proof ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.team-proof li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-weight: 800;
}

.team-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 12px;
  height: 3px;
  background: var(--yellow);
}

.work-section {
  background: var(--soft);
}

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

.work-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.work-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
}

.work-card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  background: var(--ink);
  filter: saturate(0.92) contrast(1.06);
  transition: transform 240ms ease, filter 240ms ease;
}

.repair-story-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  min-height: 340px;
  background: var(--ink);
}

.repair-story-media figure,
.repair-photo-story figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.work-card .repair-story-media img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.work-card-featured .repair-story-media {
  min-height: 0;
  aspect-ratio: 21 / 6;
}

.work-card-featured .repair-story-media img {
  min-height: 0;
}

.repair-story-media figcaption,
.repair-photo-story figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 4px;
  background: rgba(17, 19, 21, 0.92);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.before-after-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}

.before-after-pair figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.before-after-pair img {
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.before-after-pair figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 4px;
  background: rgba(17, 19, 21, 0.92);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.work-card-body {
  padding: 24px;
}

.work-card-featured .work-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 760px;
}

.work-card-body span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8a6a00;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-card-body h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.work-card-body p {
  color: var(--muted);
  margin-bottom: 0;
}

.work-card-body .text-link {
  margin-top: 18px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.case-study-grid {
  display: grid;
  gap: 22px;
}

.case-study-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: linear-gradient(180deg, var(--white), #fbfcfd);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.case-study-card > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  background: var(--ink);
  filter: saturate(0.92) contrast(1.06);
}

.case-study-card .before-after-pair {
  min-height: 420px;
}

.case-study-card .before-after-pair img {
  height: 100%;
  min-height: 420px;
}

.repair-photo-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, 1fr);
  gap: 1px;
  min-height: 460px;
  background: var(--ink);
}

.repair-photo-story img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.case-study-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.case-study-body > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8a6a00;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study-body h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.case-study-body p {
  color: var(--muted);
}

.case-facts {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.case-facts div {
  display: grid;
  grid-template-columns: minmax(112px, 0.32fr) minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.case-facts dt {
  color: var(--ink);
  font-weight: 900;
}

.case-facts dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.case-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.price-tabs {
  background: linear-gradient(180deg, var(--white), #fbfcfd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #eef1f4;
  padding: 6px;
  gap: 6px;
}

.tab-button {
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink-2);
  font-weight: 900;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.tab-button.is-active {
  background: var(--ink);
  color: var(--white);
}

.tab-button:not(.is-active):hover,
.tab-button:not(.is-active):focus {
  background: var(--white);
  color: var(--ink);
}

.price-panel {
  padding: 18px;
  animation: formStepIn 180ms ease;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  border-radius: 6px;
  transition: background-color 160ms ease;
}

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

.price-row span {
  color: var(--ink-2);
  font-weight: 700;
}

.price-row strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 10px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 4px;
  font-weight: 900;
  white-space: nowrap;
}

.mobile-price-highlights {
  display: none;
}

.price-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.price-explain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.price-explain-grid div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
}

.price-explain-grid strong,
.price-explain-grid span {
  display: block;
}

.price-explain-grid strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.price-explain-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.seo-landing .price-reading-list {
  gap: 12px;
}

.seo-landing .price-reading-list li {
  min-height: 0;
  display: grid;
  align-items: start;
  gap: 5px;
  padding: 16px 18px 16px 54px;
  font-weight: 700;
}

.seo-landing .price-reading-list li::before {
  top: 21px;
  transform: none;
}

.price-reading-list strong,
.price-reading-list span {
  display: block;
}

.price-reading-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.price-reading-list span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.contact-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-mini span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-mini strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
}

.contact-mini p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 110px;
}

.form-quick-panel {
  display: grid;
  gap: 5px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(247, 198, 0, 0.32);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.form-quick-panel strong,
.form-quick-panel span {
  display: block;
}

.form-quick-panel strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.form-quick-panel span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1.45;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 3px;
  background: var(--yellow);
}

.form-intro {
  margin: 22px 0 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--yellow);
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 15px;
  font-weight: 700;
}

.form-intro strong {
  color: var(--white);
}

.form-service-shortcuts {
  margin-top: 16px;
}

.form-service-shortcuts a {
  min-height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 4px solid var(--yellow);
  box-shadow: 0 22px 56px rgba(17, 19, 21, 0.18);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.form-progress span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  border-radius: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.form-progress span.is-active {
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--yellow);
}

.form-step.is-active {
  animation: formStepIn 180ms ease;
}

@keyframes formStepIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.legend-note {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-requirements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin-bottom: 18px;
  padding: 10px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.form-requirements span {
  min-width: 0;
}

.form-requirements strong {
  color: var(--ink);
  font-weight: 900;
}

.form-requirements strong[aria-hidden="true"] {
  color: #b42318;
  font-size: 16px;
  line-height: 0;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--ink-2);
  font-weight: 800;
}

.field-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
}

.field-state {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1em;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.field-state.is-required {
  color: #b42318;
  font-size: 20px;
  font-weight: 900;
  transform: translateY(-0.08em);
}

.field-state.is-optional {
  background: transparent;
  color: var(--muted);
  border: 0;
  font-size: 12px;
  font-weight: 700;
}

.field-state.is-optional::before {
  content: "(";
}

.field-state.is-optional::after {
  content: ")";
}

.field-help {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field-help.is-invalid {
  color: #b42318;
  font-weight: 900;
}

.form-example {
  margin: -4px 0 18px;
  padding: 12px 14px;
  background: var(--yellow-soft);
  border-left: 4px solid var(--yellow);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.form-section .form-example {
  color: var(--ink-2);
}

.field-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  display: block;
  border: 1px solid #c9d0d8;
  border-radius: 4px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: vertical;
}

input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(247, 198, 0, 0.28);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #b42318;
  background: #fff7f6;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.14);
}

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

.form-step,
.form-grid,
.form-grid label {
  min-width: 0;
}

.file-input input {
  padding: 10px;
}

.file-input span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 4px solid var(--yellow);
  background: var(--soft);
  color: var(--ink-2) !important;
  font-size: 14px;
  font-weight: 800;
}

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-weight: 700;
}

.consent .field-label {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 4px;
}

.consent input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  box-sizing: border-box;
  display: block;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  padding: 0;
  margin: 2px 0 0;
  box-shadow: none;
  justify-self: start;
}

.consent > span {
  display: block;
  min-width: 0;
}

.consent a {
  color: var(--ink);
  font-weight: 900;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  min-height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.service-form .btn-secondary {
  color: var(--ink);
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: #6a4c00;
  font-weight: 800;
}

.form-reassure {
  margin: 22px 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 12px 13px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: background 0.15s ease, opacity 0.18s ease, transform 0.18s ease;
}

.whatsapp-fab span {
  font-size: 15px;
}

.whatsapp-fab:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
}

.whatsapp-fab:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

body.has-cookie-consent .whatsapp-fab {
  display: none;
}

body.is-whatsapp-ready:not(.is-whatsapp-visible) .whatsapp-fab,
body.is-inline-cta-visible .whatsapp-fab,
body.is-form-visible .whatsapp-fab {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

@media (max-width: 760px) {
  .whatsapp-fab {
    display: none;
  }
}

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

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

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.local-tags span,
.local-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
}

.local-tags a {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.local-tags a:hover,
.local-tags a:focus {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.local-argument-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.local-argument-grid div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.local-argument-grid strong,
.local-argument-grid span {
  display: block;
}

.local-argument-grid strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.local-argument-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

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

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

.answer-grid article {
  padding: 24px 4px 0;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--line);
  border-radius: 0;
  transition: border-color 180ms ease, transform 180ms ease;
}

.answer-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.answer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.answer-grid .text-link {
  margin-top: 14px;
}

.decision-section {
  background: var(--soft);
}

.decision-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 18px;
}

.decision-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
}

.decision-card-urgent {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.decision-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-card-urgent span {
  background: rgba(247, 198, 0, 0.14);
  color: var(--yellow-strong);
  border: 1px solid rgba(247, 198, 0, 0.4);
}

.decision-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.12;
}

.decision-card-urgent h3 {
  color: var(--white);
}

.decision-card p {
  color: var(--muted);
  font-weight: 700;
}

.decision-card-urgent p {
  color: rgba(255, 255, 255, 0.76);
}

.decision-card .btn,
.decision-card .text-link {
  margin-top: auto;
}

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

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

.article-grid-compact {
  margin-bottom: 24px;
}

.article-card {
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), #fbfcfd);
  border: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, border-top-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--ink);
  filter: saturate(0.92) contrast(1.06);
  transition: transform 240ms ease, filter 240ms ease;
}

.article-card div {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 24px;
}

.article-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #8a6a00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.article-card .text-link {
  margin-top: auto;
}

.advice-more {
  margin-top: 4px;
}

.article-content h2 {
  position: relative;
  margin-top: 34px;
  padding-left: 18px;
  font-size: 29px;
  text-wrap: balance;
}

.article-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.17em;
  bottom: 0.17em;
  width: 5px;
  background: var(--yellow);
  border-radius: 999px;
}

.article-content h2:first-of-type {
  margin-top: 0;
}

.article-callout {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(247, 198, 0, 0.38);
  border-top: 5px solid var(--yellow);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(247, 198, 0, 0.16), rgba(247, 198, 0, 0) 42%),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-callout h2 {
  margin-top: 0;
  padding-left: 0;
  color: var(--white);
  font-size: 24px;
}

.article-callout h2::before {
  display: none;
}

.article-callout ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.article-callout li::marker {
  color: var(--yellow-strong);
}

.article-callout p,
.page-main .article-callout p {
  color: rgba(255, 255, 255, 0.78);
}

.page-main .article-callout .related-links {
  margin-top: 16px;
}

.page-main .article-callout .related-links a {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.72);
  border-left-color: var(--yellow);
  border-left-width: 5px;
  text-decoration: none;
  box-shadow: none;
}

.page-main .article-callout .related-links a:hover,
.page-main .article-callout .related-links a:focus {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.article-related-small {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.article-related-small strong {
  color: var(--ink);
}

.article-related-small a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.article-related-small a:hover,
.article-related-small a:focus {
  color: #8a6a00;
}

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

.prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.prep-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.prep-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.prep-list div {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  background: var(--soft);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
}

.prep-list strong {
  color: var(--ink);
  font-size: 18px;
}

.prep-list span {
  color: var(--muted);
}

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

.faq-list details {
  background: linear-gradient(180deg, var(--white), #fbfcfd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(17, 19, 21, 0.05);
}

.faq-list summary {
  cursor: pointer;
  position: relative;
  padding: 18px 52px 18px 22px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--yellow-strong);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-list p a {
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: rgba(247, 198, 0, 0.8);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.faq-list p a:hover,
.faq-list p a:focus {
  color: var(--yellow-dark);
}

.contact-section {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-details {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-details address {
  font-style: normal;
  color: var(--ink-2);
  margin-bottom: 24px;
}

.contact-details dl {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
}

.contact-details div {
  display: grid;
  gap: 2px;
}

.contact-details dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.contact-details a:not(.btn) {
  text-decoration: none;
}

.contact-hint {
  margin: 0 0 24px;
  padding-left: 14px;
  border-left: 4px solid var(--yellow);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.map-wrap {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
}

.map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  background: #f2efe9;
  touch-action: pan-x pan-y pinch-zoom;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: min(420px, calc(100% - 36px));
  padding: 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: consentIn 180ms ease;
}

@keyframes consentIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.cookie-consent p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-consent a {
  color: var(--ink);
  font-weight: 900;
  text-underline-offset: 3px;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent .btn {
  flex: 1 1 150px;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.cookie-consent .btn-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.cookie-consent .btn-secondary:hover,
.cookie-consent .btn-secondary:focus {
  border-color: var(--ink);
}

.site-footer {
  background: #151a1f;
  color: rgba(255, 255, 255, 0.72);
  padding: 48px 0;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(17, 19, 21, 0.04), rgba(17, 19, 21, 0) 260px),
    var(--soft);
  padding: 150px 0 90px;
}

.content-page {
  background:
    linear-gradient(180deg, var(--white) 0, var(--soft) 620px, var(--white) 1180px);
}

.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), rgba(247, 198, 0, 0));
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.08) brightness(0.92);
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.98) 0%, rgba(17, 19, 21, 0.9) 45%, rgba(17, 19, 21, 0.42) 100%),
    linear-gradient(0deg, rgba(17, 19, 21, 0.72), rgba(17, 19, 21, 0.08)),
    linear-gradient(135deg, rgba(247, 198, 0, 0.2), rgba(247, 198, 0, 0) 34%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: 150px 0 84px;
}

.page-hero-content::before {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-bottom: 22px;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(247, 198, 0, 0.16);
}

.page-hero-content .eyebrow {
  color: var(--yellow-strong);
}

.page-hero-content h1 {
  margin-bottom: 18px;
  text-wrap: balance;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 34px;
  align-items: start;
}

.page-main,
.page-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.page-main {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
}

.page-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), rgba(247, 198, 0, 0));
}

.page-main p {
  color: var(--muted);
  font-size: 18px;
}

.page-main a:not(.btn):not(.text-link) {
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: rgba(247, 198, 0, 0.8);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.page-main a:not(.btn):not(.text-link):hover,
.page-main a:not(.btn):not(.text-link):focus {
  color: var(--yellow-dark);
}

.seo-landing {
  display: grid;
  gap: 24px;
}

.seo-landing h2 {
  max-width: 820px;
  margin: 12px 0 0;
  text-wrap: balance;
}

.seo-landing h2:first-of-type {
  margin-top: 0;
}

.price-anchor-section {
  display: grid;
  gap: 24px;
}

.seo-landing h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 23px;
  text-wrap: balance;
}

.seo-landing p {
  margin: 0;
}

.seo-landing ul,
.seo-landing ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  list-style: none;
}

.seo-landing ol {
  counter-reset: page-steps;
}

.seo-landing li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 16px 12px 50px;
  background: linear-gradient(180deg, var(--white), #fbfcfd);
  border: 1px solid #d9dee5;
  border-radius: 6px;
  font-weight: 750;
}

.seo-landing ul li::before,
.seo-landing ol li::before {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.seo-landing ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 4px solid var(--yellow);
  border-radius: 50%;
  background: var(--ink);
}

.seo-landing ol li {
  counter-increment: page-steps;
}

.seo-landing ol li::before {
  content: counter(page-steps);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--yellow-strong);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.seo-landing li::marker {
  color: var(--yellow-dark);
  font-weight: 900;
}

.seo-landing .faq-list {
  margin-top: 2px;
}

.seo-landing .faq-list details {
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 19, 21, 0.06);
}

.seo-landing .faq-list summary {
  font-size: 16px;
}

.seo-landing .faq-list p {
  font-size: 16px;
}

.aside-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 6px 0 12px;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.aside-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
}

.aside-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 3px;
  background: var(--yellow);
}

.page-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(247, 198, 0, 0.14), rgba(247, 198, 0, 0) 38%),
    var(--ink);
  border-color: rgba(247, 198, 0, 0.34);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.page-aside::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--yellow);
}

.page-aside h2 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 0;
  text-wrap: balance;
}

.page-aside p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 4px;
}

.page-aside .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.page-aside .btn-secondary:hover,
.page-aside .btn-secondary:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
}

.page-aside .btn-price-jump {
  color: var(--yellow-strong);
  background: rgba(247, 198, 0, 0.1);
  border-color: rgba(247, 198, 0, 0.72);
}

.page-aside .btn-price-jump:hover,
.page-aside .btn-price-jump:focus {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.page-aside .article-related-small {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.page-aside .article-related-small strong {
  color: var(--yellow-strong);
}

.page-aside .article-related-small a {
  color: rgba(255, 255, 255, 0.88);
}

.page-aside .article-related-small a:hover,
.page-aside .article-related-small a:focus {
  color: var(--yellow-strong);
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
}

.feature-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-left: 4px solid var(--yellow);
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.related-section {
  display: grid;
  gap: 18px;
}

.content-page > .section:has(.related-section) {
  background:
    linear-gradient(135deg, rgba(247, 198, 0, 0.16), rgba(247, 198, 0, 0) 34%),
    var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(247, 198, 0, 0.24);
}

.related-section .eyebrow {
  color: var(--yellow-strong);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.content-page > .section:has(.related-section) .related-links a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.related-links a:hover,
.related-links a:focus {
  background: var(--yellow);
  color: var(--ink);
}

.legal-content {
  max-width: 860px;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(180deg, var(--white), #fbfcfd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), rgba(247, 198, 0, 0));
}

.legal-content h1 {
  color: var(--ink);
  font-size: 44px;
}

.legal-content h2 {
  margin-top: 30px;
  font-size: 24px;
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
}

.legal-content a {
  color: var(--ink);
  font-weight: 900;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
}

.footer-inner img {
  width: 146px;
  margin-bottom: 14px;
}

.footer-inner p {
  max-width: 320px;
  margin-bottom: 0;
}

.footer-inner strong,
.footer-inner span,
.footer-inner a,
.footer-link-button {
  display: block;
}

.footer-inner strong {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-inner a,
.footer-link-button {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-top: 5px;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.footer-inner a:hover,
.footer-inner a:focus,
.footer-link-button:hover,
.footer-link-button:focus {
  color: var(--yellow-strong);
}

.mobile-sticky-cta {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .service-card:focus-within,
  .article-card:hover,
  .article-card:focus-within,
  .answer-grid article:hover,
  .work-card:hover,
  .work-card:focus-within,
  .price-tabs:hover {
    transform: translateY(-3px);
    border-color: #c9d0d8;
    box-shadow: 0 18px 36px rgba(17, 19, 21, 0.08);
  }

  .service-card:hover,
  .service-card:focus-within {
    border-top-color: var(--yellow);
  }

  .article-card:hover,
  .article-card:focus-within {
    border-top-color: var(--yellow);
  }

  .answer-grid article:hover {
    box-shadow: none;
    border-top-color: var(--ink);
  }

  .article-card:hover img,
  .article-card:focus-within img,
  .work-card:hover img,
  .work-card:focus-within img {
    transform: scale(1.025);
    filter: saturate(0.98) contrast(1.08);
  }

  .price-row:hover {
    background: var(--soft);
  }
}

.mobile-only,
.price-more,
.work-more {
  display: none;
}

.mobile-collapse > summary {
  display: none;
}

.mobile-collapse.compact-drawer {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mobile-collapse.compact-drawer > summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.25;
}

.mobile-collapse.compact-drawer > summary::-webkit-details-marker {
  display: none;
}

.mobile-collapse.compact-drawer > summary::after {
  content: "+";
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
}

.mobile-collapse.compact-drawer[open] > summary {
  border-bottom: 1px solid var(--line);
}

.mobile-collapse.compact-drawer[open] > summary::after {
  content: "−";
}

.compact-drawer.mobile-link-drawer .related-links,
.compact-drawer.problem-drawer .answer-grid {
  margin-top: 0;
  padding: 18px;
}

.proof-drawer {
  margin-top: 22px;
}

.proof-drawer-body,
.faq-more-body {
  display: grid;
  gap: 18px;
}

.faq-list > .faq-more-drawer {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.faq-list > .faq-more-drawer > summary {
  display: none;
}

.answer-grid-extra {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .header-phone {
    justify-self: end;
  }

  .header-actions {
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    max-height: 0;
    overflow: hidden;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    max-height: calc(100vh - 104px);
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px;
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(247, 198, 0, 0.7);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 700px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .trust-strip-inner,
  .service-grid,
  .answer-grid,
  .decision-grid,
  .prep-grid,
  .review-grid,
  .price-explain-grid,
  .google-proof,
  .contact-mini,
  .season-cta,
  .team-proof,
  .work-grid,
  .form-layout,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .proof-actions,
  .contact-mini-actions,
  .season-cta-actions {
    justify-content: flex-start;
  }

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

  .team-proof > div {
    padding: 24px;
  }

  .team-proof img {
    min-height: 260px;
  }

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

  .quick-contact a {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .quick-contact a:last-child {
    border-right: 0;
  }

  .trust-strip-inner div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip-inner div:last-child {
    border-bottom: 0;
  }

  .work-card-featured {
    grid-template-columns: 1fr;
  }

  .repair-story-media {
    min-height: 300px;
  }

  .work-card .repair-story-media img {
    min-height: 300px;
  }

  .case-study-card {
    grid-template-columns: 1fr;
  }

  .case-study-card > img,
  .case-study-card .before-after-pair,
  .case-study-card .before-after-pair img,
  .repair-photo-story {
    min-height: 320px;
  }

  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
  }

  .page-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .page-aside {
    position: static;
  }

  .form-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  main#main:not(.content-page) {
    display: flex;
    flex-direction: column;
  }

  main#main:not(.content-page) #top {
    order: 1;
  }

  main#main:not(.content-page) .quick-contact {
    order: 2;
  }

  main#main:not(.content-page) #sluzby {
    order: 3;
  }

  main#main:not(.content-page) #foto-z-dilny {
    order: 4;
  }

  main#main:not(.content-page) .answer-section {
    order: 5;
  }

  main#main:not(.content-page) .decision-section {
    order: 6;
  }

  main#main:not(.content-page) #postup {
    order: 7;
  }

  main#main:not(.content-page) #reference {
    order: 8;
  }

  main#main:not(.content-page) #cenik {
    order: 9;
  }

  main#main:not(.content-page) #objednavka {
    order: 10;
  }

  main#main:not(.content-page) #ukazky-prace {
    order: 11;
  }

  main#main:not(.content-page) #lokality {
    order: 12;
  }

  main#main:not(.content-page) #faq {
    order: 13;
  }

  main#main:not(.content-page) #poradna {
    order: 14;
  }

  main#main:not(.content-page) #hledane-sluzby {
    order: 15;
  }

  main#main:not(.content-page) #poradna {
    display: none;
  }

  main#main:not(.content-page) #hledane-sluzby {
    display: none;
  }

  main#main:not(.content-page) .prep-section {
    order: 16;
    display: none;
  }

  main#main:not(.content-page) #kontakt {
    order: 17;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand img {
    width: 112px;
  }

  .site-header .header-actions {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .language-switch {
    min-height: 40px;
  }

  .language-switch a {
    min-width: 38px;
  }

  .main-nav .mobile-language-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 6px 6px 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .main-nav .mobile-language-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
  }

  .main-nav .mobile-language-links a.is-active {
    background: var(--yellow);
    color: var(--ink);
  }

  .trust-strip {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .page-hero {
    min-height: 540px;
  }

  .hero-content {
    padding: 88px 0 28px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 19, 21, 0.92) 0%, rgba(17, 19, 21, 0.74) 58%, rgba(17, 19, 21, 0.26) 100%),
      linear-gradient(0deg, rgba(17, 19, 21, 0.38), rgba(17, 19, 21, 0.04));
  }

  .page-hero-content {
    padding: 112px 0 56px;
  }

  .page-hero-content::before {
    width: 54px;
    height: 4px;
    margin-bottom: 16px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero h1 {
    max-width: 320px;
    margin-bottom: 12px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-lead {
    max-width: 320px;
    font-size: 15px;
    line-height: 1.42;
    margin-bottom: 12px;
  }

  .hero-services {
    max-width: 320px;
    min-height: 32px;
    margin: 0 0 12px;
    padding: 6px 8px;
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-action-note {
    display: none;
  }

  .signature-line {
    max-width: 320px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.35;
  }

  .signature-line::before {
    flex-basis: 28px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 12px 16px;
  }

  .hero-actions {
    width: min(100%, 360px);
  }

  .hero-actions .btn {
    flex: 1 1 150px;
  }

  .hero-actions .btn[href="#cenik"] {
    display: none;
  }

  .hero-facts {
    width: min(100%, 360px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 12px;
    background: transparent;
    border: 0;
  }

  .hero-facts div {
    min-height: 0;
    padding: 8px 10px;
    background: rgba(17, 19, 21, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
  }

  .hero-facts div:nth-child(n+4) {
    display: none;
  }

  .hero-facts strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .hero-facts span {
    display: none;
  }

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

  .quick-contact a {
    min-height: 78px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 14px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .quick-contact a:nth-child(3n),
  .quick-contact a:last-child {
    border-right: 0;
  }

  .quick-contact a:nth-last-child(-n+3) {
    border-bottom: 0;
  }

  .quick-contact span {
    font-size: 11px;
    line-height: 1;
  }

  .quick-contact strong {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.2;
    overflow-wrap: normal;
    color: var(--white);
  }

  .quick-contact a[href^="mailto"] strong {
    font-size: 13px;
  }

  .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .trust-strip-inner div {
    min-height: 0;
    padding: 11px 14px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
  }

  .trust-strip-inner div:nth-child(n+3) {
    display: none;
  }

  .trust-strip-inner strong {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.2;
  }

  .trust-strip-inner strong::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 8px;
    height: 2px;
    background: var(--yellow);
  }

  .trust-strip-inner span {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .content-page > .section:has(.related-section) {
    padding: 52px 0 76px;
  }

  .page-main,
  .page-aside {
    padding: 20px;
  }

  .seo-landing {
    gap: 18px;
  }

  .seo-landing h3 {
    font-size: 20px;
  }

  .seo-landing p,
  .page-main p {
    font-size: 16px;
  }

  .seo-landing li {
    min-height: 46px;
    padding: 11px 12px 11px 42px;
    font-size: 15px;
  }

  .seo-landing .price-reading-list {
    gap: 10px;
  }

  .seo-landing .price-reading-list li {
    padding: 14px 14px 14px 44px;
  }

  .seo-landing .price-reading-list li::before {
    left: 14px;
    top: 19px;
  }

  .price-reading-list strong {
    font-size: 17px;
  }

  .price-reading-list span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.42;
  }

  .seo-landing ul li::before,
  .seo-landing ol li::before {
    left: 12px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

	  .section-heading p:not(.eyebrow),
	  .local-section p:not(.eyebrow) {
	    font-size: 16px;
	  }

	  .answer-grid,
  .article-grid,
	  .work-grid,
	  .prep-grid {
	    gap: 12px;
	  }

	  .answer-grid article,
  .article-card div,
	  .prep-list div {
	    padding: 16px;
	  }

  .answer-grid article {
    padding: 16px 0 0;
  }

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

  .article-card img {
    height: 190px;
  }

  .article-card div {
    min-height: auto;
  }

  main#main:not(.content-page) #poradna .article-card:nth-child(n+2),
  main#main:not(.content-page) #objednavka .form-copy .form-intro,
  main#main:not(.content-page) #objednavka .form-copy .check-list,
  main#main:not(.content-page) #objednavka .form-service-shortcuts {
    display: none;
  }

  main#main:not(.content-page) .season-cta,
  main#main:not(.content-page) .decision-card:nth-child(n+3),
  main#main:not(.content-page) .decision-card p,
  main#main:not(.content-page) .answer-grid-primary p,
  main#main:not(.content-page) .review-card p,
  main#main:not(.content-page) #situace .section-heading p:not(.eyebrow),
  main#main:not(.content-page) .decision-section .section-heading p:not(.eyebrow),
  main#main:not(.content-page) #reference .section-heading p:not(.eyebrow),
  main#main:not(.content-page) #cenik .section-heading p:not(.eyebrow),
  main#main:not(.content-page) #faq .section-heading p:not(.eyebrow),
  main#main:not(.content-page) #ukazky-prace .work-more,
  main#main:not(.content-page) #ukazky-prace .section-heading p:not(.eyebrow),
  main#main:not(.content-page) #lokality .image-panel,
  main#main:not(.content-page) #lokality .split-layout > div > p:not(.eyebrow),
  main#main:not(.content-page) #objednavka .form-copy > p:not(.eyebrow),
  main#main:not(.content-page) #objednavka .form-requirements,
  main#main:not(.content-page) #objednavka .form-progress,
  main#main:not(.content-page) #objednavka .legend-note,
  main#main:not(.content-page) #objednavka .field-help,
  main#main:not(.content-page) #objednavka .form-example,
  main#main:not(.content-page) #objednavka .form-reassure,
  main#main:not(.content-page) #objednavka .mobile-optional-field,
  main#main:not(.content-page) #cenik .contact-mini,
  main#main:not(.content-page) #kontakt .contact-hint {
    display: none;
  }

  main#main:not(.content-page) .section-heading p:not(.eyebrow) {
    line-height: 1.45;
  }

  main#main:not(.content-page) .answer-grid-primary article,
  main#main:not(.content-page) .review-card {
    min-height: 0;
    padding: 14px 16px;
  }

  main#main:not(.content-page) .answer-grid-primary h3,
  main#main:not(.content-page) .review-card h3 {
    margin-bottom: 0;
  }

  main#main:not(.content-page) .review-grid {
    gap: 8px;
  }

  main#main:not(.content-page) .review-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
  }

  main#main:not(.content-page) .review-card span {
    width: 34px;
    height: 34px;
    margin: 0;
    font-size: 14px;
  }

  main#main:not(.content-page) .review-card h3 {
    font-size: 17px;
    line-height: 1.2;
  }

  main#main:not(.content-page) .answer-grid-primary .text-link {
    margin-top: 8px;
  }

  main#main:not(.content-page) .decision-grid {
    gap: 10px;
  }

  main#main:not(.content-page) .decision-card {
    min-height: 0;
    padding: 16px;
  }

  main#main:not(.content-page) .decision-card h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  main#main:not(.content-page) #objednavka .form-quick-panel {
    padding: 12px 14px;
  }

  main#main:not(.content-page) #objednavka .form-quick-panel span {
    font-size: 14px;
    line-height: 1.35;
  }

  main#main:not(.content-page) #foto-z-dilny {
    padding: 34px 0;
  }

  main#main:not(.content-page) #foto-z-dilny .section-heading {
    margin-bottom: 16px;
  }

  main#main:not(.content-page) #foto-z-dilny .section-heading p:not(.eyebrow) {
    display: none;
  }

  .visual-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .visual-proof-grid figure,
  .visual-proof-grid img {
    min-height: 0;
  }

  .visual-proof-grid figure {
    aspect-ratio: 1 / 1.02;
  }

  .visual-proof-grid figcaption {
    left: 6px;
    right: 6px;
    bottom: 6px;
    min-height: 0;
    padding: 5px 6px;
    font-size: 11px;
    line-height: 1.15;
  }

  main#main:not(.content-page) #foto-z-dilny .section-actions {
    margin-top: 12px;
  }

  main#main:not(.content-page) #foto-z-dilny .btn {
    width: 100%;
  }

  main#main:not(.content-page) #ukazky-prace .work-grid {
    display: grid;
    gap: 12px;
  }

  main#main:not(.content-page) #ukazky-prace .work-card-featured {
    display: grid;
  }

  main#main:not(.content-page) #ukazky-prace .work-card-featured .work-card-body {
    padding: 16px;
  }

  main#main:not(.content-page) #ukazky-prace .work-card-body p {
    font-size: 15px;
    line-height: 1.45;
  }

  .work-mobile-link {
    margin-top: 12px;
    width: 100%;
  }

  .article-content h2 {
    font-size: 23px;
    padding-left: 14px;
  }

  .article-callout {
    padding: 18px;
  }

	  .answer-grid h3 {
	    font-size: 18px;
	  }

	  .work-card img,
	  .before-after-pair img {
	    height: 230px;
	  }

  .repair-story-media,
  .repair-photo-story {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .work-card-featured .repair-story-media {
    aspect-ratio: auto;
  }

  #ukazky-prace .work-card-featured .repair-story-media {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .work-card .repair-story-media img,
  .repair-photo-story img {
    height: 220px;
    min-height: 0;
  }

  #ukazky-prace .work-card-featured .repair-story-media img {
    height: 96px;
  }

  #ukazky-prace .work-card-featured .repair-story-media figcaption {
    min-height: 24px;
    padding: 5px 4px;
    font-size: 11px;
  }

  .case-study-body {
    padding: 20px;
  }

  .case-study-card > img,
  .case-study-card .before-after-pair,
  .case-study-card .before-after-pair img {
    min-height: 260px;
  }

  .case-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .related-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }

  .related-links a {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    justify-content: flex-start;
    padding: 12px 14px;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
    font-size: 15px;
  }

  .article-callout[data-problem-links] {
    padding: 20px;
  }

  .article-callout[data-problem-links] h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .article-callout[data-problem-links] p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .page-main .article-callout .related-links {
    margin-top: 12px;
  }

  .article-content .related-links a {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
    border-left-color: var(--yellow);
    border-left-width: 5px;
    box-shadow: var(--shadow-soft);
  }

  .article-content .related-links a:hover,
  .article-content .related-links a:focus {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
  }

	  .work-card-body {
	    padding: 18px;
	  }

  .work-card-body h3 {
    font-size: 20px;
  }

  .google-proof {
    gap: 14px;
    padding: 18px;
  }

  .google-proof strong {
    font-size: 20px;
  }

  .google-proof .btn {
    width: 100%;
  }

  .season-cta {
    padding: 18px;
    gap: 16px;
  }

  .season-cta h3,
  .team-proof h3 {
    font-size: 22px;
  }

  .season-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .season-cta-actions .btn {
    width: 100%;
  }

  .team-proof {
    gap: 0;
  }

  .team-proof img {
    min-height: 220px;
  }

  .team-proof > div {
    padding: 18px;
  }

  .review-request {
    padding: 16px;
  }

  .review-request strong {
    font-size: 18px;
  }

  .contact-mini {
    padding: 18px;
  }

  .contact-mini strong {
    font-size: 20px;
  }

  .contact-mini-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .contact-mini-actions .btn {
    width: 100%;
  }

  .prep-grid h2 {
    font-size: 26px;
  }

	  .prep-grid p {
	    font-size: 16px;
	  }

	  .service-card {
    min-height: auto;
    padding: 14px;
  }

  .mobile-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
  }

  .mobile-service-grid a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--ink);
    border-radius: 4px;
    background: var(--ink);
    color: var(--white);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  .mobile-service-grid a:nth-child(5) {
    grid-column: 1 / -1;
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
  }

  .service-card p,
  .season-cta p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  .service-card.is-mobile-extra {
    display: none;
  }

  .service-mark {
    display: none;
  }

  .service-card h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .service-card .text-link {
    min-height: 34px;
    margin-top: 0;
    font-size: 14px;
  }

  .mobile-only {
    display: block;
  }

  .mobile-collapse {
    margin-top: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .mobile-collapse > summary {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    color: var(--ink);
    cursor: pointer;
    font-weight: 900;
    line-height: 1.2;
  }

  .mobile-collapse > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-collapse > summary::after {
    content: "+";
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 18px;
    line-height: 1;
  }

  .mobile-collapse[open] > summary {
    border-bottom: 1px solid var(--line);
  }

  .mobile-collapse[open] > summary::after {
    content: "-";
  }

  .mobile-link-drawer .related-links,
  .service-detail-drawer .service-grid,
  .problem-drawer .answer-grid,
  .price-drawer-body,
  .local-drawer .mobile-collapse-body,
  .proof-drawer .proof-drawer-body,
  .faq-more-drawer .faq-more-body {
    padding: 14px;
  }

  .problem-drawer .answer-grid,
  .answer-grid-extra {
    margin-top: 0;
  }

  .faq-list > .faq-more-drawer {
    margin-top: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .faq-list > .faq-more-drawer > summary {
    display: flex;
  }

  .faq-list > .faq-more-drawer > summary::after {
    position: static;
    inset: auto;
    transform: none;
    border-radius: 4px;
    background: var(--yellow);
    color: var(--ink);
    font-family: inherit;
  }

  .faq-list > .faq-more-drawer[open] > summary {
    border-bottom: 1px solid var(--line);
  }

  .faq-more-body {
    gap: 10px;
  }

  .faq-more-body details {
    box-shadow: none;
  }

  .process-drawer {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
  }

  .process-drawer > summary {
    color: var(--white);
  }

  .process-drawer[open] > summary {
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  .process-drawer .split-layout {
    gap: 18px;
    padding: 16px;
  }

  .process-drawer .image-panel {
    display: none;
  }

  .mobile-price-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
  }

  .mobile-price-highlights div {
    min-height: 58px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--yellow);
    border-radius: var(--radius);
    background: var(--white);
  }

  .mobile-price-highlights span,
  .mobile-price-highlights strong {
    display: block;
  }

  .mobile-price-highlights span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-price-highlights strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.1;
  }

  .price-drawer .price-tabs:not(.is-expanded) .price-panel .price-row:nth-of-type(n+5) {
    display: grid;
  }

  .price-drawer .price-more {
    display: none;
  }

  .local-drawer .local-tags {
    margin-top: 0;
  }

  .mobile-expand {
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .mobile-expand summary {
    cursor: pointer;
    padding: 16px 18px;
    color: var(--ink);
    font-weight: 900;
  }

  .mobile-expand-list {
    display: grid;
    gap: 1px;
    padding: 0 18px 18px;
  }

  .mobile-expand-list a {
    padding: 10px 0;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
  }

  .tab-list,
  .form-grid,
  .form-requirements,
  .form-progress,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .field-label {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px;
  }

  .price-tabs:not(.is-expanded) .price-panel .price-row:nth-of-type(n+5) {
    display: none;
  }

  .price-more {
    width: calc(100% - 36px);
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 18px 18px;
    border: 1px solid var(--ink);
    border-radius: 4px;
    background: var(--ink);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
  }

  #ukazky-prace .work-grid:not(.is-expanded) .work-card:nth-child(n+2) {
    display: none;
  }

  .work-more {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    border: 1px solid var(--ink);
    border-radius: 4px;
    background: var(--ink);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
  }

  .service-form,
  .contact-details {
    padding: 18px;
  }

  .decision-card {
    min-height: auto;
    padding: 20px;
  }

  .decision-card h3 {
    font-size: 21px;
  }

  .decision-card .btn,
  .decision-card .text-link {
    margin-top: 12px;
  }

  .service-form {
    overflow: hidden;
  }

  .form-layout {
    gap: 14px;
  }

  .form-copy .check-list {
    margin-top: 18px;
  }

  .form-copy .check-list li:nth-child(n+2) {
    display: none;
  }

  .form-progress span {
    min-height: 34px;
    font-size: 12px;
  }

  legend {
    margin-bottom: 10px;
    font-size: 20px;
  }

  label {
    margin-bottom: 10px;
  }

  textarea {
    min-height: 88px;
  }

  input:not([type="checkbox"]):not([type="radio"]),
  select,
  textarea {
    min-height: 42px;
    font-size: 16px;
  }

  input[type="date"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-grid {
    gap: 16px;
  }

  .map-wrap {
    min-height: 0;
    height: 320px;
  }

  .map-frame {
    height: 320px;
    min-height: 0;
  }

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top-width: 3px;
    max-height: 34vh;
    overflow: auto;
  }

  body.is-form-visible .cookie-consent {
    top: 76px;
    bottom: auto;
    max-height: 34vh;
  }

  .cookie-consent h2 {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .cookie-consent p {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cookie-consent .btn {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .form-actions .btn {
    width: 100%;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(17, 19, 21, 0.94);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .mobile-sticky-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--yellow);
    color: var(--ink);
  }

  .mobile-sticky-cta a:last-child {
    background: transparent;
    color: var(--white);
  }

  .mobile-sticky-cta a:active {
    transform: scale(0.98);
  }

  body.is-mobile-cta-ready:not(.is-mobile-cta-visible) .mobile-sticky-cta {
    transform: translateY(calc(100% + 20px));
    pointer-events: none;
  }

  body.is-form-visible .mobile-sticky-cta {
    transform: translateY(calc(100% + 20px));
    pointer-events: none;
  }

  body.is-inline-cta-visible .mobile-sticky-cta {
    transform: translateY(calc(100% + 20px));
    pointer-events: none;
  }

  body.has-cookie-consent .mobile-sticky-cta {
    transform: translateY(calc(100% + 20px));
    pointer-events: none;
  }

  body.is-nav-open .mobile-sticky-cta {
    transform: translateY(calc(100% + 20px));
    pointer-events: none;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 380px) {
  .quick-contact a[href^="mailto"] strong {
    font-size: 11px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-content {
    padding-top: 88px;
  }

  h1 {
    font-size: 30px;
  }
}

/* 2026 trust-first redesign: visual direction selected from the mobile concept. */
:root {
  --yellow: #f5bf19;
  --yellow-strong: #ffd24a;
  --yellow-soft: #fff4c7;
  --yellow-dark: #855d00;
  --ink: #19191a;
  --ink-2: #2b2a29;
  --muted: #625f5a;
  --line: #dedad2;
  --soft: #f3f1ec;
  --white: #fffefb;
  --warm: #f8f6f1;
  --shadow: 0 18px 48px rgba(25, 25, 26, 0.12);
  --shadow-soft: 0 10px 30px rgba(25, 25, 26, 0.06);
  --shadow-lift: 0 20px 50px rgba(25, 25, 26, 0.1);
  --radius: 4px;
  --section-pad: 92px;
}

body {
  background: var(--warm);
  color: var(--ink);
}

.site-header {
  background: rgba(24, 24, 25, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
}

.header-inner {
  min-height: 78px;
}

.brand img {
  width: 146px;
}

.main-nav {
  gap: 24px;
}

.main-nav a {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.nav-toggle {
  background-color: transparent;
  background-image: url("../icons/list.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  filter: invert(1);
}

.nav-toggle[aria-expanded="true"] {
  background-color: rgba(255, 255, 255, 0.08);
  background-image: url("../icons/x-lg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px 26px;
}

.nav-toggle span:not(.sr-only) {
  display: none;
}

.header-phone,
.btn {
  border-radius: 3px;
}

.mobile-heading-break {
  display: none;
}

.btn {
  min-height: 52px;
  padding: 14px 22px;
}

.section-light,
.contact-section {
  background: var(--soft);
}

.visual-proof-section,
.work-section,
.local-section,
.advice-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--yellow-dark);
  letter-spacing: 0.04em;
}

.service-card,
.answer-grid article,
.work-card,
.article-card,
.price-tabs,
.contact-details,
.page-main,
.page-aside,
.mobile-collapse,
.mobile-expand {
  border-radius: 3px;
  box-shadow: none;
}

.service-card,
.answer-grid article,
.article-card {
  border-color: var(--line);
}

.quick-contact {
  display: none;
}

/* Homepage: light copy-first hero followed by the authentic workshop image. */
.home-redesign .hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  grid-template-areas: "content image";
  align-items: stretch;
  padding-top: 78px;
  overflow: hidden;
  background: var(--warm);
  color: var(--ink);
}

.home-redesign .hero-image {
  position: static;
  grid-area: image;
  width: 100%;
  height: 100%;
  min-height: 642px;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.92) contrast(1.03);
}

.home-redesign .hero-shade {
  display: none;
}

.home-redesign .hero-content {
  position: static;
  grid-area: content;
  z-index: auto;
  width: min(590px, calc(100% - 72px));
  margin: 0 auto;
  padding: 78px 0 64px;
  align-self: center;
}

.home-redesign .hero .eyebrow {
  position: relative;
  margin-bottom: 26px;
  padding-top: 22px;
  color: var(--yellow-dark);
  font-size: 14px;
}

.home-redesign .hero .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 62px;
  height: 5px;
  background: var(--yellow);
}

.home-redesign .hero h1 {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(52px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.home-redesign .hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: #4e4c49;
  font-size: 21px;
  line-height: 1.48;
}

.home-redesign .hero-actions {
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-redesign .hero-actions .btn {
  width: 100%;
  min-height: 60px;
  gap: 14px;
  border-width: 2px;
  font-size: 18px;
}

.home-redesign .hero-actions .btn::before,
.home-redesign .hero-action-note::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.home-redesign .hero-actions .btn[href^="tel:"]::before {
  background-image: url("../icons/telephone-fill.svg");
}

.home-redesign .hero-actions .btn[href="#objednavka"]::before {
  background-image: url("../icons/chat.svg");
}

.home-redesign .hero-actions .btn-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.home-redesign .hero-actions .btn-secondary:hover,
.home-redesign .hero-actions .btn-secondary:focus {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.home-redesign .hero-actions .btn-secondary:hover::before,
.home-redesign .hero-actions .btn-secondary:focus::before {
  filter: invert(1);
}

.home-redesign .hero-action-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.home-redesign .hero-action-note::before {
  width: 20px;
  height: 20px;
  background-image: url("../icons/clock.svg");
  opacity: 0.72;
}

.home-redesign .hero-services {
  display: block;
  min-height: 0;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.home-redesign .trust-strip {
  padding: 64px 0;
  background: var(--white);
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
}

.home-redesign .trust-strip h2 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 16px;
  font-size: 32px;
}

.home-redesign .trust-strip h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 4px;
  background: var(--yellow);
}

.home-redesign .trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.home-redesign .trust-strip-inner div {
  min-height: 126px;
  padding: 24px 24px 20px 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.home-redesign .trust-strip-inner div + div {
  padding-left: 24px;
}

.home-redesign .trust-strip-inner div:last-child {
  border-right: 0;
}

.home-redesign .trust-strip-inner strong {
  color: var(--ink);
  font-size: 19px;
}

.home-redesign .trust-strip-inner span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.home-redesign #sluzby {
  background: var(--warm);
}

/* Shared subpages: the same light editorial language as the chosen homepage. */
.content-page {
  background: var(--warm);
}

.content-page .page-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  grid-template-areas: "content image";
  align-items: stretch;
  padding-top: 78px;
  background: var(--warm);
  color: var(--ink);
}

.content-page .page-hero::after,
.content-page .page-hero-shade {
  display: none;
}

.content-page .page-hero-image {
  position: static;
  grid-area: image;
  width: 100%;
  height: 100%;
  min-height: 562px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.content-page .page-hero-content {
  position: static;
  grid-area: content;
  z-index: auto;
  width: min(620px, calc(100% - 72px));
  max-width: none;
  margin: 0 auto;
  padding: 72px 0 60px;
  align-self: center;
}

.content-page .page-hero-content::before {
  width: 68px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 0;
  box-shadow: none;
}

.content-page .page-hero-content .eyebrow {
  color: var(--yellow-dark);
}

.content-page .page-hero-content h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.content-page .page-hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.content-page .page-hero .btn-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.page-main,
.page-aside {
  border-color: var(--line);
  background: var(--white);
}

.page-main::before,
.page-aside::before {
  height: 4px;
  background: var(--yellow);
}

.page-aside {
  color: var(--ink);
  box-shadow: none;
}

.page-aside h2,
.page-aside p,
.aside-list {
  color: var(--ink);
}

.page-aside p {
  color: var(--muted);
}

.page-aside .btn-secondary,
.page-aside .btn-price-jump {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.page-aside .article-related-small {
  border-top-color: var(--line);
}

.page-aside .article-related-small strong,
.page-aside .article-related-small a {
  color: var(--ink);
}

.seo-landing ul,
.seo-landing ol {
  display: block;
  padding-left: 1.35rem;
  list-style-position: outside;
}

.seo-landing ul {
  list-style-type: disc;
}

.seo-landing ol {
  list-style-type: decimal;
}

.seo-landing li {
  display: list-item;
  min-height: 0;
  margin: 0;
  padding: 12px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-weight: 650;
}

.seo-landing ul li::before,
.seo-landing ol li::before {
  display: none;
}

.site-footer {
  background: #19191a;
}

.mobile-sticky-cta {
  border-radius: 4px;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 128px;
  }

  .home-redesign .hero,
  .content-page .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    padding-top: 72px;
  }

  .home-redesign .hero-content,
  .content-page .page-hero-content {
    width: min(540px, calc(100% - 48px));
  }

  .home-redesign .hero h1,
  .content-page .page-hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 760px) {
  :root {
    --section-pad: 58px;
  }

  .container {
    width: min(100% - 36px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 122px;
  }

  .nav-toggle {
    border: 0;
    background-size: 34px 34px;
  }

  .main-nav {
    top: 76px;
    border-radius: 3px;
  }

  .home-redesign .hero,
  .content-page .page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "image";
    padding-top: 68px;
  }

  .home-redesign .hero-content,
  .content-page .page-hero-content {
    width: min(100% - 44px, 560px);
    padding: 25px 0 8px;
  }

  .home-redesign .hero .eyebrow {
    margin-bottom: 18px;
    padding-top: 14px;
    font-size: 13px;
  }

  .home-redesign .hero h1,
  .content-page .page-hero-content h1 {
    margin-bottom: 14px;
    font-size: clamp(31px, 9.2vw, 36px);
    line-height: 0.99;
  }

  .home-redesign .mobile-heading-break {
    display: block;
  }

  .home-redesign .hero-lead,
  .content-page .page-hero-content p:not(.eyebrow) {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.36;
  }

  .home-redesign .hero-actions .btn {
    min-height: 42px;
    padding: 8px 16px;
    font-size: 16px;
  }

  .home-redesign .hero-actions {
    gap: 7px;
  }

  .home-redesign .hero-action-note {
    margin-top: 10px;
    font-size: 15px;
  }

  .home-redesign .hero-services {
    display: none;
  }

  .home-redesign .hero-image {
    min-height: 0;
    height: clamp(226px, 60vw, 260px);
    object-position: 62% center;
  }

  .content-page .page-hero-image {
    min-height: 0;
    height: clamp(250px, 72vw, 340px);
  }

  .content-page .page-hero-content::before {
    margin-bottom: 20px;
  }

  .content-page .page-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .content-page .page-hero .hero-actions .btn {
    width: 100%;
  }

  .home-redesign main#main .trust-strip {
    order: 2;
    display: block;
    padding: 24px 0;
  }

  .home-redesign .trust-strip h2 {
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 23px;
  }

  .home-redesign .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .home-redesign .trust-strip-inner div,
  .home-redesign .trust-strip-inner div + div {
    position: relative;
    min-height: 40px;
    display: grid;
    align-content: center;
    padding: 9px 42px 9px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-redesign .trust-strip-inner strong {
    padding-left: 0;
    color: var(--ink);
    font-size: 15px;
  }

  .home-redesign .trust-strip-inner strong::before {
    display: none;
  }

  .home-redesign .trust-strip-inner strong::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 18px;
    height: 18px;
    background: url("../icons/chevron-right.svg") center / contain no-repeat;
    transform: translateY(-50%);
    opacity: 0.72;
  }

  .home-redesign .trust-strip-inner span {
    display: none;
  }

  .home-redesign main#main #sluzby {
    order: 3;
  }

  .home-redesign #sluzby .section-heading {
    margin-bottom: 20px;
  }

  .home-redesign .mobile-service-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--line);
  }

  .home-redesign .mobile-service-grid a,
  .home-redesign .mobile-service-grid a:nth-child(5) {
    position: relative;
    min-height: 58px;
    justify-content: flex-start;
    padding: 14px 44px 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
  }

  .home-redesign .mobile-service-grid a::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 17px;
    height: 17px;
    background: url("../icons/chevron-right.svg") center / contain no-repeat;
    transform: translateY(-50%);
    opacity: 0.72;
  }

  .home-redesign .service-detail-drawer,
  .home-redesign .mobile-expand {
    margin-top: 14px;
    border-radius: 3px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  h2 {
    font-size: 30px;
  }

  .page-main,
  .page-aside,
  .service-form,
  .contact-details {
    padding: 22px;
  }

  .page-aside {
    border-top: 4px solid var(--yellow);
  }

  .seo-landing li {
    min-height: 0;
    padding: 10px 4px;
    font-size: 15px;
  }

  .mobile-sticky-cta {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 5px;
    border-radius: 4px;
    background: rgba(25, 25, 26, 0.97);
  }

  .mobile-sticky-cta a {
    border-radius: 2px;
  }

  .cookie-consent {
    border-radius: 3px;
  }
}

@media (max-width: 380px) {
  .home-redesign .hero-content,
  .content-page .page-hero-content {
    width: min(100% - 32px, 560px);
  }

  .home-redesign .hero h1,
  .content-page .page-hero-content h1 {
    font-size: clamp(31px, 10vw, 34px);
  }

  .home-redesign .hero-actions .btn {
    font-size: 16px;
  }
}

/* Final trust-and-conversion polish. */
.home-redesign .trust-strip-inner {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-redesign .trust-strip-inner li {
  min-height: 126px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number description";
  column-gap: 14px;
  align-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.home-redesign .trust-strip-inner li:first-child {
  padding-left: 0;
}

.home-redesign .trust-strip-inner li:last-child {
  border-right: 0;
}

.home-redesign .trust-strip-inner .trust-step-number {
  grid-area: number;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.home-redesign .trust-strip-inner strong {
  grid-area: title;
  align-self: end;
}

.home-redesign .trust-strip-inner .trust-step-description {
  grid-area: description;
  margin-top: 6px;
}

.service-form:has(.form-step[data-step="0"].is-active) .form-progress {
  display: none;
}

.contact-fields-note {
  margin: -6px 0 16px;
}

.home-redesign .hero-actions .btn[href^="tel:"]::before {
  width: 20px;
  height: 20px;
}

.home-redesign .hero-actions .btn[href="#objednavka"]::before {
  width: 23px;
  height: 23px;
}

@media (min-width: 981px) {
  .home-redesign .hero-actions {
    max-width: 560px;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 10px;
  }

  .home-redesign .hero-actions .btn {
    min-height: 54px;
    padding: 12px 18px;
    font-size: 17px;
  }

  .home-redesign .hero-action-note {
    margin-top: 18px;
  }

  .home-redesign .hero-services {
    margin-top: 22px;
  }

  .home-redesign .hero-image {
    object-position: 72% center;
    filter: saturate(0.94) contrast(1.01) brightness(1.04);
  }
}

@media (min-width: 381px) and (max-width: 760px) {
  .contact-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .content-page .page-hero .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-page .page-hero .hero-actions .btn:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .home-redesign .hero-image {
    object-position: 68% center;
  }

  .home-redesign main#main .trust-strip {
    padding: 22px 0 20px;
  }

  .home-redesign .trust-strip h2 {
    margin-bottom: 6px;
  }

  .home-redesign .trust-strip-inner {
    border-top: 1px solid var(--line);
  }

  .home-redesign .trust-strip-inner li {
    min-height: 43px;
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-areas: "number title";
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-redesign .trust-strip-inner .trust-step-number {
    width: 24px;
    height: 24px;
    align-self: center;
    font-size: 12px;
  }

  .home-redesign .trust-strip-inner strong {
    align-self: center;
    font-size: 15px;
  }

  .home-redesign .trust-strip-inner strong::after {
    content: none;
  }

  .home-redesign .trust-strip-inner .trust-step-description {
    display: none;
  }

  .home-redesign #objednavka {
    padding: 38px 0 46px;
  }

  .home-redesign #objednavka .form-layout {
    gap: 18px;
  }

  .home-redesign #objednavka .form-copy h2 {
    margin-bottom: 12px;
  }

  .home-redesign #objednavka .form-quick-panel {
    margin: 0;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 3px solid var(--yellow);
    background: transparent;
  }

  .home-redesign #objednavka .form-quick-panel strong {
    display: none;
  }

  .home-redesign #objednavka .form-quick-panel span {
    font-size: 14px;
    line-height: 1.4;
  }

  .home-redesign #objednavka .service-form {
    padding: 20px 18px;
    border-top-width: 3px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  }

  .home-redesign #objednavka legend {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .home-redesign #objednavka label {
    margin-bottom: 9px;
  }

  .home-redesign #objednavka .contact-fields-note {
    display: block;
    margin: -3px 0 12px;
    font-size: 12px;
    line-height: 1.35;
  }

  main#main:not(.content-page) #objednavka .contact-fields-note {
    display: block;
  }
}
/* Simplified service request form */
.home-redesign #objednavka {
  padding: 78px 0 84px;
  background: #f5f5f7;
  color: var(--ink);
}

.home-redesign #objednavka .form-layout {
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.home-redesign #objednavka .form-copy {
  position: static;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.home-redesign #objednavka .form-copy .eyebrow {
  margin-bottom: 10px;
  color: #8a6800;
}

.home-redesign #objednavka .form-copy h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.035em;
}

.home-redesign #objednavka .form-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: #515154;
  font-size: 18px;
  line-height: 1.55;
}

.home-redesign #objednavka .form-copy > .form-call-link {
  display: block;
  max-width: none;
  margin-top: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.home-redesign #objednavka .form-call-link a {
  color: inherit;
  font-weight: inherit;
  text-underline-offset: 4px;
}

.home-redesign #objednavka .service-form {
  padding: 34px;
  overflow: visible;
  border: 1px solid #d2d2d7;
  border-top: 1px solid #d2d2d7;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.home-redesign #objednavka .service-form label {
  gap: 8px;
  margin-bottom: 18px;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 700;
}

.home-redesign #objednavka .service-form input:not([type="checkbox"]):not([type="radio"]),
.home-redesign #objednavka .service-form select,
.home-redesign #objednavka .service-form textarea {
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid #c7c7cc;
  border-radius: 12px;
  background: #fff;
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 500;
  box-shadow: none;
}

.home-redesign #objednavka .service-form textarea {
  min-height: 118px;
  line-height: 1.5;
}

.home-redesign #objednavka .service-form input::placeholder,
.home-redesign #objednavka .service-form textarea::placeholder {
  color: #86868b;
  opacity: 1;
}

.home-redesign #objednavka .service-form input:not([type="checkbox"]):not([type="radio"]):focus,
.home-redesign #objednavka .service-form select:focus,
.home-redesign #objednavka .service-form textarea:focus {
  border-color: #8a6800;
  box-shadow: 0 0 0 4px rgba(247, 198, 0, 0.22);
}

.home-redesign #objednavka .service-form input.is-invalid,
.home-redesign #objednavka .service-form select.is-invalid,
.home-redesign #objednavka .service-form textarea.is-invalid {
  border-color: #d70015;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(215, 0, 21, 0.12);
}

.home-redesign #objednavka .contact-fields {
  gap: 12px;
}

.form-contact-choice {
  margin: 2px 0 10px !important;
  color: #6e6e73 !important;
  font-size: 13px;
  font-weight: 600;
}

.home-redesign #objednavka .contact-fields-note {
  display: none !important;
}

.home-redesign #objednavka .contact-fields-note.is-invalid {
  display: block !important;
  margin: -8px 0 16px;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}

.form-optional-details {
  margin: 6px 0 22px;
  border: 1px solid #d2d2d7;
  border-radius: 14px;
  background: #fbfbfd;
  overflow: hidden;
}

.form-optional-details summary {
  padding: 16px 18px;
  color: #1d1d1f;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.form-optional-details summary::marker {
  color: #6e6e73;
}

.form-optional-details summary span {
  float: right;
  color: #86868b;
  font-size: 12px;
  font-weight: 600;
}

.form-optional-details[open] summary {
  border-bottom: 1px solid #e5e5e7;
}

.form-optional-content {
  padding: 20px 18px 2px;
}

.home-redesign #objednavka .consent {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  margin: 0 0 22px;
  color: #515154;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.home-redesign #objednavka .consent input[type="checkbox"] {
  width: 22px;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
  padding: 0;
  margin-top: 0;
  accent-color: var(--ink);
}

.home-redesign #objednavka .consent a {
  color: #1d1d1f;
  font-weight: 700;
  text-underline-offset: 3px;
}

.home-redesign #objednavka .form-actions {
  display: block;
}

.home-redesign #objednavka .form-actions .btn {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  font-size: 17px;
}

.form-submit-note {
  margin: 12px 0 0 !important;
  color: #6e6e73 !important;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.home-redesign #objednavka .form-status {
  min-height: 0;
  margin: 10px 0 0;
  color: #6a4c00;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 760px) {
  .home-redesign #objednavka {
    padding: 48px 0 54px;
  }

  .home-redesign #objednavka .form-layout {
    gap: 22px;
  }

  .home-redesign #objednavka .form-copy {
    text-align: left;
  }

  .home-redesign #objednavka .form-copy h2 {
    margin-bottom: 10px;
    font-size: 32px;
  }

  .home-redesign #objednavka .form-copy > p:not(.eyebrow) {
    display: block;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .home-redesign #objednavka .form-copy > .form-call-link {
    margin-top: 12px;
    font-size: 14px;
  }

  .home-redesign #objednavka .service-form {
    padding: 22px 16px;
    border-top-width: 1px;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
  }

  .home-redesign #objednavka .contact-fields,
  .home-redesign #objednavka .form-optional-content .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .home-redesign #objednavka .service-form label {
    margin-bottom: 15px;
  }

  .home-redesign #objednavka .service-form input:not([type="checkbox"]):not([type="radio"]),
  .home-redesign #objednavka .service-form select,
  .home-redesign #objednavka .service-form textarea {
    min-height: 52px;
  }

  .home-redesign #objednavka .service-form textarea {
    min-height: 110px;
  }

  .form-optional-details summary {
    padding: 15px 14px;
  }

  .form-optional-details summary span {
    display: none;
  }

  .form-optional-content {
    padding: 16px 14px 1px;
  }
}

/* 2026 mobile-first polish: shared rhythm, touch targets and compact conversion paths. */
:where(h1, h2, h3) {
  text-wrap: balance;
}

:where(h1, h2, h3, p, li, a, button, summary, strong, span) {
  overflow-wrap: break-word;
}

@media (max-width: 760px) {
  :root {
    --section-pad: 48px;
  }

  html {
    scroll-padding-top: calc(76px + env(safe-area-inset-top));
  }

  section[id],
  article[id],
  .price-tabs[id] {
    scroll-margin-top: calc(76px + env(safe-area-inset-top));
  }

  body {
    font-size: 16px;
    line-height: 1.55;
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 32px), 1180px);
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand img {
    width: 116px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    padding: 9px;
    margin-right: -4px;
    background-size: 30px 30px;
  }

  .main-nav {
    left: 12px;
    right: 12px;
    top: calc(68px + env(safe-area-inset-top));
    padding: 6px;
    border-radius: 12px;
    max-height: calc(100dvh - 92px - env(safe-area-inset-top));
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 7px;
    font-size: 15px;
  }

  .main-nav a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav .mobile-language-links a {
    min-height: 48px;
    justify-content: center;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading .eyebrow,
  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.055em;
  }

  h2 {
    font-size: clamp(27px, 7.4vw, 31px);
    line-height: 1.06;
    letter-spacing: -0.022em;
  }

  h3 {
    line-height: 1.18;
  }

  .home-redesign .hero,
  .content-page .page-hero {
    padding-top: calc(64px + env(safe-area-inset-top));
  }

  .home-redesign .hero-content,
  .content-page .page-hero-content {
    width: min(calc(100% - 32px), 560px);
  }

  .home-redesign .hero-content {
    padding: 23px 0 13px;
  }

  .home-redesign .hero .eyebrow {
    margin-bottom: 13px;
    padding-top: 12px;
    font-size: 12px;
  }

  .home-redesign .hero .eyebrow::before {
    width: 44px;
    height: 4px;
  }

  .home-redesign .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(32px, 9.3vw, 38px);
    line-height: 0.98;
  }

  .home-redesign .hero-lead {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.42;
  }

  .home-redesign .hero-actions {
    gap: 8px;
  }

  .home-redesign .hero-actions .btn {
    min-height: 50px;
    padding: 11px 14px;
    font-size: 16px;
  }

  .home-redesign .hero-action-note {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  .home-redesign .hero-image {
    height: clamp(212px, 57vw, 238px);
    object-position: 68% center;
  }

  .home-redesign main#main .trust-strip {
    padding: 20px 0 18px;
  }

  .home-redesign .trust-strip h2 {
    margin-bottom: 5px;
    padding-bottom: 8px;
    font-size: 24px;
  }

  .home-redesign .trust-strip-inner li {
    min-height: 46px;
    padding: 9px 0;
  }

  .content-page .page-hero-content {
    padding: 24px 0 20px;
  }

  .content-page .page-hero-content::before {
    width: 50px;
    height: 4px;
    margin-bottom: 16px;
  }

  .content-page .page-hero-content h1 {
    margin-bottom: 12px;
    font-size: clamp(32px, 9.3vw, 40px);
    line-height: 1;
  }

  .content-page .page-hero-content p:not(.eyebrow) {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.45;
  }

  .content-page .page-hero .hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .content-page .page-hero .hero-actions .btn {
    min-height: 50px;
    padding: 11px 12px;
    font-size: 15px;
  }

  .content-page .page-hero-image {
    height: clamp(212px, 57vw, 238px);
    object-position: center 48%;
  }

  .page-grid {
    gap: 16px;
  }

  .page-main,
  .page-aside,
  .service-form,
  .contact-details {
    padding: 20px 18px;
  }

  .page-main h2,
  .article-content h2 {
    margin-top: 30px;
    font-size: 25px;
    line-height: 1.12;
  }

  .page-main h3,
  .article-content h3 {
    font-size: 20px;
  }

  .page-main p,
  .seo-landing p,
  .article-content p,
  .article-content li {
    font-size: 16px;
    line-height: 1.6;
  }

  .seo-landing li {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .price-panel {
    padding: 8px 12px;
  }

  .price-row {
    gap: 10px;
    align-items: start;
    padding: 13px 2px;
    border-radius: 0;
  }

  .price-row span {
    line-height: 1.35;
  }

  .price-row strong {
    min-height: 30px;
    padding: 5px 8px;
    text-align: right;
    line-height: 1.25;
    white-space: normal;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-list summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 14px 50px 14px 16px;
    line-height: 1.35;
  }

  .faq-list summary::after {
    right: 14px;
  }

  .faq-list p {
    padding: 0 16px 18px;
  }

  .service-card .text-link,
  .answer-grid .text-link,
  .work-card .text-link,
  .article-card .text-link,
  .decision-card .text-link,
  .related-links a,
  .local-tags a,
  .mobile-expand-list a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
  }

  :where(.mobile-collapse, .mobile-expand, .form-optional-details) > summary {
    min-height: 50px;
    display: flex;
    align-items: center;
  }

  .site-footer {
    padding: 40px 0 calc(98px + env(safe-area-inset-bottom));
  }

  .footer-inner {
    gap: 22px;
  }

  .footer-inner a,
  .footer-link-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    margin-top: 0;
  }

  .cookie-consent,
  body.is-form-visible .cookie-consent {
    top: auto;
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    width: auto;
    max-height: min(44vh, 360px);
    padding: 12px;
    overflow: auto;
    border-top-width: 4px;
    border-radius: 12px;
    background: #fffefb;
    box-shadow: 0 18px 54px rgba(25, 25, 26, 0.28);
  }

  .cookie-consent h2 {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .cookie-consent p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
  }

  .cookie-consent-actions {
    gap: 8px;
  }

  .cookie-consent .btn {
    min-height: 44px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .mobile-sticky-cta {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    gap: 4px;
    padding: 5px;
    border-radius: 12px;
    background: rgba(25, 25, 26, 0.97);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  }

  .mobile-sticky-cta a {
    min-height: 48px;
    padding: 8px 5px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.1;
  }

  .home-redesign #objednavka {
    padding: 44px 0 50px;
  }

  .home-redesign #objednavka .form-layout {
    gap: 18px;
  }

  .home-redesign #objednavka .form-copy h2 {
    font-size: 30px;
  }

  .home-redesign #objednavka .service-form {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .home-redesign #objednavka .service-form label {
    margin-bottom: 14px;
  }

  .home-redesign #objednavka .service-form input:not([type="checkbox"]):not([type="radio"]),
  .home-redesign #objednavka .service-form select,
  .home-redesign #objednavka .service-form textarea {
    min-height: 50px;
  }

  .home-redesign #objednavka .service-form textarea {
    min-height: 104px;
  }

  .form-optional-details {
    margin-bottom: 18px;
  }

  .form-optional-details summary {
    padding: 13px 14px;
  }

  /* The English homepage keeps its photographic identity but removes first-screen overload. */
  .home-en main#main > .hero {
    min-height: 0;
    align-items: flex-start;
    padding-top: calc(64px + env(safe-area-inset-top));
  }

  .home-en main#main > .hero .hero-content {
    width: min(calc(100% - 32px), 560px);
    padding: 26px 0 34px;
  }

  .home-en main#main > .hero h1 {
    max-width: none;
    margin-bottom: 14px;
    font-size: clamp(33px, 9.5vw, 40px);
    line-height: 1;
  }

  .home-en main#main > .hero .hero-lead {
    max-width: 540px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .home-en main#main > .hero .signature-line {
    max-width: 520px;
    margin-bottom: 16px;
    font-size: 15px;
  }

  .home-en main#main > .hero .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 8px;
  }

  .home-en main#main > .hero .hero-actions .btn {
    min-height: 50px;
    padding: 11px 12px;
  }

  .home-en main#main > .hero .hero-action-note {
    display: block;
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .home-en main#main > .hero .hero-facts {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
  }

  .home-en main#main > .hero .hero-facts div,
  .home-en main#main > .hero .hero-facts div:nth-child(n + 4) {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 9px 10px;
  }
}

@media (max-width: 380px) {
  .container,
  .home-redesign .hero-content,
  .content-page .page-hero-content,
  .home-en main#main > .hero .hero-content {
    width: min(calc(100% - 28px), 560px);
  }

  .content-page .page-hero .hero-actions,
  .home-en main#main > .hero .hero-actions {
    grid-template-columns: 1fr;
  }

  .content-page .page-hero .hero-actions .btn:first-child {
    grid-column: auto;
  }

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

  .price-row strong {
    justify-self: start;
    text-align: left;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .home-redesign .hero h1,
  .content-page .page-hero-content h1 {
    font-size: clamp(44px, 5.6vw, 52px);
  }

  .home-redesign .hero-content,
  .content-page .page-hero-content {
    width: min(540px, calc(100% - 40px));
  }
}

@media (pointer: coarse) {
  :where(.btn, .main-nav a, .tab-button, .mobile-sticky-cta a, .related-links a, .local-tags a, .footer-inner a, .footer-link-button) {
    min-height: 44px;
  }
}

/* 2026 master layout: problem-first, proof-led and mobile-first. */
:root {
  --master-ink: #121212;
  --master-paper: #fbfaf6;
  --master-paper-2: #f2f0e9;
  --master-line: #d9d6ce;
  --master-yellow: #f5bf19;
  --master-yellow-strong: #ffd229;
  --master-muted: #5f5d58;
}

.home-master-page {
  background: var(--master-paper);
}

.home-master-page .site-header,
.content-page + .site-footer {
  --yellow: var(--master-yellow);
}

.site-header {
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  min-height: 72px;
}

.brand img {
  width: 142px;
}

.main-nav {
  gap: clamp(16px, 2vw, 28px);
}

.main-nav a {
  position: relative;
  padding: 25px 0 23px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 16px;
  height: 3px;
  background: var(--master-yellow);
  transition: right 160ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  right: 0;
}

.header-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 2px;
  background: var(--master-yellow);
  color: var(--master-ink);
  font-weight: 900;
}

.language-switch {
  border-radius: 2px;
}

.language-switch a {
  border-radius: 1px;
}

.home-master {
  display: block !important;
  color: var(--master-ink);
  background: var(--master-paper);
}

.home-master-page .home-master > section {
  order: initial !important;
}

.home-master-page .home-master .master-faq {
  display: block !important;
}

.home-master :where(h1, h2, h3, p) {
  margin-top: 0;
}

.home-master :where(h1, h2, h3) {
  font-family: var(--font-display);
  font-weight: 900;
}

.home-master h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.master-eyebrow {
  position: relative;
  margin: 0 0 16px;
  padding-top: 18px;
  color: #855d00;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.master-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 4px;
  background: var(--master-yellow);
}

.master-hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  padding-top: 72px;
  background: var(--master-paper);
}

.master-hero-copy {
  width: min(590px, calc(100% - 40px));
  margin-right: 60px;
  padding: 90px 0 68px;
  align-self: center;
}

.master-hero h1 {
  max-width: 650px;
  margin: 0 0 28px;
  font-size: clamp(58px, 5.2vw, 78px);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.master-hero-lead {
  max-width: 570px;
  margin-bottom: 30px;
  color: #3f3d39;
  font-size: 20px;
  line-height: 1.48;
}

.master-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.master-hero-actions .btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border-radius: 2px;
  font-size: 16px;
}

.master-hero-actions .btn img {
  flex: 0 0 auto;
}

.master-hero-actions .btn-primary {
  min-width: 246px;
}

.master-hero-actions .btn-secondary {
  min-width: 210px;
  border-color: var(--master-ink);
  color: var(--master-ink);
  background: transparent;
}

.master-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
  color: #67645e;
  font-size: 14px;
  font-weight: 750;
}

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

.master-meta span + span {
  padding-left: 20px;
  border-left: 1px solid var(--master-line);
}

.master-hero-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.master-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 618px;
  object-fit: cover;
  object-position: 58% center;
}

.master-problems,
.master-process,
.master-location,
.master-enquiry,
.master-faq {
  padding: 84px 0;
}

.home-master-page .home-master .master-enquiry {
  padding: 84px 0;
}

.master-section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.master-section-intro > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--master-muted);
  font-size: 18px;
  line-height: 1.55;
}

.master-section-intro-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.master-section-intro-row > p:last-child {
  max-width: 480px;
  padding-bottom: 4px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--master-line);
  border-left: 1px solid var(--master-line);
}

.problem-choice {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-right: 1px solid var(--master-line);
  border-bottom: 1px solid var(--master-line);
  color: var(--master-ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.42);
  transition: background 160ms ease, color 160ms ease;
}

.problem-choice:hover,
.problem-choice:focus-visible {
  color: var(--master-ink);
  background: var(--master-yellow);
}

.problem-number {
  color: #b17e00;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
}

.problem-choice strong,
.problem-choice small {
  display: block;
}

.problem-choice strong {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.problem-choice small {
  color: #696660;
  font-size: 13px;
  line-height: 1.35;
}

.problem-choice:hover small,
.problem-choice:focus-visible small {
  color: #27231b;
}

.master-case {
  padding: 86px 0 78px;
  color: #fff;
  background: #111;
}

.master-case .master-eyebrow {
  color: var(--master-yellow);
}

.master-case-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.45fr);
  gap: 38px 54px;
}

.master-case-copy h2 {
  max-width: 420px;
  margin-bottom: 22px;
  color: #fff;
}

.master-case-copy > p:not(.master-eyebrow) {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.master-inline-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.master-case .master-inline-link {
  margin-top: 12px;
  color: var(--master-yellow);
}

.master-case .master-inline-link img {
  filter: invert(83%) sepia(84%) saturate(867%) hue-rotate(345deg) brightness(98%) contrast(96%);
}

.master-case-visuals {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.master-case-visuals figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #272727;
}

.master-case-visuals figure span {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  color: #111;
  background: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.master-case-visuals img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.master-case-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.master-case-facts div {
  min-width: 0;
  padding: 22px 24px 4px 0;
}

.master-case-facts div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.master-case-facts dt {
  margin-bottom: 7px;
  color: var(--master-yellow);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.master-case-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.master-process {
  background: var(--master-paper);
}

.master-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--master-line);
  border-bottom: 1px solid var(--master-line);
}

.master-process-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  padding: 30px 30px 30px 0;
}

.master-process-list li + li {
  padding-left: 30px;
  border-left: 1px solid var(--master-line);
}

.master-process-list li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--master-yellow);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
}

.master-process-list strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.05;
}

.master-process-list p {
  margin-bottom: 0;
  color: var(--master-muted);
  line-height: 1.5;
}

.master-service-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--master-line);
}

.master-service-rail a {
  min-width: 0;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  color: var(--master-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--master-line);
}

.master-service-rail a + a {
  border-left: 1px solid var(--master-line);
}

.master-service-rail a:hover,
.master-service-rail a:focus-visible {
  background: #fff;
}

.master-service-rail strong,
.master-service-rail span {
  display: block;
}

.master-service-rail strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.08;
}

.master-service-rail span {
  color: var(--master-muted);
  font-size: 13px;
}

.master-section-actions {
  margin-top: 24px;
  text-align: center;
}

.master-section-actions .btn {
  border-radius: 2px;
}

.master-section-actions .btn-secondary {
  color: var(--master-ink);
  background: transparent;
  border-color: var(--master-ink);
}

.master-section-actions .btn-secondary:hover,
.master-section-actions .btn-secondary:focus {
  color: var(--master-ink);
  background: var(--master-yellow);
  border-color: var(--master-yellow);
}

.master-prices {
  padding: 78px 0;
  background: var(--master-paper-2);
  border-top: 1px solid var(--master-line);
  border-bottom: 1px solid var(--master-line);
}

.master-prices-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 46px 70px;
  align-items: start;
}

.master-prices h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.master-prices-layout > div:first-child > p:last-child {
  margin-bottom: 0;
  color: var(--master-muted);
  line-height: 1.55;
}

.master-price-list {
  border-top: 2px solid var(--master-ink);
}

.master-price-list > div {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 12px 2px;
  border-bottom: 1px solid var(--master-line);
}

.master-price-list strong {
  font-family: var(--font-display);
  font-size: 18px;
  white-space: nowrap;
}

.master-prices .master-inline-link {
  grid-column: 2;
  justify-self: end;
  margin-top: -28px;
}

.master-location {
  background: var(--master-paper);
}

.master-location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  border-top: 1px solid var(--master-line);
}

.master-location-facts {
  display: grid;
  align-content: start;
  padding-top: 12px;
}

.master-location-facts > div {
  min-height: 94px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--master-line);
}

.master-location-facts > div > img {
  margin-top: 3px;
  filter: invert(77%) sepia(81%) saturate(1160%) hue-rotate(350deg) brightness(94%) contrast(91%);
}

.master-location-facts p {
  margin: 0;
  color: var(--master-muted);
  line-height: 1.5;
}

.master-location-facts strong {
  color: var(--master-ink);
}

.master-location-facts .btn {
  justify-self: start;
  margin-top: 24px;
  border-radius: 2px;
}

.master-map {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  background: #dedbd2;
}

.master-map img,
.master-map .map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  object-fit: cover;
}

.master-enquiry {
  color: #fff;
  background: #111;
}

.home-master-page.home-redesign #main.home-master #objednavka.master-enquiry {
  color: #fff;
  background: #111;
}

.master-enquiry-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: start;
}

.master-enquiry .master-eyebrow {
  color: var(--master-yellow);
}

.master-enquiry-copy h2 {
  margin-bottom: 22px;
  color: #fff;
}

.master-enquiry-copy > p:not(.master-eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.master-enquiry-copy > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--master-yellow);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
}

.home-master .master-form {
  padding: 28px;
  border: 0;
  border-top: 4px solid var(--master-yellow);
  border-radius: 0;
  color: var(--master-ink);
  background: var(--master-paper);
  box-shadow: none;
}

.master-form .form-step {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.home-master .master-form label {
  margin-bottom: 14px;
}

.home-master .master-form .field-label {
  margin-bottom: 5px;
  color: #33312c;
  font-size: 13px;
  font-weight: 850;
}

.home-master .master-form input:not([type="checkbox"]),
.home-master .master-form select,
.home-master .master-form textarea {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cbc7bd;
  border-radius: 1px;
  background: #fff;
  box-shadow: none;
}

.home-master .master-form textarea {
  min-height: 104px;
}

.home-master .master-form .contact-fields-note {
  margin: -4px 0 12px;
}

.master-form-more {
  margin: 2px 0 18px;
  border: 1px solid #cfcbc2;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.62);
}

.master-form-more summary {
  min-height: 56px;
  display: list-item;
  padding: 13px 15px;
  cursor: pointer;
  color: #34322f;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 850;
}

.master-form-more summary span {
  float: right;
  margin-top: 2px;
  margin-left: 14px;
  color: #77736b;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
}

.home-master .master-form .master-form-more label,
.home-master-page #objednavka .master-form .master-form-more label {
  margin: 0;
  padding: 0 15px 15px;
}

.home-master .master-form .consent {
  margin: 4px 0 16px;
}

.home-master .master-form .form-actions {
  display: block;
}

.home-master .master-form .form-actions .btn {
  width: 100%;
  min-height: 50px;
  border-radius: 1px;
}

.home-master .master-form .form-submit-note {
  margin: 8px 0 0;
  color: #6a675f;
  text-align: center;
}

.home-master-page #objednavka .master-form {
  padding: 28px;
  border: 0;
  border-top: 4px solid var(--master-yellow);
  border-radius: 0;
  background: var(--master-paper);
  box-shadow: none;
}

.home-master-page #objednavka .master-form label {
  margin-bottom: 14px;
}

.home-master-page #objednavka .master-form input:not([type="checkbox"]):not([type="radio"]),
.home-master-page #objednavka .master-form select,
.home-master-page #objednavka .master-form textarea {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cbc7bd;
  border-radius: 1px;
  background: #fff;
  box-shadow: none;
}

.home-master-page #objednavka .master-form textarea {
  min-height: 104px;
}

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

.master-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--master-line);
}

.master-faq-grid details {
  min-width: 0;
  border-bottom: 1px solid var(--master-line);
}

.master-faq-grid details + details {
  border-left: 1px solid var(--master-line);
}

.master-faq-grid summary {
  min-height: 84px;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.master-faq-grid p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--master-muted);
  line-height: 1.55;
}

.home-master-page .site-footer {
  border-top: 0;
}

/* Shared editorial templates for services, locations, advice and pricing. */
.content-page {
  background: var(--master-paper);
}

.content-page .page-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding-top: 72px;
  color: var(--master-ink);
  background: var(--master-paper);
  overflow: hidden;
}

.content-page .page-hero-image {
  position: absolute;
  z-index: 0;
  top: 72px;
  left: auto;
  right: 0;
  width: 50%;
  height: calc(100% - 72px);
  object-fit: cover;
}

.content-page .page-hero-shade {
  display: none;
}

.content-page .page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  padding: 72px min(590px, 50vw) 72px 0;
  color: var(--master-ink);
}

.content-page .page-hero-content::before {
  width: 54px;
  height: 4px;
  margin-bottom: 20px;
  background: var(--master-yellow);
}

.content-page .page-hero-content .eyebrow {
  color: #855d00;
}

.content-page .page-hero-content h1 {
  max-width: 600px;
  margin-bottom: 20px;
  font-size: clamp(48px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.content-page .page-hero-content p:not(.eyebrow) {
  max-width: 570px;
  color: #45423d;
  font-size: 19px;
  line-height: 1.5;
}

.content-page .page-hero .hero-actions {
  margin-top: 26px;
}

.content-page .page-hero .btn {
  border-radius: 2px;
}

.content-page > .section {
  background: var(--master-paper);
}

.content-page > .section:nth-of-type(3n) {
  background: var(--master-paper-2);
}

.content-page > .section.trust-section,
.content-page > .section.form-section,
.content-page > .section:has(.related-section) {
  color: #fff;
  background: #111;
}

.content-page .page-grid {
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 56px;
  align-items: start;
}

.content-page .page-main,
.content-page .page-aside {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.content-page .page-main {
  max-width: 820px;
}

.content-page .page-main > :first-child {
  margin-top: 0;
}

.content-page .page-main h2,
.content-page .article-content h2 {
  position: relative;
  margin: 52px 0 18px;
  padding-top: 14px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.content-page .page-main h2::before,
.content-page .article-content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  background: var(--master-yellow);
}

.content-page .page-main h3,
.content-page .article-content h3 {
  margin-top: 34px;
  font-size: 23px;
  line-height: 1.12;
}

.content-page .page-main p,
.content-page .page-main li,
.content-page .article-content p,
.content-page .article-content li {
  color: #47443f;
  font-size: 17px;
  line-height: 1.72;
}

.content-page .page-main a:not(.btn),
.content-page .page-aside a:not(.btn) {
  text-underline-offset: 3px;
}

.content-page .page-aside {
  position: sticky;
  top: 100px;
  padding: 26px;
  color: #fff;
  background: #111;
  border-top: 4px solid var(--master-yellow);
}

.content-page .page-aside h2,
.content-page .page-aside h3,
.content-page .page-aside strong {
  color: #fff;
}

.content-page .page-aside p,
.content-page .page-aside li,
.content-page .page-aside span {
  color: rgba(255, 255, 255, 0.75);
}

.content-page .page-aside .btn-primary {
  color: #111;
}

.content-page .page-aside .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.content-page .page-aside .article-related-small a {
  color: rgba(255, 255, 255, 0.84);
}

.content-page .page-aside .article-related-small a:hover,
.content-page .page-aside .article-related-small a:focus {
  color: var(--master-yellow);
}

.content-page .contact-mini,
.content-page .article-callout {
  margin: 34px 0;
  padding: 26px;
  border: 0;
  border-left: 5px solid var(--master-yellow);
  border-radius: 0;
  background: var(--master-paper-2);
  box-shadow: none;
}

.content-page .contact-mini span,
.content-page .article-callout .eyebrow {
  color: #8a6800;
}

.content-page .contact-mini strong,
.content-page .contact-mini h2,
.content-page .article-callout h2 {
  color: var(--master-ink);
}

.content-page .contact-mini p,
.content-page .article-callout p,
.content-page .article-callout li {
  color: #47443f;
}

.content-page .contact-mini .btn-secondary {
  color: var(--master-ink);
  background: transparent;
  border-color: var(--master-ink);
}

.content-page .page-main .process-list strong {
  color: #fff;
  background: #111;
  border-color: #111;
}

.content-page .page-main .process-list span {
  color: #47443f;
}

.content-page > .section:has(.related-section) .related-links {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.content-page > .section:has(.related-section) .related-links a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.content-page .price-tabs,
.content-page .price-panel,
.content-page .price-anchor-section {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.content-page .price-panel {
  padding: 0;
  border-top: 2px solid var(--master-ink);
}

.content-page .price-row {
  min-height: 56px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--master-line);
  border-radius: 0;
}

.content-page .price-row strong {
  padding: 0;
  color: var(--master-ink);
  background: transparent;
}

.content-page .faq-list details,
.content-page .related-links a {
  border-radius: 0;
  box-shadow: none;
}

.content-page .faq-list details {
  border: 0;
  border-bottom: 1px solid var(--master-line);
  background: transparent;
}

.content-page .faq-list summary {
  padding-left: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
}

.content-page .faq-list p {
  padding-left: 0;
}

.content-page .related-links {
  gap: 0;
  border-top: 1px solid var(--master-line);
}

.content-page .related-links a {
  min-height: 48px;
  padding: 12px 14px 12px 0;
  border: 0;
  border-bottom: 1px solid var(--master-line);
  background: transparent;
}

.article-page .article-layout {
  grid-template-columns: minmax(0, 760px) minmax(250px, 300px);
  justify-content: space-between;
}

.article-page .article-content {
  max-width: 760px;
}

.repair-examples-page .case-study-card {
  border-radius: 0;
  box-shadow: none;
  border: 0;
  border-top: 4px solid var(--master-yellow);
}

.site-footer {
  background: #111;
}

.footer-inner {
  align-items: start;
}

.footer-inner img {
  width: 128px;
}

@media (max-width: 980px) {
  .master-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  }

  .master-hero-copy {
    margin-right: 34px;
    padding-top: 70px;
  }

  .master-hero h1 {
    font-size: clamp(48px, 6.1vw, 62px);
  }

  .master-case-layout,
  .master-prices-layout,
  .master-enquiry-layout {
    gap: 38px;
  }

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

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

  .master-service-rail a:nth-child(4) {
    border-left: 0;
  }

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

  .master-faq-grid details:nth-child(3) {
    border-left: 0;
  }

  .content-page .page-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 116px;
  }

  .nav-toggle {
    border-radius: 1px;
  }

  .main-nav {
    top: calc(64px + env(safe-area-inset-top));
    left: 8px;
    right: 8px;
    padding: 8px;
    border-radius: 2px;
    background: #111;
  }

  .main-nav a {
    min-height: 50px;
    padding: 13px 14px;
    border-radius: 0;
  }

  .main-nav > a::after {
    display: none;
  }

  .home-master h2 {
    font-size: clamp(31px, 9vw, 38px);
    line-height: 0.98;
  }

  .master-eyebrow {
    margin-bottom: 12px;
    padding-top: 14px;
    font-size: 11px;
  }

  .master-eyebrow::before {
    width: 44px;
    height: 4px;
  }

  .master-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-top: calc(64px + env(safe-area-inset-top));
  }

  .master-hero-copy {
    width: min(calc(100% - 32px), 560px);
    margin: 0 auto;
    padding: 24px 0 14px;
  }

  .master-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(39px, 11.5vw, 48px);
    line-height: 0.9;
  }

  .master-hero-lead {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.42;
  }

  .master-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .master-hero-actions .btn,
  .master-hero-actions .btn-primary,
  .master-hero-actions .btn-secondary {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 11px 14px;
  }

  .master-meta {
    gap: 7px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.35;
  }

  .master-meta span + span {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }

  .master-hero-media {
    height: clamp(220px, 59vw, 250px);
  }

  .master-hero-media img {
    min-height: 0;
    height: 100%;
    object-position: 62% center;
  }

  .master-problems,
  .master-process,
  .master-location,
  .master-enquiry,
  .master-faq {
    padding: 48px 0;
  }

  .home-master-page .home-master .master-enquiry {
    padding: 48px 0;
  }

  .master-section-intro {
    margin-bottom: 22px;
  }

  .master-section-intro > p:last-child,
  .master-section-intro-row > p:last-child {
    font-size: 15px;
    line-height: 1.5;
  }

  .master-section-intro-row {
    display: block;
  }

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

  .problem-choice {
    min-height: 74px;
    gap: 12px;
    padding: 14px 12px;
  }

  .problem-number {
    width: 32px;
    font-size: 15px;
  }

  .problem-choice strong {
    margin-bottom: 2px;
    font-size: 17px;
  }

  .problem-choice small {
    font-size: 12px;
  }

  .master-case {
    padding: 48px 0 44px;
  }

  .master-case-layout {
    display: block;
  }

  .master-case-copy > p:not(.master-eyebrow) {
    font-size: 15px;
  }

  .master-case-visuals {
    gap: 7px;
    margin: 24px 0 18px;
  }

  .master-case-visuals img {
    height: 172px;
  }

  .master-case-visuals figure span {
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    font-size: 10px;
  }

  .master-case-facts {
    display: block;
  }

  .master-case-facts div,
  .master-case-facts div + div {
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .master-case-facts dt {
    margin-bottom: 4px;
  }

  .master-case-facts dd {
    font-size: 14px;
  }

  .master-process-list {
    display: block;
  }

  .master-process-list li,
  .master-process-list li + li {
    min-height: 96px;
    gap: 14px;
    padding: 16px 0;
    border-left: 0;
    border-bottom: 1px solid var(--master-line);
  }

  .master-process-list li:last-child {
    border-bottom: 0;
  }

  .master-process-list li > span {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .master-process-list strong {
    font-size: 18px;
  }

  .master-process-list p {
    font-size: 14px;
    line-height: 1.45;
  }

  .master-service-rail {
    display: block;
    margin-top: 24px;
  }

  .master-service-rail a,
  .master-service-rail a + a {
    min-height: 62px;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-left: 0;
    border-bottom: 1px solid var(--master-line);
  }

  .master-service-rail strong {
    margin: 0;
    font-size: 16px;
  }

  .master-service-rail span {
    text-align: right;
  }

  .master-prices {
    padding: 48px 0;
  }

  .master-prices-layout {
    display: block;
  }

  .master-price-list {
    margin-top: 24px;
  }

  .master-price-list > div {
    min-height: 52px;
    gap: 14px;
    padding: 11px 0;
    font-size: 14px;
  }

  .master-price-list strong {
    font-size: 15px;
  }

  .master-prices .master-inline-link {
    margin-top: 16px;
  }

  .master-location-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .master-location-facts > div {
    min-height: 82px;
    padding: 16px 0;
  }

  .master-location-facts .btn {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
  }

  .master-map,
  .master-map img,
  .master-map .map-frame {
    min-height: 240px;
    height: 240px;
  }

  .master-enquiry-layout {
    display: block;
  }

  .master-enquiry-copy {
    margin-bottom: 26px;
  }

  .master-enquiry-copy > p:not(.master-eyebrow) {
    font-size: 15px;
  }

  .home-master .master-form {
    padding: 20px 16px;
  }

  .home-master-page #objednavka .master-form {
    padding: 20px 16px;
    border-radius: 0;
    box-shadow: none;
  }

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

  .home-master .master-form input:not([type="checkbox"]),
  .home-master .master-form select,
  .home-master .master-form textarea {
    min-height: 50px;
  }

  .master-faq-grid {
    grid-template-columns: 1fr;
  }

  .master-faq-grid details + details,
  .master-faq-grid details:nth-child(3) {
    border-left: 0;
  }

  .master-faq-grid summary {
    min-height: 58px;
    padding: 16px 0;
    font-size: 17px;
  }

  .master-faq-grid p {
    padding: 0 0 18px;
    font-size: 14px;
  }

  .content-page .page-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: calc(64px + env(safe-area-inset-top));
  }

  .content-page .page-hero-content {
    order: 1;
    width: min(calc(100% - 32px), 560px);
    padding: 24px 0 22px;
  }

  .content-page .page-hero-content::before {
    width: 44px;
    margin-bottom: 14px;
  }

  .content-page .page-hero-content h1 {
    margin-bottom: 14px;
    font-size: clamp(36px, 10.8vw, 46px);
    line-height: 0.95;
  }

  .content-page .page-hero-content p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.45;
  }

  .content-page .page-hero-image {
    position: static;
    order: 2;
    width: 100%;
    height: clamp(220px, 60vw, 250px);
  }

  .content-page .page-grid,
  .article-page .article-layout {
    display: block;
  }

  .content-page .page-main {
    max-width: none;
  }

  .content-page .page-main h2,
  .content-page .article-content h2 {
    margin-top: 38px;
    font-size: 28px;
  }

  .content-page .page-main p,
  .content-page .page-main li,
  .content-page .article-content p,
  .content-page .article-content li {
    font-size: 16px;
    line-height: 1.65;
  }

  .content-page .page-aside {
    position: static;
    margin-top: 34px;
    padding: 22px 18px;
  }

  .content-page .contact-mini,
  .content-page .article-callout {
    padding: 20px 18px;
  }

  .content-page .related-links a {
    min-height: 48px;
    padding-right: 0;
  }
}

@media (max-width: 380px) {
  .master-hero-copy,
  .content-page .page-hero-content {
    width: min(calc(100% - 28px), 560px);
  }

  .master-hero h1 {
    font-size: clamp(36px, 11.3vw, 43px);
  }

  .problem-choice small {
    display: none;
  }

  .master-case-visuals img {
    height: 154px;
  }

  .master-price-list > div {
    grid-template-columns: minmax(0, 1fr) minmax(84px, auto);
  }
}

/* 2026 premium system — selected Apple/Tesla-inspired mobile direction. */
:root {
  --premium-black: #090909;
  --premium-ink: #0d0d0e;
  --premium-paper: #f8f7f3;
  --premium-white: #fffefa;
  --premium-soft: #efede7;
  --premium-line: #d7d3ca;
  --premium-muted: #66635d;
  --premium-yellow: #f5bc16;
  --premium-yellow-hover: #ffd02e;
  --premium-yellow-ink: #855d00;
  --premium-radius: 16px;
  --premium-max: 1240px;
}

html {
  background: var(--premium-black);
}

body {
  color: var(--premium-ink);
  background: var(--premium-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(var(--premium-max), calc(100% - 40px));
}

:where(.btn, .header-phone) {
  border-radius: 8px;
}

.btn {
  min-height: 56px;
  padding: 14px 24px;
  border-width: 1px;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.btn-primary {
  border-color: var(--premium-yellow);
  background: var(--premium-yellow);
  color: var(--premium-ink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--premium-yellow-hover);
  background: var(--premium-yellow-hover);
  color: var(--premium-ink);
  box-shadow: 0 14px 34px rgba(245, 188, 22, 0.22);
}

.site-header {
  background: rgba(9, 9, 9, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

.header-inner {
  width: min(var(--premium-max), calc(100% - 48px));
  min-height: 80px;
  gap: 34px;
}

.brand img {
  width: 148px;
}

.main-nav {
  gap: clamp(22px, 2.4vw, 36px);
}

.main-nav a {
  padding: 29px 0 27px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.035em;
}

.main-nav > a::after {
  bottom: 20px;
  height: 2px;
}

.header-phone {
  min-height: 42px;
  padding-inline: 17px;
  background: var(--premium-yellow);
}

.home-master-page,
.home-master,
.content-page,
.content-page > .section {
  background: var(--premium-paper);
}

.home-master h2 {
  max-width: 820px;
  font-size: clamp(44px, 4.7vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.master-eyebrow {
  padding-top: 18px;
  color: var(--premium-yellow-ink);
  font-size: 12px;
  letter-spacing: 0.075em;
}

.master-eyebrow::before {
  width: 58px;
  height: 4px;
  background: var(--premium-yellow);
}

.master-hero {
  min-height: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 80px;
  background: var(--premium-paper);
}

.master-hero-copy {
  width: min(520px, calc(100% - 96px));
  margin: 0 auto;
  padding: 88px 0 76px;
}

.master-hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(72px, 6vw, 92px);
  line-height: 0.86;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.master-hero-lead {
  max-width: 540px;
  margin-bottom: 32px;
  color: #343330;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.42;
  letter-spacing: -0.018em;
}

.master-hero-actions {
  max-width: 520px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  gap: 14px 24px;
  align-items: center;
}

.master-hero-actions .btn,
.master-hero-actions .btn-primary {
  min-width: 0;
  min-height: 64px;
  padding: 16px 28px;
  border-radius: 7px;
  font-size: 19px;
}

.master-hero-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--premium-ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-decoration-color: var(--premium-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
  white-space: nowrap;
}

.master-hero-phone img {
  width: 22px;
  height: 22px;
}

.master-meta {
  margin-top: 22px;
  color: #5f5c56;
  font-size: 14px;
}

.master-meta span:first-child {
  font-size: 16px;
}

.master-hero-media {
  position: relative;
  background: var(--premium-black);
}

.master-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 56%, rgba(0, 0, 0, 0.72) 100%);
}

.master-hero-media img {
  min-height: 680px;
  object-position: 76% center;
  filter: saturate(0.84) contrast(1.09) brightness(0.82);
  transform: scale(1.015);
}

.master-hero-media figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 56px);
  bottom: 32px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.master-hero-media figcaption span {
  color: var(--premium-yellow);
}

.master-problems,
.master-process,
.master-location,
.master-enquiry,
.master-faq,
.home-master-page .home-master .master-enquiry {
  padding: 112px 0;
}

.master-section-intro {
  margin-bottom: 48px;
}

.master-section-intro > p:last-child {
  color: var(--premium-muted);
  font-size: 19px;
}

.problem-grid {
  border-color: var(--premium-line);
  background: rgba(255, 255, 255, 0.28);
}

.problem-choice {
  min-height: 150px;
  padding: 30px;
  border-color: var(--premium-line);
  background: transparent;
}

.problem-choice:hover,
.problem-choice:focus-visible {
  background: var(--premium-yellow);
}

.problem-number {
  color: var(--premium-yellow-ink);
}

.problem-choice strong {
  font-size: 22px;
  letter-spacing: -0.025em;
}

.problem-choice small {
  color: var(--premium-muted);
  font-size: 14px;
}

.master-case,
.master-enquiry,
.home-master-page.home-redesign #main.home-master #objednavka.master-enquiry {
  color: #fff;
  background: var(--premium-black);
}

.master-case {
  padding: 112px 0 96px;
}

.master-case-layout {
  gap: 52px 72px;
}

.master-case-copy > p:not(.master-eyebrow),
.master-enquiry-copy > p:not(.master-eyebrow) {
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
}

.master-case-visuals {
  gap: 16px;
}

.master-case-visuals figure {
  border-radius: 8px;
}

.master-case-visuals img {
  height: 380px;
}

.master-case-facts div {
  padding-top: 28px;
}

.master-process-list,
.master-service-rail,
.master-location-grid,
.master-faq-grid {
  border-color: var(--premium-line);
}

.master-process-list li,
.master-process-list li + li,
.master-service-rail a,
.master-service-rail a + a,
.master-location-facts > div,
.master-faq-grid details,
.master-faq-grid details + details {
  border-color: var(--premium-line);
}

.master-process-list li {
  padding-block: 36px;
}

.master-process-list li > span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--premium-yellow);
}

.master-process-list strong {
  font-size: 22px;
}

.master-process-list p,
.master-service-rail span,
.master-prices-layout > div:first-child > p:last-child,
.master-location-facts p,
.master-faq-grid p {
  color: var(--premium-muted);
}

.master-service-rail a {
  min-height: 126px;
}

.master-service-rail a:hover,
.master-service-rail a:focus-visible {
  background: var(--premium-white);
}

.master-prices {
  padding: 104px 0;
  background: var(--premium-soft);
  border-color: var(--premium-line);
}

.master-price-list {
  border-top-color: var(--premium-ink);
}

.master-price-list > div {
  min-height: 66px;
  border-bottom-color: var(--premium-line);
}

.master-map,
.master-map img,
.master-map .map-frame {
  min-height: 500px;
  border-radius: 8px;
}

.master-location-facts .btn {
  min-width: 220px;
}

.master-enquiry-layout {
  gap: 82px;
}

.master-enquiry-copy {
  position: sticky;
  top: 120px;
}

.home-master .master-form,
.home-master-page #objednavka .master-form {
  padding: 38px;
  border: 0;
  border-radius: var(--premium-radius);
  background: var(--premium-paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.master-form-grid {
  gap: 2px 18px;
}

.home-master .master-form label,
.home-master-page #objednavka .master-form label {
  margin-bottom: 18px;
}

.home-master .master-form .field-label,
.home-master-page #objednavka .master-form .field-label {
  margin-bottom: 8px;
  color: #35332f;
  font-size: 13px;
}

.home-master .master-form input:not([type="checkbox"]),
.home-master .master-form select,
.home-master .master-form textarea,
.home-master-page #objednavka .master-form input:not([type="checkbox"]):not([type="radio"]),
.home-master-page #objednavka .master-form select,
.home-master-page #objednavka .master-form textarea {
  min-height: 56px;
  padding: 13px 15px;
  border: 1px solid #cfcbc2;
  border-radius: 11px;
  background: #fff;
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.home-master .master-form textarea,
.home-master-page #objednavka .master-form textarea {
  min-height: 128px;
  resize: vertical;
}

.home-master .master-form input:focus,
.home-master .master-form select:focus,
.home-master .master-form textarea:focus {
  border-color: #a87900;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(245, 188, 22, 0.2);
}

.home-master .master-form .consent,
.home-master-page #objednavka .master-form .consent {
  min-height: 44px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 4px 0 22px;
  color: #34322f;
  line-height: 1.45;
}

.home-master .master-form .consent input[type="checkbox"],
.home-master-page #objednavka .master-form .consent input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin: 0;
  align-self: start;
  accent-color: var(--premium-yellow);
}

.home-master .master-form .form-actions .btn {
  min-height: 62px;
  border-radius: 11px;
  font-size: 19px;
}

.master-faq-grid summary {
  padding: 26px;
  font-size: 20px;
}

.master-faq-grid p {
  padding: 0 26px 28px;
}

.site-footer {
  padding-block: 72px;
  background: var(--premium-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  gap: clamp(44px, 7vw, 92px);
}

.footer-inner img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-inner strong {
  margin-bottom: 12px;
  color: #fff;
}

.footer-inner span,
.footer-inner p,
.footer-inner a,
.footer-link-button {
  color: rgba(255, 255, 255, 0.62);
}

.footer-inner a:hover,
.footer-inner a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--premium-yellow);
}

/* Subpages inherit the same premium editorial system. */
.content-page .page-hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--premium-paper);
  overflow: hidden;
}

.content-page .page-hero-image {
  position: absolute;
  z-index: 0;
  top: 80px;
  right: 0;
  bottom: 0;
  left: auto;
  width: 50%;
  height: calc(100% - 80px);
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.07) brightness(0.9);
}

.content-page .page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--premium-max), calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 70px min(660px, 52vw) 64px 0;
  align-self: center;
}

.content-page .page-hero-content::before {
  width: 58px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--premium-yellow);
}

.content-page .page-hero-content h1 {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: clamp(52px, 4.7vw, 70px);
  line-height: 0.92;
  letter-spacing: -0.058em;
}

.content-page .page-hero-content p:not(.eyebrow) {
  font-size: 20px;
}

.service-proof-strip {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--premium-line);
  list-style: none;
}

.service-proof-strip li {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding-right: 14px;
}

.service-proof-strip strong {
  color: var(--premium-ink);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.25;
}

.service-proof-strip span {
  color: var(--premium-muted);
  font-size: 12px;
  line-height: 1.25;
}

.content-page > .section {
  padding-block: 100px;
}

.content-page > .section:nth-of-type(3n) {
  background: var(--premium-soft);
}

/* Preserve deliberately dark content sections after the alternating-section rule. */
.content-page > .section.trust-section,
.content-page > .section.form-section,
.content-page > .section:has(.related-section) {
  color: #fff;
  background: var(--premium-black);
}

.content-page > .section:has(.related-section) .related-section h2 {
  color: #fff;
}

.content-page .page-grid {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 72px;
}

.content-page .page-main h2,
.content-page .article-content h2 {
  margin-top: 64px;
  font-size: clamp(34px, 3.4vw, 48px);
  letter-spacing: -0.045em;
}

.content-page .page-main p,
.content-page .page-main li,
.content-page .article-content p,
.content-page .article-content li {
  color: #4b4842;
  font-size: 18px;
  line-height: 1.75;
}

.content-page .page-aside {
  top: 112px;
  padding: 30px;
  border-top: 4px solid var(--premium-yellow);
  border-radius: 10px;
  background: var(--premium-black);
}

.content-page .contact-mini,
.content-page .article-callout {
  padding: 30px;
  border-left-color: var(--premium-yellow);
  border-radius: 0 10px 10px 0;
  background: var(--premium-soft);
}

.content-page .faq-list summary {
  min-height: 64px;
  font-size: 20px;
}

.service-card,
.answer-grid article,
.work-card,
.article-card,
.price-tabs,
.contact-details,
.mobile-collapse,
.mobile-expand,
.repair-examples-page .case-study-card {
  border-radius: 12px;
}

.cookie-consent {
  border-radius: 16px;
  background: rgba(9, 9, 9, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.cookie-consent h2 {
  color: #fff;
}

.cookie-consent p {
  color: rgba(255, 255, 255, 0.72);
}

.cookie-consent a {
  color: var(--premium-yellow);
}

.whatsapp-fab {
  right: 20px;
  bottom: 20px;
  padding: 11px 15px;
  border: 1px solid var(--premium-yellow);
  border-radius: 9px;
  background: var(--premium-black);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background: var(--premium-yellow);
  color: var(--premium-ink);
}

@media (min-width: 900px) and (max-width: 1120px) {
  .master-hero-copy {
    width: calc(100% - 56px);
  }

  .master-hero h1 {
    font-size: clamp(62px, 7.1vw, 76px);
  }

  .master-hero-actions {
    grid-template-columns: 1fr;
  }

  .master-hero-phone {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: calc(100% - 40px);
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 126px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: block;
    border: 0;
    border-radius: 8px;
    background-size: 28px 28px;
  }

  .main-nav {
    position: fixed;
    top: calc(68px + env(safe-area-inset-top));
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    gap: 0;
    padding: 28px 24px max(32px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background: rgba(9, 9, 9, 0.99);
    overflow-y: auto;
  }

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

  .main-nav a {
    min-height: 58px;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: #fff;
    font-size: 25px;
    letter-spacing: -0.025em;
  }

  .main-nav .mobile-language-links {
    display: flex;
    gap: 14px;
    margin-top: 22px;
  }

  .main-nav .mobile-language-links a {
    min-width: 48px;
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 14px;
  }

  .main-nav .mobile-language-links a.is-active {
    border-color: var(--premium-yellow);
    background: var(--premium-yellow);
    color: var(--premium-ink);
  }

  body.is-nav-open {
    overflow: hidden;
  }

  .header-actions {
    display: none;
  }

  .home-master h2 {
    font-size: clamp(39px, 10.8vw, 48px);
    line-height: 0.94;
  }

  .master-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-top: calc(68px + env(safe-area-inset-top));
  }

  .master-hero-copy {
    width: min(calc(100% - 56px), 560px);
    margin: 0 auto;
    padding: 28px 0 4px;
  }

  .master-eyebrow {
    margin-bottom: 18px;
    padding-top: 16px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .master-eyebrow::before {
    width: 44px;
    height: 4px;
  }

  .master-hero h1 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(52px, 14.6vw, 62px);
    line-height: 0.86;
    letter-spacing: -0.073em;
    text-wrap: balance;
  }

  .master-hero-lead {
    max-width: 330px;
    margin-bottom: 22px;
    font-size: 19px;
    line-height: 1.38;
  }

  .master-hero-actions {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .master-hero-actions .btn,
  .master-hero-actions .btn-primary {
    width: 100%;
    min-height: 56px;
    font-size: 19px;
  }

  .master-hero-phone {
    min-height: 40px;
    justify-self: center;
    gap: 11px;
    font-size: 18px;
  }

  .master-meta {
    justify-content: center;
    margin-top: 4px;
    font-size: 15px;
  }

  .master-meta span:first-child {
    font-size: 15px;
  }

  .master-meta span + span {
    display: none;
  }

  .master-hero-media {
    height: 330px;
  }

  .master-hero-media::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    height: 34px;
    pointer-events: none;
    background: linear-gradient(180deg, var(--premium-paper), rgba(248, 247, 243, 0));
  }

  .master-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: 78% center;
    transform: scale(1.02);
  }

  .master-hero-media figcaption {
    left: 24px;
    bottom: 22px;
    font-size: 10px;
    letter-spacing: 0.17em;
  }

  .master-problems,
  .master-process,
  .master-location,
  .master-enquiry,
  .master-faq,
  .home-master-page .home-master .master-enquiry {
    padding: 72px 0;
  }

  .master-section-intro {
    margin-bottom: 30px;
  }

  .master-section-intro > p:last-child,
  .master-section-intro-row > p:last-child {
    font-size: 16px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
    background: transparent;
  }

  .problem-choice {
    min-height: 92px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px 4px;
    border-right: 0;
    background: transparent;
  }

  .problem-choice strong {
    font-size: 20px;
  }

  .problem-choice small {
    display: block;
    font-size: 13px;
  }

  .master-case {
    padding: 72px 0 64px;
  }

  .master-case-copy > p:not(.master-eyebrow),
  .master-enquiry-copy > p:not(.master-eyebrow) {
    font-size: 16px;
  }

  .master-case-visuals {
    gap: 8px;
    margin: 32px 0 24px;
  }

  .master-case-visuals figure {
    border-radius: 6px;
  }

  .master-case-visuals img {
    height: 190px;
  }

  .master-process-list li,
  .master-process-list li + li {
    min-height: 112px;
    padding: 22px 0;
  }

  .master-process-list li > span {
    width: 46px;
    height: 46px;
  }

  .master-service-rail a,
  .master-service-rail a + a {
    min-height: 72px;
  }

  .master-prices {
    padding: 72px 0;
  }

  .master-price-list > div {
    min-height: 62px;
    padding-block: 14px;
  }

  .master-map,
  .master-map img,
  .master-map .map-frame {
    height: 280px;
    min-height: 280px;
    border-radius: 8px;
  }

  .master-enquiry-copy {
    position: static;
    margin-bottom: 32px;
  }

  .home-master .master-form,
  .home-master-page #objednavka .master-form {
    padding: 24px 20px;
    border-radius: 16px;
  }

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

  .home-master .master-form input:not([type="checkbox"]),
  .home-master .master-form select,
  .home-master .master-form textarea,
  .home-master-page #objednavka .master-form input:not([type="checkbox"]):not([type="radio"]),
  .home-master-page #objednavka .master-form select,
  .home-master-page #objednavka .master-form textarea {
    min-height: 56px;
  }

  .master-faq-grid {
    grid-template-columns: 1fr;
  }

  .master-faq-grid details + details,
  .master-faq-grid details:nth-child(3) {
    border-left: 0;
  }

  .master-faq-grid summary {
    min-height: 70px;
    padding: 20px 2px;
    font-size: 19px;
  }

  .master-faq-grid p {
    padding: 0 2px 22px;
    font-size: 15px;
  }

  .content-page .page-hero {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding-top: calc(68px + env(safe-area-inset-top));
  }

  .content-page .page-hero-content {
    order: 1;
    width: min(calc(100% - 48px), 600px);
    padding: 36px 0 34px;
  }

  .content-page .page-hero-content h1 {
    margin-bottom: 20px;
    font-size: clamp(46px, 13.3vw, 62px);
    line-height: 0.9;
  }

  .content-page .page-hero-content p:not(.eyebrow) {
    font-size: 18px;
  }

  .content-page .page-hero-image {
    position: static;
    order: 2;
    width: 100%;
    height: 300px;
    min-height: 0;
    object-position: center;
  }

  .service-proof-strip {
    margin-top: 22px;
    padding-top: 16px;
  }

  .service-proof-strip strong {
    font-size: 13px;
  }

  .service-proof-strip span {
    font-size: 11px;
  }

  .content-page > .section {
    padding-block: 72px;
  }

  .content-page .page-grid,
  .article-page .article-layout {
    display: block;
  }

  .content-page .page-main h2,
  .content-page .article-content h2 {
    margin-top: 48px;
    font-size: 34px;
  }

  .content-page .page-main p,
  .content-page .page-main li,
  .content-page .article-content p,
  .content-page .article-content li {
    font-size: 17px;
    line-height: 1.7;
  }

  .content-page .page-aside {
    margin-top: 42px;
    padding: 24px;
    border-radius: 10px;
  }

  .site-footer {
    padding: 60px 0 96px;
  }

  .footer-inner {
    gap: 34px;
  }

  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 54;
    min-height: 58px;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(9, 9, 9, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta:has(a:nth-child(3)) {
    grid-template-columns: 0.72fr 0.92fr 1.36fr;
  }

  .mobile-sticky-cta a {
    min-height: 46px;
    border-radius: 9px;
    font-size: 14px;
  }

  .mobile-sticky-cta a:first-child {
    color: #fff;
    background: transparent;
  }

  .mobile-sticky-cta a:last-child {
    color: var(--premium-ink);
    background: var(--premium-yellow);
  }

  body {
    padding-bottom: 82px;
  }
}

@media (min-width: 901px) {
  .master-hero-copy {
    width: min(
      520px,
      calc(
        50vw - max(20px, calc((100vw - var(--premium-max)) / 2)) - 28px
      )
    );
    margin-right: 0;
    margin-left: max(20px, calc((100vw - var(--premium-max)) / 2));
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 980px) {
  .content-page .page-grid,
  .article-page .article-layout {
    display: block;
  }

  .content-page .page-main {
    max-width: none;
  }

  .content-page .page-aside {
    position: static;
    margin-top: 42px;
  }
}

@media (max-width: 390px) {
  .master-hero-copy {
    width: calc(100% - 48px);
  }

  .master-hero h1 {
    font-size: clamp(49px, 14vw, 56px);
  }

  .master-hero-lead {
    font-size: 18px;
  }

  .master-hero-media {
    height: 340px;
  }
}

@media (max-width: 760px) {
  .seo-landing .service-card p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }
}

/* 2026-08-20: crawlable discovery blocks with strong desktop/mobile hierarchy */
.master-discovery {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  color: #f7f8f8;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 82, 48, 0.16), transparent 34rem),
    #181b1e;
}

.master-discovery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.master-discovery h2 {
  max-width: 13ch;
  margin: 0.35rem 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.master-discovery .master-eyebrow {
  color: var(--workshop-yellow);
}

.master-discovery p:not(.master-eyebrow) {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.72);
}

.master-discovery-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.master-discovery-links a {
  display: flex;
  min-height: 9rem;
  padding: 1.4rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.master-discovery-links a:hover,
.master-discovery-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 112, 77, 0.72);
  background: rgba(255, 255, 255, 0.09);
}

.master-discovery-links strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
}

.master-discovery-links span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.crawl-links-section {
  margin: clamp(2.5rem, 6vw, 4.5rem) 0;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border: 1px solid rgba(17, 19, 21, 0.1);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1.15rem 3rem rgba(17, 19, 21, 0.07);
}

.crawl-links-section > h2 {
  margin-top: 0.25rem;
}

.crawl-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.crawl-link-card {
  display: flex;
  min-width: 0;
  padding: 1rem 1.05rem;
  flex-direction: column;
  gap: 0.28rem;
  color: #191c1f;
  text-decoration: none;
  border: 1px solid rgba(17, 19, 21, 0.11);
  border-radius: 0.9rem;
  background: #f7f7f5;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.crawl-link-card:hover,
.crawl-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(210, 55, 28, 0.5);
  background: #fff;
}

.crawl-link-card-static:hover {
  transform: none;
  border-color: rgba(17, 19, 21, 0.11);
  background: #f7f7f5;
}

.crawl-link-card strong {
  color: #15181a;
  font-size: 1rem;
  line-height: 1.25;
}

.crawl-link-card span {
  color: #63676b;
  font-size: 0.84rem;
  line-height: 1.4;
}

.article-update {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.7rem;
  color: #5d6469;
  font-size: 0.82rem;
  font-weight: 650;
  border: 1px solid rgba(17, 19, 21, 0.1);
  border-radius: 999px;
  background: #fff;
}

.article-update a {
  color: #b92d17;
  font-weight: 750;
  text-underline-offset: 0.18em;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.2rem 0 2rem;
}

.decision-grid > div {
  padding: 1.05rem;
  border-left: 3px solid #d83c21;
  border-radius: 0.75rem;
  background: #f3f4f2;
}

.decision-grid strong,
.decision-grid span {
  display: block;
}

.decision-grid span {
  margin-top: 0.35rem;
  color: #5e6366;
  font-size: 0.91rem;
  line-height: 1.48;
}

@media (max-width: 860px) {
  .master-discovery-layout {
    grid-template-columns: 1fr;
  }

  .master-discovery h2 {
    max-width: 18ch;
  }
}

@media (max-width: 640px) {
  .master-discovery {
    padding: 3.25rem 0;
  }

  .master-discovery-links,
  .crawl-link-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .master-discovery-links a {
    min-height: 7.25rem;
  }

  .crawl-links-section {
    margin-inline: -0.35rem;
    padding: 1.15rem;
    border-radius: 1.15rem;
  }
}

/* Workshop Glass final cascade: keep this layer last. */
:root {
  --workshop-black: #080909;
  --workshop-paper: #f3f0e8;
  --workshop-paper-strong: #fffdf8;
  --workshop-line: #d5d0c6;
  --workshop-yellow: #f6c21d;
  --workshop-yellow-hover: #ffd33f;
  --workshop-muted: #625f59;
}

.mobile-hero-break {
  display: none;
}

.master-hero-phone img,
.master-meta img {
  filter: invert(86%) sepia(88%) saturate(1160%) hue-rotate(346deg) brightness(102%) contrast(93%) !important;
}

@media (max-width: 390px) {
  .master-hero {
    min-height: 691px !important;
  }

  .master-hero-copy {
    width: calc(100% - 64px) !important;
    padding-top: 85px !important;
  }

  .master-hero h1 {
    max-width: 280px !important;
    margin-bottom: 28px !important;
    line-height: 0.96 !important;
  }

  .master-hero-lead {
    max-width: 100% !important;
    margin-bottom: 18px !important;
    line-height: 1.48 !important;
  }

  .mobile-hero-break {
    display: block;
  }

  .master-process {
    padding-top: 18px !important;
  }

  .master-process > .container {
    width: calc(100% - 64px) !important;
  }

  .master-process .master-eyebrow {
    height: 4px;
    margin-bottom: 28px;
    padding-top: 0;
    font-size: 0;
  }

  .master-process h2 {
    font-size: 32px !important;
    line-height: 0.98 !important;
  }
}

.site-header {
  background: var(--workshop-black);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.content-page .page-main::before,
.content-page .page-aside::before {
  display: none;
}

.home-master-page,
.home-master,
.master-process,
.master-problems,
.master-location,
.master-faq,
.content-page,
.content-page > .section {
  background: var(--workshop-paper);
}

.master-hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: #fff;
  background: var(--workshop-black);
  overflow: hidden;
}

.master-hero-copy {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px min(52%, 650px) 104px 0;
}

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

.master-hero h1 {
  max-width: 650px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.42);
}

.master-hero-lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
}

.master-hero-actions {
  max-width: 570px;
  grid-template-columns: minmax(230px, 1fr) minmax(220px, 0.95fr);
  gap: 12px;
}

.master-hero-phone {
  min-height: 64px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 9, 9, 0.66);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.master-hero-phone:hover,
.master-hero-phone:focus-visible {
  border-color: var(--workshop-yellow);
  color: var(--workshop-yellow);
  background: rgba(8, 9, 9, 0.86);
}

.master-hero-phone img,
.master-meta img {
  filter: invert(1);
}

.master-meta {
  color: rgba(255, 255, 255, 0.78);
}

.master-meta span + span {
  border-left-color: rgba(255, 255, 255, 0.28);
}

.master-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  height: auto;
  margin: 0;
}

.master-hero-media::before {
  display: none;
}

.master-hero-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.57);
  pointer-events: none;
}

.master-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.8) contrast(1.08) brightness(0.82);
  transform: none;
}

.master-hero-media figcaption {
  display: none;
}

.master-process {
  padding-top: 104px;
}

.master-process-list li > span {
  border-radius: 8px;
  background: var(--workshop-yellow);
}

.master-prices {
  background: #eae6dd;
}

.master-discovery {
  background: #181a1b;
}

.master-case,
.master-enquiry,
.home-master-page.home-redesign #main.home-master #objednavka.master-enquiry,
.site-footer {
  background: var(--workshop-black);
}

.content-page .page-hero {
  position: relative;
  min-height: 700px;
  color: #fff;
  background: var(--workshop-black);
  isolation: isolate;
}

.content-page .page-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.78) contrast(1.1) brightness(0.72);
}

.content-page .page-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.content-page .page-hero-content {
  z-index: 2;
  padding: 112px min(42%, 520px) 92px 0;
  color: #fff;
}

.content-page .page-hero-content .eyebrow {
  color: var(--workshop-yellow);
}

.content-page .page-hero-content h1 {
  color: #fff;
}

.content-page .page-hero-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.content-page .page-hero .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(8, 9, 9, 0.58);
}

.content-page .page-hero .btn-secondary:hover,
.content-page .page-hero .btn-secondary:focus-visible {
  color: var(--workshop-black);
  border-color: var(--workshop-yellow);
  background: var(--workshop-yellow);
}

.content-page .service-proof-strip {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.content-page .service-proof-strip strong {
  color: #fff;
}

.content-page .service-proof-strip span {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 900px) {
  .main-nav {
    top: 68px;
    bottom: auto;
    height: calc(100dvh - 68px);
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
    background: var(--workshop-black);
  }

  .main-nav.is-open {
    max-height: none;
  }

  .nav-toggle:focus-visible {
    outline-color: #0a40e6;
  }

  .content-page .page-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .content-page .page-hero .hero-actions .btn {
    width: 100%;
  }

  .master-hero {
    min-height: 742px;
    display: flex;
    padding-top: calc(68px + env(safe-area-inset-top));
    align-items: stretch;
  }

  .master-hero-copy {
    width: min(calc(100% - 48px), 560px);
    margin: 0 auto;
    padding: 48px 0 62px;
    align-self: stretch;
  }

  .master-hero h1 {
    max-width: 320px;
    margin-bottom: 22px;
    font-size: clamp(50px, 14vw, 59px);
    line-height: 0.88;
    letter-spacing: -0.068em;
    text-wrap: normal;
  }

  .master-hero-lead {
    max-width: 335px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.42;
  }

  .master-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .master-hero-actions .btn,
  .master-hero-actions .btn-primary,
  .master-hero-phone {
    width: 100%;
    min-height: 58px;
    font-size: 17px;
  }

  .master-hero-phone {
    justify-self: stretch;
  }

  .master-meta {
    justify-content: flex-start;
    margin-top: 17px;
    font-size: 14px;
  }

  .master-meta span:first-child {
    font-size: 14px;
  }

  .master-hero-media img {
    object-position: 56% center;
  }

  .master-process,
  .master-problems,
  .master-location,
  .master-enquiry,
  .master-faq,
  .home-master-page .home-master .master-enquiry {
    padding: 76px 0;
  }

  .master-process {
    padding-top: 68px;
  }

  .content-page .page-hero {
    min-height: 640px;
    display: flex;
    justify-content: end;
    padding-top: calc(68px + env(safe-area-inset-top));
  }

  .content-page .page-hero-content {
    order: initial;
    width: min(calc(100% - 48px), 600px);
    margin: 0 auto;
    padding: 76px 0 58px;
    align-self: end;
  }

  .content-page .page-hero-content h1 {
    max-width: 11ch;
    color: #fff;
    font-size: clamp(46px, 13vw, 60px);
  }

  .content-page .page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 390px) {
  .master-hero-copy {
    width: calc(100% - 48px);
  }

  .master-hero h1 {
    font-size: 50px;
  }
}

/* Master audit v19: exact in-page alignment and resilient trust proof layout. */
.home-master-page #objednavka {
  scroll-margin-top: 92px;
}

.content-page .service-proof-strip {
  width: min(100%, 650px);
}

.service-form[aria-busy="true"] {
  cursor: progress;
}

.service-form button[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 900px) {
  section[id],
  article[id],
  .price-tabs[id],
  .home-master-page #objednavka {
    scroll-margin-top: 0;
  }

  .content-page .service-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .content-page .service-proof-strip li {
    padding-right: 0;
  }
}

@media (max-width: 390px) {
  .content-page .service-proof-strip {
    gap: 8px;
  }

  .content-page .service-proof-strip strong {
    font-size: 12px;
  }

  .content-page .service-proof-strip span {
    font-size: 10px;
  }
}

/* Mobile page hero polish: keep long service titles compact without changing homepage. */
@media (max-width: 640px) {
  .content-page .page-hero {
    min-height: 600px;
  }

  .content-page .page-hero-content {
    padding: 58px 0 44px;
  }

  .content-page .page-hero-content h1 {
    max-width: none;
    font-size: clamp(40px, 11vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }
}
