/* ==========================================================================
   RoadHouse — sdílený design system
   Domovská stránka + Naše práce
   ========================================================================== */

:root {
  --black:    #0b0b09;
  --carbon:   #131410;
  --gray-1:   #1c1d18;
  --gray-2:   #2a2b24;
  --gray-3:   #3a3b32;
  --gray-4:   #6e6f63;
  --gray-5:   #a8a89b;
  --bone:     #f3efe5;
  --white:    #ffffff;
  --khaki:    #e6d58b;
  --khaki-2:  #c9b876;
  --forest:   #5c5e3b;
  --terra:    #c2511f;
  --terra-2:  #993f14;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--bone);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--khaki); color: var(--black); }

/* ========== Typografické utility ========== */
.mono {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gray-5);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--khaki);
}
.eyebrow .num { color: var(--khaki); }

/* ========== Layout ========== */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 700px) { .wrap { padding: 0 1.5rem; } }

/* ========== Progress bar ========== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--khaki);
  z-index: 100;
  width: 0%;
  transition: width 0.1s linear;
}

/* ========== Navigace ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.1rem 0;
  background: linear-gradient(180deg, rgba(11,11,9,0.75), rgba(11,11,9,0));
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 11, 9, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-2);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

/* Logo — varianta 05 (shield + Anton wordmark) */
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-mark { width: 44px; height: auto; flex-shrink: 0; display: block; }
.brand-text { line-height: 1; }
.brand-text .name {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
}
.brand-text .name .tld { color: var(--khaki); font-size: 0.66em; }
.brand-text .sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem;
  color: var(--khaki);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 0.2em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.brand-text .sub::before {
  content: "";
  width: 14px;
  height: 1.5px;
  background: var(--khaki);
  flex-shrink: 0;
}

.nav-links { display: flex; justify-content: center; gap: 2.3rem; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-5);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--khaki); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--gray-5);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.05em;
}
.nav-phone svg { width: 12px; height: 12px; color: var(--khaki); }

/* Hamburger */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--gray-3);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--bone);
  position: relative;
  transition: all 0.25s ease;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: var(--bone);
  transition: all 0.25s ease;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { top: 0; transform: rotate(45deg); }
.nav-burger.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-inner { grid-template-columns: auto auto; }
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: flex; }
}

/* Mobilní výsuvné menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(11, 11, 9, 0.98);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-2);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mm-foot {
  margin-top: 2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--khaki);
  letter-spacing: 0.05em;
}

/* ========== Tlačítka ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn-light { background: var(--bone); color: var(--black); border-color: var(--bone); }
.btn-light:hover { background: var(--white); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--bone); border-color: rgba(243,239,229,0.25); }
.btn-ghost:hover { background: rgba(243,239,229,0.08); border-color: var(--bone); }
.btn-terra { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn-terra:hover { background: var(--terra-2); border-color: var(--terra-2); }
.btn .arrow { width: 14px; height: 14px; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ========== Sekční tečky ========== */
.section-dots {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.section-dots a {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(243,239,229,0.2);
  transition: all 0.3s ease;
  position: relative;
}
.section-dots a:hover { background: var(--khaki); transform: scale(1.4); }
.section-dots a::after {
  content: attr(data-label);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--bone);
  background: rgba(11,11,9,0.9);
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
}
.section-dots a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 1100px) { .section-dots { display: none; } }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 960px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(0.82) saturate(0.9) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,9,0.55) 0%, rgba(11,11,9,0.05) 38%, rgba(11,11,9,0.78) 100%),
    linear-gradient(90deg, rgba(11,11,9,0.35) 0%, transparent 58%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 9rem;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(243,239,229,0.18);
  border-radius: 999px;
  background: rgba(243,239,229,0.05);
  backdrop-filter: blur(8px);
}
.chip .live {
  width: 6px; height: 6px;
  background: var(--khaki);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

.hero h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.96;
  max-width: 17ch;
}
.hero h1 b { font-weight: 700; color: var(--white); }
.hero h1 i { font-style: normal; color: var(--khaki); font-weight: 700; }
.hero .sub {
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  max-width: 560px;
  color: rgba(243,239,229,0.78);
  margin-bottom: 2.2rem;
  font-weight: 300;
  line-height: 1.6;
}
.hero .ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Hero spodní pruh — kvalitativní, žádná smyšlená čísla */
.hero-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(243,239,229,0.12);
  background: linear-gradient(180deg, rgba(11,11,9,0), rgba(11,11,9,0.65));
}
.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.hero-strip .item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.2s ease;
}
a.hero-strip-item, a.item { color: var(--gray-5); }
.hero-strip a.item:hover { color: var(--bone); }
.hero-strip a.item:hover::before { background: var(--terra); }
.hero-strip .item::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--khaki);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

