:root {
  --ink: #111820;
  --muted: #5e6975;
  --paper: #f4f7fa;
  --white: #ffffff;
  --line: #d7dee6;
  --navy: #101c2a;
  --navy-2: #17293b;
  --blue: #1976a8;
  --blue-2: #5db7de;
  --accent: #f3b43f;
  --steel: #e9eef3;
  --shadow: 0 18px 48px rgba(16, 28, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 92px;
  padding: 12px clamp(18px, 5vw, 92px);
  color: #eef5fb;
  background:
    linear-gradient(180deg, rgba(68, 80, 91, 0.98), rgba(42, 54, 66, 0.97) 58%, rgba(27, 39, 52, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(6, 12, 19, 0.28);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  height: 34px;
  content: "";
  background: linear-gradient(180deg, rgba(16, 28, 42, 0.36), rgba(16, 28, 42, 0));
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-mark {
  width: 82px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.62),
    0 10px 22px rgba(5, 10, 16, 0.2);
}

.brand strong {
  display: block;
  font-size: 1.42rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: #d9e4ed;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 26px);
  color: #eff6fb;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a,
.header-call,
.button,
.map-link,
.service-rail a {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 30px 0;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-icon {
  position: relative;
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #d8f3ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(199, 231, 244, 0.24);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(5, 10, 16, 0.2);
}

.nav-icon::before {
  font-size: 0.88rem;
  line-height: 1;
}

.service-icon::before { content: "⚙"; }
.process-icon::before { content: "↻"; }
.retro-icon::before { content: "▣"; }
.about-icon::before { content: "i"; font-weight: 950; }
.photo-icon::before { content: "▧"; }
.guest-icon::before { content: "✎"; }
.contact-icon::before { content: "✉"; }

.main-nav a:hover .nav-icon {
  animation: navIconNudge 620ms ease;
  border-color: rgba(93, 183, 222, 0.62);
  background: rgba(93, 183, 222, 0.16);
}

.main-nav a[aria-current="page"] {
  color: #fff;
}

.main-nav a[aria-current="page"] .nav-icon {
  color: var(--ink);
  background: var(--accent);
  border-color: rgba(243, 180, 63, 0.66);
}

@keyframes navIconNudge {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-2px); }
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  min-width: 214px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.call-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy);
  background: var(--accent);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
}

.header-call strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.header-call small {
  display: block;
  color: #ccefff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-call:hover {
  border-color: rgba(93, 183, 222, 0.5);
  box-shadow: 0 12px 26px rgba(5, 10, 16, 0.24);
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 118px;
  content: "";
  background: linear-gradient(180deg, rgba(244, 247, 250, 0), rgba(244, 247, 250, 0.94) 72%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 28, 42, 0.78) 0%, rgba(16, 28, 42, 0.48) 44%, rgba(244, 247, 250, 0.26) 76%, rgba(244, 247, 250, 0.54) 100%),
    linear-gradient(0deg, rgba(16, 28, 42, 0.2), rgba(16, 28, 42, 0.02)),
    url("assets/opravna.jpeg") center / cover;
  filter: saturate(0.95) contrast(1.06);
  transform: scale(1.015);
}

.hero-trust {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 22px);
  min-height: 82px;
  padding: 16px clamp(18px, 5vw, 92px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(16, 28, 42, 0.7), rgba(23, 41, 59, 0.46) 70%, rgba(23, 41, 59, 0.08));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(5, 10, 16, 0.2);
  backdrop-filter: blur(8px);
}

.hero-trust::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 38px;
  content: "";
  background: linear-gradient(180deg, rgba(16, 28, 42, 0.28), rgba(16, 28, 42, 0));
  pointer-events: none;
}

.trust-scope {
  display: grid;
  width: 54px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, #58b5d5 0 25%, #6f8ce8 25% 50%, #d8c639 50% 75%, #d24f70 75%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 3px, rgba(0, 0, 0, 0.72) 3px 6px);
  background-size: 100% 52%, 100% 48%;
  background-position: top, bottom;
  background-repeat: no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.66);
  border-radius: 7px;
  box-shadow:
    0 10px 22px rgba(5, 10, 16, 0.28),
    inset 0 0 0 1px rgba(16, 28, 42, 0.45);
}

.trust-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px 16px;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.34),
    0 0 18px rgba(0, 0, 0, 0.5);
}

.trust-copy strong {
  font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  font-weight: 900;
  line-height: 1.05;
}

