@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* =============================================
  BOHOSTAV - CSS DESIGN SYSTEM
   Palette: Anthracite / Concrete / Safety Orange
   ============================================= */

:root {
  --black:      #1A1A1A;
  --anthracite: #2C2C2C;
  --concrete:   #F0EDE8;
  --mid-grey:   #6B6B6B;
  --light-grey: #E5E2DC;
  --white:      #FFFFFF;
  --orange:     #D50D17;
  --orange-dk:  #AA0912;
  --orange-lt:  #EF3540;

  --font-display: 'Manrope', Arial, sans-serif;
  --font-body:    'Manrope', Arial, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; color: var(--mid-grey); max-width: 68ch; }

/* ---- LAYOUT ---- */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.nav .container {
  width: min(1360px, calc(100% - 56px));
}

section { padding: 80px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--anthracite); transform: translateY(-2px); }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--black);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius);
}
.nav-links a.nav-cta:hover { background: var(--orange-dk); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--anthracite);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile a.nav-cta {
  margin-top: 16px;
  background: var(--orange);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  border: none;
}

/* ---- HERO ---- */
.hero {
  min-height: 82vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.78), rgba(10,10,10,0.58)),
    linear-gradient(135deg, rgba(232,92,26,0.22), rgba(232,92,26,0.04) 42%, transparent 42%),
    url('../images/montaz-oken-bohostav.jpg') center/cover;
  opacity: 1;
}
.hero-diagonal {
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--orange);
  opacity: 0.06;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 48px 0 40px;
}
.hero-inner h1,
.hero-inner .hero-sub,
.hero-inner .hero-career-banner,
.hero-inner .hero-ctas {
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 55ch;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-career-banner {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 12px 16px;
  margin: 18px 0 26px;
  background: rgba(232, 92, 26, 0.12);
  border: 1px solid rgba(232, 92, 26, 0.35);
  border-radius: var(--radius);
}
.hero-career-banner span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}
.hero-career-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}
.hero-career-banner a::after { content: '→'; }
.hero-career-banner a:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-1px);
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---- SECTION HEADERS ---- */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-title em { font-style: normal; color: var(--orange); }
.section-sub { font-size: 1.05rem; color: var(--mid-grey); margin-bottom: 48px; }

/* ---- SERVICES CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--light-grey);
  border: 2px solid var(--light-grey);
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--concrete);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.service-card h3 { margin-bottom: 12px; color: var(--black); }
.service-card p { font-size: 0.95rem; }

/* ---- WHY US ---- */
.why-section { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-title { color: var(--white); }
.why-text p { color: rgba(255,255,255,0.6); }
.why-points { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 36px;
}
.why-point-text h4 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.why-point-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  max-width: none;
}
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-visual-block {
  background: var(--anthracite);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.why-partner-block {
  grid-column: span 2;
  background: var(--concrete);
  border: 1px solid var(--light-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 180px;
}
.why-partner-logo {
  width: min(360px, 100%);
  height: auto;
  display: block;
}
.why-visual-block:not(.why-partner-block) .why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.why-visual-block:not(.why-partner-block) .why-label {
  color: rgba(255,255,255,0.65);
}
.why-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  margin-top: 4px;
}

/* ---- PROCESS ---- */
.process-section { background: var(--concrete); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--light-grey);
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-step-circle {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 3px solid var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover .process-step-circle {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.process-step h4 {
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--black);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.88rem; margin: 0 auto; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--orange);
  padding: 64px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 50ch; margin-top: 8px; }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 36ch; margin-bottom: 24px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--orange); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-ri {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-ri a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-ri a:hover { color: var(--orange); }

/* ---- PAGE HERO (podstranky) ---- */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(232,92,26,0.12), rgba(232,92,26,0.02) 48%, transparent 48%),
    linear-gradient(180deg, rgba(26,26,26,0.22), rgba(26,26,26,0.22));
  opacity: 1;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 60ch; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ---- CONTACT FORM ---- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--black);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--black);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- CAREER ---- */