/* Scroll cue — drobná navigace nad hero-strip, mizí po prvním scrollu */
.scroll-cue {
  position: absolute;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--bone);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.65;
  transition: opacity 0.5s ease;
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue svg {
  display: block;
  width: 14px; height: 14px;
  margin: 0.5rem auto 0;
  animation: scrollCue 2.2s ease-in-out infinite;
}
.scroll-cue.hidden { opacity: 0; pointer-events: none; }
@keyframes scrollCue {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (max-width: 800px) { .scroll-cue { display: none; } }
@media (max-width: 800px) {
  .hero-strip-inner { grid-template-columns: 1fr 1fr; gap: 0.8rem 1.2rem; }
  .hero-strip { padding: 1rem 0; }
}

/* ========== Statement ========== */
.statement { padding: 7rem 0; background: var(--black); }
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.statement h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  color: var(--white);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.statement h2 b { font-weight: 600; color: var(--white); }
.statement h2 i { font-style: normal; color: var(--khaki); font-weight: 600; }
.statement .body {
  font-size: 1.1rem;
  color: var(--gray-5);
  line-height: 1.65;
  font-weight: 300;
  margin-top: 2.5rem;
}
.statement .body p { margin-bottom: 1.5rem; max-width: 60ch; }
.statement .body p:last-child { margin-bottom: 0; }
.statement-meta {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 820px;
}
.meta-item .k {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--khaki);
  margin-bottom: 0.5rem;
}
.meta-item .v { font-size: 0.98rem; color: var(--bone); line-height: 1.5; }
@media (max-width: 900px) {
  .statement { padding: 5rem 0; }
  .statement-grid { grid-template-columns: 1fr; gap: 2rem; }
  .statement-meta { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ========== Showcase — laminátové nástavby ========== */
.showcase {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--black);
  border-top: 1px solid var(--gray-2);
}
.showcase-photo {
  flex: 1.35;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.showcase-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.9);
}
.showcase-photo .tag {
  position: absolute;
  top: 2rem; left: 2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--white);
  background: rgba(11,11,9,0.55);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(243,239,229,0.15);
}
.showcase-info {
  flex: 1;
  background: var(--carbon);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showcase-info h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  color: var(--white);
  font-weight: 200;
  letter-spacing: -0.03em;
  margin: 1rem 0 1.3rem;
  line-height: 1.06;
}
.showcase-info h2 b { font-weight: 600; }
.showcase-info h2 i { font-style: normal; color: var(--khaki); font-weight: 600; }
.showcase-info p {
  color: var(--gray-5);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 44ch;
  font-weight: 300;
}
.showcase-list {
  list-style: none;
  margin: 0.6rem 0 2.3rem;
  border-top: 1px solid var(--gray-2);
}
.showcase-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-2);
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  font-size: 0.96rem;
  color: var(--bone);
}
.showcase-list li::before {
  content: "—";
  color: var(--khaki);
  font-family: 'IBM Plex Mono', monospace;
}
.showcase-info .btns { display: flex; gap: 0.8rem; flex-wrap: wrap; }
@media (max-width: 980px) {
  .showcase { flex-direction: column; }
  .showcase-photo { min-height: 58vh; }
  .showcase-info { padding: 4rem 2rem; }
}

