:root {
  --black: #0b0b0b;
  --charcoal: #2b2b2b;
  --red: #b5122b;
  --cream: #f3f0ea;
  --white: #ffffff;
  --line: #dfd9cf;
  --text: #2a2725;
  --muted: #746b62;
  --max: 1240px;
  --page-gutter: max(1.2rem, calc((100vw - var(--max)) / 2));
  --cursor-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M5 3 22 15.2l-8.1 1.2 4.6 7.7-3.4 1.9-4.4-7.6-5.7 5.9Z' fill='%23b5122b' stroke='%23ffffff' stroke-width='1.6' stroke-linejoin='round'/%3E%3C/svg%3E") 5 3, auto;
  --cursor-pointer: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M10.4 27.3c-1.7-2.1-3.2-4.2-4.5-6.3-.5-.8-.3-1.8.4-2.3.7-.5 1.7-.4 2.3.2l1.2 1.2V6.2c0-1 .8-1.8 1.8-1.8s1.8.8 1.8 1.8v8.3l.5-.2c.7-.2 1.5 0 1.9.6.7-.5 1.8-.4 2.4.3.8-.4 1.9-.1 2.4.7l.8 1.4c.6 1.1.7 2.4.3 3.6l-1.5 4.4c-.4 1.2-1.6 2-2.9 2Z' fill='%23b5122b' stroke='%23ffffff' stroke-width='1.6' stroke-linejoin='round'/%3E%3C/svg%3E") 10 6, pointer;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  color: var(--text);
  cursor: var(--cursor-default);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
}

a,
button,
input,
select,
textarea {
  cursor: var(--cursor-pointer);
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.brand-text strong,
.placeholder-logo {
  margin: 0;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  color: var(--charcoal);
  font-size: clamp(3rem, 6vw, 6.7rem);
}

h2 {
  color: var(--charcoal);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

h3 {
  color: var(--black);
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

.fonts-pending .hero-claim,
.fonts-pending .site-footer span,
.fonts-pending .site-footer strong {
  opacity: 0;
}

.fonts-ready .hero-claim,
.fonts-ready .site-footer span,
.fonts-ready .site-footer strong {
  opacity: 1;
  transition: opacity 120ms ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 96px;
  padding: 0.35rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 4px solid var(--black);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.28rem;
  min-width: 292px;
  height: 86px;
}

.brand-gears-img,
.brand-wordmark-img {
  display: block;
  flex: 0 0 auto;
  background: var(--white);
}

.brand-gears-img {
  width: 84px;
  height: 80px;
}

.brand-wordmark-img {
  width: 200px;
  height: 76px;
}

.brand-gears-img img,
.brand-wordmark-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 0.78rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a,
.nav-parent {
  color: var(--red);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-parent:hover,
.nav-group:hover .nav-parent,
.nav-group:focus-within .nav-parent {
  color: var(--black);
}

.nav-group {
  position: relative;
  padding-block: 1.1rem;
}

.nav-parent::after {
  content: "";
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  margin-left: 0.38rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.18em) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 0.45rem);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 230px;
  padding: 0.55rem;
  background: rgba(11, 11, 11, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.45rem);
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-dropdown a {
  color: var(--white);
  padding: 0.62rem 0.78rem;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: var(--red);
  color: var(--white);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-group.is-collapsed .nav-dropdown {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.45rem);
}

.nav-group.is-collapsed .nav-parent {
  color: var(--red);
}

.nav-toggle {
  display: none;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  text-transform: uppercase;
}

.app-shell {
  position: fixed;
  inset: 96px 0 28px;
  overflow: hidden;
  background: var(--white);
}

.screen {
  position: absolute;
  inset: 0;
  display: none;
  padding: clamp(1rem, 2vw, 2rem) var(--page-gutter);
  background:
    radial-gradient(circle at 84% 18%, rgba(181, 18, 43, 0.08), transparent 22rem),
    linear-gradient(180deg, #ffffff, #f6f2eb);
}

.screen[data-screen="uvod"] {
  padding: 0;
  background: var(--white);
}

.screen[data-screen="renovace"],
.screen[data-screen="patinovani"] {
  padding: 0;
  background: var(--black);
}

.screen[data-screen="rady"],
.screen[data-screen="dotazy"],
.screen[data-screen="reference"],
.screen[data-screen="kontakt"],
.screen[data-screen="objednavka"] {
  overflow: auto;
}

.screen.is-active {
  display: block;
  animation: screenIn 240ms ease both;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.screen-frame {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.35fr);
  gap: clamp(1rem, 2vw, 2rem);
  width: min(var(--max), 100%);
  height: 100%;
  margin: 0 auto;
}

.screen-frame.single {
  grid-template-columns: 1fr;
}

.screen-panel,
.screen-body {
  min-height: 0;
  border: 1px solid #ddd3c4;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 240, 234, 0.96)),
    var(--white);
  color: var(--text);
}

.screen-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 3rem);
  border-left: 5px solid var(--red);
}

.screen-body {
  overflow: auto;
  padding: clamp(1.2rem, 2.5vw, 2.5rem);
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.screen-body::-webkit-scrollbar {
  width: 14px;
}

.screen-body::-webkit-scrollbar-track {
  background:
    linear-gradient(90deg, transparent 0 5px, rgba(43, 43, 43, 0.14) 5px 9px, transparent 9px),
    rgba(11, 11, 11, 0.05);
  border-left: 1px solid rgba(43, 43, 43, 0.12);
}

.screen-body::-webkit-scrollbar-thumb {
  border: 3px solid #f3f0ea;
  border-radius: 999px;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 3px, transparent 3px 7px),
    var(--red);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.renovation-scroll::-webkit-scrollbar-thumb {
  background:
    radial-gradient(circle at 50% 26%, rgba(11, 11, 11, 0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 74%, rgba(11, 11, 11, 0.42) 0 4px, transparent 5px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 3px, transparent 3px 7px),
    var(--red);
}

.dark-panel {
  border-color: #ddd3c4;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 240, 234, 0.96)),
    var(--white);
  color: var(--text);
}

.dark-panel h1,
.dark-panel h2,
.screen-panel h1,
.screen-panel h2,
.screen-body h1,
.screen-body h2,
.screen-body h3 {
  color: var(--charcoal);
}

.eyebrow {
  margin-bottom: 0.45rem;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin-top: 1rem;
  font-size: 1.13rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 1rem;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.7rem 1.05rem;
  text-transform: uppercase;
}

.button:hover {
  background: var(--black);
  border-color: var(--black);
}

.button-light {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--black);
}

.image-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(11, 11, 11, 0.32), rgba(11, 11, 11, 0.06)),
    radial-gradient(circle at 30% 30%, rgba(181, 18, 43, 0.34), transparent 26%),
    #1c1c1c;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: center;
}

.image-slot.has-photo {
  background: var(--black);
  border: 0;
  clip-path: none;
}

.image-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.image-slot.has-photo:hover img,
.image-slot.has-photo:focus-visible img {
  transform: scale(1.035);
}

.image-slot.has-photo:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.image-slot.has-photo::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 3% 10%, rgba(255, 255, 255, 0) 0 12px, rgba(11, 11, 11, 0.34) 13px 17px, transparent 18px),
    radial-gradient(circle at 97% 88%, rgba(255, 255, 255, 0) 0 14px, rgba(11, 11, 11, 0.34) 15px 20px, transparent 21px),
    linear-gradient(90deg, rgba(11, 11, 11, 0.34), transparent 12%, transparent 88%, rgba(11, 11, 11, 0.34)),
    linear-gradient(180deg, rgba(11, 11, 11, 0.26), transparent 18%, transparent 82%, rgba(11, 11, 11, 0.36));
  content: "";
  pointer-events: none;
}

.image-slot.large {
  min-height: 100%;
}

.image-slot::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  content: "";
}

.image-slot.has-photo::before {
  inset: 0;
  z-index: 1;
  border: 0;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0) 0 14px, rgba(181, 18, 43, 0.62) 15px 18px, transparent 19px),
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0) 0 11px, rgba(181, 18, 43, 0.48) 12px 16px, transparent 17px),
    radial-gradient(circle at 0 100%, rgba(255, 255, 255, 0) 0 12px, rgba(181, 18, 43, 0.5) 13px 17px, transparent 18px),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0) 0 14px, rgba(181, 18, 43, 0.5) 15px 19px, transparent 20px);
  content: "";
  pointer-events: none;
}

.image-slot strong {
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.image-slot span {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 24rem;
  margin-top: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.placeholder-logo {
  color: var(--white);
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1rem, 2vw, 2rem);
  height: 100%;
}

.home-scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--white);
}

.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100%;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: clamp(1.2rem, 3.5vw, 3.4rem) var(--page-gutter) 5rem;
  background: var(--black);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 32%, rgba(0, 0, 0, 0.36) 55%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 42%),
    radial-gradient(circle at 72% 48%, transparent 0 22%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.5) 100%);
  content: "";
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.1) saturate(1.08) brightness(0.82);
  transform: none;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  width: clamp(560px, 46vw, 760px);
  padding-top: 0;
}

.hero-kicker {
  margin-bottom: 1rem;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-claim {
  color: var(--white);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(3.65rem, 5.25vw, 6.25rem);
  letter-spacing: 0;
  line-height: 0.92;
  font-weight: 400;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.06),
    0 0 18px rgba(0, 0, 0, 0.28);
}

.hero-claim span,
.hero-claim strong {
  position: relative;
  display: block;
  font-weight: 400;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(0, 0, 0, 0.45) 0 2px, transparent 2.5px),
    radial-gradient(circle at 72% 58%, rgba(0, 0, 0, 0.35) 0 1.5px, transparent 2px),
    linear-gradient(currentColor, currentColor);
  background-size: 28px 26px, 42px 36px, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-claim strong {
  color: var(--red);
}

.hero-claim .letter-accent {
  position: relative;
  display: inline-block;
  color: inherit;
  -webkit-text-fill-color: transparent;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(0, 0, 0, 0.45) 0 2px, transparent 2.5px),
    radial-gradient(circle at 72% 58%, rgba(0, 0, 0, 0.35) 0 1.5px, transparent 2px),
    linear-gradient(currentColor, currentColor);
  background-size: 28px 26px, 42px 36px, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-claim .letter-accent::after {
  position: absolute;
  left: 50%;
  top: -0.36em;
  color: inherit;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.28em;
  font-weight: 700;
  line-height: 1;
  -webkit-text-fill-color: currentColor;
  transform: translateX(-50%);
}

.hero-claim .letter-accent.acute::after {
  content: "´";
}

.hero-claim .letter-accent.caron::after {
  content: "ˇ";
}

.hero-lead {
  max-width: 490px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 560px;
  margin-top: 2rem;
}

.hero-points article {
  border-top: 0;
  padding-top: 0;
}

.point-icon {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 1.95rem;
  line-height: 1;
}

.hero-points strong {
  display: block;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-points span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.hero-points .point-icon {
  margin-top: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-actions .button {
  min-height: 52px;
  padding-inline: 1.55rem;
}

.button-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
}

.button-outline:hover {
  background: var(--black);
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateX(50%);
}

.scroll-cue span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 20px;
  position: relative;
}

.scroll-cue span::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--red);
  content: "";
  transform: translateX(-50%);
}

.about-screen {
  min-height: auto;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.4rem, 3vw, 3rem) 0 1.1rem;
  background: var(--white);
}

.about-screen .detail-layout {
  position: relative;
  min-height: auto;
  align-items: start;
  gap: clamp(1.6rem, 3vw, 3rem);
}

.about-screen .prose {
  padding-top: 0.35rem;
}

.about-screen .prose h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.45rem, 3.2vw, 3.75rem);
}

.about-screen .prose p {
  max-width: 48rem;
}

.about-photo {
  position: relative;
  min-height: min(58vh, 560px);
  overflow: visible;
  background: transparent;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(58vh, 560px);
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(28, 20, 12, 0.24));
}

.before-after-section {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.25rem, 2.6vw, 2.2rem) 0;
}

.before-after-home {
  width: min(var(--max), calc(100% - 2rem));
  margin-top: clamp(1rem, 2vw, 1.6rem);
  padding: clamp(1.1rem, 2.2vw, 1.7rem);
  background:
    linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(220, 199, 162, 0.93)),
    #e4d1ad;
  box-shadow: 0 1rem 2.3rem rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(103, 67, 36, 0.2);
}

.projects-content {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.6rem);
}

.before-after-projects {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #f8ead3;
}

.before-after-copy {
  max-width: 50rem;
  margin-bottom: clamp(0.85rem, 1.6vw, 1.25rem);
}

.before-after-copy h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.before-after-copy p:not(.eyebrow) {
  max-width: 39rem;
  margin: 0.65rem 0 0;
  color: var(--text);
  font-size: clamp(0.94rem, 1vw, 1.05rem);
  line-height: 1.55;
}

.before-after-projects .before-after-copy h2,
.before-after-projects .before-after-copy p:not(.eyebrow) {
  color: #f8ead3;
}

.before-after-projects .before-after-copy p:not(.eyebrow) {
  color: rgba(248, 234, 211, 0.82);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.7vw, 1.25rem);
}

.before-after-carousel {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(0.55rem, 1.4vw, 1rem);
}

.before-after-viewport {
  min-width: 0;
  width: min(100%, 56rem);
  margin: 0 auto;
}

.before-after-home .before-after-viewport {
  width: min(100%, 39rem);
}

.before-after {
  min-width: 0;
}

.before-after-slide {
  display: none;
}

.before-after-slide.is-active {
  display: block;
}

.before-after-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal);
  border: 0.45rem solid #e2cda7;
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(92, 57, 31, 0.2);
}

.before-after.is-portrait .before-after-stage {
  width: min(100%, 34rem);
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}

.before-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-after {
  clip-path: inset(0 0 0 var(--split));
}

.before-after-label {
  position: absolute;
  top: 0.7rem;
  z-index: 4;
  padding: 0.24rem 0.52rem;
  background: rgba(16, 13, 11, 0.75);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.before-label {
  left: 0.7rem;
}

.after-label {
  right: 0.7rem;
  background: var(--red);
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 5;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.52);
  transform: translateX(-50%);
}