.job-card {
  background: var(--white);
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
  transition: all var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.job-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232,92,26,0.1);
}
.job-tag {
  display: inline-block;
  background: var(--concrete);
  color: var(--mid-grey);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.job-tag.orange { background: rgba(232,92,26,0.12); color: var(--orange); }
.job-card h3 { margin-bottom: 8px; font-size: 1.3rem; }
.job-card p { font-size: 0.95rem; }
.job-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--mid-grey);
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.perk-card {
  background: var(--concrete);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.perk-icon { font-size: 2rem; margin-bottom: 12px; }
.perk-card h4 { font-size: 1rem; text-transform: none; letter-spacing: 0; margin-bottom: 8px; }
.perk-card p { font-size: 0.88rem; margin: 0 auto; }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}
.media-placeholder {
  background: linear-gradient(135deg, var(--concrete), #faf8f5);
  border: 2px dashed var(--light-grey);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--mid-grey);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-photo-placeholder {
  width: 100%;
  height: 480px;
}
.service-photo-placeholder {
  width: 100%;
  min-height: 240px;
}
.ref-photo-placeholder {
  width: 100%;
  height: 220px;
}
.hero-photo-placeholder {
  min-height: 280px;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-text { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  border-left: 3px solid var(--orange);
  padding: 24px 24px 24px 28px;
  background: var(--concrete);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value-card h4 { margin-bottom: 8px; font-size: 1rem; text-transform: none; letter-spacing: 0; }
.value-card p { font-size: 0.9rem; max-width: none; }

/* ---- REFERENCE ---- */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.ref-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--concrete);
  transition: transform var(--transition);
}
.ref-card:hover { transform: translateY(-4px); }
.ref-card-img {
  width: 100%;
  height: 220px;
  background: var(--light-grey);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.ref-card-body { padding: 20px 20px; }
.ref-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 6px;
}
.ref-card h4 { font-size: 1.05rem; text-transform: none; letter-spacing: 0; margin-bottom: 6px; }
.ref-card p { font-size: 0.88rem; max-width: none; }
.ref-location { font-size: 0.82rem; color: var(--mid-grey); margin-top: 10px; }

/* ---- MAP PLACEHOLDER ---- */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--concrete);
  border-radius: var(--radius);
  border: 2px dashed var(--light-grey);
  overflow: hidden;
}
.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav .container { width: min(1360px, calc(100% - 32px)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .why-partner-block { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: 16px; right: 16px; }
  .process-steps::before { display: none; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero-stats { gap: 32px; }
  .hero-career-banner { align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; }
  .why-visual { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   BOHOSTAV 2026 — PREMIUM REDESIGN
   Brand: deep navy #043265 / signal red #D50D17
   ========================================================= */
:root {
  --black: #031b35;
  --anthracite: #043265;
  --concrete: #f3f6f9;
  --mid-grey: #607084;
  --light-grey: #dce4ec;
  --white: #ffffff;
  --orange: #D50D17;
  --orange-dk: #aa0912;
  --orange-lt: #ef3540;
  --navy: #043265;
  --navy-deep: #021f3e;
  --red: #D50D17;
  --font-display: 'Manrope', Arial, sans-serif;
  --font-body: 'Manrope', Arial, sans-serif;
  --nav-h: 64px;
  --topbar-h: 78px;
  --radius: 14px;
  --shadow-sm: 0 8px 30px rgba(4, 50, 101, .08);
  --shadow-lg: 0 24px 70px rgba(2, 31, 62, .16);
  --transition: .3s cubic-bezier(.2,.8,.2,1);
}

body { background:#fff; color:var(--navy-deep); overflow-x:hidden; }
body::before { content:''; display:block; height:4px; background:linear-gradient(90deg,var(--navy) 0 72%,var(--red) 72%); position:fixed; inset:0 0 auto; z-index:202; }
::selection { background:var(--red); color:#fff; }
section { padding:112px 0; }
.container { width:min(1180px, calc(100% - 48px)); }
h1,h2,h3,h4 { color:var(--navy-deep); letter-spacing:-.04em; text-transform:none; }
h1 { font-size:clamp(3.5rem,8vw,6.6rem); line-height:1.02; font-weight:700; }
h2 { font-size:clamp(2.5rem,5vw,4.1rem); line-height:1.08; font-weight:700; }
h3 { font-size:clamp(1.5rem,2.4vw,2rem); }
p { color:var(--mid-grey); line-height:1.75; }

.top-contact-bar { position:fixed; z-index:201; top:4px; left:0; right:0; height:var(--topbar-h); color:var(--navy); background:#fff; border-bottom:1px solid #e8edf2; }
.top-contact-inner { width:min(1120px,calc(100% - 48px)); height:100%; display:grid; grid-template-columns:190px minmax(0,1fr); align-items:center; gap:88px; }
.utility-logo { display:flex; align-items:center; flex-shrink:0; }
.utility-logo img { width:190px; height:63px; object-fit:contain; }
.utility-contacts { display:grid; grid-template-columns:repeat(3,max-content); align-items:center; justify-content:start; gap:42px; }
.utility-contact:first-child,.utility-contact:nth-child(2),.utility-contact:last-child { justify-self:start; }
.utility-contact { display:flex; align-items:center; gap:11px; color:var(--navy); transition:var(--transition); }
.utility-contact:hover { color:var(--red); transform:translateY(-1px); }
.utility-contact span:last-child { display:grid; gap:2px; }
.utility-contact small { color:var(--mid-grey); font-size:.67rem; font-weight:600; }
.utility-contact strong { font-size:.82rem; font-weight:800; white-space:nowrap; }
.utility-icon { color:var(--red); display:grid; place-items:center; flex:0 0 42px; width:42px; height:42px; border:1.5px solid rgba(213,13,23,.25); border-radius:50%; }
.utility-icon svg { display:block; width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.nav { top:calc(4px + var(--topbar-h)); height:var(--nav-h); background:#f4f6f9; border-bottom:1px solid rgba(4,50,101,.08); box-shadow:0 8px 28px rgba(4,50,101,.07); backdrop-filter:blur(16px); }
.nav.scrolled { box-shadow:0 10px 35px rgba(4,50,101,.11); }
.nav .container { width:min(1120px,calc(100% - 48px)); }
.nav .nav-logo { display:none; }
.nav-logo,.footer-logo { display:flex; align-items:center; gap:10px; color:var(--navy); letter-spacing:.03em; }
.nav-logo::before,.footer-logo::before { content:'BS'; display:grid; place-items:center; width:43px; height:34px; color:#fff; background:linear-gradient(135deg,var(--navy) 0 55%,var(--red) 55%); font-size:1.15rem; font-weight:800; border-radius:4px 4px 10px 4px; transform:skewX(-7deg); letter-spacing:-.08em; }
.nav-logo span,.footer-logo span { color:var(--red); }
.nav-logo,.footer-logo { font-size:0; gap:0; flex-shrink:0; }
.nav-logo::before,.footer-logo::before {
  content:'';
  width:190px;
  height:66px;
  background:url('../images/logo-bohostav.png') center/contain no-repeat;
  border:0;
  border-radius:0;
  transform:none;
}
.nav-links { gap:32px; width:100%; justify-content:flex-start; padding-left:38px; }
.nav-links a { color:#41566d; font-family:var(--font-body); font-size:.82rem; letter-spacing:.04em; text-transform:none; font-weight:650; }
.nav-links a:hover,.nav-links a.active { color:var(--red); }
.nav-links li:last-child { margin-left:auto; }
.nav-links a.nav-cta { padding:13px 22px; background:var(--red); border-radius:8px; box-shadow:0 10px 25px rgba(213,13,23,.22); color:#fff; }
.nav-burger span { background:var(--navy); }
.nav-burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity:0; }
.nav-burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
body.menu-open { overflow:hidden; }
.ref-card[hidden] { display:none; }
.nav-mobile { top:calc(var(--nav-h) + var(--topbar-h) + 4px); background:#fff; box-shadow:var(--shadow-lg); }
.nav-mobile a { color:var(--navy); border-color:var(--light-grey); }

.btn { min-height:52px; padding:14px 24px; border-radius:8px; font-family:var(--font-body); font-size:.9rem; letter-spacing:.01em; text-transform:none; justify-content:center; }
.btn-primary { background:var(--red); box-shadow:0 14px 30px rgba(213,13,23,.23); }
.btn-primary:hover { background:var(--orange-dk); box-shadow:0 18px 36px rgba(213,13,23,.28); }
.btn-outline { border:1px solid rgba(255,255,255,.55); }
.btn-dark { background:var(--navy); }

.hero { min-height:calc(100vh - 4px); padding-top:calc(var(--nav-h) + var(--topbar-h)); background:var(--navy-deep); }
.hero::before { background-position:center; background-size:cover; background-repeat:no-repeat; transition:opacity .35s ease,background-image .35s ease; }
.hero[data-hero="okna"]::before { background-image:linear-gradient(90deg,rgba(2,25,51,.95) 0%,rgba(3,36,72,.82) 43%,rgba(2,25,51,.12) 69%,transparent 82%),url('../images/montaz-oken-bohostav.jpg'); }
.hero[data-hero="dvere"]::before { background-image:linear-gradient(90deg,rgba(2,25,51,.95) 0%,rgba(3,36,72,.82) 43%,rgba(2,25,51,.12) 69%,transparent 82%),url('../images/montaz-dvere-bohostav.jpg'); }
.hero[data-hero="demontaz"]::before { background-image:linear-gradient(90deg,rgba(2,25,51,.95) 0%,rgba(3,36,72,.82) 43%,rgba(2,25,51,.12) 69%,transparent 82%),url('../images/demontaz-bohostav.jpg'); }
.hero[data-hero="zednicke-prace"]::before { background-image:linear-gradient(90deg,rgba(2,25,51,.95) 0%,rgba(3,36,72,.82) 43%,rgba(2,25,51,.12) 69%,transparent 82%),url('../images/zednicke-prace-bohostav.jpg'); }
.hero::after { content:''; position:absolute; inset:auto 0 0; height:130px; background:linear-gradient(transparent,rgba(2,25,51,.78)); pointer-events:none; }
.hero-diagonal { opacity:.12; background:var(--red); width:34%; }
.hero-inner { padding:46px 0 38px; }
.hero-eyebrow,.section-eyebrow { color:var(--red); font-family:var(--font-body); letter-spacing:.16em; font-weight:750; }
.hero-eyebrow::before,.section-eyebrow::before { content:''; display:inline-block; vertical-align:middle; width:34px; height:2px; background:currentColor; margin-right:11px; }
.hero h1 { width:min(820px,68vw); min-height:2.05em; font-size:clamp(3.7rem,5.7vw,5.65rem); line-height:.98; text-transform:none; letter-spacing:-.055em; }
.hero h1 em { color:#fff; position:relative; }
.hero h1 em::after { content:''; position:absolute; left:0; right:0; bottom:-7px; height:7px; background:var(--red); transform:skewX(-20deg); }
.hero-sub { min-height:3.5em; font-size:1.02rem; color:rgba(255,255,255,.76); max-width:65ch; margin-bottom:28px; }
.hero-career-banner { padding:8px 12px; margin:0 0 28px; background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.14); border-radius:99px; }
.hero-career-banner span { padding-left:8px; font-family:var(--font-body); font-size:.76rem; text-transform:none; }
.hero-career-banner a { padding:7px 12px; border-radius:99px; font-family:var(--font-body); font-size:.72rem; text-transform:none; }
.hero-stats { margin-top:40px; gap:0; width:min(660px,100%); border-top:1px solid rgba(255,255,255,.18); padding-top:22px; }
.hero-stats>div { flex:1; border-right:1px solid rgba(255,255,255,.14); padding-right:32px; margin-right:32px; }
.hero-stats>div:last-child { border:0; margin:0; }
.hero-stat-num { font-size:2.4rem; }
.hero-stat-label { color:rgba(255,255,255,.62); text-transform:none; }
.hero-service-switcher { position:absolute; right:0; bottom:38px; display:flex; gap:24px; align-items:flex-end; }
.hero-service { color:rgba(255,255,255,.55); background:none; border:0; border-bottom:2px solid rgba(255,255,255,.25); padding:10px 0 14px; cursor:pointer; font:700 .78rem/1 var(--font-body); transition:var(--transition); }
.hero-service:hover,.hero-service.active { color:#fff; border-color:var(--red); }
.hero-service.active { min-width:120px; text-align:left; }

.section-title { text-transform:none; letter-spacing:-.035em; }
.section-title em { color:var(--red); }
.section-sub { max-width:62ch; font-size:1.05rem; }
.services-grid { gap:20px; background:none; border:0; }
.service-card { min-height:330px; padding:34px; border:1px solid var(--light-grey); border-radius:var(--radius); box-shadow:var(--shadow-sm); }
.service-card::after { height:5px; }
.service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.service-icon { width:58px; height:58px; border-radius:12px; background:linear-gradient(145deg,#f4f7fa,#e7edf3); }
.service-card h3 { text-transform:none; letter-spacing:-.02em; }
.service-card a[style] { color:var(--red)!important; position:absolute; left:34px; bottom:30px; }

.why-section { background:var(--navy-deep); position:relative; overflow:hidden; }
.why-section::before { content:'BS'; position:absolute; right:-40px; top:-120px; color:rgba(255,255,255,.025); font:800 30rem/1 var(--font-display); }
.why-grid { gap:100px; }
.why-text .section-title { text-transform:none; }
.why-point { padding-bottom:20px; border-bottom:1px solid rgba(255,255,255,.1); }
.why-point-num { color:var(--red); }
.why-point-text h4 { font-family:var(--font-body); }
.why-visual { gap:18px; }
.why-visual-block { border-radius:16px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); }
.why-partner-block { background:#fff; border:0; }

.process-section { background:#f5f7fa; }
.process-steps::before { background:linear-gradient(90deg,var(--navy),var(--red)); opacity:.22; }
.process-step-circle { color:var(--navy); border-color:#fff; box-shadow:0 8px 26px rgba(4,50,101,.12); }
.process-step:hover .process-step-circle { background:var(--red); border-color:var(--red); }
.process-step h4 { font-family:var(--font-body); }

.cta-banner { padding:76px 0; background:linear-gradient(115deg,var(--red),#a9070f); position:relative; overflow:hidden; }
.cta-banner::after { content:'BOHOSTAV'; position:absolute; right:-20px; bottom:-52px; color:rgba(255,255,255,.07); font:800 8rem/1 var(--font-display); }
.cta-banner-inner { position:relative; z-index:1; }
.cta-banner h2 { text-transform:none; letter-spacing:-.03em; }

footer { background:#021a33; padding-top:78px; }
.site-footer-compact { padding:28px 0; }
.site-footer-compact .footer-bottom { padding-top:0; }
.site-footer-compact a:hover { color:#fff; }
.footer-logo { color:#fff; }
.footer-logo::before { width:220px; height:78px; background-color:#fff; border-radius:10px; padding:6px; }
.footer-grid { grid-template-columns:1.6fr 1fr 1fr 1fr; }
.footer-col h4 { font-family:var(--font-body); text-transform:none; letter-spacing:0; }

.page-hero { padding:calc(var(--nav-h) + var(--topbar-h) + 104px) 0 90px; background:var(--navy-deep); min-height:508px; display:flex; align-items:center; }
.page-hero::before { background:radial-gradient(circle at 82% 35%,rgba(213,13,23,.26),transparent 28%),linear-gradient(120deg,#021a33,#043265); }
.page-hero::after { content:'BS'; position:absolute; right:4%; top:48%; transform:translateY(-50%); color:rgba(255,255,255,.035); font:800 20rem/1 var(--font-display); }
.page-hero-inner { z-index:2; }
.page-hero h1 { text-transform:none; letter-spacing:-.04em; }
.page-hero h1 em { color:var(--red); font-style:normal; }
.page-hero p { color:rgba(255,255,255,.72); }
.breadcrumb { color:rgba(255,255,255,.5); }

.media-placeholder { color:transparent!important; border:0; background-image:linear-gradient(135deg,rgba(4,50,101,.18),rgba(213,13,23,.08)),url('../images/montaz-oken-bohostav.jpg')!important; background-size:cover!important; background-position:center!important; box-shadow:var(--shadow-lg); }
.legal-content { width:min(820px,calc(100% - 48px)); }
.legal-content h2 { font-size:1.65rem; margin:42px 0 12px; }
.legal-content p { max-width:none; }
.legal-content a { color:var(--red); text-decoration:underline; text-underline-offset:3px; }
.service-detail { gap:80px!important; padding:90px 0!important; }
.service-detail-img { border-radius:18px!important; min-height:390px!important; }
.service-detail-text h2 { text-transform:none; letter-spacing:-.03em; }
.service-label,.job-tag.orange { background:rgba(213,13,23,.09)!important; color:var(--red)!important; border-radius:99px!important; }
.service-includes li::before { content:'✓'!important; color:var(--red)!important; }

.about-img-main,.about-photo-placeholder { border-radius:18px; }
.about-badge { background:var(--red); border-radius:14px; box-shadow:var(--shadow-lg); }
.value-card { border:1px solid var(--light-grey); border-top:4px solid var(--red); border-left:1px solid var(--light-grey); border-radius:12px; background:#fff; box-shadow:var(--shadow-sm); }
.timeline-year { color:var(--red)!important; }

.filter-btn { border-radius:99px!important; }
.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  background:var(--red)!important;
  border-color:var(--red)!important;
  color:#fff!important;
}
.ref-card { border-radius:16px; background:#fff; border:1px solid var(--light-grey); box-shadow:var(--shadow-sm); }
.ref-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-lg); }
.ref-card-tag,.stat-num,.testimonial-stars { color:var(--red)!important; }
.testimonial-card { border-radius:16px!important; box-shadow:var(--shadow-sm); }

.contact-block,.perk-card,.req-card { background:#f4f7fa!important; border-radius:14px!important; }
.contact-block-icon,.perk-icon { filter:grayscale(1); }
.form-card { border:0!important; border-radius:18px!important; box-shadow:var(--shadow-lg); }
.form-group input,.form-group textarea,.form-group select { border:1px solid #d5dee7; border-radius:8px; background:#fbfcfd; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(213,13,23,.08); }
.form-privacy { font-size:.72rem; line-height:1.5; margin:0 0 14px; color:var(--mid-grey); }
.form-privacy a { color:var(--navy); text-decoration:underline; text-underline-offset:2px; }
.faq-section { background:#f4f7fa; }
.faq-item { border:1px solid var(--light-grey); border-radius:14px; }
.job-card { border:1px solid var(--light-grey); border-radius:16px; box-shadow:var(--shadow-sm); }
.job-card:hover { border-color:var(--red); box-shadow:var(--shadow-lg); }
.salary-badge { background:var(--navy)!important; }
.coming-page { min-height:100vh; display:grid; place-items:center; padding:150px 24px 80px; background:radial-gradient(circle at 80% 20%,rgba(213,13,23,.12),transparent 25%),#f4f7fa; }
.coming-card { width:min(950px,100%); padding:clamp(38px,8vw,90px); border-radius:24px; background:#fff; box-shadow:var(--shadow-lg); position:relative; overflow:hidden; }
.coming-card::after { content:'BS'; position:absolute; right:-20px; bottom:-70px; font:800 18rem/1 var(--font-display); color:rgba(4,50,101,.035); }
.coming-card h1 { font-size:clamp(3rem,7vw,5.8rem); text-transform:none; letter-spacing:-.04em; margin:20px 0 28px; }
.coming-card h1 em { color:var(--red); font-style:normal; }
.coming-card .hero-ctas { margin-top:35px; position:relative; z-index:1; }
.coming-badge { position:absolute; right:28px; top:28px; padding:8px 13px; border-radius:99px; background:rgba(213,13,23,.09); color:var(--red); font-weight:750; font-size:.76rem; text-transform:uppercase; letter-spacing:.08em; }
.faq-page { width:min(900px,calc(100% - 48px)); }
.faq-page details { background:#fff; border:1px solid var(--light-grey); border-radius:14px; margin-bottom:14px; box-shadow:var(--shadow-sm); overflow:hidden; }
.faq-page summary { list-style:none; padding:24px 64px 24px 26px; cursor:pointer; font-weight:750; color:var(--navy); position:relative; }
.faq-page summary::-webkit-details-marker { display:none; }
.faq-page summary::after { content:'+'; position:absolute; right:26px; top:18px; color:var(--red); font-size:1.7rem; }
.faq-page details[open] summary::after { content:'−'; }
.faq-page details p { padding:0 64px 26px 26px; }
.jobs-section { background:#f5f7fa; }
.jobs-heading { text-align:center; margin-bottom:42px; }
.jobs-list { width:min(900px,100%); margin:auto; display:grid; gap:14px; }
.job-row { display:grid; grid-template-columns:1.4fr 1fr auto; gap:28px; align-items:center; padding:25px 28px; border-radius:14px; background:#fff; border:1px solid #e8edf2; box-shadow:var(--shadow-sm); transition:var(--transition); }
.job-row:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:rgba(213,13,23,.25); }
.job-row h3 { text-transform:none; font-size:1.2rem; }
.job-row-meta { display:flex; gap:24px; }
.job-row-meta span { font-size:.76rem; color:var(--mid-grey); }
.job-row-meta strong { display:block; color:var(--navy); font-size:.82rem; margin-top:2px; }
.job-row .btn { min-height:42px; padding:10px 18px; }
.career-intro { max-width:760px; }
.career-intro h1 { text-transform:none; }
.detail-layout { display:grid; grid-template-columns:minmax(0,1fr) 390px; gap:80px; align-items:start; }
.detail-content h2,.detail-content h3 { text-transform:none; margin:42px 0 16px; }
.detail-content ul { display:grid; gap:12px; }
.detail-content li { padding-left:26px; position:relative; color:#41566d; }
.detail-content li::before { content:'✓'; position:absolute; left:0; color:var(--red); font-weight:800; }
.sticky-apply { position:sticky; top:110px; padding:34px; background:#fff; border-radius:18px; box-shadow:var(--shadow-lg); }
.sticky-apply h3 { text-transform:none; margin-bottom:8px; }
@media(max-width:900px){.job-row{grid-template-columns:1fr}.detail-layout{grid-template-columns:1fr}.sticky-apply{position:static}.hero-service-switcher{right:24px}.nav-links{gap:16px}}
@media(max-width:600px){.job-row-meta{display:grid;grid-template-columns:1fr 1fr}.coming-badge{position:static;display:inline-block;margin-bottom:18px}}

@media (prefers-reduced-motion:reduce) { *,*::before,*::after { scroll-behavior:auto!important; transition:none!important; animation:none!important; } }
@media (max-width:900px) {
  .utility-email,.utility-area { display:none; }
  .utility-contacts { grid-template-columns:1fr; justify-self:end; }
}
@media (max-width:1100px) {
  section { padding:82px 0; }
  .container { width:min(100% - 32px,1180px); }
  .nav .container { width:calc(100% - 32px); }
  .nav .nav-logo { display:flex; }
  .nav-links { display:none; }
  .nav-burger { display:flex; }
  .why-grid { gap:54px; }
  .page-hero::after { font-size:13rem; }
  .service-detail { gap:42px!important; padding:64px 0!important; }
}
@media (max-width:600px) {
  :root { --nav-h:72px; --topbar-h:34px; }
  section { padding:68px 0; }
  h1 { font-size:clamp(3.15rem,16vw,4.6rem); }
  h2 { font-size:clamp(2.25rem,11vw,3.2rem); }
  .nav-logo::before { width:148px; height:54px; }
  .top-contact-bar { background:var(--navy); color:#fff; border:0; }
  .top-contact-inner { justify-content:center; }
  .top-contact-inner { grid-template-columns:1fr; gap:0; justify-items:center; }
  .utility-logo,.utility-email,.utility-area { display:none; }
  .utility-contacts { gap:0; justify-self:center; }
  .utility-contact { color:#fff; gap:8px; }
  .utility-contact:hover { color:#fff; transform:none; }
  .utility-contact small { color:rgba(255,255,255,.72); font-size:.64rem; }
  .utility-contact strong { color:#fff; font-size:.78rem; }
  .utility-icon { flex-basis:28px; width:28px; height:28px; border-color:rgba(255,255,255,.28); color:#fff; }
  .utility-icon svg { width:15px; height:15px; stroke-width:2; }
  .hero { min-height:auto; }
  .hero[data-hero="okna"]::before { background-image:linear-gradient(90deg,rgba(2,25,51,.94),rgba(3,36,72,.64)),url('../images/montaz-oken-bohostav-mobile.jpg'); }
  .hero[data-hero="dvere"]::before { background-image:linear-gradient(90deg,rgba(2,25,51,.94),rgba(3,36,72,.64)),url('../images/montaz-dvere-bohostav-mobile.jpg'); }
  .hero[data-hero="demontaz"]::before { background-image:linear-gradient(90deg,rgba(2,25,51,.94),rgba(3,36,72,.64)),url('../images/demontaz-bohostav-mobile.jpg'); }
  .hero[data-hero="zednicke-prace"]::before { background-image:linear-gradient(90deg,rgba(2,25,51,.94),rgba(3,36,72,.64)),url('../images/zednicke-prace-bohostav-mobile.jpg'); }
  .hero-inner { padding:42px 0 30px; }
  .hero h1 { width:100%; min-height:0; font-size:clamp(3rem,14vw,4rem); }
  .hero-sub { min-height:0; }
  .hero-career-banner { border-radius:12px; }
  .hero-career-banner span { width:100%; }
  .hero-stats { margin-top:32px; }
  .hero-stats>div { padding-right:14px; margin-right:14px; }
  .hero-service-switcher { position:static; margin-top:38px; overflow-x:auto; gap:20px; padding-bottom:4px; }
  .hero-service { white-space:nowrap; }
  .hero-stat-num { font-size:1.85rem; }
  .hero-stat-label { font-size:.7rem; }
  .btn { width:100%; }
  .page-hero { min-height:424px; padding:calc(var(--nav-h) + var(--topbar-h) + 70px) 0 70px; }
  .page-hero::after { font-size:9rem; right:-15%; }
  .service-card { min-height:310px; }
  .why-visual { grid-template-columns:1fr; }
  .why-partner-block { grid-column:span 1; }
  .footer-grid { gap:36px; }
  .cta-banner { text-align:center; }
  .cta-banner .btn { width:100%; }
}

/* =========================================================
   RESPONSIVE UX PASS — phones, tablets and compact laptops
   Kept last so these rules are authoritative.
   ========================================================= */
@media (max-width:1100px) {
  :root { --topbar-h:58px; --nav-h:68px; }
  .top-contact-inner { width:min(100% - 32px,880px); grid-template-columns:1fr; gap:0; }
  .top-contact-inner .utility-logo { display:none; }
  .utility-contacts { width:100%; grid-template-columns:repeat(2,max-content); justify-content:center; gap:clamp(28px,8vw,80px); }
  .utility-area { display:none; }
  .nav .container { width:min(100% - 32px,880px); }
  .nav-logo::before { width:142px; height:54px; }
  .nav-mobile { max-height:calc(100dvh - var(--topbar-h) - var(--nav-h) - 4px); overflow-y:auto; overscroll-behavior:contain; padding:16px 24px calc(20px + env(safe-area-inset-bottom)); }
  .nav-mobile a { font-size:1rem; padding:13px 0; text-transform:none; letter-spacing:.01em; }
  .hero { min-height:100svh; }
  .hero-inner { padding-top:38px; }
  .hero h1 { width:min(700px,86vw); font-size:clamp(3.35rem,8vw,4.8rem); }
  .hero-service-switcher { right:16px; max-width:calc(100% - 32px); }
  .detail-layout { gap:48px; }
  .contact-grid { gap:40px; }
}

@media (max-width:760px) {
  :root { --topbar-h:48px; --nav-h:62px; }
  html { scroll-padding-top:calc(var(--topbar-h) + var(--nav-h) + 12px); }
  body { font-size:15px; }
  section { padding:54px 0; }
  .container,.nav .container,.top-contact-inner,.legal-content,.faq-page { width:calc(100% - 32px); }

  .top-contact-bar { padding-top:env(safe-area-inset-top); height:calc(var(--topbar-h) + env(safe-area-inset-top)); }
  .top-contact-inner { justify-items:center; }
  .utility-contacts { display:block; width:auto; }
  .utility-email,.utility-area { display:none; }
  .utility-contact { gap:9px; }
  .utility-contact small { font-size:.66rem; line-height:1.1; }
  .utility-contact strong { font-size:.82rem; line-height:1.15; }
  .utility-icon { flex:0 0 31px; width:31px; height:31px; }
  .utility-icon svg { width:16px; height:16px; }

  .nav { top:calc(4px + var(--topbar-h) + env(safe-area-inset-top)); }
  .nav .container { height:100%; }
  .nav-logo::before { width:116px; height:45px; }
  .nav-burger { width:46px; height:46px; align-items:center; justify-content:center; gap:6px; margin-right:-8px; }
  .nav-burger span { width:27px; height:2px; }
  .nav-mobile { top:calc(4px + var(--topbar-h) + var(--nav-h) + env(safe-area-inset-top)); }

  h1 { font-size:clamp(2.35rem,11vw,3.35rem); }
  h2 { font-size:clamp(2rem,9vw,2.75rem); }
  h3 { font-size:1.35rem; }
  p { line-height:1.65; }

  .hero { min-height:auto; padding-top:calc(var(--nav-h) + var(--topbar-h) + env(safe-area-inset-top)); }
  .hero-inner { min-height:calc(100svh - var(--nav-h) - var(--topbar-h) - env(safe-area-inset-top)); padding:42px 0 24px; justify-content:flex-start; }
  .hero h1 { width:100%; min-height:2.05em; font-size:clamp(2.65rem,12.2vw,3.45rem); line-height:1.01; letter-spacing:-.055em; margin-bottom:18px; }
  .hero h1 em::after { height:5px; bottom:-6px; }
  .hero-sub { width:100%; max-width:34ch; min-height:4.8em; margin-bottom:22px; font-size:.94rem; line-height:1.6; color:rgba(255,255,255,.82); }
  .hero-ctas { width:100%; flex-direction:row; gap:10px; }
  .hero-ctas .btn { width:auto; flex:1; min-height:48px; padding:12px 14px; font-size:.84rem; }
  .hero-stats { order:4; margin-top:25px; padding-top:17px; width:100%; }
  .hero-stats>div { padding-right:10px; margin-right:10px; }
  .hero-stat-num { font-size:1.6rem; }
  .hero-stat-label { font-size:.64rem; line-height:1.25; }
  .hero-service-switcher { order:5; position:static; width:100%; max-width:100%; margin-top:22px; padding:0 0 7px; gap:18px; overflow-x:auto; scrollbar-width:none; scroll-snap-type:x proximity; }
  .hero-service-switcher::-webkit-scrollbar { display:none; }
  .hero-service { flex:0 0 auto; min-width:auto!important; padding:10px 0 11px; font-size:.7rem; scroll-snap-align:start; }
  .hero::after { height:80px; }

  .page-hero { min-height:330px; padding:calc(var(--nav-h) + var(--topbar-h) + env(safe-area-inset-top) + 46px) 0 48px; }
  .page-hero::after { font-size:7rem; right:-24%; }
  .page-hero h1 { font-size:clamp(2.45rem,12vw,3.35rem); overflow-wrap:anywhere; }
  .page-hero p { font-size:.95rem; }
  .breadcrumb { font-size:.72rem; margin-bottom:18px; }

  .services-grid,.about-grid,.contact-grid,.values-grid,.stats-grid,.testimonials-grid,.references-grid,.perks-grid,.requirements-grid { grid-template-columns:1fr!important; }
  .service-card { min-height:0; padding:26px 24px 72px; }
  .service-card a[style] { left:24px; bottom:24px; }
  .service-detail { grid-template-columns:1fr!important; gap:28px!important; padding:48px 0!important; }
  .service-detail .service-detail-text { order:1!important; }
  .service-detail .service-detail-img,
  .service-detail:nth-child(even) .service-detail-img { order:2!important; }
  .service-detail-img { min-height:240px!important; }
  .why-grid { gap:38px; }
  .why-section::before { font-size:16rem; }
  .why-point { gap:14px; }
  .why-point-num { min-width:35px; }
  .process-steps { grid-template-columns:1fr 1fr; gap:28px 16px; }
  .process-step p { font-size:.84rem; }

  .cta-banner { padding:48px 0; text-align:left; }
  .cta-banner-inner { align-items:stretch; gap:24px; }
  .cta-banner .btn { min-height:50px; }
  .cta-banner::after { font-size:4rem; bottom:-20px; }

  footer { padding-top:52px; }
  .footer-grid { grid-template-columns:1fr!important; gap:0; padding-bottom:30px; }
  .footer-grid>div { padding:24px 0; border-bottom:1px solid rgba(255,255,255,.09); }
  .footer-grid>div:first-child { padding-top:0; }
  .footer-grid>div:last-child { border-bottom:0; padding-bottom:0; }
  .footer-brand { grid-column:auto; }
  .footer-logo { margin-bottom:14px; }
  .footer-logo::before { width:150px; height:56px; }
  .footer-desc { max-width:32ch; margin-bottom:18px; font-size:.86rem; }
  .footer-contact a { align-items:flex-start; overflow-wrap:anywhere; font-size:.86rem; }
  .footer-col h4 { margin-bottom:14px; }
  .footer-col ul { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px 18px; }
  .footer-col ul li { margin:0; }
  .footer-col ul a { display:block; font-size:.84rem; line-height:1.45; }
  .footer-bottom { align-items:flex-start; gap:12px; font-size:.7rem; }
  .site-footer-compact .footer-bottom { flex-direction:column; }

  .form-card,.sticky-apply { padding:24px 20px!important; border-radius:14px!important; }
  .form-row { grid-template-columns:1fr; gap:0; }
  input,textarea,select { font-size:16px!important; }
  .map-placeholder { min-height:280px; }
  .faq-page summary { padding:20px 52px 20px 20px; line-height:1.4; }
  .faq-page summary::after { right:20px; }
  .faq-page details p { padding:0 20px 22px; }

  .job-row { padding:22px 20px; gap:18px; }
  .job-row-meta { grid-template-columns:1fr 1fr; gap:14px; }
  .job-row .btn { width:100%; }
  .detail-layout { gap:36px; }
  .sticky-apply { position:static; }

  .coming-page { min-height:100svh; padding:calc(var(--nav-h) + var(--topbar-h) + 32px) 16px 48px; }
  .coming-card { padding:30px 22px; border-radius:18px; }
  .coming-card h1 { font-size:clamp(2.4rem,12vw,3.25rem); margin:18px 0 20px; }
  .coming-card .hero-ctas { flex-direction:column; }
  .coming-card::after { font-size:10rem; }
}

@media (max-width:390px) {
  .container,.nav .container,.top-contact-inner,.legal-content,.faq-page { width:calc(100% - 24px); }
  .hero h1 { font-size:clamp(2.35rem,11.5vw,2.8rem); }
  .hero-sub { font-size:.9rem; }
  .hero-ctas { flex-direction:column; }
  .hero-ctas .btn { width:100%; }
  .hero-stat-num { font-size:1.4rem; }
  .footer-grid { grid-template-columns:1fr!important; }
  .footer-brand { grid-column:auto; }
  .process-steps { grid-template-columns:1fr; }
}

/* Service detail photography */
#montaz-oken .service-detail-img {
  background-image:linear-gradient(135deg,rgba(4,50,101,.12),rgba(213,13,23,.04)),url('../images/montaz-oken-bohostav.jpg')!important;
}
#montaz-dveri .service-detail-img {
  background-image:linear-gradient(135deg,rgba(4,50,101,.12),rgba(213,13,23,.04)),url('../images/montaz-dvere-bohostav.jpg')!important;
}
#demontaz .service-detail-img,
#bourani .service-detail-img {
  background-image:linear-gradient(135deg,rgba(4,50,101,.12),rgba(213,13,23,.04)),url('../images/demontaz-bohostav.jpg')!important;
}
#zednicina .service-detail-img {
  background-image:linear-gradient(135deg,rgba(4,50,101,.12),rgba(213,13,23,.04)),url('../images/zednicke-prace-bohostav.jpg')!important;
}

@media (max-width:760px) {
  #montaz-oken .service-detail-img { background-image:linear-gradient(135deg,rgba(4,50,101,.1),rgba(213,13,23,.03)),url('../images/montaz-oken-bohostav-mobile.jpg')!important; }
  #montaz-dveri .service-detail-img { background-image:linear-gradient(135deg,rgba(4,50,101,.1),rgba(213,13,23,.03)),url('../images/montaz-dvere-bohostav-mobile.jpg')!important; }
  #demontaz .service-detail-img,
  #bourani .service-detail-img { background-image:linear-gradient(135deg,rgba(4,50,101,.1),rgba(213,13,23,.03)),url('../images/demontaz-bohostav-mobile.jpg')!important; }
  #zednicina .service-detail-img { background-image:linear-gradient(135deg,rgba(4,50,101,.1),rgba(213,13,23,.03)),url('../images/zednicke-prace-bohostav-mobile.jpg')!important; }
}