.trust-copy small {
  color: #cfeeff;
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 850;
  text-transform: uppercase;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100% - 76px));
  margin: 0 auto;
  padding: clamp(148px, 13vw, 188px) 0 clamp(40px, 7vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.45fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.hero-copy {
  max-width: 790px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.7rem, 6.2vw, 6rem);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 650;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.44),
    0 0 18px rgba(0, 0, 0, 0.52);
}

.hero .eyebrow {
  color: #d9f3ff;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.78),
    1px -1px 0 rgba(0, 0, 0, 0.78),
    -1px 1px 0 rgba(0, 0, 0, 0.78),
    1px 1px 0 rgba(0, 0, 0, 0.78),
    0 0 14px rgba(0, 0, 0, 0.58);
}

.hero h1 {
  color: #fff;
  text-shadow:
    -2px -2px 0 rgba(0, 0, 0, 0.54),
    2px -2px 0 rgba(0, 0, 0, 0.54),
    -2px 2px 0 rgba(0, 0, 0, 0.54),
    2px 2px 0 rgba(0, 0, 0, 0.54),
    0 7px 30px rgba(0, 0, 0, 0.46);
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--navy);
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(243, 180, 63, 0.28);
}

.button.dark {
  color: #fff;
  background: var(--navy);
}

.hero-note {
  position: absolute;
  top: calc(82px + 1cm);
  right: 0;
  width: min(390px, 31vw);
  align-self: start;
  margin-top: 0;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, rgba(16, 28, 42, 0.48), rgba(23, 41, 59, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(16, 28, 42, 0.12);
  backdrop-filter: blur(8px);
}

.hero-note strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.hero-note p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-note dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-note div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-note dt {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note dd {
  margin: 2px 0 0;
  font-weight: 750;
}

.service-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), #fff 42%);
  border-top: 1px solid rgba(215, 222, 230, 0.54);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(16, 28, 42, 0.06);
}

.service-rail a {
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 20px clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--line);
}

.service-thumb {
  position: relative;
  display: block;
  grid-row: 1 / span 2;
  width: 68px;
  height: 58px;
  overflow: hidden;
  background: #edf7fc;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  box-shadow:
    0 12px 24px rgba(16, 28, 42, 0.12),
    0 0 0 1px rgba(25, 118, 168, 0.2);
}

.service-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 28, 42, 0.02), rgba(16, 28, 42, 0.24)),
    linear-gradient(90deg, rgba(93, 183, 222, 0.18), rgba(243, 180, 63, 0.12));
  pointer-events: none;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-rail a:hover .service-thumb img {
  transform: scale(1.08);
}

.service-rail a:hover .service-thumb {
  box-shadow:
    0 14px 26px rgba(16, 28, 42, 0.18),
    0 0 0 1px rgba(25, 118, 168, 0.34);
}

.service-rail strong,
.service-rail small {
  display: block;
  grid-column: 2;
}

.service-rail small {
  color: var(--muted);
}

.split-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--navy) 0%, #f7f9fb 52%, #fff 100%);
}

.feature-dark,
.feature-light {
  min-height: 450px;
  padding: clamp(42px, 6vw, 78px);
}

.feature-dark {
  position: relative;
  z-index: 2;
  overflow: visible;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 28, 42, 0.94), rgba(16, 28, 42, 0.78)),
    url("assets/sklad.jpeg") center / cover;
}

.feature-dark::after {
  content: "";
  position: absolute;
  top: 0;
  right: -96px;
  bottom: 0;
  width: 160px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 28, 42, 0.78), rgba(16, 28, 42, 0.34), rgba(255, 255, 255, 0));
}

.feature-dark .section-kicker,
.retro-copy .section-kicker {
  color: var(--accent);
}

.feature-dark h2,
.retro-copy h2,
.contact-info h2 {
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.36);
}

.feature-dark p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 850;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "✓";
  color: var(--accent);
  font-weight: 950;
}

.feature-light {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.7fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.98) 24%, #fff 100%);
}

.feature-light p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-light img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 12px solid var(--steel);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.repair-details {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 92px);
  background:
    linear-gradient(180deg, #ffffff, #f4f7fa 62%, #e9eef3 100%);
  border-top: 1px solid rgba(215, 222, 230, 0.54);
  border-bottom: 1px solid rgba(215, 222, 230, 0.72);
}

.repair-details .section-heading {
  max-width: 980px;
}

.repair-details .section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(203, 213, 223, 0), rgba(93, 183, 222, 0.28), rgba(203, 213, 223, 0)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(203, 213, 223, 0.9);
  border-radius: 10px;
  box-shadow: 0 22px 46px rgba(16, 28, 42, 0.1);
}

.repair-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.9));
  border-right: 1px solid rgba(203, 213, 223, 0.38);
  box-shadow: inset -26px 0 32px rgba(93, 183, 222, 0.035);
}