.before-after-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 2.55rem;
  aspect-ratio: 1;
  border: 2px solid var(--white);
  background: var(--red);
  color: var(--white);
  content: "<>";
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.before-after-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: var(--cursor-pointer);
}

.before-after h3 {
  margin: 0.65rem 0 0;
  color: var(--charcoal);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.before-after-projects .before-after h3 {
  color: #f8ead3;
}

.before-after-nav {
  display: grid;
  place-items: center;
  width: clamp(2.35rem, 3.5vw, 3rem);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0.75rem 1.4rem rgba(0, 0, 0, 0.24);
  cursor: var(--cursor-pointer);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 0.8;
  transition: transform 160ms ease, background 160ms ease;
}

.before-after-nav:hover,
.before-after-nav:focus-visible {
  background: var(--black);
  transform: translateY(-1px);
}

.before-after-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.before-after-dots button {
  width: 0.72rem;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: var(--red);
  cursor: var(--cursor-pointer);
}

.before-after-dots button.is-active {
  background: currentColor;
}

.before-after-projects .before-after-dots button {
  color: #f8ead3;
}

.workflow-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(0.5rem, 1.2vw, 1rem) 0 clamp(1.3rem, 2.8vw, 2.4rem);
}

.workflow-proof article {
  display: grid;
  grid-template-columns: minmax(13rem, 0.78fr) minmax(0, 1fr);
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  align-items: center;
  padding: clamp(0.85rem, 1.5vw, 1.2rem);
  border: 1px solid rgba(117, 78, 45, 0.28);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 18, 43, 0.1), transparent 28%),
    linear-gradient(160deg, rgba(255, 250, 236, 0.97), rgba(220, 199, 162, 0.88)),
    #e4d1ad;
  box-shadow: 0 0.85rem 1.8rem rgba(35, 20, 12, 0.14);
}

.workflow-proof-copy h2 {
  margin: 0;
  color: #17120f;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.workflow-proof-copy p:not(.eyebrow) {
  margin: 0.65rem 0 0;
  color: #241c17;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.55;
}

.workflow-proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.workflow-proof-gallery-communication {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-proof-gallery .image-slot.has-photo {
  --workflow-photo-pad: clamp(0.25rem, 0.45vw, 0.38rem);
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: var(--workflow-photo-pad);
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(160deg, rgba(255, 250, 236, 0.98), rgba(214, 191, 151, 0.95)),
    #e2cda7;
  box-shadow:
    0 0.55rem 1rem rgba(35, 20, 12, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 0 0 1px rgba(92, 57, 31, 0.18);
  clip-path: none;
}

.workflow-proof-gallery .image-slot.has-photo img {
  inset: var(--workflow-photo-pad);
  width: calc(100% - (var(--workflow-photo-pad) * 2));
  height: calc(100% - (var(--workflow-photo-pad) * 2));
  object-fit: cover;
}

.rust-screw {
  position: absolute;
  z-index: 3;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 42%, rgba(36, 20, 11, 0.95) 43% 57%, transparent 58%),
    radial-gradient(circle at 33% 28%, #e6a052 0 10%, #9a481e 31%, #5d2714 52%, #23110a 78%);
  box-shadow:
    0 1px 0 rgba(255, 230, 170, 0.22) inset,
    0 0 0 2px rgba(84, 39, 16, 0.75),
    0 3px 7px rgba(0, 0, 0, 0.45);
}

.screw-top-left {
  top: 1.05rem;
  left: 1.05rem;
}

.screw-top-right {
  top: 1.05rem;
  right: 1.05rem;
  transform: rotate(38deg);
}

.screw-bottom-left {
  bottom: 1.05rem;
  left: 1.05rem;
  transform: rotate(-24deg);
}

.screw-bottom-right {
  right: 1.05rem;
  bottom: 1.05rem;
  transform: rotate(14deg);
}

.intro-copy {
  overflow: auto;
  padding: clamp(1.2rem, 2.5vw, 2.5rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.click-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.click-card .image-slot {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
}

.project-cover::before {
  inset: 1rem;
}

.project-cover.has-photo::after {
  background: linear-gradient(transparent 48%, rgba(11, 11, 11, 0.78));
}

.project-cover .project-cover-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 2;
  text-align: left;
}

.project-cover .project-cover-label strong {
  width: fit-content;
  max-width: 100%;
  padding: 0.35rem 0.55rem;
  background: rgba(11, 11, 11, 0.58);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.project-cover.is-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    #151515;
}

.project-cover.is-placeholder .project-cover-label {
  top: 50%;
  right: 1rem;
  bottom: auto;
  left: 1rem;
  transform: translateY(-50%);
  text-align: center;
}

.project-cover.is-placeholder .project-cover-label strong {
  margin-inline: auto;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.project-cover.is-placeholder .project-cover-label span {
  max-width: none;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.click-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(11, 11, 11, 0.92));
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.click-card .button {
  position: relative;
  z-index: 2;
  margin: 0 1rem 1rem;
}

.screen[data-screen="sluzby"],
.screen[data-screen="nabidka"] {
  padding: 0;
  background: var(--black);
}

.catalog-hero {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden auto;
  background: #110e0c;
}

.catalog-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.95) contrast(1.05) brightness(0.62);
  transform: scale(1.015);
}

.catalog-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.91) 0 32%, rgba(10, 8, 7, 0.46) 58%, rgba(10, 8, 7, 0.22)),
    radial-gradient(circle at 78% 54%, rgba(181, 18, 43, 0.2), transparent 36%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
  content: "";
  pointer-events: none;
}

.catalog-hero-offer > img {
  object-position: center center;
  filter: saturate(0.9) contrast(1.04) brightness(0.56);
}

.catalog-hero-offer .catalog-layout {
  grid-template-columns: minmax(15.5rem, 20rem) minmax(0, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.7rem);
  align-items: start;
}

.catalog-hero-offer .catalog-intro {
  max-width: none;
  padding: clamp(0.85rem, 1.45vw, 1.2rem);
  border-left: 0;
  overflow: hidden;
}

.catalog-hero-offer .catalog-intro h1 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 3.45vw, 4.35rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.catalog-hero-offer .catalog-intro p:not(.eyebrow) {
  max-width: 24rem;
  font-size: clamp(0.86rem, 0.95vw, 0.98rem);
  line-height: 1.46;
}

.catalog-hero-offer .catalog-intro .button {
  min-height: 38px;
  padding-inline: 1rem;
  font-size: 0.7rem;
}

.catalog-hero-services {
  overflow: hidden;
}

.catalog-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(16rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  width: min(var(--max), calc(100vw - (var(--page-gutter) * 2)));
  min-height: 100%;
  margin: 0 auto 0 var(--page-gutter);
  padding: clamp(0.8rem, 1.8vw, 1.6rem) 0 clamp(1rem, 2.8vw, 2.4rem);
}

.catalog-intro {
  max-width: 31rem;
  padding: clamp(1rem, 1.8vw, 1.5rem);
  border-left: 4px solid var(--red);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.24);
}

.catalog-intro h1 {
  margin: 0;
  color: var(--white);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(3.1rem, 5.6vw, 7rem);
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
}

.catalog-intro h1::after {
  display: block;
  width: 5.2rem;
  height: 2px;
  margin-top: 0.85rem;
  background: var(--red);
  content: "";
}

.catalog-intro p:not(.eyebrow) {
  max-width: 27rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.58;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  align-content: start;
}

.catalog-hero-services .catalog-layout {
  grid-template-columns: minmax(16rem, 18.5rem) minmax(0, 1fr);
  gap: clamp(1rem, 1.9vw, 2rem);
  padding-block: clamp(0.55rem, 1.25vw, 1rem);
}

.catalog-hero-services .catalog-intro {
  width: 100%;
  max-width: none;
  padding: clamp(0.85rem, 1.35vw, 1.15rem);
  border-left: 0;
  overflow: hidden;
}

.catalog-hero-services .catalog-intro h1 {
  max-width: 100%;
  font-size: clamp(2.4rem, 3.25vw, 4.25rem);
  line-height: 1.1;
  overflow-wrap: normal;
}

.catalog-hero-services .catalog-intro p:not(.eyebrow) {
  font-size: clamp(0.88rem, 0.94vw, 0.98rem);
  line-height: 1.42;
}

.catalog-hero-services .catalog-intro .button {
  min-height: 38px;
  padding-inline: 1rem;
  font-size: 0.72rem;
}

.service-catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.55rem, 0.95vw, 0.85rem);
}

.catalog-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.7rem;
  border: 1px solid rgba(117, 78, 45, 0.58);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 18, 43, 0.14), transparent 27%),
    linear-gradient(160deg, rgba(255, 250, 236, 0.96), rgba(217, 195, 160, 0.9)),
    #e6d4b3;
  box-shadow:
    0 1.2rem 2.4rem rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 0 0 0 6px rgba(91, 54, 28, 0.08);
  color: #1b1714;
  text-align: left;
}

button.catalog-card {
  cursor: pointer;
  font: inherit;
}

.catalog-card::before {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  z-index: 2;
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.76), transparent 17%),
    radial-gradient(circle, #725b45 0 24%, #211814 25% 100%);
  box-shadow: 0 0.22rem 0.42rem rgba(0, 0, 0, 0.35);
  content: "";
  transform: translateX(-50%);
}

.catalog-card-photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(92, 57, 31, 0.45);
  background:
    radial-gradient(circle at 50% 35%, rgba(181, 18, 43, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(197, 173, 132, 0.58)),
    #d9c29a;
  box-shadow:
    inset 0 0 0 0.35rem rgba(255, 255, 255, 0.18),
    0 0.35rem 0.75rem rgba(59, 35, 22, 0.18);
}

.service-catalog-card {
  gap: 0.48rem;
  padding: 0.48rem;
}

.service-catalog-card .catalog-card-photo {
  aspect-ratio: 16 / 10;
}

.service-catalog-card .catalog-card-copy {
  gap: 0.14rem;
}

.service-catalog-card .catalog-card-copy span {
  font-size: clamp(0.82rem, 0.92vw, 1rem);
  line-height: 1.06;
}

.service-catalog-card .catalog-card-copy small {
  font-size: 0.62rem;
}

.catalog-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card-photo.is-placeholder {
  background:
    radial-gradient(circle at 52% 45%, rgba(181, 18, 43, 0.12), transparent 35%),
    repeating-linear-gradient(-8deg, rgba(72, 48, 30, 0.08) 0 1px, transparent 1px 10px),
    #d4bd94;
}

.catalog-card-photo.is-empty {
  background:
    radial-gradient(circle at 50% 42%, rgba(181, 18, 43, 0.16), transparent 32%),
    repeating-linear-gradient(-8deg, rgba(72, 48, 30, 0.1) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(184, 156, 111, 0.5)),
    #d4bd94;
}

.catalog-card-photo strong {
  color: rgba(43, 33, 25, 0.68);
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card-copy {
  display: grid;
  gap: 0.25rem;
}

.catalog-card-copy span {
  color: #17120f;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.22vw, 1.28rem);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.catalog-card-copy small {
  color: rgba(43, 33, 25, 0.68);
  font-family: "Oswald", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card .button {
  width: 100%;
  min-height: 38px;
  margin-top: 0;
  padding-inline: 0.75rem;
  font-size: 0.7rem;
}

.offer-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.05vw, 0.95rem);
}

.offer-catalog-card {
  gap: 0.55rem;
  padding: 0.55rem;
}

.offer-catalog-card .catalog-card-photo {
  aspect-ratio: 16 / 10;
}

.offer-catalog-card .catalog-card-copy {
  gap: 0.12rem;
}

.offer-catalog-card .catalog-card-copy span {
  font-size: clamp(0.9rem, 1vw, 1.06rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.offer-catalog-card .catalog-card-copy small {
  font-size: 0.62rem;
  line-height: 1.15;
}

.offer-catalog-card .button {
  min-height: 36px;
  padding-inline: 0.6rem;
  font-size: 0.64rem;
  line-height: 1.15;
}

.service-catalog-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-catalog-card:hover {
  border-color: rgba(181, 18, 43, 0.62);
  box-shadow:
    0 1.45rem 2.8rem rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(181, 18, 43, 0.38);
  transform: translateY(-0.16rem);
}

.screen[data-screen="detail"].is-service-detail {
  padding: clamp(0.85rem, 1.7vw, 1.55rem);
  overflow: auto;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.91) 0 32%, rgba(10, 8, 7, 0.58) 58%, rgba(10, 8, 7, 0.38)),
    radial-gradient(circle at 78% 54%, rgba(181, 18, 43, 0.18), transparent 36%),
    url("assets/photos/dotazy-nove-pozadi-web.jpg") center / cover,
    #110e0c;
}

.service-detail-frame {
  grid-template-columns: minmax(15.5rem, 18.5rem) minmax(0, 76ch);
  gap: clamp(0.85rem, 1.7vw, 1.55rem);
  align-items: stretch;
  justify-content: start;
}

.service-detail-panel,
.service-detail-body {
  border: 1px solid rgba(117, 78, 45, 0.58);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 18, 43, 0.14), transparent 27%),
    linear-gradient(160deg, rgba(255, 250, 236, 0.96), rgba(217, 195, 160, 0.9)),
    #e6d4b3;
  box-shadow:
    0 1.2rem 2.4rem rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    inset 0 0 0 6px rgba(91, 54, 28, 0.08);
}

.service-detail-panel {
  justify-content: flex-start;
  gap: 0.8rem;
  padding: clamp(0.85rem, 1.35vw, 1.15rem);
  border-left: 1px solid rgba(117, 78, 45, 0.58);
}

.service-detail-panel h1 {
  color: #17120f;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.45rem, 2.25vw, 2.55rem);
  font-weight: 700;
  line-height: 1.08;
}

.service-detail-panel h1::after {
  display: block;
  width: 4.6rem;
  height: 2px;
  margin-top: 0.75rem;
  background: var(--red);
  content: "";
}