/* ========== Služby ========== */
.services { padding: 6rem 0; background: var(--black); border-top: 1px solid var(--gray-2); }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.services-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  color: var(--white);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.03;
  margin-top: 1rem;
}
.services-head h2 b { font-weight: 600; }
.services-head h2 i { font-style: normal; color: var(--khaki); font-weight: 600; }
.services-head p {
  color: var(--gray-5);
  font-size: 1rem;
  font-weight: 300;
  max-width: 48ch;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.svc-card {
  position: relative;
  overflow: hidden;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.svc-card:hover { border-color: var(--khaki); transform: translateY(-3px); }
.svc-photo { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.svc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.88);
  transition: transform 0.6s ease, filter 0.3s ease;
}
.svc-card:hover .svc-photo img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.svc-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--white);
  padding: 0.3rem 0.55rem;
}
.svc-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc-body .n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--khaki);
  margin-bottom: 0.6rem;
}
.svc-body h3 {
  font-size: 1.12rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.svc-body p {
  font-size: 0.9rem;
  color: var(--gray-5);
  font-weight: 300;
  line-height: 1.55;
  flex: 1;
}
.svc-body .more {
  margin-top: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.svc-body .more svg { width: 12px; height: 12px; transition: transform 0.25s ease; }
.svc-card:hover .more svg { transform: translateX(3px); }
.svc-card:hover .more { color: var(--khaki); }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } .services-head { grid-template-columns: 1fr; gap: 1.2rem; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } .services { padding: 4rem 0; } }

/* ========== Postup ========== */
.process { padding: 6rem 0; background: var(--carbon); border-top: 1px solid var(--gray-2); }
.process-head { margin-bottom: 4.5rem; max-width: 720px; }
.process-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  color: var(--white);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.03;
  margin-top: 1rem;
}
.process-head h2 b { font-weight: 600; }
.process-head h2 i { font-style: normal; color: var(--khaki); font-weight: 600; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step { border-top: 1px solid var(--gray-2); padding-top: 2rem; position: relative; }
.step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 32px; height: 2px;
  background: var(--khaki);
}
.step .n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--khaki);
  margin-bottom: 1.4rem;
}
.step h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.step p { color: var(--gray-5); font-size: 0.93rem; line-height: 1.6; font-weight: 300; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } .process { padding: 4rem 0; } }

/* ========== Banner ========== */
.banner {
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid var(--gray-2);
  text-align: center;
}
.banner h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  color: var(--white);
  font-weight: 200;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 22ch;
  margin: 1.5rem auto 2rem;
}
.banner h2 b { font-weight: 600; }
.banner h2 i { font-style: normal; color: var(--khaki); font-weight: 600; }
.banner .sub {
  color: var(--gray-5);
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0 auto 3rem;
  line-height: 1.65;
  font-weight: 300;
}
.banner-ctas { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ========== Poptávka ========== */
.inquiry { padding: 6rem 0; background: var(--carbon); border-top: 1px solid var(--gray-2); }
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.inquiry-left h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: var(--white);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 1rem 0 1.8rem;
}
.inquiry-left h2 b { font-weight: 600; }
.inquiry-left h2 i { font-style: normal; color: var(--khaki); font-weight: 600; }
.inquiry-left .body {
  color: var(--gray-5);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 48ch;
  font-weight: 300;
  line-height: 1.65;
}
.contact-list { border-top: 1px solid var(--gray-2); }
.contact-line {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gray-2);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  align-items: center;
}
.contact-line .k {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gray-5);
  text-transform: uppercase;
}
.contact-line .v { color: var(--bone); font-size: 1.02rem; font-weight: 400; }
.contact-line a.v:hover { color: var(--khaki); }