.repair-card::after {
  position: absolute;
  top: 20px;
  right: -1px;
  bottom: 20px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(203, 213, 223, 0), rgba(25, 118, 168, 0.2), rgba(203, 213, 223, 0));
  pointer-events: none;
}

.repair-card:last-child {
  border-right: 0;
}

.repair-card:last-child::after {
  display: none;
}

.repair-thumb {
  position: relative;
  display: block;
  width: 82px;
  height: 68px;
  margin-bottom: 22px;
  overflow: hidden;
  background: #edf7fc;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 10px;
  box-shadow:
    0 12px 24px rgba(16, 28, 42, 0.13),
    0 0 0 1px rgba(25, 118, 168, 0.2);
}

.repair-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 28, 42, 0), rgba(16, 28, 42, 0.24)),
    linear-gradient(90deg, rgba(93, 183, 222, 0.16), rgba(243, 180, 63, 0.12));
  pointer-events: none;
}

.repair-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.repair-card:hover .repair-thumb img {
  transform: scale(1.08);
}

.repair-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.14;
}

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

.repair-card-muted {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 28, 42, 0.94), rgba(23, 41, 59, 0.88)),
    url("assets/pracovni-stul.jpeg") center / cover;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 26px 0 40px rgba(93, 183, 222, 0.08);
}

.repair-card-muted .repair-thumb {
  box-shadow:
    0 12px 24px rgba(5, 10, 16, 0.26),
    0 0 0 1px rgba(243, 180, 63, 0.44);
}

.repair-card-muted p {
  color: rgba(255, 255, 255, 0.8);
}

.process-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(48px, 6vw, 78px) clamp(18px, 5vw, 92px);
  background: linear-gradient(180deg, #f5f8fb, var(--steel) 24%, #e4ebf2 100%);
  border-top: 1px solid rgba(215, 222, 230, 0.48);
  border-bottom: 1px solid var(--line);
}

.process-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3.25rem);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  min-height: 136px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.process-steps strong {
  display: block;
  margin-bottom: 8px;
}

.process-steps span {
  color: var(--muted);
}

.retro-section {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.retro-image {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(16, 28, 42, 0.18), rgba(16, 28, 42, 0.56)),
    url("assets/retro.jpeg") center / cover;
}

.retro-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  width: 150px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 28, 42, 0), rgba(16, 28, 42, 0.74), var(--navy));
}

.retro-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 78px);
  background: var(--navy);
}

.retro-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #fff;
  background: var(--navy-2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 6px solid var(--accent);
}

.proof-strip div {
  padding: 28px clamp(18px, 4vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip strong {
  display: block;
  color: var(--accent);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 92px);
  background:
    radial-gradient(circle at 82% 24%, rgba(93, 183, 222, 0.16), transparent 34%),
    linear-gradient(180deg, #f7fafc, #e9eff5 100%);
  border-bottom: 1px solid rgba(215, 222, 230, 0.7);
}

.reviews-copy {
  max-width: 850px;
}

.reviews-copy h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.reviews-copy p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.reviews-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 28, 42, 0.96), rgba(23, 41, 59, 0.9)),
    url("assets/zakladni-deska.jpeg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.reviews-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 28, 42, 0.74), rgba(16, 28, 42, 0.24));
  pointer-events: none;
}

.reviews-card > * {
  position: relative;
  z-index: 1;
}

.reviews-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reviews-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.06;
}

.reviews-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.reviews-button {
  width: 100%;
}

.about-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 92px);
  background: #e7edf2;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -30px;
  bottom: -34px;
  left: 36%;
  z-index: 0;
  background: url("assets/zakladni-deska.jpeg") center right / cover no-repeat;
  filter: grayscale(1) blur(2px) contrast(1.22);
  opacity: 0.52;
  transform: scale(1.03);
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.74) 38%, rgba(235, 241, 246, 0.58) 100%),
    radial-gradient(circle at 82% 44%, rgba(16, 28, 42, 0.18), transparent 34%);
}

.about-photo,
.about-copy {
  position: relative;
  z-index: 1;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 10px;
  box-shadow:
    0 24px 62px rgba(16, 28, 42, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.74);
}

.about-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 92px);
  background:
    linear-gradient(180deg, rgba(237, 242, 246, 0.92), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.gallery-page {
  background: var(--paper);
}

.gallery-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 92px) clamp(40px, 6vw, 74px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 28, 42, 0.94), rgba(23, 41, 59, 0.72)),
    url("assets/gallery/opravna.jpeg") center / cover;
  box-shadow: inset 0 -42px 54px rgba(244, 247, 250, 0.12);
}