.service-detail-cover {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  margin: 0.15rem 0 0.2rem;
  overflow: hidden;
  border: 0;
  background: #d9c29a;
  box-shadow:
    0 0.55rem 1.05rem rgba(59, 35, 22, 0.2),
    0 0 0 1px rgba(92, 57, 31, 0.18);
  clip-path: none;
}

.service-detail-cover.image-slot.has-photo,
.service-detail-gallery .image-slot.has-photo {
  --service-photo-pad: clamp(0.38rem, 0.65vw, 0.55rem);
  padding: var(--service-photo-pad);
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(160deg, rgba(255, 250, 236, 0.98), rgba(214, 191, 151, 0.95)),
    #e2cda7;
  box-shadow:
    0 0.7rem 1.35rem rgba(35, 20, 12, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 0 0 1px rgba(92, 57, 31, 0.2);
  clip-path: none;
}

.service-detail-cover.image-slot.has-photo img,
.service-detail-gallery .image-slot.has-photo img {
  inset: var(--service-photo-pad);
  width: calc(100% - (var(--service-photo-pad) * 2));
  height: calc(100% - (var(--service-photo-pad) * 2));
  object-fit: cover;
}

.service-detail-cover.image-slot.has-photo::before,
.service-detail-gallery .image-slot.has-photo::before {
  position: absolute;
  top: 0.2rem;
  left: 50%;
  z-index: 3;
  width: 0.82rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle, #80654b 0 24%, #211814 25% 100%);
  box-shadow:
    0 0.16rem 0.34rem rgba(0, 0, 0, 0.42),
    0 0 0 2px rgba(255, 245, 224, 0.12);
  content: "";
  transform: translateX(-50%);
}

.service-detail-cover.image-slot.has-photo::after,
.service-detail-gallery .image-slot.has-photo::after {
  position: absolute;
  inset: var(--service-photo-pad);
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.18), transparent 26%, transparent 72%, rgba(11, 11, 11, 0.22)),
    linear-gradient(90deg, rgba(11, 11, 11, 0.13), transparent 14%, transparent 86%, rgba(11, 11, 11, 0.13));
  content: "";
  pointer-events: none;
}

.service-detail-panel .button {
  width: 100%;
  min-height: 38px;
  margin-top: 0;
  padding-inline: 0.75rem;
  font-size: 0.7rem;
}

.service-detail-body {
  --service-copy-width: min(100%, 70ch);
  overflow: auto;
  padding: clamp(1rem, 1.8vw, 1.55rem);
  color: #211814;
}

.service-detail-body h1 {
  width: var(--service-copy-width);
  margin: 0 0 1rem;
  color: #17120f;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.55rem, 2.15vw, 2.55rem);
  font-weight: 700;
  line-height: 1.08;
}

.service-detail-body h1::after {
  display: block;
  width: 4.6rem;
  height: 2px;
  margin-top: 0.7rem;
  background: var(--red);
  content: "";
}

.service-detail-body p {
  width: var(--service-copy-width);
  margin: 0 0 0.82rem;
  color: #241c17;
  font-size: clamp(0.94rem, 0.98vw, 1.04rem);
  line-height: 1.62;
}

.service-detail-body p:last-of-type {
  margin-bottom: 0;
}

.service-detail-gallery {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(0.55rem, 0.95vw, 0.85rem);
  width: var(--service-copy-width);
  margin: clamp(0.85rem, 1.4vw, 1.2rem) 0 0;
}

.service-detail-gallery .image-slot {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.service-detail-lesteni .service-detail-cover.image-slot.has-photo,
.service-detail-lesteni .service-detail-gallery .image-slot.has-photo {
  background:
    linear-gradient(160deg, rgba(255, 250, 236, 0.98), rgba(214, 191, 151, 0.95)),
    #f1eadc;
}

.service-detail-lesteni .service-detail-cover.image-slot.has-photo img,
.service-detail-lesteni .service-detail-gallery .image-slot.has-photo img {
  object-fit: contain;
  object-position: center center;
  background: #f1eadc;
}

.service-detail-lesteni .service-detail-cover {
  aspect-ratio: 2.18 / 1;
}

.service-detail-lesteni .service-detail-gallery .image-slot {
  aspect-ratio: 2 / 1;
}

.screen[data-screen="detail"].is-project-detail {
  padding: clamp(0.85rem, 1.7vw, 1.55rem);
  overflow: auto;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.91) 0 32%, rgba(10, 8, 7, 0.58) 58%, rgba(10, 8, 7, 0.38)),
    url("assets/photos/dotazy-nove-pozadi-web.jpg") center / cover;
}

.project-detail-frame {
  grid-template-columns: minmax(12rem, 14.5rem) minmax(0, 86ch);
  gap: clamp(0.85rem, 1.7vw, 1.55rem);
  align-items: stretch;
  justify-content: start;
}

.project-detail-panel,
.project-detail-body {
  border: 1px solid rgba(117, 78, 45, 0.58);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 18, 43, 0.14), transparent 27%),
    linear-gradient(160deg, rgba(255, 250, 236, 0.96), rgba(217, 195, 160, 0.9)),
    #e6d4b3;
  box-shadow:
    0 1.35rem 2.8rem rgba(0, 0, 0, 0.34),
    inset 0 0 0 0.35rem rgba(255, 246, 222, 0.36);
}

.project-detail-panel {
  justify-content: flex-start;
  gap: 0.75rem;
  padding: clamp(0.85rem, 1.35vw, 1.15rem);
  border-left: 1px solid rgba(117, 78, 45, 0.58);
}

.project-detail-panel .button {
  width: 100%;
  min-height: 38px;
  margin-top: 0;
  padding-inline: 0.75rem;
  font-size: 0.72rem;
}

.project-detail-body {
  --project-copy-width: min(100%, 72ch);
  overflow: auto;
  padding: clamp(1rem, 1.8vw, 1.55rem);
  color: #211814;
}

.project-detail-body h1 {
  width: var(--project-copy-width);
  margin: 0 0 1rem;
  color: #17120f;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
}

.project-detail-body h1::after {
  display: block;
  width: 4.6rem;
  height: 2px;
  margin-top: 0.7rem;
  background: var(--red);
  content: "";
}

.project-detail-body p {
  width: var(--project-copy-width);
  margin: 0 0 0.82rem;
  color: #241c17;
  font-size: clamp(0.94rem, 0.98vw, 1.04rem);
  line-height: 1.62;
}

.project-detail-gallery {
  grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
  gap: clamp(0.55rem, 0.95vw, 0.85rem);
  width: var(--project-copy-width);
  margin: clamp(0.85rem, 1.4vw, 1.2rem) 0 0;
}

.project-detail-gallery .image-slot.has-photo {
  --project-photo-pad: clamp(0.36rem, 0.58vw, 0.5rem);
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: var(--project-photo-pad);
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(160deg, rgba(255, 250, 236, 0.98), rgba(214, 191, 151, 0.95)),
    #e2cda7;
  box-shadow:
    0 0.55rem 1rem rgba(35, 20, 12, 0.2),
    0 0 0 1px rgba(92, 57, 31, 0.22);
  clip-path: none;
}

.project-detail-gallery .image-slot.has-photo img {
  inset: var(--project-photo-pad);
  width: calc(100% - (var(--project-photo-pad) * 2));
  height: calc(100% - (var(--project-photo-pad) * 2));
  object-fit: cover;
}

.project-detail-gallery .image-slot.has-photo::before {
  position: absolute;
  top: 0.18rem;
  left: 50%;
  z-index: 3;
  width: 0.74rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle, #80654b 0 24%, #211814 25% 100%);
  box-shadow: 0 0.14rem 0.28rem rgba(0, 0, 0, 0.38);
  content: "";
  transform: translateX(-50%);
}

.project-detail-gallery .image-slot.has-photo::after {
  position: absolute;
  inset: var(--project-photo-pad);
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.1), transparent 24%);
  content: "";
  pointer-events: none;
}

@media (max-height: 820px) and (min-width: 681px) {
  .catalog-layout {
    grid-template-columns: minmax(14rem, 0.3fr) minmax(0, 1fr);
    gap: 1rem;
    padding-block: 0.55rem 0.9rem;
  }

  .catalog-intro {
    padding: 0.95rem;
  }

  .catalog-intro h1 {
    font-size: clamp(2.5rem, 4.7vw, 4.9rem);
    line-height: 1.12;
  }

  .catalog-intro p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .catalog-grid {
    gap: 0.72rem;
  }

  .catalog-card {
    gap: 0.55rem;
    padding: 0.55rem;
  }

  .catalog-card-copy span {
    font-size: 0.96rem;
  }

  .catalog-hero-offer .catalog-layout {
    grid-template-columns: minmax(14rem, 17rem) minmax(0, 1fr);
    gap: 0.75rem;
  }

  .catalog-hero-offer .catalog-intro {
    padding: 0.78rem;
  }

  .catalog-hero-offer .catalog-intro h1 {
    font-size: clamp(1.85rem, 3vw, 3.15rem);
  }

  .catalog-hero-offer .catalog-intro p:not(.eyebrow) {
    margin-top: 0.7rem;
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .offer-catalog-grid {
    gap: 0.55rem;
  }

  .offer-catalog-card {
    gap: 0.38rem;
    padding: 0.42rem;
  }

  .offer-catalog-card .catalog-card-copy span {
    font-size: 0.78rem;
  }

  .offer-catalog-card .catalog-card-copy small {
    font-size: 0.55rem;
  }

  .offer-catalog-card .button {
    min-height: 32px;
    font-size: 0.56rem;
  }

  .catalog-hero-services .catalog-layout {
    grid-template-columns: minmax(14.5rem, 16.5rem) minmax(0, 1fr);
    gap: 0.75rem;
    padding-block: 0.42rem 0.55rem;
  }

  .catalog-hero-services .catalog-intro {
    padding: 0.78rem;
  }

  .catalog-hero-services .catalog-intro h1 {
    font-size: clamp(2.05rem, 2.8vw, 3.35rem);
  }

  .catalog-hero-services .catalog-intro p:not(.eyebrow) {
    margin-top: 0.7rem;
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .service-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .service-catalog-card {
    gap: 0.38rem;
    padding: 0.42rem;
  }

  .service-catalog-card .catalog-card-photo {
    aspect-ratio: 16 / 9;
  }

  .service-catalog-card .catalog-card-copy span {
    font-size: 0.78rem;
  }

  .service-catalog-card .catalog-card-copy small {
    font-size: 0.56rem;
  }

  .service-detail-frame {
    grid-template-columns: minmax(13.5rem, 16.5rem) minmax(0, 72ch);
    gap: 0.75rem;
  }

  .project-detail-frame {
    grid-template-columns: minmax(10.5rem, 12rem) minmax(0, 78ch);
    gap: 0.75rem;
  }

  .service-detail-panel {
    gap: 0.6rem;
    padding: 0.78rem;
  }

  .service-detail-panel h1 {
    font-size: clamp(1.25rem, 2vw, 2rem);
  }

  .service-detail-body {
    padding: 0.95rem;
  }

  .project-detail-body {
    padding: 0.95rem;
  }

  .service-detail-body h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
  }

  .project-detail-body h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
  }

  .service-detail-body p {
    margin-bottom: 0.68rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .project-detail-body p {
    margin-bottom: 0.68rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .project-detail-gallery {
    grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr));
  }
}

@media (max-width: 980px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    align-items: start;
    margin-inline: auto;
    padding-block: 0.8rem 1.5rem;
  }

  .catalog-intro {
    width: min(42rem, 100%);
  }

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

  .catalog-hero-services {
    overflow: hidden auto;
  }

  .catalog-hero-services .catalog-layout {
    grid-template-columns: 1fr;
  }

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

  .catalog-hero-offer .catalog-layout {
    grid-template-columns: 1fr;
  }

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

  .service-detail-frame {
    grid-template-columns: 1fr;
  }

  .project-detail-frame {
    grid-template-columns: 1fr;
  }

  .service-detail-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: end;
  }

  .project-detail-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: end;
  }

  .service-detail-panel .eyebrow,
  .service-detail-panel h1,
  .service-detail-cover {
    grid-column: 1 / -1;
  }

  .service-detail-panel .button {
    width: auto;
  }

  .project-detail-panel .button {
    width: auto;
  }
}

@media (max-width: 680px) {
  .catalog-hero {
    height: auto;
    min-height: calc(100svh - 72px);
    overflow-x: hidden;
    overflow-y: visible;
  }

  .catalog-hero > img {
    position: fixed;
    min-height: 100svh;
    object-position: 62% center;
  }

  .catalog-hero::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18) 74%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.64), transparent 78%);
  }

  .catalog-layout {
    width: calc(100vw - 1.7rem);
    padding-block: 0.8rem 1.2rem;
  }

  .catalog-intro {
    padding: 1rem;
  }

  .catalog-intro h1 {
    font-size: clamp(2.4rem, 13vw, 3.9rem);
  }

  .catalog-intro p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .catalog-card {
    padding: 0.6rem;
  }

  .offer-catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero-offer .catalog-intro h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .offer-catalog-card {
    padding: 0.6rem;
  }

  .offer-catalog-card .catalog-card-copy span {
    font-size: 0.95rem;
  }

  .offer-catalog-card .button {
    min-height: 40px;
    font-size: 0.66rem;
  }
}

.screen[data-screen="realizace"] {
  padding: 0;
  background: var(--black);
}

.projects-hero {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.92) 0 34%, rgba(12, 10, 8, 0.46) 55%, rgba(12, 10, 8, 0.2) 100%),
    radial-gradient(circle at 76% 54%, rgba(181, 18, 43, 0.22), transparent 36%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 48%),
    linear-gradient(rgba(18, 15, 13, 0.18), rgba(18, 15, 13, 0.18)),
    url("assets/photos/dotazy-nove-pozadi-web.jpg") center top / cover repeat-y,
    #120f0d;
}

.projects-hero > img {
  display: none;
}

.projects-hero::after {
  display: none;
  content: "";
}

.projects-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(17rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  width: min(var(--max), calc(100vw - (var(--page-gutter) * 2)));
  min-height: 100%;
  margin: 0 auto 0 var(--page-gutter);
  padding: clamp(0.7rem, 1.5vw, 1.25rem) 0 clamp(1rem, 2.6vw, 2.2rem);
}

