/* PP Studio — Shared Styles */
/* Generated from index.html */


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
:root {
  --navy: #002663;
  --navy-dark: #001a47;
  --navy-light: #1a3d7a;
  --gray-text: #707173;
  --light-bg: #f2f5f8;
  --white: #ffffff;
  --max-width: 1200px;
  --font: 'Montserrat', sans-serif;
  --radius: 8px;
}
body { font-family: var(--font); color: #1a1a1a; background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
em { font-style: normal; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); }

/* HEADER */
.header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1000;
  height: 240px;
  padding: 24px 0 0;
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-start;
  background: transparent; pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), background 0.35s ease;
}
.header > * { pointer-events: auto; }
.header.hidden { transform: translateY(-110%); transition: transform 0.25s ease-in; }
.header-left {
  position: relative; display: inline-flex; align-items: center;
  min-height: 80px;
}
.header-logo { display: inline-flex; align-items: center; justify-content: flex-start; margin-bottom: 0;
  opacity: 1; transition: opacity 0.2s ease-out;
  padding: 0 0 0 32px;
}
.header-logo img { height: 220px; width: auto; transition: filter 0.35s; filter: none; display: block; }
.hdr-cta--swap {
  position: fixed; top: 60px; left: 32px; transform: translateY(-50%);
  z-index: 1001;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease-out;
  white-space: nowrap;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.header.scrolled .header-logo { opacity: 0; pointer-events: none; }
.header.scrolled .hdr-cta--swap { opacity: 1; pointer-events: auto; }

/* HEADER CENTER — Stronger Together logo (always visible) */
.header-center {
  position: fixed; left: 50%; top: 60px; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
  z-index: 1001;
}
.header-stronger {
  display: block; height: 120px; width: auto;
  opacity: 1; transition: opacity 0.2s ease-out;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}
.header.scrolled .header-stronger { opacity: 0; pointer-events: none; }

/* HEADER ACTIONS — CTA on left, lang+menu on right */
.header-actions {
  position: fixed; top: 60px; right: 32px; z-index: 1001;
  transform: translateY(-50%);
  display: flex; align-items: center; gap: 22px;
}
.header-cta-left {
  position: fixed; top: 24px; left: 32px; z-index: 1001;
}
.hdr-cta {
  display: inline-flex; align-items: center; height: 44px; padding: 0 22px;
  border: 1.5px solid #fff; color: #fff;
  border-radius: 999px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(5,13,28,0.35); backdrop-filter: blur(6px);
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.hdr-cta:hover { background: #fff; color: #002663; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  transition: opacity 0.25s ease;
}
.header-actions.scrolled .lang-switch { opacity: 0; pointer-events: none; }
.lang-opt {
  background: none; border: none; cursor: pointer; padding: 4px 2px;
  color: rgba(255,255,255,0.7); font: inherit; letter-spacing: inherit;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
  transition: color 0.2s, text-shadow 0.2s;
}
.lang-opt:hover { color: #fff; }
.lang-opt.active { color: var(--gold, #c9a14a); }
.lang-sep { color: rgba(255,255,255,0.4); font-weight: 400; text-shadow: 0 1px 4px rgba(0,0,0,0.45); transition: color 0.2s, text-shadow 0.2s; }
.lang-switch.dark .lang-opt { color: rgba(13,43,82,0.6); text-shadow: none; }
.lang-switch.dark .lang-opt:hover { color: var(--navy); }
.lang-switch.dark .lang-opt.active { color: var(--gold, #c9a14a); }
.lang-switch.dark .lang-sep { color: rgba(13,43,82,0.35); text-shadow: none; }

/* HAMBURGER */
.hamburger {
  position: relative; top: auto; right: auto;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
  padding: 0;
}
.hamburger span {
  display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s, background 0.3s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hamburger.dark span { background: var(--navy) !important; box-shadow: none !important; }
.hamburger span:nth-child(1) { margin-bottom: 6px; }
.hamburger span:nth-child(2) { margin-bottom: 6px; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* DROPDOWN MENU */
.dropdown-menu {
  position: fixed; top: 0; right: 0; z-index: 1000;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 480px; max-width: 92vw;
  height: 100vh; height: 100dvh;
  background: #0D2B52;
  padding: 110px 56px 56px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
  transform: translateY(-100%); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.dropdown-menu.open { transform: translateY(0); opacity: 1; }
.dropdown-menu a {
  font-size: 1.4rem; font-weight: 300; letter-spacing: -0.01em; text-transform: none;
  color: rgba(255,255,255,0.85); padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s, padding-left 0.3s;
}
.dropdown-menu a:hover { color: #fff; padding-left: 8px; }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-backdrop {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(4,12,24,0.5); opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.dropdown-backdrop.open { opacity: 1; pointer-events: all; }

/* Hide old nav elements */
.header-nav { display: none; }



/* HERO */
.hero {
  position: relative; width: 100%;
  isolation: isolate;
  min-height: min(620px, 100svh);
  height: min(calc(100vw * 9/16), 100svh);
  max-height: 100svh;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 60px 110px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0D2B52 0%, #091e3a 40%, #0a2444 100%);
}
.hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
/* Navy stripe — wider, reaches up to Stronger Together logo at top */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: rgba(24, 58, 108, 0.6);
  clip-path: polygon(26% 0, 46% 0, 19.1% 100%, 9.1% 100%);
  transition: opacity 0.35s ease;
}
/* White wedge — larger angle, slightly narrower */
.hero::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 26%; z-index: 4; pointer-events: none;
  background: rgba(255, 255, 255, 0.96);
  clip-path: polygon(0 0, 100% 0, 35% 100%, 0 100%);
  transition: opacity 0.35s ease;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,18,40,0.7) 0%, rgba(5,18,40,0.55) 35%, rgba(5,18,40,0.7) 60%, rgba(5,18,40,0.92) 90%, rgba(5,18,40,1) 100%),
    linear-gradient(90deg, rgba(5,18,40,0.85) 0%, rgba(5,18,40,0.45) 55%, rgba(5,18,40,0.1) 100%);
}
.hero-content { position: relative; z-index: 5; max-width: 1100px; text-align: center; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; margin-bottom: 22px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 4.4vw, 4.6rem); font-weight: 700; line-height: 1.06;
  color: #fff; margin-bottom: 26px; text-wrap: balance; letter-spacing: -0.015em;
}
.hero-content h1 em { font-style: normal; font-weight: 700; color: #fff; }
.hero-content p { font-size: clamp(0.95rem, 0.9vw + 0.4rem, 1.15rem); font-weight: 400; color: #fff; max-width: 70ch; line-height: 1.55; margin: 0 auto; text-wrap: balance; text-shadow: rgba(0,0,0,0.7); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3;
  background: none; border: none; cursor: pointer;
  animation: bounce 2.5s infinite ease-in-out;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  width: 48px; height: 64px;
}
.hero-scroll::before, .hero-scroll::after {
  content: ''; display: block; width: 20px; height: 20px;
  border-right: 2.5px solid rgba(255,255,255,0.7); border-bottom: 2.5px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
}
.hero-scroll::after { opacity: 0.35; margin-top: -8px; }
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* ABOUT BOXES — STYLE B (hairline + lead) */
.about-b .tvorime-text,
.about-b .vime-content {
  justify-content: center;
  padding: 100px 60px 100px 8%;
  gap: 28px;
}
.about-b .vime-content { padding: 100px 8% 100px 60px; }
.about-b .tvorime-text > .section-eyebrow,
.about-b .vime-content > .section-eyebrow { display: none;  line-height: 1.2;}
.about-b .tvorime-text::before,
.about-b .vime-content::before {
  content: ''; display: block; width: 48px; height: 1.5px; background: var(--gold);
  margin-bottom: 8px; align-self: flex-start;
}
.about-b .tvorime-text h2,
.about-b .vime-content h2 {
  font-size: clamp(2.6rem, 4vw, 4.2rem); font-weight: 700; line-height: 1.02;
  letter-spacing: -0.025em; margin: 0; max-width: 14ch; text-wrap: balance;
}
.about-b .tvorime-text p,
.about-b .vime-content p {
  font-size: 1.05rem; font-weight: 500; line-height: 1.55;
  color: var(--navy); max-width: 38ch; margin: 0; text-wrap: pretty;
}
.about-b .tvorime-text .link-more,
.about-b .vime-content .link-more { margin-top: 12px; }

/* TVOŘÍME */
.section-tvorime { background: #fff; color: var(--navy); display: grid; grid-template-columns: 1.4fr 1fr; min-height: 460px; margin: 60px 0 40px; padding-bottom: 0; align-items: stretch; }
.tvorime-text { padding: 90px 60px 90px 8%; display: flex; flex-direction: column; justify-content: flex-end; gap: 22px; }
.section-eyebrow { font-size: clamp(1.4rem, 1.85vw, 2rem); font-weight: 600; letter-spacing: -0.005em; text-transform: none; color: var(--gold); margin-bottom: 20px;  line-height: 1.2;}
.tvorime-text h2 { font-size: clamp(2.6rem, 3.4vw, 3.8rem); font-weight: 700; line-height: 1.06; margin: 0; color: var(--navy); letter-spacing: -0.02em; max-width: 16ch; text-wrap: balance; }
.tvorime-text h2 em { font-style: normal; font-weight: 700; }
.tvorime-text p { font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--text-dim); max-width: 42ch; margin: 0; text-wrap: pretty; }
.tvorime-image { display: block; padding: 0 7.5% 0 0; min-height: 460px; height: 100%; position: relative; overflow: hidden; }
.tvorime-image img { width: 100%; height: 100%; max-width: none; max-height: none; min-height: 460px; object-fit: cover; border-radius: 0; position: absolute; top: 0; bottom: 0; left: 0; right: 7.5%; }

/* VÍME */
.section-vime { display: grid; grid-template-columns: 1fr 1.4fr; min-height: 460px; background: #fff; margin: 40px 0 60px; align-items: stretch; }
.vime-image { display: block; padding: 0; min-height: 460px; height: 100%; position: relative; overflow: hidden; }
.vime-image img { width: 100%; height: 100%; max-width: none; max-height: none; min-height: 460px; object-fit: cover; border-radius: 0; position: absolute; inset: 0; }
.vime-content { background: #fff; padding: 90px 8% 90px 60px; display: flex; flex-direction: column; justify-content: flex-end; gap: 22px; }
.vime-content h2 { font-size: clamp(2.6rem, 3.4vw, 3.8rem); font-weight: 700; line-height: 1.06; color: var(--navy); margin: 0; letter-spacing: -0.02em; max-width: 16ch; text-wrap: balance; }
.vime-content h2 em { font-style: normal; font-weight: 700; }
.vime-content p { font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--text-dim); margin: 0; max-width: 42ch; text-wrap: pretty; }
.btn-outline {
  display: inline-block; padding: 14px 32px; border: 1.5px solid var(--navy); color: var(--navy);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: all 0.3s; align-self: flex-start;
  border-radius: 999px;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* SPOLUPRÁCE */
.section-spoluprace { padding: 100px 8% 110px; text-align: center; background: #eff2f6; }
.section-spoluprace .section-eyebrow { display: block; margin-bottom: 18px; font-size: clamp(1.4rem, 1.85vw, 2rem); font-weight: 600; letter-spacing: -0.005em; text-transform: none; color: var(--gold); line-height: 1.2; }
.section-spoluprace h2 { font-size: clamp(2.4rem, 3vw, 3.6rem); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1.08; margin: 0 auto; max-width: 22ch; text-wrap: balance; }
.section-spoluprace h2 em { font-style: normal; font-weight: 700; color: inherit; }
.spoluprace-grid { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 56px 24px; max-width: 1280px; margin: 0 auto; padding-top: 80px; margin-top: 40px; text-align: left; }
/* Horizontal timeline rail */
.spoluprace-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 8%, rgba(255,255,255,0.55) 92%, rgba(255,255,255,0) 100%);
  z-index: 0;
}
.spoluprace-item { position: relative; background: transparent; border: none; padding: 0; transition: transform 0.3s; }
.spoluprace-item .spol-inner { position: relative; z-index: 1; padding: 0; min-height: 0; display: flex; flex-direction: column; gap: 10px; cursor: default; background: transparent; text-align: left; }
/* Dot on the rail */
.spoluprace-item::before {
  content: '';
  position: absolute;
  top: -56px; left: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px #eff2f6, 0 0 0 7px rgba(255,255,255,0.45);
  transform: scale(1);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
}
.spoluprace-item:hover { transform: translateY(-4px); }
.spoluprace-item:hover::before { transform: scale(1.25); box-shadow: 0 0 0 6px #eff2f6, 0 0 0 8px var(--gold); }
.spoluprace-item:hover .spol-num { color: var(--gold); }
.spoluprace-item:hover .spol-title { color: var(--navy); }
.spol-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; color: var(--gold); line-height: 1; transition: color 0.3s; margin: 0 0 4px; text-transform: uppercase; }
.spol-title { font-size: 0.95rem; font-weight: 500; color: var(--navy); line-height: 1.3; transition: color 0.3s; letter-spacing: -0.005em; text-wrap: balance; margin: 0; }
.spol-desc { font-size: 0.82rem; font-weight: 400; line-height: 1.6; color: var(--text-dim); transition: color 0.3s; margin: 0; text-wrap: pretty; }

/* SLUŽBY */
.section-sluzby { padding: 100px 60px 100px; text-align: center; background: #fff; }
.section-sluzby .section-eyebrow { display: block; margin-bottom: 18px;  line-height: 1.2;}
.section-sluzby h2 { font-size: clamp(2.4rem, 3vw, 3.4rem); font-weight: 700; color: var(--navy); margin-bottom: 56px; letter-spacing: -0.015em; line-height: 1.08; }
.section-sluzby h2 em { font-style: normal; font-weight: 700; color: inherit; }
.sluzby-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 1400px; margin-left: max(7.5%, calc((100% - 1400px) / 2)); margin-right: max(7.5%, calc((100% - 1400px) / 2)); }
.sluzby-item { position: relative; border: 1px solid rgba(13,43,82,0.08); background: #fff; transition: background 0.3s; overflow: hidden; display: block; text-decoration: none; color: inherit; }
.sluzby-item:hover { background: var(--navy); }
.sluzby-item .sluzby-inner { position: relative; z-index: 1; }
.sluzby-item:hover .sluzby-icon { color: #fff; }
.sluzby-icon { transition: color 0.3s; }
.sluzby-item:hover .sluzby-title { color: #fff; }
.sluzby-item:hover .sluzby-desc { color: rgba(255,255,255,0.78); }
.sluzby-inner { padding: 40px 28px; display: flex; flex-direction: column; gap: 12px; min-height: 260px; text-align: left; }
.sluzby-icon { width: 88px; height: 88px; color: var(--gold); margin-bottom: 14px; transition: color 0.3s; }
.sluzby-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.sluzby-title { font-size: 0.95rem; font-weight: 500; color: var(--navy); line-height: 1.3; transition: color 0.3s; letter-spacing: -0.005em; text-wrap: balance; margin: 0; }
.sluzby-desc { font-size: 0.88rem; font-weight: 400; line-height: 1.65; color: var(--text-dim); transition: color 0.3s; text-wrap: pretty; }

/* REFERENCE */
.link-more { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid rgba(13,43,82,0.35); padding-bottom: 4px; align-self: flex-start; }
.tvorime-text .link-more, .vime-content .link-more { margin-top: 14px; text-transform: none; letter-spacing: -0.005em; font-size: 0.95rem; font-weight: 600; }
.link-more--spaced { margin-top: 14px; }
.link-more:hover { opacity: 0.72; }
.section-reference { padding: 90px 0 60px; background: #fff; text-align: center; }
.reference-heading { font-size: clamp(2.4rem, 3vw, 3.4rem); font-weight: 700; color: var(--navy); margin-bottom: 64px; padding: 0 60px; letter-spacing: -0.015em; line-height: 1.08; }
.reference-heading em { font-style: normal; font-weight: 700; color: inherit; }
.reference-intro { max-width: 720px; margin: 0 auto 56px; padding: 0 60px; font-size: 1.05rem; line-height: 1.65; color: var(--text-dim, #555); font-weight: 400; text-wrap: pretty; }
.reference-heading-eyebrow { display: block; font-size: clamp(1.4rem, 1.85vw, 2rem); font-weight: 600; letter-spacing: -0.005em; text-transform: none; color: var(--gold); margin-bottom: 18px; padding: 0 60px;  line-height: 1.2;}
.reference-footer { padding: 56px 60px 8px; margin-top: 0; text-align: center; }
.reference-footer .link-more { display: inline-block; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; padding: 14px 28px; border: 1.5px solid var(--gold); color: var(--gold); border-radius: 999px; transition: background 0.2s, color 0.2s; }
.reference-footer .link-more:hover { background: var(--gold); color: #fff; opacity: 1; }

/* Project pairs (2 vedle sebe full-width, text-on-hover overlay) */
.projects-zigzag { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; padding: 0; margin: 0; background: #fff; }
.project-row { display: block; min-height: 0; gap: 0; padding: 0; margin: 0; position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 16/10; background: #fff; }
.project-row.reverse .project-media, .project-row.reverse .project-info { order: initial; }
.project-media { display: block; padding: 0; overflow: hidden; width: 100%; height: 100%; }
.project-media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); display: block; }
.project-row:hover .project-media img { transform: scale(1.06); }

/* Always-visible badge with title + place — clean over photo */
.project-row::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 50%; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 100%); z-index: 1; pointer-events: none; transition: opacity 0.4s; }
.project-row:hover::before { opacity: 0; }
.project-badge { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px 40px; color: #fff; z-index: 2; pointer-events: none; transition: opacity 0.4s; }
.project-badge h3 { color: #fff; font-size: clamp(1.4rem, 1.9vw, 2rem); font-weight: 500; line-height: 1.15; letter-spacing: -0.005em; margin: 0 0 8px; text-shadow: 0 2px 14px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.5); }
.project-badge .project-place { color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5); }
.project-row:hover .project-badge { opacity: 0; }

/* AWARD SEAL — circular badge on photo */
.project-award {
  position: absolute; top: 26px; right: 26px; z-index: 3;
  width: clamp(70px, 7vw, 120px); height: clamp(70px, 7vw, 120px);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 16px 14px 13px;
  background: rgba(231,228,220,0.92);
  border-radius: 50%;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
/* Fixed size in page-intro context */
.page-intro .project-award {
  width: 120px !important; height: 120px !important; aspect-ratio: unset;
}
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 16px 14px 13px;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(9,30,58,0.28), 0 0 0 1px rgba(255,255,255,0.6) inset;
  pointer-events: none;
}
.project-award::before {
  content: ''; position: absolute; inset: 6px; border-radius: 50%;
  border: 1.5px solid var(--gold); opacity: 0.55;
}
.project-award img {
  width: 74%; height: auto; object-fit: contain; display: block;
  margin-bottom: 1px; border: 0 !important; box-shadow: none !important;
}
.project-award__text {
  font-family: var(--font-serif); color: var(--navy);
  font-size: clamp(0.45rem, 0.55vw, 0.7rem); font-weight: 700;
  letter-spacing: 0.14em; line-height: 1; text-align: center; white-space: nowrap;
  text-transform: uppercase;
}
.project-award__year {
  font-family: var(--font-serif); color: var(--gold);
  font-size: clamp(0.55rem, 0.65vw, 0.85rem); font-weight: 700;
  letter-spacing: 0.04em; line-height: 1; text-align: center; white-space: nowrap;
}

/* Hover-only full info overlay */
.project-info { position: absolute; inset: 0; padding: 36px 44px !important; text-align: left !important; align-items: flex-start !important; justify-content: flex-end !important; background: linear-gradient(180deg, rgba(5,13,28,0.35) 0%, rgba(5,13,28,0.85) 70%, rgba(5,13,28,0.96) 100%); opacity: 0; transition: opacity 0.5s; color: #fff; gap: 8px; display: flex; flex-direction: column; z-index: 3; }
.project-row:hover .project-info { opacity: 1; }
.project-info > * { transform: translateY(20px); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.project-row:hover .project-info > * { transform: translateY(0); }
.project-info h3 { color: #fff !important; font-size: clamp(1.5rem, 2vw, 2rem) !important; margin: 0 0 6px !important; font-weight: 400 !important; transition-delay: 0.05s; line-height: 1.15; }
.project-info .project-place { color: var(--gold) !important; margin-bottom: 14px !important; font-size: 0.7rem !important; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; transition-delay: 0.1s; }
.project-info p { display: block !important; color: rgba(255,255,255,0.9) !important; font-size: 0.92rem !important; line-height: 1.6 !important; max-width: 540px !important; margin: 0 0 18px !important; transition-delay: 0.15s; text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
.project-info .link-more { color: var(--gold) !important; border-bottom-color: var(--gold) !important; align-self: flex-start !important; transition-delay: 0.2s; text-transform: none !important; letter-spacing: -0.005em !important; font-size: 0.95rem !important; font-weight: 600 !important; }

/* Old zigzag rules removed — superseded by 2-col edge-to-edge grid above */

/* PROČ S NÁMI */
.section-proc { padding: 90px 60px 100px; text-align: center; background: #eff2f6; }
.section-proc .section-eyebrow { display: block; margin-bottom: 18px;  line-height: 1.2;}
.section-proc h2 { font-size: clamp(2.4rem, 3vw, 3.4rem); font-weight: 700; color: var(--navy); margin-bottom: 56px; letter-spacing: -0.015em; line-height: 1.08; }
.section-proc h2 em { font-style: normal; font-weight: 700; color: inherit; }
.proc-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1200px; margin: 0 auto 40px; }
.proc-value { background: transparent; border: none; padding: 0 32px; display: flex; flex-direction: column; gap: 14px; min-height: 0; transition: none; text-align: left; cursor: default; position: relative; }
.proc-value + .proc-value::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.35) 20%, rgba(255,255,255,0.35) 80%, transparent 100%); }
.proc-value:hover { background: transparent; }
.proc-num { display: none; }
.proc-value h3 { font-size: clamp(1.6rem, 1.9vw, 2rem); font-weight: 400; color: var(--navy); line-height: 1.15; margin: 0; letter-spacing: -0.015em; }
.proc-value p { font-size: 0.95rem; font-weight: 400; color: var(--text-dim); line-height: 1.65; margin: 0; text-wrap: pretty; }
.proc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto 28px; padding-bottom: 0; }
.proc-divider { display: flex; align-items: center; justify-content: center; max-width: 1000px; margin: 0 auto 56px; padding: 0 20px; }
.proc-divider::before, .proc-divider::after { content: ''; flex: 1; height: 1px; background: var(--gold); }
.proc-divider-logo { height: 160px; width: auto; max-width: calc(100% - 56px); padding: 0 28px; display: block; align-self: center; flex-shrink: 0; object-fit: contain; }
.proc-stat h3 { font-size: clamp(2rem, 3vw, 3.4rem); font-weight: 200; color: var(--navy); margin-bottom: 10px; line-height: 1; letter-spacing: -0.025em; white-space: nowrap; }
.proc-stat p { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }

/* FOOTER */
.footer { background: #fff; padding: 80px 0 0; margin-top: 0; }
.footer-heading-eyebrow { display: block; font-size: clamp(1.4rem, 1.85vw, 2rem); font-weight: 600; letter-spacing: -0.005em; text-transform: none; color: var(--gold); margin-bottom: 18px; padding: 0 60px; text-align: center;  line-height: 1.2;}
.footer-heading { font-size: clamp(2.4rem, 3vw, 3.4rem); font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 56px; padding: 0 60px; letter-spacing: -0.015em; line-height: 1.08; }
.footer-heading em { font-style: normal; font-weight: 700; }
#contact-tiles { margin: 0 7.5%; width: auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; }
#contact-tiles .tile { padding: 50px; }
#contact-tiles .tile-left { order: 2; }
#contact-tiles .tile-right { order: 1; }
#contact-tiles .tile-left { background: #fff; border: 1.5px solid rgba(13,43,82,0.15); border-radius: 16px; display: flex; flex-direction: column; justify-content: center; }
#contact-tiles .tile-right { background: var(--navy); color: #fff; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; gap: 24px; text-align: center; border-radius: 16px; padding-top: 50px; }
.contact-modal { max-width: 560px; margin: 0; }
.contact-modal h3.contact-form-heading { font-size: 1.7rem; font-weight: 300; color: var(--navy); margin-bottom: 56px; line-height: 1.2; letter-spacing: -0.01em; }
.contact-modal h3 { font-size: 2.2rem; font-weight: 400; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.contact-modal > p { font-size: 0.92rem; color: var(--text-dim); margin-bottom: 26px; line-height: 1.6; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.contact-form .field-full { grid-column: 1 / -1; }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); letter-spacing: -0.005em; text-transform: none; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 11px 12px; border-radius: 0; border: none; border-bottom: 1.5px solid rgba(13,43,82,0.35); background: transparent;
  font-family: var(--font); font-size: 0.88rem; outline: none; transition: border-color 0.2s;
}
.contact-form input { height: 44px; }
.contact-form select { height: 44px; appearance: none; -webkit-appearance: none; -moz-appearance: none; border: 1.5px solid #777 !important; border-radius: 2px; background-color: transparent; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'><path d='M1 1L7 7L13 1' stroke='%23C9A14A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding: 0 36px 0 14px; cursor: pointer; color: var(--navy); text-decoration: none; }
.contact-form select:focus { border-color: #777 !important; outline: 2px solid rgba(255,255,255,0.25); outline-offset: 1px; }
.contact-form select::-ms-expand { display: none; }
.contact-form select option { color: var(--navy); background: #fff; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-bottom-color: var(--navy); }
.contact-form textarea { min-height: 80px; resize: vertical; }
.contact-form-row { display: flex; flex-direction: column; align-items: stretch; gap: 18px; margin-top: 22px; }
.contact-consent { display: grid; grid-template-columns: 16px 1fr; align-items: center; column-gap: 10px; font-size: 0.76rem; color: #666; width: 100%; }
.contact-consent input[type="checkbox"] { margin: 0; width: 16px; height: 16px; accent-color: var(--navy); }
.contact-consent label { font-weight: 400; margin: 0; letter-spacing: 0; text-transform: none; font-size: 0.76rem; color: #777; line-height: 1.4; }
.contact-submit {
  background: none; border: none; padding: 0 0 4px; cursor: pointer;
  font-family: var(--font); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy); border-bottom: 1px solid rgba(13,43,82,0.35); align-self: flex-start;
  transition: opacity 0.2s;
}
.contact-submit:hover { opacity: 0.72; background: none; transform: none; }

/* Right tile — dark info panel */
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 150px; width: auto; filter: brightness(0) invert(1); }
.footer-info { display: flex; flex-direction: column; gap: 22px; max-width: 400px; align-items: center; text-align: center; }
.footer-company h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.005em; text-transform: none; color: #fff; margin-bottom: 12px; }
.footer-company p { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.7); line-height: 1.7; }
.footer-ids { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.7); letter-spacing: 0; margin: 0; text-transform: none; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: -0.005em; line-height: 1.4; }
.footer-contact a { font-size: 0.95rem; font-weight: 400; color: rgba(255,255,255,0.8); display: block; transition: color 0.2s; line-height: 1.6; }
.footer-contact a:hover { color: #fff; }
.footer-contact a:last-child { margin-bottom: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.08); transition: background 0.25s; }
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.footer-social .soc-svg { display: block; color: #fff; transition: color 0.25s; }
.footer-social .soc-svg.li { width: 22px; height: 22px; }
.footer-social .soc-svg.ig { width: 24px; height: 24px; }
.footer-social a:hover .soc-svg { color: #00b0de; }

.footer-cta { display: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 7.5%; background: #fff;
  margin: 60px 7.5% 0;
  font-size: 0.78rem; color: #888;
}
.footer-bottom a { color: #888; transition: color 0.25s; }
.footer-bottom a:hover { color: var(--navy); }
.footer-links-inline { display: flex; gap: 18px; flex-wrap: wrap; }

/* CONTACT OVERLAY */
.contact-overlay { position: fixed; inset: 0; background: rgba(4,12,24,0.72); display: none; align-items: center; justify-content: center; z-index: 4000; padding: 24px; }
.contact-overlay.visible { display: flex; }
.contact-overlay .contact-modal { background: #fff; border-radius: 10px; padding: 30px 34px; max-width: 520px; width: 100%; box-shadow: 0 32px 80px rgba(0,0,0,0.35); position: relative; }
.contact-close { position: absolute; top: 12px; right: 14px; border: none; background: none; cursor: pointer; font-size: 1.1rem; color: #999; }
.contact-close:hover { color: #555; }

/* SCROLL-TO-TOP */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(13,43,82,0.25);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.25s;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--navy-dark); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section-tvorime { grid-template-columns: 1fr; }
  .section-vime { grid-template-columns: 1fr; }
  .spoluprace-grid { grid-template-columns: repeat(3, 1fr); gap: 56px 24px; padding-top: 56px; }
  .spoluprace-grid::before { display: none; }
  .spoluprace-item::before { top: -32px; }
  .proc-values { grid-template-columns: repeat(2, 1fr); }
  .header { padding: 20px 0 0; }
  .hero::after { width: 30%; }
  .hero::before { clip-path: polygon(30% 0, 50% 0, 19.1% 100%, 9.1% 100%); }
  .hero { padding: 0 30px 80px; }
  .section-proc, .footer { padding-left: 36px; padding-right: 36px; }
  .project-card--hero { grid-column: span 12; min-height: 420px; }
  .project-card--portrait, .project-card--landscape { grid-column: span 6; }
  .footer-cta { margin-left: -36px; margin-right: -36px; padding-left: 36px; padding-right: 36px; }
  #contact-tiles { margin-left: -36px; margin-right: -36px; width: calc(100% + 72px); }
}

/* Střední viewporty (769px–1200px): skrýt klíny, bílé logo */
@media (max-width: 1400px) and (min-width: 769px) {
  .hero::before { opacity: 0; pointer-events: none; }
  .hero::after { opacity: 0; pointer-events: none; }
  .header { background: linear-gradient(180deg, rgba(0,26,71,0.5) 0%, transparent 100%); }
}

@media (max-width: 768px) {
  .hero-scroll { display: none !important; }
  /* Header jako jediný horizontální pruh */
  .header { position: fixed; height: 64px; padding: 0 130px 0 16px; flex-direction: row; align-items: center; background: rgba(0,26,71,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .header-logo { padding: 0; }
  .header-center { position: static !important; transform: none !important; left: auto !important; top: auto !important; flex: 1; display: flex; justify-content: center; align-items: center; transition: opacity 0.3s; }
  .header.scrolled { background: transparent !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .header.scrolled .header-center { opacity: 0; pointer-events: none; }
  .header.scrolled .header-logo { opacity: 0; pointer-events: none; }
  .header-nav { display: none; }
  .header-actions { gap: 12px; right: 16px; top: 32px; }
  .header-cta-left { left: 16px; top: 14px; }
  .hdr-cta { display: none; }
  .lang-switch { font-size: 0.72rem; }
  .mobile-menu-btn { display: flex !important; }
  .nav-drawer { display: flex; }
  .nav-drawer-backdrop { display: block; }
  .hero { min-height: 460px; height: auto; max-height: none; padding: 100px 20px 56px; }
  .hero::before, .hero::after { display: none; }
  .header-logo img { height: 60px !important; max-width: none; filter: brightness(0) invert(1) !important; }
  .header-stronger { height: 52px; }

  /* About boxes */
  .section-tvorime, .section-vime { grid-template-columns: 1fr; min-height: auto; margin: 30px 0; }
  .tvorime-text, .vime-content { padding: 40px 24px; height: auto; justify-content: flex-start; gap: 16px; }
  .tvorime-text h2, .vime-content h2 { font-size: clamp(1.9rem, 7vw, 2.4rem); max-width: none; }
  .tvorime-text p, .vime-content p { max-width: none; font-size: 0.95rem; }
  .tvorime-image, .vime-image { min-height: 260px; height: 260px; padding: 0; }
  .tvorime-image img, .vime-image img { min-height: 260px; right: 0 !important; inset: 0 !important; }
  .section-vime .vime-image { order: -1; } /* image first on mobile for visual rhythm */

  /* Section paddings */
  .section-spoluprace, .section-proc, .footer { padding: 56px 20px; }
  .section-reference { padding: 56px 0 40px; }

  /* Headings inside flat sections */
  .section-spoluprace h2, .section-proc h2, .reference-heading, .footer-heading {
    font-size: clamp(1.9rem, 7vw, 2.4rem); padding: 0 20px; margin-bottom: 32px;
  }
  .section-eyebrow, .reference-heading-eyebrow, .footer-heading-eyebrow { padding: 0 20px;  line-height: 1.2;}

  /* Spoluprace + Sluzby + Proč grids */
  .spoluprace-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 20px; margin: 0 20px 24px; padding-top: 24px; }
  .spoluprace-item::before { display: none; }
  .proc-divider { margin-bottom: 8px !important; }
  .proc-values { margin-top: 0 !important; }
  .proc-divider-logo { height: 80px !important; width: auto !important; max-width: 100% !important; padding: 0 16px; object-fit: contain; align-self: center; flex-shrink: 0; }
  .sluzby-grid, .proc-values, .proc-stats { grid-template-columns: 1fr !important; margin: 0 20px 24px; }
  .sluzby-icon { width: 72px !important; height: 72px !important; }
  .section-sluzby { padding: 56px 20px; }
  .section-sluzby h2 { font-size: clamp(1.9rem, 7vw, 2.4rem); margin-bottom: 32px; }
  .sluzby-inner { min-height: auto; padding: 32px 24px; }
  .proc-stats { padding-top: 36px; gap: 28px; }
  .proc-value { min-height: auto; padding: 28px 24px; }

  /* Reference / projects */
  .projects-grid { grid-template-columns: 1fr; }
  .projects-zigzag { grid-template-columns: 1fr; gap: 0; }
  .project-award { width: clamp(60px, 8vw, 90px); top: 16px; right: 16px; }
  .project-row, .project-row.reverse {
    grid-template-columns: 1fr; min-height: auto; gap: 0; padding: 0;
  }
  .project-row.reverse .project-media { order: 0; }
  .project-row.reverse .project-info { order: 1; }
  .project-row .project-info, .project-row.reverse .project-info {
    padding: 24px 0 8px; text-align: left; align-items: flex-start;
  }
  .project-info h3 { font-size: 1.5rem; }
  .project-info p { max-width: none; font-size: 0.92rem; margin-bottom: 18px; }
  .project-media img { aspect-ratio: 4/3; }
  .project-card, .project-card--hero, .project-card--portrait, .project-card--landscape { grid-column: auto; min-height: 260px; }
  .project-card--hero { min-height: 340px; }
  .section-reference .section-head { flex-direction: column; align-items: flex-start; }
  .reference-footer { padding: 40px 20px 20px; }

  /* Footer */
  .footer { padding: 56px 0 0; }
  .footer-cta { flex-direction: column; gap: 18px; margin: 32px -20px; padding: 28px 20px; }
  #contact-tiles { grid-template-columns: 1fr; width: auto; margin: 0 20px; gap: 20px; }
  #contact-tiles .tile { padding: 30px 22px; }
  .footer-logo img { height: 120px; }
  .footer-contact h4 { font-size: 1rem; }
  .footer-info { gap: 20px; max-width: none; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column; gap: 14px; text-align: center;
    margin: 40px 20px 0; padding: 20px 0;
  }
  .footer-links-inline { justify-content: center; gap: 14px; font-size: 0.78rem; }

  /* Hero text scale */
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem) !important; }
  .hero p, .hero .hero-sub { font-size: 0.95rem !important; }

  /* Scroll-to-top */
  .scroll-top { right: 16px; bottom: 16px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .section-spoluprace, .section-proc, .footer { padding: 44px 16px; }
  .section-reference { padding: 44px 0; }
  .tvorime-text, .vime-content { padding: 32px 18px; }
  .project-row, .project-row.reverse { padding: 0; }
  .footer-heading, .reference-heading, .section-spoluprace h2, .section-proc h2 { font-size: 1.7rem; }
  .tvorime-text h2, .vime-content h2 { font-size: 1.7rem; }
  #contact-tiles { margin: 0 16px; }
  .header-stronger { height: 42px; }
  .proc-divider-logo { height: 80px !important; width: auto !important; max-width: 100% !important; padding: 0 16px; object-fit: contain; align-self: center; flex-shrink: 0; }
}

@media (min-width: 1440px) {
  .sluzby-icon { width: 100px !important; height: 100px !important; }
  .sluzby-inner { padding: 52px 40px; min-height: 320px; gap: 16px; }
  .sluzby-desc { font-size: 0.96rem; }
  .sluzby-title { font-size: 0.78rem; }
}

/* Dotykové displeje — vypnout hover overlay na projektech */
@media (hover: none) {
  .project-info { display: none; }
  .project-row::before { opacity: 1 !important; }
  .project-row:hover .project-badge { opacity: 1 !important; }
}
/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-img {
  opacity: 0; transform: scale(0.92);
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}
.reveal-img.visible { opacity: 1; transform: scale(1); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   DARK INVERSION — gold headings, light body
   ============================================ */
:root {
  --gold: #00b0de;
  --gold-soft: #4ec6e8;
  --gold-deep: #0087a8;
  --bg-0: #050d1c;        /* deepest navy */
  --bg-1: #0a172e;        /* base body navy */
  --bg-2: #0f2040;        /* sections */
  --bg-3: #15294f;        /* cards */
  --bg-4: #1c3361;        /* hover */
  --line: rgba(255,255,255,0.18);
  --line-soft: rgba(255,255,255,0.08);
  --text: #f3f1ec;
  --text-dim: #d6d2c8;
  --text-mute: #a8a49a;
}

body { background: var(--bg-1); color: var(--text); }

/* Headings → gold */
h1, h2, h3, h4 { color: rgba(255,255,255,0.92) !important; }

/* HEADER */
.header.scrolled { background: transparent; }
.header-logo img { filter: none; }

/* HAMBURGER — gold lines on dark; gold also when "dark" class triggers */
.hamburger span { background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.hamburger.dark span { background: var(--navy) !important; box-shadow: none !important; }

/* DROPDOWN MENU */
.dropdown-menu { background: #0D2B52; }
.dropdown-menu a { color: rgba(231,228,220,0.85); border-bottom-color: rgba(255,255,255,0.18); }
.dropdown-menu a:hover { color: var(--gold); }

/* HERO — keep dark, just polish overlay so video reads */
.hero-bg { background: linear-gradient(135deg, #050d1c 0%, #0a172e 50%, #0f2040 100%); }
.hero-bg::after {
  background:
    linear-gradient(180deg, rgba(5,13,28,0.78) 0%, rgba(5,13,28,0.32) 35%, rgba(5,13,28,0.22) 55%, rgba(5,13,28,0.62) 85%, rgba(5,13,28,0.88) 100%);
}
.hero-content h1 { color: #fff !important; }
.hero-content p { color: rgba(231,228,220,0.78); }
.hero-scroll::before, .hero-scroll::after { border-right-color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.7); }

/* TVOŘÍME */
.section-tvorime { background: var(--bg-1); color: var(--text); }
.tvorime-text h2 { color: rgba(255,255,255,0.92); }
.tvorime-text h2 em { color: rgba(255,255,255,0.92); }
.tvorime-text p { color: var(--text-dim); }

/* VÍME */
.section-vime { background: var(--bg-1); }
.vime-content { background: var(--bg-1); }
.vime-content h2 { color: rgba(255,255,255,0.92); }
.vime-content h2 em { color: rgba(255,255,255,0.92); }
.vime-content p { color: var(--text-dim); }

/* Buttons */
.btn-outline { border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--bg-0); }

/* SPOLUPRÁCE */
.section-spoluprace { background: var(--bg-2); }
.section-spoluprace h2 { color: rgba(255,255,255,0.92); }
.section-spoluprace h2 em { color: rgba(255,255,255,0.92); }
.spoluprace-grid::before {
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 8%, rgba(255,255,255,0.5) 92%, rgba(255,255,255,0) 100%);
}
.spoluprace-item { background: transparent; border: none; }
.spoluprace-item:hover { background: transparent; }
.spoluprace-item::before { box-shadow: 0 0 0 6px var(--bg-2), 0 0 0 7px rgba(255,255,255,0.4); }
.spoluprace-item:hover::before { box-shadow: 0 0 0 6px var(--bg-2), 0 0 0 8px var(--gold); }
.spoluprace-item:hover .spol-title { color: var(--gold) !important; }
.spoluprace-item:hover .spol-desc { color: var(--text-dim); }
.spol-num { color: var(--gold) !important; }
.spol-title { color: #fff; }
.spol-desc { color: var(--text-dim); }

/* "Více" link */
.link-more { color: var(--gold); border-bottom-color: rgba(255,255,255,0.45); }
.link-more:hover { opacity: 0.78; }

/* REFERENCE */
.section-reference { background: #fff; }
.reference-heading { color: var(--navy) !important; }
.project-info h3 { color: var(--gold); }
.project-info .project-place { color: var(--text-mute); }
.project-info p { color: var(--text-dim); }

/* SLUŽBY (dark) */
.section-sluzby { background: var(--bg-2); }
.section-sluzby h2 { color: rgba(255,255,255,0.92); }
.section-sluzby h2 em { color: rgba(255,255,255,0.92); }
.sluzby-item { background: var(--bg-3); border-color: var(--line); }
.sluzby-item:hover { background: var(--gold); }
.sluzby-item:hover .sluzby-icon { color: #fff; }
.sluzby-item:hover .sluzby-title { color: #fff; }
.sluzby-item:hover .sluzby-desc { color: rgba(5,13,28,0.78); }
.sluzby-title { color: var(--gold); }

/* PROČ */
.section-proc { background: var(--bg-1); }
.section-proc h2 { color: rgba(255,255,255,0.92); }
.section-proc h2 em { color: rgba(255,255,255,0.92); }
.proc-value { background: transparent; border-color: transparent; }
.proc-value:hover { background: transparent; }
.proc-value h3 { color: #fff !important; }
.proc-value p { color: var(--text-dim); }
.proc-stats { border-bottom: none; }
.proc-stat h3 { color: #fff !important; }
.proc-stat p { color: var(--text-dim); }

/* FOOTER */
.footer { background: #fff; }
.footer-heading { color: var(--navy) !important; }
#contact-tiles .tile-left { background: var(--bg-2); border: 1.5px solid var(--line); }
#contact-tiles .tile-right { background: var(--bg-3); color: var(--text); }
.contact-form-heading { color: var(--gold); }
.contact-modal h3 { color: #fff; }
.contact-modal > p { color: var(--text-dim); }
.contact-form label { color: var(--gold); }
.contact-form input, .contact-form textarea, .contact-form select {
  color: var(--text); border-bottom: 1.5px solid rgba(255,255,255,0.4); background: transparent;
}
.contact-form select { background-color: transparent; border: 1.5px solid var(--text-mute) !important; color: var(--text) !important; padding: 0 36px 0 14px; }
.contact-form select option { background: var(--bg-2); color: var(--text); }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--gold); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-mute); }
.contact-consent { color: var(--text-dim); }
.contact-consent label { color: var(--text-mute); }
.contact-consent input[type="checkbox"] { accent-color: var(--gold); }
.contact-submit { color: var(--gold); border-bottom-color: rgba(255,255,255,0.45); }
.contact-submit:hover { opacity: 0.78; }

.footer-logo img { filter: brightness(0) invert(1); }
.footer-company h3 { color: #fff !important; }
.footer-company p { color: var(--text-dim); }
.footer-ids { color: var(--text-mute); }
.footer-contact h4 { color: #fff !important; }
.footer-contact a { color: var(--text-dim); }
.footer-contact a:hover { color: var(--gold); }
.footer-social a { background: rgba(255,255,255,0.10); }
.footer-social a:hover { background: rgba(255,255,255,0.22); }


.footer-bottom { background: #fff; color: var(--text-mute); }
.footer-bottom a { color: var(--text-mute); }
.footer-bottom a:hover { color: var(--gold); }

/* CONTACT OVERLAY */
.contact-overlay { background: rgba(5,13,28,0.82); }
.contact-overlay .contact-modal { background: var(--bg-2); box-shadow: 0 32px 80px rgba(0,0,0,0.6); }
.contact-close { color: var(--text-mute); }
.contact-close:hover { color: var(--gold); }

/* PHOTO FRAMES — subtle gold-tinted hairline */
.project-media img {
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset, 0 18px 40px rgba(0,0,0,0.45);
}

/* SCROLL TO TOP */
.scroll-top { background: var(--gold); color: var(--bg-0); box-shadow: 0 8px 24px rgba(255,255,255,0.35); }
.scroll-top:hover { background: var(--gold-soft); }