.gallery-page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.44);
}

.gallery-page-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.gallery-section-compact {
  border-top: 1px solid rgba(215, 222, 230, 0.86);
}

.gallery-section-compact .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(210px, 23vw, 300px);
}

.gallery-section-compact .gallery-item-large {
  grid-row: auto;
}

.gallery-section-full {
  padding-top: clamp(42px, 6vw, 74px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: end;
  margin-bottom: 28px;
}

.gallery-intro .section-heading {
  margin-bottom: 0;
}

.gallery-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.gallery-intro span {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 9px 13px;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  background: rgba(93, 183, 222, 0.14);
  border: 1px solid rgba(93, 183, 222, 0.24);
  border-radius: 999px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  text-align: left;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(16, 28, 42, 0.12);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 28, 42, 0), rgba(16, 28, 42, 0.64)),
    radial-gradient(circle at 20% 10%, rgba(93, 183, 222, 0.18), transparent 34%);
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-item span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font-size: 1.02rem;
  font-weight: 950;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.48);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 0.96;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.gallery-section-full .gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: 250px;
}

.gallery-section-full .gallery-item-large {
  grid-column: span 2;
}

.guestbook-page {
  background: var(--paper);
}

.guestbook-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 92px) clamp(40px, 6vw, 74px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 28, 42, 0.96), rgba(23, 41, 59, 0.76)),
    url("assets/zakladni-deska.jpeg") center / cover;
}

.guestbook-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.44);
}

.guestbook-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.guestbook-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 92px);
  background:
    linear-gradient(180deg, rgba(237, 242, 246, 0.92), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.guestbook-form,
.guestbook-list-wrap {
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.guestbook-form {
  display: grid;
  gap: 18px;
  align-self: start;
}

.guestbook-list {
  display: grid;
  gap: 16px;
}

.guestbook-card,
.guestbook-empty {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: 1px solid rgba(203, 213, 223, 0.82);
  border-radius: 10px;
}

.guestbook-card p,
.guestbook-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.guestbook-card footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(203, 213, 223, 0.7);
}

.guestbook-card strong {
  color: var(--ink);
}

.guestbook-card time {
  color: var(--blue);
  font-weight: 900;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(16, 28, 42, 0.94), rgba(23, 41, 59, 0.9)),
    url("assets/zakladni-deska.jpeg") center / cover;
}

.guestbook-admin {
  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
}

.admin-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
}

.admin-heading h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.admin-flash {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 900;
  background: rgba(243, 180, 63, 0.22);
  border: 1px solid rgba(243, 180, 63, 0.36);
  border-radius: 8px;
}

.admin-card {
  display: grid;
  gap: 16px;
  max-width: 480px;
  margin-top: 28px;
}

.admin-card h2 {
  margin: 0;
  font-size: 1.6rem;
}

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

.admin-card label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 28px 0 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.admin-toolbar div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-link-button {
  color: var(--blue);
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 900;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-message {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.admin-message.is-pending {
  border-color: rgba(243, 180, 63, 0.58);
  box-shadow: inset 4px 0 0 var(--accent);
}

.admin-message h2 {
  margin: 8px 0 0;
  font-size: 1.3rem;
}

.admin-message p {
  color: var(--muted);
}

.admin-meta,
.admin-message time {
  display: block;
  margin: 6px 0 0;
  color: var(--blue);
  font-weight: 900;
}

.admin-status {
  display: inline-flex;
  padding: 5px 8px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(93, 183, 222, 0.16);
  border-radius: 999px;
}

.admin-message.is-pending .admin-status {
  background: rgba(243, 180, 63, 0.24);
}

.admin-actions {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 140px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  touch-action: pan-y;
  background: rgba(7, 13, 20, 0.88);
  backdrop-filter: blur(14px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
}

.lightbox figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  color: var(--ink);
  background: var(--accent);
  outline: 0;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 92px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 28, 42, 0.98), rgba(16, 28, 42, 0.9)),
    url("assets/pracovni-stul.jpeg") center / cover;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-info .section-kicker {
  color: var(--accent);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-list dt {
  margin-bottom: 3px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-weight: 800;
}

.map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--accent);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  gap: 7px;
}

.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: #26313c;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #cbd5df;
  border-radius: 8px;
  font: inherit;
}

.field-hint {
  color: var(--muted);
  font-size: 0.86rem;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(25, 118, 168, 0.2);
  border-color: var(--blue);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 400;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-button {
  width: 100%;
  font-size: 1rem;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.send-result {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 28, 42, 0.96), rgba(23, 41, 59, 0.9)),
    url("assets/pracovni-stul.jpeg") center / cover;
}