.form {
  background: linear-gradient(180deg, #2a2a2c 0%, #1f1f21 100%);
  border: 1px solid rgba(190,190,196,0.32);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.7);
}
.form::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: #bdbdc2;
}
.form .eyebrow::before { background: #bdbdc2; }
.form .eyebrow .num { color: #bdbdc2; }
.form-head { padding-bottom: 1.5rem; border-bottom: 1px solid #45454a; margin-bottom: 2rem; }
.form-head h3 {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.2rem; }
.field-input { display: flex; flex-direction: column; }
.field-input.full { grid-column: span 2; }
.field-input label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #bdbdc2;
  margin-bottom: 0.5rem;
}
.field-input input,
.field-input select,
.field-input textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #6f6f75;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  padding: 0.5rem 0 0.6rem;
  transition: border-color 0.2s ease;
}
.field-input input::placeholder,
.field-input textarea::placeholder { color: #76767c; }
.field-input input:focus,
.field-input select:focus,
.field-input textarea:focus { outline: none; border-color: #bdbdc2; }
.field-input textarea { resize: vertical; min-height: 100px; }
.field-input select { appearance: none; cursor: pointer; }
.field-input select option { background: #26262a; }
.form-foot {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-foot .note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: #9a9aa0;
  letter-spacing: 0.08em;
  max-width: 260px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .inquiry-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-input.full { grid-column: span 1; }
  .form { padding: 1.8rem; }
  .inquiry { padding: 4rem 0; }
}

/* ========== Footer ========== */
footer {
  background: var(--black);
  color: var(--bone);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--gray-2);
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--gray-2);
}
.foot-brand p {
  margin: 1.5rem 0;
  max-width: 38ch;
  color: var(--gray-5);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.6;
}
.foot-brand .socials { display: flex; gap: 0.5rem; }
.foot-brand .socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--gray-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--bone);
  transition: all 0.2s ease;
}
.foot-brand .socials a:hover { background: var(--khaki); color: var(--black); border-color: var(--khaki); }
.foot-brand .socials svg { width: 14px; height: 14px; }
footer h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--khaki);
  margin-bottom: 1.2rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; font-size: 0.95rem; color: var(--gray-5); }
footer ul a { color: var(--gray-5); transition: color 0.2s ease; }
footer ul a:hover { color: var(--white); }
.foot-bot {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gray-4);
}
@media (max-width: 800px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-top { grid-template-columns: 1fr; gap: 2rem; } }

/* ==========================================================================
   STRÁNKA „NAŠE PRÁCE"
   ========================================================================== */

/* Hero stránky */
.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; z-index: 1; }
.page-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(0.7) saturate(0.9);
}
.page-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,9,0.7) 0%, rgba(11,11,9,0.25) 40%, rgba(11,11,9,0.95) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: 4rem;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  color: var(--white);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 1.4rem 0 1.4rem;
  max-width: 18ch;
}
.page-hero h1 b { font-weight: 700; }
.page-hero h1 i { font-style: normal; color: var(--khaki); font-weight: 700; }
.page-hero .lead {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  color: rgba(243,239,229,0.82);
  max-width: 60ch;
  font-weight: 300;
  line-height: 1.65;
}

/* Úvodní text */
.work-intro { padding: 6rem 0 1rem; background: var(--black); }
.work-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.work-intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--white);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.work-intro h2 i { font-style: normal; color: var(--khaki); font-weight: 600; }
.work-intro .body { font-size: 1.1rem; color: var(--gray-5); font-weight: 300; line-height: 1.7; }
.work-intro .body p { margin-bottom: 1.4rem; max-width: 62ch; }
.work-intro .body p:last-child { margin-bottom: 0; }
.work-intro .punch {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--bone);
  font-weight: 400;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .work-intro { padding: 4.5rem 0 0; }
  .work-intro-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* Navigace kategorií */