.projects-intro {
  color: var(--white);
  padding-top: clamp(1rem, 4vh, 3rem);
}

.projects-intro h1 {
  margin: 0;
  color: var(--white);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 7.5vw, 8.8rem);
  font-weight: 400;
  line-height: 1.16;
  text-transform: uppercase;
}

.projects-intro h1::after {
  display: block;
  width: 5.6rem;
  height: 2px;
  margin-top: 1rem;
  background: var(--red);
  content: "";
}

.projects-intro p:not(.eyebrow) {
  max-width: 26rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.6;
}

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  align-content: center;
}

.project-tile {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: clamp(14rem, 30vh, 22rem);
  padding: 0.7rem;
  border: 1px solid rgba(117, 78, 45, 0.58);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 18, 43, 0.16), transparent 26%),
    linear-gradient(160deg, rgba(255, 250, 236, 0.96), rgba(217, 195, 160, 0.9)),
    #e6d4b3;
  box-shadow:
    0 1.2rem 2.4rem rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 0 0 0 6px rgba(91, 54, 28, 0.08);
  color: #1b1714;
  transform: rotate(var(--tilt));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

@media (min-width: 681px) {
  .project-tile:first-child,
  .project-tile:nth-child(4) {
    transform-origin: center;
  }
}

.project-tile::before {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  z-index: 3;
  width: 1.05rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.76), transparent 17%),
    radial-gradient(circle, #725b45 0 24%, #211814 25% 100%);
  box-shadow: 0 0.22rem 0.42rem rgba(0, 0, 0, 0.35);
  content: "";
  transform: translateX(-50%);
}

.project-tile::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(102, 62, 34, 0.16), transparent 0.35rem, transparent calc(100% - 0.35rem), rgba(102, 62, 34, 0.16)),
    repeating-linear-gradient(3deg, rgba(79, 48, 29, 0.07) 0 1px, transparent 1px 9px);
  content: "";
  pointer-events: none;
  mix-blend-mode: multiply;
}

.project-tile:hover {
  border-color: rgba(181, 18, 43, 0.62);
  box-shadow:
    0 1.45rem 2.8rem rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(181, 18, 43, 0.38);
  transform: rotate(0deg) translateY(-0.2rem);
}

.project-tile .project-cover {
  position: relative;
  z-index: 1;
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(92, 57, 31, 0.45);
  background:
    radial-gradient(circle at 50% 35%, rgba(181, 18, 43, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(197, 173, 132, 0.58)),
    #d9c29a;
  box-shadow:
    inset 0 0 0 0.35rem rgba(255, 255, 255, 0.18),
    0 0.35rem 0.75rem rgba(59, 35, 22, 0.18);
  clip-path: none;
}

.project-tile .project-cover img {
  object-fit: contain;
  padding: 0.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(223, 210, 188, 0.55)),
    #d8c7aa;
  filter: blur(2.2px) saturate(0.86) brightness(0.92);
  transform: scale(1.03);
}

.project-tile .project-cover.has-photo::before {
  display: none;
}

.project-tile .project-cover.has-photo::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%, rgba(47, 31, 20, 0.18)),
    linear-gradient(90deg, rgba(47, 31, 20, 0.14), transparent 8%, transparent 92%, rgba(47, 31, 20, 0.14));
}

.project-tile .project-cover .project-cover-label {
  right: 0.75rem;
  bottom: 0.65rem;
  left: 0.75rem;
}

.project-tile .project-cover .project-cover-label strong {
  padding: 0.22rem 0.45rem;
  background: rgba(11, 11, 11, 0.68);
  font-size: 0.82rem;
}

.project-tile .project-cover.is-placeholder {
  background:
    linear-gradient(180deg, rgba(17, 12, 9, 0.08), rgba(17, 12, 9, 0.46)),
    url("assets/photos/image13.jpeg") center / cover,
    #211814;
}

.project-workshop-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: end center;
  padding: 0 0 12%;
  background:
    linear-gradient(180deg, rgba(255, 246, 222, 0.04), transparent 42%, rgba(0, 0, 0, 0.42));
  content: "";
}

.project-workshop-preview::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 48%, transparent 0 46%, rgba(0, 0, 0, 0.34) 100%);
  content: "";
  pointer-events: none;
}

.project-workshop-preview::after {
  display: none;
}

.project-workshop-preview span {
  position: relative;
  z-index: 2;
  display: inline-block;
  max-width: 9.2ch;
  overflow: hidden;
  padding: 0.24rem 0.48rem;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(11, 11, 11, 0.72);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.9rem, 1.45vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: none;
  white-space: nowrap;
  animation: composingText 3.6s steps(9, end) infinite;
}

.project-tile-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem 0.15rem 0.1rem;
}

.project-tile-footer h3 {
  margin: 0;
  color: #17120f;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.28vw, 1.35rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.project-tile-footer .button {
  width: 100%;
  min-height: 38px;
  margin: 0;
  padding-inline: 0.75rem;
  font-size: 0.7rem;
}

.step-list {
  display: grid;
  gap: 1rem;
}

.step-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #ddd3c4;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.step-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--black);
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.1rem;
}

.process-hero {
  position: relative;
  height: 100%;
  overflow: hidden auto;
  background: #110e0c;
}

.process-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.95) contrast(1.05) brightness(0.58);
}

.process-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.91) 0 32%, rgba(10, 8, 7, 0.5) 58%, rgba(10, 8, 7, 0.22)),
    radial-gradient(circle at 78% 54%, rgba(181, 18, 43, 0.18), transparent 36%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
  content: "";
  pointer-events: none;
}

.process-hero-patina > img {
  object-position: center center;
  filter: saturate(0.94) contrast(1.08) brightness(0.52);
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(16rem, 19rem) minmax(0, 56rem);
  gap: clamp(1rem, 1.9vw, 2rem);
  align-items: start;
  width: min(var(--max), calc(100vw - (var(--page-gutter) * 2)));
  min-height: 100%;
  margin: 0 auto 0 var(--page-gutter);
  padding: clamp(0.75rem, 1.45vw, 1.2rem) 0 clamp(1rem, 2.4vw, 2rem);
}

.process-intro,
.process-scroll {
  border: 1px solid rgba(117, 78, 45, 0.58);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 18, 43, 0.14), transparent 27%),
    linear-gradient(160deg, rgba(255, 250, 236, 0.96), rgba(217, 195, 160, 0.9)),
    #e6d4b3;
  box-shadow:
    0 1.2rem 2.4rem rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    inset 0 0 0 6px rgba(91, 54, 28, 0.08);
}

.process-intro {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(0.85rem, 1.35vw, 1.15rem);
  color: #17120f;
}

.process-intro h1 {
  margin: 0;
  color: #17120f;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.process-intro h1::after {
  display: block;
  width: 4.6rem;
  height: 2px;
  margin-top: 0.7rem;
  background: var(--red);
  content: "";
}

.process-intro p {
  margin: 0;
  color: #30251d;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  line-height: 1.5;
}

.process-intro .button {
  width: 100%;
  min-height: 38px;
  margin-top: 0.15rem;
  padding-inline: 0.8rem;
  font-size: 0.68rem;
}

.process-scroll {
  display: grid;
  gap: clamp(0.65rem, 1vw, 0.9rem);
  max-height: calc(100vh - 10rem);
  overflow: auto;
  padding: clamp(0.85rem, 1.4vw, 1.25rem);
  color: #211814;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.process-hero-renovation .process-scroll {
  max-width: 56rem;
}

.process-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: clamp(0.65rem, 1vw, 0.9rem);
  padding: clamp(0.75rem, 1.2vw, 1rem);
  border: 1px solid rgba(117, 78, 45, 0.24);
  background: rgba(255, 250, 236, 0.54);
  box-shadow: 0 0.35rem 0.9rem rgba(59, 35, 22, 0.08);
}

.process-step .step-number {
  width: 48px;
  height: 48px;
  background: #17120f;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 0.35rem;
  color: #17120f;
  font-size: clamp(1rem, 1.12vw, 1.2rem);
  line-height: 1.18;
  text-transform: uppercase;
}

.process-step p,
.process-prose p {
  margin: 0;
  color: #241c17;
  font-size: clamp(0.9rem, 0.96vw, 1rem);
  line-height: 1.58;
}

.process-prose {
  align-content: start;
}

.process-prose p + p {
  margin-top: 0.82rem;
}

.process-gallery {
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 50%));
  gap: 0.65rem;
  margin-top: 0.75rem;
  justify-content: center;
}

.process-step-1 .process-gallery,
.process-step-2 .process-gallery {
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 50%));
  gap: 0.65rem;
}

.process-step-7 .process-gallery {
  grid-template-columns: repeat(2, minmax(0, calc((100% - 0.65rem) / 2)));
  gap: 0.65rem;
}

.process-step-3 .process-gallery {
  grid-template-columns: minmax(0, min(14rem, 100%));
}

.process-step-3 .process-gallery .image-slot.has-photo {
  aspect-ratio: 9 / 13;
}

.process-gallery:empty {
  display: none;
}

.process-gallery .image-slot.has-photo {
  --process-photo-pad: clamp(0.34rem, 0.55vw, 0.48rem);
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: var(--process-photo-pad);
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(160deg, rgba(255, 250, 236, 0.98), rgba(214, 191, 151, 0.95)),
    #e2cda7;
  box-shadow:
    0 0.55rem 1rem rgba(35, 20, 12, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 0 0 1px rgba(92, 57, 31, 0.18);
  clip-path: none;
}

.process-gallery .image-slot.has-photo img {
  inset: var(--process-photo-pad);
  width: calc(100% - (var(--process-photo-pad) * 2));
  height: calc(100% - (var(--process-photo-pad) * 2));
  object-fit: cover;
}

.process-gallery .image-slot.has-photo::before {
  position: absolute;
  top: 0.16rem;
  left: 50%;
  z-index: 3;
  width: 0.72rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle, #80654b 0 24%, #211814 25% 100%);
  box-shadow: 0 0.14rem 0.28rem rgba(0, 0, 0, 0.38);
  content: "";
  transform: translateX(-50%);
}

.process-gallery .image-slot.has-photo::after {
  position: absolute;
  inset: var(--process-photo-pad);
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.16), transparent 30%, transparent 74%, rgba(11, 11, 11, 0.18)),
    linear-gradient(90deg, rgba(11, 11, 11, 0.1), transparent 14%, transparent 86%, rgba(11, 11, 11, 0.1));
  content: "";
  pointer-events: none;
}

@media (max-height: 820px) and (min-width: 681px) {
  .process-layout {
    grid-template-columns: minmax(14rem, 16.5rem) minmax(0, 1fr);
    gap: 0.75rem;
    padding-block: 0.55rem 0.9rem;
  }

  .process-intro {
    gap: 0.6rem;
    padding: 0.78rem;
  }

  .process-intro h1 {
    font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  }

  .process-intro p,
  .process-step p,
  .process-prose p {
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .process-scroll {
    max-height: calc(100vh - 8rem);
    padding: 0.75rem;
  }

  .process-step {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 0.72rem;
  }

  .process-step .step-number {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .process-gallery {
    grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 50%));
  }

  .process-step-1 .process-gallery,
  .process-step-2 .process-gallery {
    grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 50%));
  }

  .process-step-7 .process-gallery {
    grid-template-columns: repeat(2, minmax(0, calc((100% - 0.65rem) / 2)));
  }
}

@media (max-width: 980px) {
  .process-layout {
    grid-template-columns: 1fr;
    width: calc(100vw - 1.7rem);
    margin-inline: auto;
    padding-block: 0.8rem 1.5rem;
  }

  .process-intro {
    width: min(42rem, 100%);
  }

  .process-scroll {
    max-height: none;
  }
}

@media (max-width: 680px) {
  .process-hero {
    height: auto;
    min-height: calc(100svh - 72px);
    overflow-x: hidden;
    overflow-y: visible;
  }

  .process-hero > img {
    position: fixed;
    min-height: 100svh;
    object-position: 62% center;
  }

  .process-hero::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2) 70%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 74%);
  }

  .process-layout {
    width: 100%;
    min-height: auto;
    padding: 0.55rem 0.85rem 0.85rem;
  }

  .process-intro,
  .process-scroll {
    padding: 0.95rem;
  }

  .process-intro h1 {
    font-size: clamp(1.55rem, 9vw, 2.65rem);
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step .step-number {
    width: 44px;
    height: 44px;
  }

  .process-gallery {
    grid-template-columns: 1fr;
  }

  .process-step-7 .process-gallery {
    grid-template-columns: 1fr;
  }
}

.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--text);
}

.process-scroll.process-prose p {
  margin: 0;
  color: #241c17;
  font-size: clamp(0.9rem, 0.96vw, 1rem);
  line-height: 1.58;
}

.process-scroll.process-prose p + p {
  margin-top: 0.82rem;
}

.about-screen .prose h1,
.about-screen .prose h2,
.about-screen .prose h3 {
  color: var(--charcoal);
}

.about-screen .prose p {
  color: var(--text);
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 2rem;
  background: var(--white);
  text-align: center;
}

.screen[data-screen="rady"] {
  padding: 0;
  background: var(--white);
}

.advice-hero {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--white);
}

.advice-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.62;
  filter: saturate(0.88) contrast(0.9) brightness(1.08);
}

.advice-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 232, 0.94) 0 38%, rgba(255, 248, 232, 0.72) 54%, rgba(255, 248, 232, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(44, 27, 16, 0.2));
  content: "";
  pointer-events: none;
}

.advice-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(45rem, 48vw);
  height: 100%;
  margin-left: var(--page-gutter);
  padding-bottom: 2rem;
  color: var(--black);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.52);
}

.advice-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem 0.32rem;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advice-kicker::after {
  width: min(13rem, 22vw);
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(181, 18, 43, 0.08));
  content: "";
}