.send-result section {
  width: min(720px, 100%);
  padding: clamp(26px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 24px 52px rgba(5, 10, 16, 0.24);
  backdrop-filter: blur(12px);
}

.send-result .section-kicker {
  color: var(--accent);
}

.send-result p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 92px);
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(90deg, #0b121a, #111d2a);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.site-footer a {
  text-decoration: none;
}

.visit-counter {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 8px 12px;
  align-items: center;
  min-height: 46px;
  padding: 8px 12px;
  color: #dce8f2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(5, 10, 16, 0.46);
  border: 1px solid rgba(93, 183, 222, 0.22);
  border-radius: 8px;
  box-shadow:
    inset 0 0 18px rgba(93, 183, 222, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.visit-counter span {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(220, 232, 242, 0.68);
}

.visit-counter strong {
  min-width: 7ch;
  color: var(--accent);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: right;
  text-shadow: 0 0 14px rgba(243, 180, 63, 0.2);
}

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

  .header-call {
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .main-nav a {
    padding: 8px 0;
    white-space: nowrap;
  }

  .main-nav a::after {
    bottom: 0;
  }

  .hero-inner,
  .process-band,
  .about-section,
  .reviews-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .hero-note {
    position: static;
    width: auto;
    margin-top: clamp(6px, 2vw, 28px);
  }

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

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

  .repair-card {
    border-bottom: 1px solid rgba(203, 213, 223, 0.42);
  }

  .repair-card:nth-child(even) {
    border-right: 0;
  }

  .repair-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .split-feature,
  .retro-section {
    grid-template-columns: 1fr;
  }

  .feature-dark::after {
    top: auto;
    right: 0;
    bottom: -78px;
    left: 0;
    width: auto;
    height: 130px;
    background:
      linear-gradient(180deg, rgba(16, 28, 42, 0.72), rgba(248, 250, 252, 0));
  }

  .retro-image {
    min-height: 360px;
  }

  .retro-image::after {
    top: auto;
    right: 0;
    bottom: -70px;
    left: 0;
    width: auto;
    height: 120px;
    background:
      linear-gradient(180deg, rgba(16, 28, 42, 0), rgba(16, 28, 42, 0.82), var(--navy));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    min-height: auto;
    gap: 12px;
  }

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

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 58px;
    height: 42px;
    border-radius: 7px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    max-width: 138px;
    font-size: 0.67rem;
    line-height: 1.18;
  }

  .header-call {
    min-width: auto;
    gap: 8px;
  }

  .header-call small {
    display: block;
    font-size: 0.58rem;
  }

  .header-call strong {
    font-size: 1.02rem;
  }

  .call-symbol {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 10px 14px;
    overflow-x: visible;
    font-size: 0.78rem;
  }

  .nav-icon {
    width: 24px;
    height: 24px;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero-trust {
    position: relative;
    min-height: auto;
    padding: 14px 16px 18px;
  }

  .hero-trust::after {
    bottom: -30px;
    height: 30px;
  }

  .trust-scope {
    width: 46px;
    height: 32px;
  }

  .trust-copy {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(16, 28, 42, 0.74), rgba(16, 28, 42, 0.5) 54%, rgba(244, 247, 250, 0.16)),
      url("assets/opravna.jpeg") center / cover;
  }

  .hero-inner {
    width: min(100% - 32px, 1230px);
    padding: 42px 0 34px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.8rem);
  }

  .hero-note {
    padding: 20px;
  }

  .service-rail,
  .process-steps,
  .feature-light,
  .proof-strip,
  .repair-grid,
  .reviews-section,
  .two-cols,
  .gallery-page-hero,
  .guestbook-hero,
  .gallery-intro,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-rail a {
    min-height: 88px;
  }

  .repair-card,
  .repair-card:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(203, 213, 223, 0.42);
  }

  .repair-card:last-child {
    border-bottom: 0;
  }

  .repair-card::after {
    display: none;
  }

  .feature-dark,
  .feature-light,
  .retro-copy {
    padding: 38px 18px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-intro span {
    border-radius: 10px;
  }

  .gallery-item-large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-section-compact .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-section-full .gallery-item-large {
    grid-column: auto;
  }

  .lightbox {
    padding: 72px 14px 24px;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .site-footer,
  .footer-contact {
    justify-content: center;
    text-align: center;
  }

  .visit-counter {
    width: min(100%, 320px);
    grid-template-columns: 1fr auto;
  }

  .admin-message {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    min-width: 0;
  }
}