.work-index { padding: 3rem 0 1rem; background: var(--black); }
.work-index-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-2);
}
.work-index a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gray-5);
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--gray-2);
  transition: all 0.2s ease;
}
.work-index a:hover { color: var(--black); background: var(--khaki); border-color: var(--khaki); }

/* Kategorie */
.work-cat { padding: 4.5rem 0; background: var(--black); border-top: 1px solid var(--gray-2); scroll-margin-top: 80px; }
.work-cat:nth-child(even) { background: var(--carbon); }
.work-cat-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: baseline;
  margin-bottom: 2.5rem;
}
.work-cat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gray-2);
  line-height: 0.8;
}
.work-cat-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  color: var(--white);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}
.work-cat-head h2 b { font-weight: 600; }
.work-cat-head p {
  color: var(--gray-5);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 64ch;
}
.work-cat-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid var(--terra);
  padding: 0.3rem 0.6rem;
  margin-bottom: 0.9rem;
}
.work-note {
  margin-top: 1.4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--gray-4);
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .work-cat-head { grid-template-columns: 1fr; gap: 0.5rem; }
  .work-cat { padding: 3.5rem 0; }
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.shot {
  position: relative;
  overflow: hidden;
  background: var(--gray-1);
  aspect-ratio: 4/3;
  cursor: zoom-in;
  border: 1px solid var(--gray-2);
}
.shot.wide { grid-column: span 2; }
.shot.tall { grid-row: span 2; aspect-ratio: 3/4; }
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.92);
  transition: transform 0.7s ease, filter 0.35s ease;
}
.shot:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid var(--khaki);
  transition: border-width 0.15s ease;
  pointer-events: none;
}
.shot:hover::after { border-width: 2px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) {
  .gallery { grid-template-columns: 1fr; }
  .shot.wide { grid-column: span 1; }
  .shot, .shot.tall { aspect-ratio: 4/3; grid-row: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,8,7,0.96);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-btn {
  position: absolute;
  background: rgba(243,239,229,0.08);
  border: 1px solid var(--gray-3);
  color: var(--bone);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lb-btn:hover { background: var(--khaki); color: var(--black); border-color: var(--khaki); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lb-close { top: 2rem; right: 2rem; }
.lb-count {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gray-5);
}
@media (max-width: 700px) {
  .lb-prev { left: 0.6rem; }
  .lb-next { right: 0.6rem; }
  .lb-btn { width: 44px; height: 44px; }
}

/* ===== Cookie info banner ===== */
.rh-cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  background: rgba(20, 20, 15, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  color: var(--bone);
  font-size: 0.9rem;
  line-height: 1.5;
  animation: rh-cookie-in 0.35s ease-out;
}
.rh-cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.rh-cookie-banner__text {
  margin: 0;
  flex: 1;
  color: var(--gray-5);
}
.rh-cookie-banner__text a { color: var(--khaki); }
.rh-cookie-banner__text a:hover { color: var(--bone); }
.rh-cookie-banner__btn {
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  background: var(--khaki);
  color: var(--black);
  border: 1px solid var(--khaki);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.rh-cookie-banner__btn:hover {
  background: var(--bone);
  border-color: var(--bone);
}
.rh-cookie-banner--hide {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s, transform 0.25s;
}
@keyframes rh-cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .rh-cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .rh-cookie-banner__btn { width: 100%; }
}

/* ===== GDPR souhlas u formuláře ===== */
.form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gray-2);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--gray-5);
  line-height: 1.5;
}
.form-gdpr input[type="checkbox"] {
  margin-top: 0.18rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--khaki);
  cursor: pointer;
}
.form-gdpr label { cursor: pointer; flex: 1; }
.form-gdpr a { color: var(--khaki); }
.form-gdpr a:hover { color: var(--bone); }