.advice-copy h1 {
  margin: 0;
  color: var(--black);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(4.8rem, 8.7vw, 10.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.advice-copy h1 span,
.advice-copy h1 strong {
  display: block;
  font-weight: 400;
}

.advice-copy h1 span {
  color: #181818;
}

.advice-copy h1 strong {
  margin-top: 0.18em;
  color: var(--red);
}

.advice-copy p:not(.advice-kicker) {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  padding: 0.8rem 1rem;
  border-left: 4px solid rgba(181, 18, 43, 0.78);
  background: rgba(255, 249, 235, 0.72);
  box-shadow: 0 0.8rem 2rem rgba(31, 21, 14, 0.12);
  color: #221d19;
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.55;
}

.advice-copy .button {
  min-height: 52px;
  margin-top: 1.65rem;
  padding-inline: 1.7rem;
}

.screen[data-screen="dotazy"] {
  padding: 0;
  background: var(--black);
}

.screen[data-screen="reference"] {
  padding: 0;
  background: var(--black);
}

.screen[data-screen="pravni"] {
  padding: clamp(1rem, 2vw, 1.6rem);
  overflow: auto;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.9), rgba(10, 8, 7, 0.58)),
    url("assets/photos/dotazy-nove-pozadi-web.jpg") center / cover;
}

.legal-screen {
  display: grid;
  place-items: center;
  min-height: calc(100svh - var(--header-h) - 28px - 2rem);
}

.legal-panel {
  width: min(48rem, 100%);
  padding: clamp(1.1rem, 2.4vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(222, 202, 166, 0.94)),
    #e4d1ad;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(103, 67, 36, 0.18);
}

.legal-panel h1 {
  margin-top: 0;
  color: var(--charcoal);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.references-hero {
  position: relative;
  min-height: 100%;
  overflow: auto;
  padding: clamp(1rem, 2vw, 1.6rem);
  background:
    radial-gradient(circle at 82% 28%, rgba(181, 18, 43, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(12, 10, 8, 0.96) 0 44%, rgba(12, 10, 8, 0.72) 70%, rgba(12, 10, 8, 0.92) 100%),
    var(--black);
}

.references-hero > img {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.82) contrast(1.08);
}

.references-hero::after {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.9), rgba(8, 6, 5, 0.62) 52%, rgba(8, 6, 5, 0.82)),
    linear-gradient(0deg, rgba(8, 6, 5, 0.9), transparent 48%);
  content: "";
  pointer-events: none;
}

.references-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 0.5fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.1rem, 2.6vw, 2.5rem);
  width: min(var(--max), calc(100vw - 2rem));
  min-height: calc(100svh - var(--header-h) - clamp(1.4rem, 3vw, 2.6rem));
  margin: 0 auto;
}

.references-copy {
  color: #f8ead3;
}

.references-copy h1 {
  max-width: 16ch;
  margin: 0;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
}

.references-copy h1::after {
  display: block;
  width: 5rem;
  height: 2px;
  margin: 0.85rem 0 0;
  background: var(--red);
  content: "";
}

.references-copy p:not(.eyebrow) {
  max-width: 28rem;
  margin: 0.85rem 0 1rem;
  color: rgba(248, 234, 211, 0.84);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.6;
}

.reference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.05rem;
}

.reference-actions .button {
  min-height: 42px;
  padding-inline: 1rem;
  font-size: 0.72rem;
}

.references-board {
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  min-width: 0;
}

.reference-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.42fr);
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
  align-items: center;
  padding: clamp(0.85rem, 1.35vw, 1.05rem);
  border: 1px solid rgba(117, 78, 45, 0.58);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 18, 43, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(255, 249, 235, 0.98), rgba(222, 202, 166, 0.94)),
    #e4d1ad;
  box-shadow:
    0 1rem 2rem rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    inset 0 0 0 6px rgba(91, 54, 28, 0.08);
}

.reference-card::before {
  display: none;
}

.reference-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
  border: 0;
  box-shadow:
    0 0.55rem 1.05rem rgba(59, 35, 22, 0.2),
    0 0 0 0.36rem rgba(255, 250, 236, 0.42),
    0 0 0 1px rgba(92, 57, 31, 0.22);
}

.reference-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-card-copy {
  min-width: 0;
}

.reference-label {
  margin: 0 0 0.35rem;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-card-copy h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.25rem, 1.65vw, 1.75rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.reference-card-copy p:not(.reference-label) {
  margin: 0.55rem 0 0;
  color: var(--text);
  font-size: clamp(0.9rem, 0.96vw, 0.98rem);
  line-height: 1.5;
}

.reference-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.4vw, 1rem);
}

.reference-mini-card {
  display: grid;
  grid-template-columns: minmax(4.8rem, 0.32fr) minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  min-width: 0;
  padding: clamp(0.65rem, 1.2vw, 0.9rem);
  border: 1px solid rgba(248, 234, 211, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 250, 236, 0.08), rgba(255, 250, 236, 0)),
    rgba(12, 9, 7, 0.72);
  box-shadow: 0 0.85rem 1.7rem rgba(0, 0, 0, 0.22);
  color: #f8ead3;
}

.reference-mini-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(248, 234, 211, 0.22);
}

.reference-mini-grid strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.98rem, 1.18vw, 1.16rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.reference-mini-grid span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(248, 234, 211, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.faq-hero {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--black);
}

.faq-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  animation: faqSceneDrift 14s ease-in-out infinite alternate;
}

.faq-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.12), transparent 42%);
  content: "";
  pointer-events: none;
}

.faq-hero-lounge::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 35%, rgba(255, 255, 255, 0.32) 52%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 38%);
}

.faq-copy-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(34rem, 35vw);
  height: 100%;
  margin-left: var(--page-gutter);
  color: #171717;
}

.faq-copy-card h1 {
  margin: 0;
  color: #1b1b1b;
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 6.6vw, 8.2rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.faq-copy-card h1::after {
  display: block;
  width: 5.4rem;
  height: 2px;
  margin-top: 1rem;
  background: var(--red);
  content: "";
}

.faq-copy-card > p:not(.faq-kicker) {
  max-width: 28rem;
  margin: 1rem 0 1.1rem;
  color: #201913;
  font-size: clamp(0.98rem, 1.1vw, 1.16rem);
  line-height: 1.55;
}

.faq-list-compact {
  max-width: 31rem;
  gap: 0.45rem;
}

.faq-list-compact details {
  border-color: rgba(43, 43, 43, 0.14);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0.45rem 1rem rgba(40, 25, 14, 0.08);
}

.faq-list-compact summary {
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
}

.faq-list-compact p {
  padding: 0 0.85rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.48;
}

.faq-board-glow {
  position: absolute;
  top: 10.2%;
  right: 10.8%;
  z-index: 2;
  width: min(28vw, 31rem);
  height: 78%;
  pointer-events: none;
  transform: rotate(3.6deg);
}

.faq-board-glow::before {
  position: absolute;
  inset: 8% 10% 12%;
  background:
    linear-gradient(108deg, transparent 0 34%, rgba(255, 255, 255, 0.14) 45%, transparent 56%),
    radial-gradient(circle at 52% 20%, rgba(255, 255, 255, 0.12), transparent 22%);
  content: "";
  opacity: 0;
  animation: boardSheen 4.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

.faq-board-glow::after {
  position: absolute;
  inset: 9% 11% 13%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 1.2rem rgba(255, 255, 255, 0.08),
    inset 0 0 1.5rem rgba(255, 255, 255, 0.05);
  content: "";
  opacity: 0.34;
  animation: boardBreath 3.2s ease-in-out infinite;
}

.faq-board-glow span {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  filter: blur(1px);
  opacity: 0;
  animation: chalkDust 4.8s ease-in-out infinite;
}

.faq-board-glow span:nth-child(1) {
  left: 28%;
  top: 28%;
}

.faq-board-glow span:nth-child(2) {
  left: 61%;
  top: 45%;
  animation-delay: 1.4s;
}

.faq-board-glow span:nth-child(3) {
  left: 38%;
  top: 68%;
  animation-delay: 2.5s;
}

.faq-hanging-sign {
  position: absolute;
  top: 17.5%;
  right: 46%;
  z-index: 4;
  width: clamp(8.4rem, 11vw, 12.2rem);
  min-height: clamp(9.8rem, 13.5vw, 14.2rem);
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  transform-origin: 50% -2.4rem;
  animation: faqSignSwing 5.8s ease-in-out infinite;
}

.faq-hanging-sign:hover,
.faq-hanging-sign:focus-visible {
  outline: none;
}

.faq-nail {
  position: absolute;
  top: -1.05rem;
  left: 50%;
  z-index: 3;
  width: 1.12rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.65), transparent 18%),
    radial-gradient(circle, #6e6255 0 28%, #211b17 30% 100%);
  box-shadow:
    0 0.18rem 0.35rem rgba(0, 0, 0, 0.42),
    inset 0 0 0 2px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%);
}

.faq-rope {
  position: absolute;
  top: -0.43rem;
  left: 50%;
  width: 5.3rem;
  height: 2.9rem;
  background:
    linear-gradient(-61deg, transparent 0 48.2%, rgba(215, 190, 145, 0.92) 48.8% 51.2%, transparent 51.8%) left top / 50% 100% no-repeat,
    linear-gradient(61deg, transparent 0 48.2%, rgba(215, 190, 145, 0.92) 48.8% 51.2%, transparent 51.8%) right top / 50% 100% no-repeat;
  filter: drop-shadow(0 0.06rem 0.08rem rgba(0, 0, 0, 0.45));
  transform: translateX(-50%);
  transform-origin: 50% 0;
}

.faq-sign-board {
  position: absolute;
  inset: 1.05rem 0 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.12rem;
  padding: 1.05rem 0.8rem;
  border: 0.48rem solid #4a2d1e;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(145deg, #333331, #171717 62%, #262421);
  box-shadow:
    0 1rem 1.8rem rgba(0, 0, 0, 0.42),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    inset 0 0 1.7rem rgba(0, 0, 0, 0.5);
  text-align: center;
}

.faq-sign-board::before {
  position: absolute;
  inset: -0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
}

.faq-sign-board span,
.faq-sign-board strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow:
    0 0 0.04rem rgba(255, 255, 255, 0.55),
    0.02rem 0.02rem 0 rgba(255, 255, 255, 0.2);
}

.faq-sign-board span {
  font-size: clamp(0.82rem, 1vw, 1.06rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.faq-sign-board strong {
  color: #f5f1e8;
  font-size: clamp(1.3rem, 2vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.faq-hanging-sign::after {
  position: absolute;
  right: -0.45rem;
  bottom: 0.35rem;
  width: 2.1rem;
  height: 2px;
  background: var(--red);
  content: "";
  transform: rotate(-7deg);
}

.faq-image-button {
  position: absolute;
  left: 8.7%;
  bottom: 12%;
  z-index: 3;
  width: min(14.2vw, 17rem);
  height: min(6.2vh, 4.1rem);
  border: 0;
  background: transparent;
  cursor: pointer;
  animation: faqButtonPulse 2.8s ease-in-out infinite;
}

.faq-image-button::after {
  position: absolute;
  inset: -0.25rem;
  border: 2px solid rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(181, 18, 43, 0);
  content: "";
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-image-button:hover::after,
.faq-image-button:focus-visible::after {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 1.2rem rgba(181, 18, 43, 0.5);
  transform: translateX(0.25rem);
}

.faq-panel {
  position: absolute;
  top: 50%;
  left: 8.4%;
  z-index: 6;
  width: min(30rem, 36vw);
  max-height: min(74vh, 42rem);
  overflow: auto;
  padding: clamp(1rem, 2vw, 1.6rem);
  border-left: 5px solid var(--red);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 240, 234, 0.95)),
    var(--white);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.34);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: translate(-1rem, -50%) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease;
}

.faq-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

.faq-panel h2 {
  margin: 0 2rem 1rem 0;
  color: var(--charcoal);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.faq-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  place-items: center;
  width: 2.2rem;
  aspect-ratio: 1;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border: 1px solid #ddd3c4;
  background: rgba(255, 255, 255, 0.72);
}

.faq-list summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  color: var(--charcoal);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-list p {
  margin: 0;
  padding: 0 1rem 0.95rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-panel .button {
  margin-top: 1rem;
}

@keyframes faqSceneDrift {
  from {
    transform: scale(1.01) translateX(0);
  }
  to {
    transform: scale(1.045) translateX(-0.8%);
  }
}

@keyframes boardSheen {
  0%,
  22% {
    opacity: 0;
    transform: translateX(-34%);
  }
  42% {
    opacity: 0.55;
  }
  58%,
  100% {
    opacity: 0;
    transform: translateX(34%);
  }
}

@keyframes boardBreath {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.48;
  }
}

@keyframes chalkDust {
  0%,
  18% {
    opacity: 0;
    transform: translate(0, 0) scale(0.6);
  }
  36% {
    opacity: 0.75;
  }
  70%,
  100% {
    opacity: 0;
    transform: translate(0.8rem, -1.4rem) scale(1.6);
  }
}

@keyframes faqSignSwing {
  0%,
  100% {
    transform: rotate(-2.2deg);
  }
  50% {
    transform: rotate(2.4deg);
  }
}

@keyframes faqButtonPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(181, 18, 43, 0));
  }
  50% {
    filter: drop-shadow(0 0 0.75rem rgba(181, 18, 43, 0.46));
  }
}

.chalk-board {
  position: absolute;
  top: 14.1%;
  right: 13.55%;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(24.2vw, 27rem);
  aspect-ratio: 0.64;
  padding: clamp(0.9rem, 1.8vw, 1.75rem);
  border: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 58%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
    rgba(31, 34, 32, 0.94);
  background-size: 26px 25px, 37px 34px, 100% 100%, 100% 100%;
  box-shadow:
    inset 0 0 2rem rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  transform: rotate(3.35deg) skewY(-1deg);
}

.chalk-board::before {
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.chalk-line {
  width: 100%;
  text-align: center;
}

.chalk-line span {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 4vw, 4.15rem);
  font-weight: 700;
  line-height: 1.02;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.9),
    1px 1px 0 rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  white-space: nowrap;
  animation: chalkWriteErase 8.2s steps(14, end) infinite;
}

.line-two span {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.75rem, 3.9vw, 4rem);
  animation-delay: 1.18s;
}

.chalk-rule {
  width: 76%;
  height: 3px;
  margin: clamp(0.6rem, 1.1vw, 1rem) 0;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  animation: chalkRule 8.2s ease-in-out infinite;
}

.chalk-wrench {
  margin-top: clamp(0.5rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  opacity: 0;
  animation: chalkFade 8.2s ease-in-out infinite;
}

.chalk-piece {
  position: absolute;
  z-index: 4;
  width: clamp(1.8rem, 3.4vw, 3.1rem);
  height: clamp(0.35rem, 0.65vw, 0.56rem);
  border-radius: 999px;
  background:
    linear-gradient(90deg, #e9e4d5, #fffdf0 42%, #bdb7aa);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0.2rem 0.5rem rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-16deg);
  animation: chalkPieceMove 8.2s linear infinite;
}

@keyframes chalkWriteErase {
  0%,
  8% {
    max-width: 0;
    opacity: 0;
  }
  18%,
  62% {
    max-width: 100%;
    opacity: 1;
  }
  78%,
  100% {
    max-width: 0;
    opacity: 0;
  }
}

@keyframes chalkRule {
  0%,
  24% {
    opacity: 0;
    transform: scaleX(0);
  }
  34%,
  64% {
    opacity: 0.82;
    transform: scaleX(1);
  }
  76%,
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes chalkFade {
  0%,
  34% {
    opacity: 0;
  }
  44%,
  66% {
    opacity: 0.7;
  }
  80%,
  100% {
    opacity: 0;
  }
}

@keyframes chalkPieceMove {
  0%,
  7% {
    left: 22%;
    top: 28%;
    opacity: 0;
  }
  12% {
    left: 28%;
    top: 32%;
    opacity: 1;
  }
  30% {
    left: 77%;
    top: 32%;
    opacity: 1;
  }
  40% {
    left: 24%;
    top: 58%;
    opacity: 1;
  }
  58% {
    left: 76%;
    top: 58%;
    opacity: 1;
  }
  66% {
    left: 78%;
    top: 72%;
    opacity: 0.85;
  }
  74% {
    left: 18%;
    top: 72%;
    opacity: 0.55;
  }
  82%,
  100% {
    left: 18%;
    top: 72%;
    opacity: 0;
  }
}

.faq-board-copy {
  position: absolute;
  top: 30%;
  right: max(4rem, calc((100vw - var(--max)) / 2 + 7.2rem));
  z-index: 1;
  width: min(27rem, 32vw);
  padding: clamp(1.05rem, 1.8vw, 1.6rem);
  border: 1px solid rgba(43, 43, 43, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 238, 228, 0.88)),
    var(--beige);
  box-shadow: 0 1.3rem 2.5rem rgba(0, 0, 0, 0.24);
  color: #1b1714;
  transform: rotate(0.6deg);
}

.faq-kicker {
  margin: 0 0 0.45rem;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-board-copy h1 {
  margin: 0 0 0.7rem;
  color: var(--charcoal);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.faq-board-copy h1::after {
  display: block;
  width: 4.4rem;
  height: 2px;
  margin-top: 0.75rem;
  background: var(--red);
  content: "";
}

.faq-board-copy p {
  max-width: 24rem;
  margin: 0.55rem 0 0;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
}

.faq-board-copy .button {
  min-height: 44px;
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .references-layout {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-block: 1rem 1.4rem;
  }

  .references-copy h1 {
    max-width: 18ch;
    font-size: clamp(1.9rem, 5vw, 3.2rem);
  }

  .reference-card {
    grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.36fr);
  }

  .advice-hero > img {
    object-position: 66% center;
  }

  .advice-copy {
    width: min(34rem, 58vw);
    margin-left: 1.35rem;
  }

  .advice-copy h1 {
    font-size: clamp(4.2rem, 11vw, 6.8rem);
  }

  .faq-board-copy {
    top: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    width: min(29rem, calc(100vw - 2.5rem));
  }

  .faq-copy-card {
    width: min(30rem, 44vw);
    margin-left: 1.5rem;
  }

  .faq-copy-card h1 {
    font-size: clamp(3.2rem, 7vw, 5.4rem);
  }

  .faq-copy-card > p:not(.faq-kicker) {
    margin-block: 0.8rem;
    font-size: 0.96rem;
  }

  .faq-hanging-sign {
    top: 14%;
    right: 43%;
    width: clamp(7.8rem, 12vw, 10rem);
    min-height: clamp(9rem, 15vw, 11.5rem);
  }

  .chalk-board {
    top: 13.8%;
    right: 10.2vw;
    width: min(33vw, 24rem);
  }
}

@media (max-width: 680px) {
  .references-hero {
    min-height: calc(100svh - 72px);
    height: auto;
    overflow: visible;
    padding: 0.85rem;
  }

  .references-hero > img,
  .references-hero::after {
    position: fixed;
  }

  .references-layout {
    width: 100%;
    gap: 1rem;
    padding-block: 0.6rem 1rem;
  }

  .references-copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .references-copy p:not(.eyebrow) {
    margin-block: 0.8rem 1rem;
    font-size: 0.96rem;
  }

  .reference-card {
    grid-template-columns: 1fr;
    padding: 0.7rem;
  }

  .reference-photo {
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .reference-mini-grid {
    grid-template-columns: 1fr;
  }

  .reference-mini-card {
    grid-template-columns: minmax(5.4rem, 0.32fr) minmax(0, 1fr);
  }

  .advice-hero > img {
    opacity: 0.56;
    object-position: 72% center;
  }

  .advice-hero::after {
    background:
      linear-gradient(90deg, rgba(255, 248, 232, 0.96) 0 62%, rgba(255, 248, 232, 0.58) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(44, 27, 16, 0.2));
  }

  .advice-copy {
    width: min(28rem, calc(100vw - 2rem));
    margin-inline: 1rem;
    padding-top: 2rem;
  }

  .advice-copy h1 {
    font-size: clamp(3.5rem, 18vw, 5.1rem);
  }

  .advice-copy p:not(.advice-kicker) {
    max-width: 24rem;
    font-size: 1rem;
  }

  .faq-hero {
    min-height: calc(100svh - 72px);
    height: auto;
    overflow: visible;
  }

  .faq-hero > img {
    position: fixed;
    min-height: 100svh;
    object-position: 62% center;
  }

  .faq-hero::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 54%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 65%);
  }

  .chalk-board {
    top: auto;
    right: 1rem;
    bottom: 8%;
    width: min(64vw, 18rem);
  }

  .faq-board-glow {
    top: auto;
    right: 1rem;
    bottom: 7%;
    width: min(64vw, 18rem);
    height: 56%;
  }

  .faq-copy-card {
    width: min(30rem, calc(100vw - 1.7rem));
    height: auto;
    min-height: auto;
    margin: 0.85rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 0.9rem 2rem rgba(35, 22, 14, 0.16);
  }

  .faq-copy-card h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .faq-copy-card > p:not(.faq-kicker) {
    font-size: 0.96rem;
  }

  .faq-list-compact summary {
    font-size: 0.86rem;
  }

  .faq-list-compact p {
    font-size: 0.88rem;
  }

  .faq-hanging-sign {
    top: auto;
    right: 7.5rem;
    bottom: 1.3rem;
    width: 8rem;
    min-height: 9.2rem;
  }

  .faq-nail {
    top: -0.95rem;
  }

  .faq-rope {
    top: -0.35rem;
    width: 4.2rem;
    height: 2.45rem;
  }

  .faq-sign-board {
    border-width: 0.38rem;
  }

  .faq-sign-board strong {
    font-size: 1.45rem;
  }

  .faq-image-button {
    left: 9%;
    bottom: 15%;
    width: 45vw;
    height: 3.8rem;
  }

  .faq-panel {
    top: auto;
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
    width: auto;
    max-height: 76vh;
    transform: translateY(1rem) scale(0.98);
  }

  .faq-panel.is-open {
    transform: translateY(0) scale(1);
  }

  .faq-panel h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .chalk-line span {
    font-size: clamp(1.55rem, 9vw, 2.6rem);
  }

  .line-two span {
    font-size: clamp(1.45rem, 8vw, 2.35rem);
  }

  .faq-board-copy {
    right: 0.85rem;
    bottom: 0.95rem;
    left: 0.85rem;
    width: auto;
    padding: 1rem;
    transform: none;
  }

  .faq-board-copy h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .faq-board-copy .button {
    width: 100%;
  }
}

address {
  font-style: normal;
}

.screen[data-screen="kontakt"] {
  padding: 0;
  background: var(--white);
}

.contact-hero {
  position: relative;
  height: 100%;
  overflow: auto;
  background: var(--white);
}

.contact-hero > img {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  object-fit: cover;
  object-position: center center;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(25rem, 0.9fr) minmax(22rem, 0.72fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  min-height: 100%;
  height: auto;
  width: min(var(--max), calc(100vw - (var(--page-gutter) * 2)));
  margin-left: var(--page-gutter);
  margin-right: auto;
  padding-block: clamp(0.75rem, 2vh, 1.4rem) 1.4rem;
}

.contact-kicker {
  margin: 0 0 1.2rem 0.32rem;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info h1 {
  margin: 0 0 1.25rem;
  color: #171717;
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(3.25rem, 5.5vw, 6.7rem);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.contact-info h1::after {
  display: block;
  width: 5.8rem;
  height: 2px;
  margin-top: 0.9rem;
  background: var(--red);
  content: "";
}

.contact-row {
  display: grid;
  grid-template-columns: 3.8rem minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  max-width: 35rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(43, 43, 43, 0.14);
  color: #1f1c18;
  font-size: 0.98rem;
  line-height: 1.46;
}

.contact-row a {
  color: inherit;
  text-decoration: none;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 3.45rem;
  aspect-ratio: 1;
  border: 1px solid rgba(181, 18, 43, 0.24);
  background: rgba(255, 255, 255, 0.64);
  color: var(--red);
  font-size: 1.62rem;
  font-family: "Oswald", sans-serif;
}

.contact-note {
  max-width: 35rem;
  margin: 0.85rem 0 0;
  padding: 0.8rem 1rem 0.8rem 4.45rem;
  border: 1px solid rgba(181, 18, 43, 0.22);
  border-left: 5px solid var(--red);
  background: rgba(255, 255, 255, 0.58);
  color: #1f1c18;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.42;
}

.contact-qr {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) clamp(5rem, 6.6vw, 6.2rem);
  gap: 0.8rem;
  align-items: center;
  max-width: 35rem;
  margin-top: 0.7rem;
  padding: 0.65rem 0.7rem 0.65rem 0.85rem;
  border: 1px solid rgba(181, 18, 43, 0.24);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0.7rem 1.6rem rgba(26, 18, 12, 0.12);
  color: #1f1c18;
  text-decoration: none;
}

.contact-qr span {
  display: grid;
  gap: 0.25rem;
}

.contact-qr strong {
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-qr small {
  color: #171717;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-qr img {
  width: 100%;
  height: auto;
  justify-self: end;
  background: #fff;
}

.contact-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(43, 43, 43, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.2rem 3rem rgba(20, 16, 12, 0.17);
}

.contact-side {
  display: grid;
  gap: clamp(0.8rem, 1.4vw, 1.1rem);
  min-width: 0;
}

.contact-map-card {
  overflow: hidden;
  border: 1px solid rgba(43, 43, 43, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1rem 2.4rem rgba(20, 16, 12, 0.16);
}

.contact-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.78rem 0.95rem;
  border-bottom: 1px solid rgba(43, 43, 43, 0.12);
  color: var(--charcoal);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.contact-map-head strong {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.contact-map-head a {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  min-height: clamp(14rem, 28vh, 21rem);
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.contact-card > p {
  margin: 0 0 1.3rem;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card > p::after {
  display: block;
  width: 3.6rem;
  height: 2px;
  margin-top: 0.85rem;
  background: var(--red);
  content: "";
}

.contact-fields {
  display: grid;
  gap: 0.85rem;
}

.contact-fields.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0.85rem;
}

.contact-card input,
.contact-card textarea {
  border: 1px solid #d5c9bb;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.98rem;
}

.contact-card textarea {
  min-height: 8.8rem;
}

.contact-card .button {
  width: 100%;
  min-height: 3.55rem;
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .contact-hero > img {
    object-position: 58% center;
  }

  .contact-layout {
    grid-template-columns: 1fr 0.95fr;
    gap: 1.4rem;
    width: calc(100vw - 2.5rem);
  }

  .contact-info h1 {
    font-size: clamp(3.5rem, 8vw, 5.6rem);
  }

  .contact-row {
    grid-template-columns: 3.6rem minmax(0, 1fr);
    gap: 0.9rem;
    font-size: 0.94rem;
  }

  .contact-icon {
    width: 3.3rem;
    font-size: 1.55rem;
  }

  .contact-note {
    padding-left: 1.2rem;
  }

  .contact-qr {
    grid-template-columns: minmax(0, 1fr) 6.2rem;
  }
}

@media (max-width: 760px) {
  .contact-layout {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 1rem;
    padding-block: 1.2rem 2rem;
    overflow: auto;
  }

  .contact-info h1 {
    margin-bottom: 1rem;
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .contact-card {
    padding: 1.15rem;
  }

  .contact-fields.two {
    grid-template-columns: 1fr;
  }
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.screen[data-screen="objednavka"] {
  padding: 0;
  background: var(--black);
}

.order-garage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(24rem, 0.72fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  height: 100%;
  overflow: auto;
  padding: clamp(1.5rem, 4vw, 4rem) var(--page-gutter);
  background: var(--black);
}

.order-garage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.06) saturate(1.02) brightness(0.8);
}

.order-garage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 46%);
  content: "";
  pointer-events: none;
}

.order-garage-copy,
.garage-widget {
  position: relative;
  z-index: 1;
}

.order-garage-copy {
  align-self: start;
  max-width: 31rem;
  padding-top: clamp(0.6rem, 4vh, 3rem);
  color: var(--white);
}

.order-garage-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 6.2vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.14;
  text-transform: uppercase;
}

.order-garage-copy p:not(.eyebrow) {
  max-width: 27rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
  line-height: 1.6;
}

.garage-widget {
  justify-self: end;
  width: min(42rem, 100%);
  height: min(100%, 42rem);
  min-height: 0;
  border: 10px solid #14110e;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 170, 0.16), transparent 34%),
    linear-gradient(180deg, #1b1713, #090806);
  box-shadow:
    0 1.6rem 3.4rem rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.garage-interior {
  height: 100%;
  overflow: auto;
  padding: clamp(0.8rem, 1.7vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(181, 18, 43, 0.18), transparent 32%),
    #15120f;
}

.garage-form-card {
  min-height: min-content;
  padding: clamp(0.9rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(243, 240, 234, 0.95);
  color: var(--text);
}

.garage-form-title {
  margin: 0 0 1rem;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
}

.garage-door {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 12%),
    repeating-linear-gradient(180deg, #383838 0 28px, #2b2b2b 28px 34px, #171717 34px 38px),
    #262626;
  color: var(--white);
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 1450ms cubic-bezier(0.65, 0, 0.2, 1), box-shadow 280ms ease;
}

.garage-door::before {
  position: absolute;
  inset: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.16);
  content: "";
}

.garage-door::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18px;
  background: linear-gradient(90deg, #050505, #3c3c3c, #050505);
  content: "";
}

.garage-door:hover {
  box-shadow: inset 0 0 0 999px rgba(181, 18, 43, 0.08);
}

.door-label {
  position: relative;
  z-index: 1;
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.36);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
}

.door-arrow {
  position: absolute;
  left: 50%;
  bottom: 28%;
  z-index: 1;
  color: var(--red);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  transform: translateX(-50%);
  animation: doorHint 1200ms ease-in-out infinite;
}

.garage-widget.is-open .garage-door {
  pointer-events: none;
  transform: translateY(-104%);
}

@media (max-height: 820px) and (min-width: 681px) {
  .app-shell {
    inset: 94px 0 28px;
  }

  .screen {
    padding: 1rem;
  }

  .screen-panel,
  .screen-body {
    padding: 1rem;
  }

  .screen-panel h1,
  .screen-body h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
  }

  .lead {
    font-size: 1rem;
  }

  .card-grid {
    gap: 0.8rem;
  }

  .click-card {
    min-height: 185px;
  }

  .image-slot {
    min-height: 170px;
  }

  .contact-layout {
    align-items: start;
    gap: 1rem;
    width: min(78rem, calc(100vw - 2rem));
    padding-block: 0.75rem;
  }

  .contact-info h1 {
    margin-bottom: 0.55rem;
    font-size: clamp(2.45rem, 4.4vw, 4.55rem);
  }

  .contact-row {
    grid-template-columns: 3.1rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .contact-icon {
    width: 2.85rem;
    font-size: 1.35rem;
  }

  .contact-note {
    margin-top: 0.5rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.84rem;
    line-height: 1.36;
  }

  .contact-qr {
    grid-template-columns: minmax(0, 1fr) 5rem;
    margin-top: 0.5rem;
    padding: 0.52rem 0.62rem;
  }

  .contact-qr strong {
    font-size: 0.96rem;
  }

  .contact-qr small {
    font-size: 0.76rem;
  }

  .contact-qr {
    margin-top: 0.65rem;
    padding: 0.7rem;
  }

  .contact-card {
    padding: 0.85rem;
  }

  .contact-card > p {
    margin-bottom: 0.75rem;
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  }

  .contact-card > p::after {
    margin-top: 0.45rem;
  }

  .contact-fields {
    gap: 0.55rem;
  }

  .contact-fields.two {
    margin-bottom: 0.55rem;
  }

  .contact-card input,
  .contact-card textarea {
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
  }

  .contact-card textarea {
    min-height: 5.1rem;
  }

  .contact-card .button {
    min-height: 42px;
    margin-top: 0.6rem;
  }

  .advice-hero {
    overflow: auto;
  }

  .advice-copy {
    justify-content: flex-start;
    height: auto;
    min-height: 100%;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .advice-copy h1 {
    font-size: clamp(3.8rem, 7.2vw, 6.8rem);
  }

  .advice-copy p:not(.advice-kicker) {
    margin-top: 0.85rem;
    font-size: 1rem;
    line-height: 1.48;
  }

  .advice-copy .button {
    min-height: 44px;
    margin-top: 1rem;
  }

  .faq-hanging-sign {
    top: 11%;
    right: 44%;
    width: clamp(7.2rem, 9vw, 9.2rem);
    min-height: clamp(8.2rem, 12vw, 10.6rem);
  }

  .faq-sign-board {
    padding: 0.8rem 0.6rem;
  }

  .faq-sign-board strong {
    font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  }

  .faq-panel {
    max-height: min(70vh, 33rem);
  }

  .faq-copy-card {
    width: min(28rem, 38vw);
  }

  .faq-copy-card h1 {
    font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  }

  .faq-copy-card > p:not(.faq-kicker) {
    margin-block: 0.65rem;
    font-size: 0.9rem;
  }

  .faq-list-compact summary {
    padding: 0.52rem 0.7rem;
    font-size: 0.8rem;
  }

  .faq-list-compact p {
    padding: 0 0.7rem 0.58rem;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .projects-layout {
    grid-template-columns: minmax(14rem, 0.32fr) minmax(0, 1fr);
    gap: 1rem;
    padding-block: 0.45rem 0.8rem;
  }

  .projects-intro h1 {
    font-size: clamp(3rem, 5.2vw, 5.4rem);
    line-height: 1.16;
  }

  .projects-intro p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .project-tile {
    min-height: 13rem;
    padding: 0.55rem;
  }

  .project-tile-footer {
    gap: 0.5rem;
    padding-top: 0.6rem;
  }

  .project-tile-footer h3 {
    font-size: 0.98rem;
  }

  .project-tile-footer .button {
    min-height: 34px;
  }

  .order-garage {
    align-items: stretch;
    gap: clamp(1rem, 3vw, 3rem);
    padding-block: 1rem;
  }

  .order-garage-copy {
    align-self: start;
    padding-top: 0.4rem;
  }

  .order-garage-copy h1 {
    font-size: clamp(2.5rem, 4.8vw, 5rem);
    line-height: 1.14;
  }

  .order-garage-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .garage-widget {
    height: 100%;
    max-height: calc(100vh - 8.2rem);
    border-width: 7px;
  }

  .garage-interior {
    padding: 0.75rem;
  }

  .garage-form-card {
    padding: 0.85rem;
  }

  .garage-form-title {
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
  }

  .garage-form-card .form-grid {
    gap: 0.55rem;
  }

  .garage-form-card label {
    gap: 0.2rem;
    font-size: 0.74rem;
  }

  .garage-form-card input,
  .garage-form-card select,
  .garage-form-card textarea {
    padding: 0.5rem 0.65rem;
    font-size: 0.92rem;
  }

  .garage-form-card textarea {
    min-height: 4.9rem;
  }

  .garage-form-card .button {
    min-height: 40px;
    margin-top: 0.45rem;
  }
}

@media (max-height: 720px) and (min-width: 681px) {
  .app-shell {
    inset: 86px 0 28px;
  }

  .contact-layout {
    grid-template-columns: minmax(20rem, 0.82fr) minmax(22rem, 0.9fr);
    gap: 0.85rem;
    padding-block: 0.55rem;
  }

  .contact-kicker {
    margin-bottom: 0.5rem;
    margin-left: 0.18rem;
    font-size: 0.9rem;
  }

  .contact-info h1 {
    margin-bottom: 0.45rem;
    font-size: clamp(2.45rem, 4.4vw, 4.45rem);
  }

  .contact-info h1::after {
    margin-top: 0.65rem;
  }

  .contact-row {
    padding: 0.38rem 0;
    font-size: 0.84rem;
  }

  .contact-note {
    margin-top: 0.45rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.84rem;
  }

  .contact-qr {
    grid-template-columns: minmax(0, 1fr) 5.6rem;
    margin-top: 0.5rem;
    padding: 0.55rem 0.65rem;
  }

  .contact-card {
    padding: 0.7rem;
  }

  .contact-card input,
  .contact-card textarea {
    min-height: 36px;
    padding: 0.45rem 0.6rem;
  }

  .contact-card textarea {
    min-height: 4.4rem;
  }

  .contact-card .button {
    min-height: 38px;
    margin-top: 0.45rem;
  }

  .faq-hanging-sign {
    top: 9%;
    right: 43%;
    width: 7.4rem;
    min-height: 8.4rem;
  }

  .faq-sign-board span {
    font-size: 0.72rem;
  }

  .faq-sign-board strong {
    font-size: 1.22rem;
  }

  .order-garage {
    grid-template-columns: minmax(15rem, 0.5fr) minmax(24rem, 0.8fr);
  }

  .order-garage-copy h1 {
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1.14;
  }

  .order-garage-copy p:not(.eyebrow) {
    max-width: 22rem;
    font-size: 0.9rem;
  }

  .garage-widget {
    max-height: calc(100vh - 7.2rem);
  }

  .garage-form-card input,
  .garage-form-card select,
  .garage-form-card textarea {
    min-height: 36px;
  }

  .garage-form-card textarea {
    min-height: 4.2rem;
  }
}

@keyframes doorHint {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -8px);
  }
}

label {
  display: grid;
  gap: 0.35rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc7bb;
  background: var(--white);
  color: var(--text);
  font: 400 1rem "Roboto Slab", Georgia, serif;
  padding: 0.72rem 0.85rem;
}

textarea {
  resize: vertical;
}

.site-footer {
  position: fixed;
  inset: auto 0 0;
  z-index: 45;
  min-height: 28px;
  padding: 0.12rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--red);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3.2vw, 3.2rem);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-visible {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.footer-visible strong {
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-visible span,
.footer-visible a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  white-space: nowrap;
}

.footer-visible a:hover,
.footer-visible a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-visible-contact {
  margin-left: clamp(-2rem, -1.6vw, -0.8rem);
}

.footer-menu {
  position: relative;
  flex: 0 0 auto;
}

.footer-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 24px;
  color: var(--white);
  cursor: var(--cursor-pointer);
  font-weight: 800;
  letter-spacing: 0.04em;
  list-style: none;
}

.footer-menu summary::-webkit-details-marker {
  display: none;
}

.footer-menu summary::after {
  content: "+";
  font-size: 0.95rem;
  line-height: 1;
}

.footer-menu[open] summary::after {
  content: "-";
}

.footer-popover {
  position: absolute;
  bottom: calc(100% + 0.45rem);
  left: 0;
  z-index: 60;
  display: grid;
  gap: 0.35rem;
  min-width: 14rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 11, 9, 0.96);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
}

.footer-menu:last-child .footer-popover {
  right: 0;
  left: auto;
}

.footer-popover strong,
.footer-popover span,
.footer-popover a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-popover strong {
  color: var(--white);
}

.footer-popover a:hover,
.footer-popover a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.app-shell {
  inset: 96px 0 28px;
}

.loader {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  background: rgba(11, 11, 11, 0.72);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.loader.is-visible {
  display: grid;
}

.loader-bike-art {
  width: min(455px, 68vw);
  height: auto;
  overflow: visible;
  animation: bikeFloat 900ms ease-in-out infinite;
}

.loader-bike-art path,
.loader-bike-art circle {
  vector-effect: non-scaling-stroke;
}

.loader-wheel-svg {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 760ms linear infinite;
}

.loader-wheel-svg circle,
.loader-wheel-svg path {
  fill: none;
  stroke: var(--white);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loader-frame,
.loader-front,
.loader-handle,
.loader-stand {
  fill: none;
  stroke: var(--white);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loader-tank,
.loader-side,
.loader-fender {
  fill: var(--red);
  stroke: var(--white);
  stroke-width: 7;
  stroke-linejoin: round;
}

.loader-seat {
  fill: #111;
  stroke: var(--white);
  stroke-width: 7;
  stroke-linejoin: round;
}

.loader-light {
  fill: #f7d77c;
  stroke: var(--white);
  stroke-width: 7;
}

.loader-engine {
  fill: #d8d1c5;
  stroke: var(--white);
  stroke-width: 7;
  stroke-linejoin: round;
}

.loader-exhaust {
  fill: #e7e1d8;
  stroke: var(--white);
  stroke-width: 7;
  stroke-linejoin: round;
}

.loader-smoke {
  pointer-events: none;
}

.smoke-puff {
  fill: rgba(255, 255, 255, 0.74);
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: exhaustSmoke 960ms ease-out infinite;
}

.smoke-puff-two {
  animation-delay: 140ms;
}

.smoke-puff-three {
  animation-delay: 280ms;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes exhaustSmoke {
  0% {
    opacity: 0;
    transform: translate(-10px, 8px) scale(0.35);
  }
  18% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    transform: translate(22px, -18px) scale(1.28);
  }
}

@keyframes bikeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes composingText {
  0% {
    max-width: 0;
    opacity: 1;
  }

  38%,
  58% {
    max-width: 9.2ch;
    opacity: 1;
  }

  78%,
  100% {
    max-width: 9.2ch;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-workshop-preview span {
    max-width: none;
    opacity: 1;
    animation: none;
  }
}

@media (max-width: 1500px) and (min-width: 1101px) {
  .site-header {
    min-height: 94px;
    gap: 0.75rem;
    padding-block: 0.32rem;
  }

  .brand {
    min-width: 278px;
    height: 84px;
  }

  .brand-wordmark-img {
    width: 190px;
    height: 72px;
  }

  .brand-gears-img {
    width: 80px;
    height: 76px;
  }

  .main-nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.6rem;
    font-size: 0.94rem;
    line-height: 1;
  }

  .nav-group {
    padding-block: 0.95rem;
  }

  .nav-dropdown {
    min-width: 218px;
  }

  .app-shell {
    inset: 94px 0 28px;
  }

  .about-screen {
    overflow: hidden;
  }

}

@media (max-width: 1100px) {
  .site-header {
    min-height: 88px;
    padding-inline: 1rem;
  }

  .app-shell {
    inset: 88px 0 28px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    min-height: 44px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 1rem 2.5rem rgba(11, 11, 11, 0.18);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-group {
    padding-block: 0;
  }

  .nav-parent {
    width: 100%;
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0;
    background: var(--black);
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    color: var(--white);
    padding-left: 1.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-dropdown a:hover,
  .nav-dropdown a.is-active {
    background: var(--red);
    color: var(--white);
  }

  .screen-frame,
  .intro-layout,
  .home-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .screen-frame {
    height: auto;
    min-height: 100%;
  }

  .home-hero {
    min-height: 100%;
    padding-top: 2rem;
    align-items: flex-start;
  }

  .home-hero-copy {
    width: min(620px, 100%);
  }

  .hero-bg img {
    object-position: 72% center;
  }

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

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

  .projects-layout {
    grid-template-columns: 1fr;
    align-items: start;
    margin-inline: auto;
    padding-block: 0.75rem 2rem;
  }

  .projects-intro {
    width: min(42rem, 100%);
    padding: 1rem;
    padding-top: 1.45rem;
    border-left: 4px solid var(--red);
    background: rgba(0, 0, 0, 0.58);
  }

  .projects-intro h1 {
    font-size: clamp(3.4rem, 10vw, 5.8rem);
    line-height: 1.16;
  }

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

@media (max-width: 680px) {
  html,
  body {
    min-height: 100%;
    overflow: auto;
  }

  body {
    background: var(--white);
  }

  .site-header {
    position: sticky;
    top: 0;
    min-height: 72px;
    gap: 0.55rem;
    padding: 0.25rem 0.75rem;
    border-bottom-width: 3px;
  }

  .brand {
    gap: 0.16rem;
    min-width: 0;
    height: 58px;
  }

  .brand-gears-img {
    width: 56px;
    height: 52px;
  }

  .brand-wordmark-img {
    width: 126px;
    height: 50px;
  }

  .nav-toggle {
    min-height: 40px;
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
  }

  .main-nav {
    right: 0.75rem;
    left: 0.75rem;
    font-size: 1.05rem;
  }

  .app-shell {
    position: relative;
    inset: auto;
    min-height: calc(100svh - 72px);
    overflow: visible;
  }

  .screen {
    position: relative;
    inset: auto;
    min-height: calc(100svh - 72px);
    padding: 0.85rem;
    overflow: visible;
  }

  .screen.is-active {
    display: block;
  }

  .screen-frame {
    display: grid;
    gap: 0.85rem;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .screen-panel,
  .screen-body {
    border-radius: 0;
  }

  .screen-panel {
    justify-content: flex-start;
    padding: 1.1rem;
  }

  .screen-panel h1,
  .screen-body h1 {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
    line-height: 0.98;
  }

  .screen-body {
    overflow: visible;
    padding: 1rem;
  }

  .screen[data-screen="detail"].is-service-detail {
    padding: 0.85rem;
  }

  .service-detail-frame {
    gap: 0.85rem;
  }

  .service-detail-panel {
    display: flex;
    gap: 0.65rem;
    padding: 0.9rem;
  }

  .service-detail-panel h1 {
    font-size: clamp(1.35rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  .service-detail-body {
    padding: 0.95rem;
  }

  .service-detail-body h1 {
    font-size: clamp(1.35rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  .service-detail-body p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .service-detail-gallery {
    grid-template-columns: 1fr;
  }

  .screen[data-screen="detail"].is-project-detail {
    padding: 0.85rem;
  }

  .project-detail-frame {
    gap: 0.85rem;
  }

  .project-detail-panel {
    display: flex;
    gap: 0.65rem;
    padding: 0.9rem;
  }

  .project-detail-body {
    padding: 0.95rem;
  }

  .project-detail-body h1 {
    font-size: clamp(1.35rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  .project-detail-body p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .project-detail-gallery {
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding-inline: 0.9rem;
    text-align: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .projects-hero {
    height: auto;
    min-height: calc(100svh - 72px);
    overflow-x: hidden;
    overflow-y: visible;
  }

  .projects-hero > img {
    position: fixed;
    min-height: 100svh;
    object-position: 62% center;
  }

  .projects-hero::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2) 70%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 74%);
  }

  .projects-layout {
    width: 100%;
    min-height: auto;
    padding: 0.55rem 0.85rem 0.85rem;
  }

  .projects-intro {
    padding: 1rem;
    padding-top: 1.35rem;
  }

  .projects-intro h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
    line-height: 1.16;
  }

  .projects-intro p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .projects-intro .button {
    width: 100%;
  }

  .projects-gallery {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .project-tile {
    min-height: auto;
    transform: none;
  }

  .project-tile:hover {
    transform: translateY(-0.12rem);
  }

  .project-tile .project-cover {
    aspect-ratio: 4 / 3;
  }

  .project-tile-footer {
    gap: 0.65rem;
  }

  .click-card {
    min-height: 190px;
  }

  .image-slot {
    min-height: 180px;
  }

  .home-scroll {
    height: auto;
    min-height: calc(100svh - 72px);
    overflow: visible;
  }

  .home-hero {
    min-height: calc(100svh - 72px);
    align-items: flex-end;
    padding: 1rem 0.85rem 1.15rem;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.36) 36%, rgba(0, 0, 0, 0.86) 74%, rgba(0, 0, 0, 0.94) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.05) 100%);
  }

  .hero-bg img {
    object-position: 72% center;
    filter: contrast(1.08) saturate(1.04) brightness(0.74);
  }

  .home-hero-copy {
    width: 100%;
    max-width: none;
    padding: 1rem;
    border-left: 4px solid var(--red);
    background: rgba(0, 0, 0, 0.72);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.34);
  }

  .hero-kicker {
    max-width: none;
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
  }

  .hero-claim {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
    line-height: 0.97;
  }

  .hero-claim span,
  .hero-claim strong {
    white-space: normal;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.95rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-lead {
    display: -webkit-box;
    max-width: 19.5rem;
    margin-top: 0.75rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.94rem;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-points {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .about-screen {
    width: 100%;
    padding: 1.3rem 1rem 1.4rem;
  }

  .about-screen .detail-layout {
    gap: 1rem;
  }

  .about-screen .prose h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .about-screen .prose p,
  .prose p {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .about-photo {
    min-height: auto;
  }

  .about-photo img {
    min-height: 0;
    max-height: 56vh;
    object-fit: contain;
  }

  .step-item {
    gap: 0.65rem;
    padding: 0.9rem 0;
  }

  .step-item {
    grid-template-columns: 1fr;
  }

  .step-number {
    font-size: 1.9rem;
  }

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

  .advice-hero,
  .contact-hero {
    min-height: calc(100svh - 72px);
    height: auto;
  }

  .advice-hero {
    display: flex;
    align-items: flex-start;
    overflow: visible;
  }

  .advice-hero > img {
    position: fixed;
    min-height: 100svh;
    opacity: 0.5;
    object-position: 72% center;
  }

  .advice-copy {
    justify-content: flex-start;
    width: min(29rem, calc(100vw - 1.7rem));
    min-height: auto;
    margin: 0.85rem;
    padding: 1rem 0 2rem;
  }

  .advice-copy h1 {
    font-size: clamp(3rem, 16vw, 4.55rem);
  }

  .advice-copy p:not(.advice-kicker) {
    padding: 0.7rem 0.8rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 0.75rem 1.8rem rgba(26, 18, 12, 0.12);
  }

  .advice-kicker {
    margin-top: 0;
    font-size: 0.95rem;
  }

  .contact-hero {
    overflow: visible;
  }

  .contact-hero > img {
    position: fixed;
    min-height: 100svh;
    opacity: 0.62;
    object-position: 60% center;
  }

  .contact-layout {
    width: 100%;
    margin-inline: auto;
    min-height: calc(100svh - 72px);
    padding: 1rem 0 1.25rem;
    overflow: visible;
  }

  .contact-info h1 {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .contact-row {
    grid-template-columns: 3.1rem minmax(0, 1fr);
    gap: 0.75rem;
    padding-block: 0.8rem;
    font-size: 0.94rem;
  }

  .contact-icon {
    width: 3rem;
    font-size: 1.35rem;
  }

  .contact-note {
    margin-top: 0.9rem;
    padding: 0.9rem;
    font-size: 0.94rem;
  }

  .contact-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
  }

  .order-garage {
    display: block;
    min-height: calc(100svh - 72px);
    height: auto;
    padding: 1rem 0.85rem 1.25rem;
    overflow: visible;
  }

  .order-garage > img {
    position: fixed;
    min-height: 100svh;
    object-position: 55% center;
  }

  .order-garage::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18) 72%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 72%);
  }

  .order-garage-copy {
    max-width: 22rem;
    padding: 1rem;
    border-left: 4px solid var(--red);
    background: rgba(0, 0, 0, 0.68);
  }

  .order-garage-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
    line-height: 1.14;
  }

  .order-garage-copy p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .garage-widget {
    width: 100%;
    height: auto;
    min-height: min(35rem, calc(100svh - 3rem));
    margin-top: 1rem;
    border-width: 6px;
  }

  .garage-interior {
    min-height: min(35rem, calc(100svh - 3rem));
    padding: 0.75rem;
    overflow: visible;
  }

  .garage-form-card {
    padding: 0.9rem;
  }

  .garage-door {
    min-height: min(35rem, calc(100svh - 3rem));
  }

  .door-label {
    font-size: 1.05rem;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    font-size: 1rem;
  }

  .site-footer {
    position: relative;
    inset: auto;
    display: block;
    min-height: 0;
    padding: 0.35rem 1rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.75rem;
  }

  .footer-visible {
    display: grid;
    gap: 0.12rem;
  }

  .footer-visible-contact {
    margin-left: 0;
  }

  .footer-visible span,
  .footer-visible a {
    white-space: normal;
  }

  .footer-popover {
    position: fixed;
    right: 0.85rem;
    bottom: 3.3rem;
    left: 0.85rem;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .app-shell {
    inset: auto;
  }
}

a,
button,
summary,
[role="button"],
[data-route],
[data-detail-id],
.button,
.nav-parent,
.nav-toggle,
.catalog-card,
.project-tile,
.faq-image-button {
  cursor: var(--cursor-pointer) !important;
}

body.has-lightbox {
  overflow: hidden;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(8, 6, 5, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.photo-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-lightbox img {
  max-width: min(96vw, 88rem);
  max-height: min(90vh, 58rem);
  border: 0.55rem solid #e6d4b3;
  background: #17120f;
  box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.photo-lightbox-close {
  position: fixed;
  top: clamp(0.8rem, 2vw, 1.4rem);
  right: clamp(0.8rem, 2vw, 1.4rem);
  z-index: 1001;
  display: grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: var(--red);
  color: var(--white);
  cursor: var(--cursor-pointer);
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.photo-lightbox-close:hover,
.photo-lightbox-close:focus-visible {
  background: var(--black);
}

@media (max-width: 680px) {
  .photo-lightbox {
    padding: 0.7rem;
  }

  .photo-lightbox img {
    max-width: 96vw;
    max-height: 86vh;
    border-width: 0.32rem;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    min-height: 72px;
    padding: 0.35rem 0.75rem;
  }

  .brand {
    min-width: 168px;
    height: 60px;
  }

  .brand-wordmark-img {
    width: 116px;
    height: 46px;
  }

  .brand-gears-img {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    min-height: 40px;
    padding-inline: 0.85rem;
    font-size: 0.78rem;
  }

  .main-nav {
    right: 0.75rem;
    left: 0.75rem;
    max-height: calc(100svh - 82px);
  }

  .app-shell {
    position: relative;
    inset: auto;
    min-height: calc(100svh - 96px);
  }

  .home-hero {
    min-height: calc(100svh - 96px);
    padding: 1rem;
    align-items: end;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.74) 62%, rgba(0, 0, 0, 0.92)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18));
  }

  .hero-bg img {
    object-position: 64% center;
  }

  .home-hero-copy {
    width: 100%;
    padding: 0.95rem;
    background: rgba(8, 6, 5, 0.62);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(2px);
  }

  .hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .hero-claim {
    margin-top: 0.45rem;
    font-size: clamp(2.7rem, 16vw, 4.35rem);
    line-height: 0.9;
  }

  .hero-lead {
    margin-top: 0.75rem;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-points {
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .hero-points article {
    padding: 0.62rem 0.7rem;
    background: rgba(255, 255, 255, 0.08);
  }

  .point-icon {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0.95rem;
  }

  .hero-actions .button {
    min-height: 44px;
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .about-screen {
    width: 100%;
    padding: 1rem;
  }

  .about-screen .detail-layout {
    gap: 1rem;
  }

  .about-screen .prose h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .about-photo {
    min-height: 0;
  }

  .about-photo img {
    min-height: 0;
    max-height: 18rem;
  }

  .workflow-proof article,
  .reference-card,
  .catalog-card,
  .offer-catalog-card,
  .service-catalog-card {
    box-shadow: 0 0.7rem 1.35rem rgba(35, 20, 12, 0.16);
  }

  .workflow-proof-gallery .image-slot.has-photo,
  .process-gallery .image-slot.has-photo,
  .service-detail-gallery .image-slot.has-photo,
  .project-detail-gallery .image-slot.has-photo {
    box-shadow: 0 0.45rem 0.9rem rgba(35, 20, 12, 0.16);
  }
}

@media (max-width: 980px) {
  .workflow-proof {
    grid-template-columns: 1fr;
  }

  .workflow-proof article {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .projects-content {
    gap: 1rem;
  }
}

@media (max-width: 680px) {
  .workflow-proof {
    width: calc(100% - 1rem);
  }

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

  .workflow-proof-gallery-communication {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-section {
    width: 100%;
    padding: 1rem;
  }

  .before-after-home {
    width: calc(100% - 1rem);
    padding: 0.85rem;
  }

  .before-after-home .before-after-viewport {
    width: 100%;
  }

  .before-after-stage {
    border-width: 0.3rem;
  }

  .before-after-carousel {
    grid-template-columns: 2.1rem minmax(0, 1fr) 2.1rem;
    gap: 0.35rem;
  }

  .before-after-nav {
    width: 2.1rem;
    font-size: 1.65rem;
  }

  .before-after.is-portrait .before-after-stage {
    width: min(100%, 24rem);
  }

  .before-after-divider::after {
    width: 2.2rem;
    font-size: 0.94rem;
  }
}
