/* ============================================================
   HK Print – Reklamní dílna Olomouc
   style.css  |  v2.1
   ============================================================ */

/* Pro DM Sans */
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  /* Tyto řádky níže omezí ten skok (CLS) */
  size-adjust: 100%;
  ascent-override: 96%;
  descent-override: 20%;
}


/* Pro Playfair Display */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  size-adjust: 98%;
  ascent-override: 95%;
  descent-override: 25%;
}
   

/* ── 1. DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --gold:        #7A9E7E;
  --gold-light:  #6A8C6F;
  --gold-dark:   #5A7A5E;
  --gold-pale:   rgba(122, 158, 126, 0.12);
  --gold-border: rgba(122, 158, 126, 0.28);

  --black:  #F6F8F6;
  --dark:   #EEF2EE;
  --dark2:  #E8EDE8;
  --dark3:  #DDE7DD;
  --dark4:  #D5E0D5;
  --gray:   #6E7F75;
  --gray2:  #4A5C52;
  --white:  #1F2A24;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    3px;
  --radius-lg: 6px;

  --transition: 0.28s ease;

  --section-pad: 5.5rem;
  --container:   1200px;

 }


/* ── 2. RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; }

/* ── 3. LAYOUT HELPERS ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: var(--section-pad); }
.section--dark  { background: var(--dark); }
.section--black { background: var(--black); }

/* ── 4. TYPOGRAPHY ───────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.78;
  max-width: 560px;
}

.gold-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-block: 1rem 2rem;
}

/* ── 5. BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 0.7rem 1.7rem;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 158, 126, 0.30);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn--lg   { padding: 0.85rem 2.1rem; font-size: 0.88rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── 6. TOP BANNER ───────────────────────────────────────────── */
.top-banner {
  /* CLS FIX: pevná výška místo min-height, aby layout neskákal */
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #FFFFFF;
  text-align: center;
  padding-inline: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  overflow: hidden;
}
.top-banner a { color: #FFFFFF; text-decoration: underline; font-weight: 700; }
.top-banner a:hover { opacity: 0.75; }

/* ── 7. NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(246, 248, 246, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(122, 158, 126, 0.25);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1.5rem;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* CLS FIX: width: auto způsobuje layout shift dokud se nenahraje obrázek loga.
   Nastavíme fixní width odpovídající aspect-ratio loga (předpokládáme ~180px wide). */
.navbar__logo img { height: 100px; width: auto; aspect-ratio: auto 180/56; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 42, 36, 0.65);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.navbar__link:hover,
.navbar__link.active { color: var(--gold); }

.navbar__phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.navbar__phone:hover { color: var(--gold); }

.navbar__cta { margin-left: 0; }

/* Mobile hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.navbar__drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(31, 42, 36, 0.09);
  background: rgba(246, 248, 246, 0.99);
}
.navbar__drawer.open { display: flex; }
.navbar__drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 1rem 1.5rem;
}
.navbar__drawer .navbar__link { font-size: 0.95rem; padding: 0.65rem 0; }
.navbar__drawer .btn { margin-top: 0.5rem; text-align: center; justify-content: center; }
.navbar__drawer .navbar__phone { padding-top: 0.75rem; }

/* ── 8. GOLD MARQUEE BAND ────────────────────────────────────── */
.marquee-band {
  background: var(--gold);
  overflow: hidden;
  padding-block: 0.9rem;
  min-height: 52px;
}
.marquee-band__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee-band__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
}
.marquee-band__item i { font-size: 0.88rem; }
.marquee-band__sep { color: rgba(255, 255, 255, 0.40); flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 9. HERO ─────────────────────────────────────────────────── */
.hero {
  /* CLS FIX: min-height závislý na obsahu způsoboval skok 0.215.
     Použijeme contain-intrinsic-size + content-visibility pro stabilní rezervaci místa. */
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--black);
  /* Rezervujeme místo pro celou hero sekci předem */
  contain: layout style;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  /* CLS FIX: pevný padding zajistí konzistentní výšku bez ohledu na načtení fontů */
  padding-block: 3.5rem 3rem;
}

.hero__center {
  text-align: center;
  max-width: 100%;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 2vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-style: normal;
}

.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray);
  margin: 0.75rem 0 1.25rem;
  text-align: center;
  font-family: var(--font-body);
}

.hero__description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  font-family: var(--font-body);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__image-wrapper {
  width: 100%;
  max-width: 791px;
  margin: 0 auto;
  /* CLS FIX: aspect-ratio + background barva = prohlížeč rezervuje PŘESNÉ místo
     ještě před načtením obrázku. Bez tohoto dochází ke skoku 0.026 */
  aspect-ratio: 791 / 411;
  background: rgba(122, 158, 126, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Explicitní contain zabrání přetečení do okolního layoutu */
  contain: strict;
}

.hero__image {
  width: 100%;
  height: 100%; /* Změněno z auto na 100% aby vyplnil wrapper */
  object-fit: cover; /* Aby se obrázek v rezervovaném místě nedeformoval */
  display: block;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero__badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.hero__badge-item i {
  color: var(--gold);
  font-size: 0.95rem;
}

/* ── SCROLL TO TOP ───────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 18px rgba(122, 158, 126, 0.40);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(122, 158, 126, 0.55);
}

/* ── 10. STRIP ───────────────────────────────────────────────── */
.strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.strip__cell {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.strip__cell:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.strip__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,42,36,0.65) 0%, transparent 55%);
  z-index: 1;
}

.strip__label {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── 11. SERVICES ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.services-intro { margin-bottom: 3rem; }

.svc-card {
  background: var(--dark2);
  border: 1px solid rgba(31, 42, 36, 0.09);
  border-radius: var(--radius);
  padding: 1.75rem;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--svc-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  filter: grayscale(100%);
  z-index: 0;
  transition: opacity var(--transition);
}
.svc-card:hover::after { opacity: 0.13; }
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 2;
}
.svc-card > * { position: relative; z-index: 1; }
.svc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(122, 158, 126, 0.25);
  box-shadow: 0 8px 32px rgba(122, 158, 126, 0.18);
}
.svc-card:focus-visible {
  outline: 2px solid rgba(122, 158, 126, 0.55);
  outline-offset: 2px;
  transform: translateY(-5px);
  border-color: rgba(122, 158, 126, 0.32);
  box-shadow: 0 8px 32px rgba(122, 158, 126, 0.18);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:focus-visible::before { transform: scaleX(1); }
.svc-card__icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
  transition: background var(--transition);
}
.svc-card:hover .svc-card__icon { background: rgba(122, 158, 126, 0.22); }
.svc-card__title { font-size: 1.08rem; margin-bottom: 0.6rem; color: var(--white); }
.svc-card__text  { font-size: 0.88rem; color: var(--gray); line-height: 1.68; }
.svc-card__cta {
  margin-top: auto;
  padding-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-card__cta .bi {
  font-size: 0.82rem;
  transition: transform var(--transition);
}
.svc-card:hover .svc-card__cta .bi,
.svc-card:focus-visible .svc-card__cta .bi {
  transform: translateX(3px);
}

.svc-card--textil { --svc-bg: url('https://images.unsplash.com/photo-1503342394128-c104d54dba01?w=600&q=60'); }
.svc-card--merch { --svc-bg: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=600&q=60'); }
.svc-card--predmety { --svc-bg: url('https://images.unsplash.com/photo-1572635196237-14b3f281503f?w=600&q=60'); }
.svc-card--polepy { --svc-bg: url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?w=600&q=60'); }
.svc-card--tiskoviny { --svc-bg: url('https://images.unsplash.com/photo-1561070791-2526d30994b5?w=600&q=60'); }
.svc-card--navrhy { --svc-bg: url('https://images.unsplash.com/photo-1542744094-24638eff58bb?w=600&q=60'); }
.svc-card--dresy { --svc-bg: url('https://images.unsplash.com/photo-1556905055-8f358a7a47b2?w=600&q=60'); }
.svc-card--branding { --svc-bg: url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?w=600&q=60'); }
.svc-card--absolventi { --svc-bg: url('https://images.unsplash.com/photo-1523381210434-271e8be1f52b?w=600&q=60'); }

/* ── 11B. SUBSERVICES ───────────────────────────────────────── */
.subsvc-hub-grid,
.subsvc-card-grid,
.subsvc-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}
.subsvc-hub-card,
.subsvc-card,
.subsvc-offer {
  background: var(--dark2);
  border: 1px solid rgba(31, 42, 36, 0.09);
  border-radius: var(--radius);
  padding: 1.45rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.subsvc-hub-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.subsvc-hub-card:hover,
.subsvc-card:hover,
.subsvc-offer:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 158, 126, 0.26);
  box-shadow: 0 8px 24px rgba(122, 158, 126, 0.12);
}
.subsvc-hub-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.subsvc-hub-card__title,
.subsvc-card__title,
.subsvc-offer__title {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.subsvc-hub-card__text,
.subsvc-card__text,
.subsvc-offer__text,
.subsvc-intro__text {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--gray);
}
.subsvc-hub-card__cta {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.subsvc-hub-card__cta .bi {
  transition: transform var(--transition);
}
.subsvc-hub-card:hover .subsvc-hub-card__cta .bi {
  transform: translateX(3px);
}
.subsvc-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 1.15rem;
}
.subsvc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}
.subsvc-hero__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
}
.subsvc-hero__title {
  font-size: clamp(2rem, 3.3vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
}
.subsvc-hero__text {
  max-width: 640px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--gray);
}
.subsvc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.subsvc-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.subsvc-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(122, 158, 126, 0.12);
  border: 1px solid rgba(122, 158, 126, 0.2);
  font-size: 0.8rem;
  color: var(--gray);
}
.subsvc-hero__image-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark3);
  aspect-ratio: 16 / 10;
}
.subsvc-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.breadcrumb {
  background: var(--black);
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(122, 158, 126, 0.12);
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--gray);
}
.breadcrumb__inner a {
  color: var(--gray);
  transition: color var(--transition);
}
.breadcrumb__inner a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(110, 127, 117, 0.4); }
.breadcrumb__current { color: var(--gold); font-weight: 600; }
.internal-links {
  background: #D5E0D5;
  padding-block: 1.75rem;
  border-top: 1px solid rgba(122, 158, 126, 0.28);
}
.internal-links__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.internal-links__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.internal-links__items {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.internal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(122, 158, 126, 0.28);
  padding: 0.42rem 0.95rem;
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--gray);
  transition: all var(--transition);
  background: rgba(122, 158, 126, 0.12);
}
.internal-link .bi { color: var(--gold); font-size: 0.75rem; }
.internal-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.internal-link:hover .bi { color: #fff; }
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--dark2);
  border: 1px solid rgba(31, 42, 36, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
}
.faq-item__q .bi {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-item__q .bi { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item__a p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
}
.faq-item.open .faq-item__a { max-height: 280px; padding: 0 1.5rem 1.25rem; }

/* ── 12. TECHNOLOGY ──────────────────────────────────────────── */
.tech-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(31, 42, 36, 0.07);
  border: 1px solid rgba(31, 42, 36, 0.07);
  margin-top: 3rem;
}
.tech-item {
  background: var(--black);
  padding: 1.75rem;
  transition: background var(--transition);
}
.tech-item:hover { background: var(--dark2); }
.tech-item__icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: block;
}
.tech-item__title { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--white); }
.tech-item__text  { font-size: 0.83rem; color: var(--gray); line-height: 1.58; }

.quality-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4.5rem;
}
.quality-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.75);
}
.check-list { margin-top: 1.5rem; }
.check-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(31, 42, 36, 0.08);
  font-size: 0.92rem;
  color: var(--gray);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ── 13. PACKAGES ────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.pkg-card {
  background: var(--dark2);
  border: 1px solid rgba(31, 42, 36, 0.10);
  border-radius: var(--radius);
  padding: 2.1rem 1.75rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { transform: translateY(-5px); }
.pkg-card--featured { border-color: var(--gold); background: var(--dark3); }
.pkg-card--featured::before {
  content: 'Nejoblíbenější';
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: #FFFFFF;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 0 0 var(--radius) var(--radius);
}
.pkg-card__icon  { font-size: 1.9rem; color: var(--gold); margin-bottom: 0.9rem; }
.pkg-card__title { font-size: 1.4rem; margin-bottom: 0.4rem; color: var(--white); }
.pkg-card__desc  { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.4rem; }
.pkg-list { flex: 1; margin-bottom: 1.6rem; }
.pkg-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--gray);
  padding: 0.52rem 0;
  border-bottom: 1px solid rgba(31, 42, 36, 0.08);
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list li i { color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }

/* ── 14. STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--gold); padding-block: 3.25rem; }
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-box { text-align: center; padding-inline: 3rem; flex: 1; min-width: 140px; }
.stat-box__num { font-family: var(--font-display); font-size: 2.7rem; font-weight: 900; color: #FFFFFF; line-height: 1; }
.stat-box__lbl { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.80); margin-top: 0.3rem; }
.stat-box__div { width: 1px; height: 46px; background: rgba(255, 255, 255, 0.20); flex-shrink: 0; }

/* ── 15. WHY US ──────────────────────────────────────────────── */
.why-section { display: grid; grid-template-columns: 480px 1fr; }
.why-section__img { position: relative; overflow: hidden; }
.why-section__img img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; filter: brightness(0.72); }
.why-section__content { padding: 5rem 4rem; background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 0.5rem; }
.why-item {
  padding: 1.75rem;
  border-bottom: 1px solid rgba(31, 42, 36, 0.08);
  border-right: 1px solid rgba(31, 42, 36, 0.08);
  transition: background var(--transition);
}
.why-item:hover { background: rgba(122, 158, 126, 0.06); }
.why-item:nth-child(2n) { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-item__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: rgba(122, 158, 126, 0.18); line-height: 1; margin-bottom: 0.3rem; }
.why-item__title { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--white); }
.why-item__text { font-size: 0.84rem; color: var(--gray); line-height: 1.62; }

/* ── 16. PROCESS ─────────────────────────────────────────────── */
.process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.process-steps { margin-top: 1rem; }
.step { display: flex; gap: 1.3rem; }
.step__left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step__num {
  width: 50px; height: 50px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.step__line { flex: 1; width: 1px; background: rgba(122, 158, 126, 0.20); margin-block: 6px; min-height: 1.75rem; }
.step__body { padding-bottom: 1.9rem; }
.step__title { font-family: var(--font-body); font-size: 0.97rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--white); }
.step__text  { font-size: 0.86rem; color: var(--gray); line-height: 1.62; }

/* ── 17. REFERENCES ──────────────────────────────────────────── */
.ref-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 0.5rem;
}

.ref-header--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
}

.section-label--flush { margin: 0; }
.section-title--compact { margin: 0.3125rem 0 0.625rem; line-height: 1.2; }
.gold-rule--reference {
  width: 60px;
  margin: 0 0 1.5625rem;
}

.ref-filters { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.ref-filters--homepage {
  gap: 10px;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 30px;
}
.ref-filter {
  background: transparent;
  border: 1px solid rgba(31, 42, 36, 0.14);
  color: rgba(31, 42, 36, 0.55);
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.42rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.ref-filter:hover, .ref-filter.active { background: var(--gold); border-color: var(--gold); color: #FFFFFF; }

.ref-grid { columns: 3; column-gap: 0.85rem; margin-top: 2.5rem; }
.ref-grid--homepage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  columns: unset;
  margin-top: 0;
}
.ref-item {
  break-inside: avoid; margin-bottom: 0.85rem;
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; display: block;
}
.ref-item img { width: 100%; display: block; filter: none; transition: transform 0.45s ease; border-radius: var(--radius); }
.ref-item:hover img { transform: scale(1.05); filter: none; }
.ref-item__overlay,
.ref-item__label,
.ref-item__cat,
.ref-item__caption,
.ref-item__tag {
  display: none !important;
}
.ref-item__border {
  position: absolute; inset: 0;
  border: 2px solid transparent; border-radius: var(--radius);
  transition: border-color var(--transition); pointer-events: none;
}
.ref-item:hover .ref-item__border { border-color: rgba(122, 158, 126, 0.55); }

.ref-item__video { position: relative; }
.ref-item__video img { aspect-ratio: 16/9; object-fit: cover; }
.ref-item__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(31, 42, 36, 0.25); border-radius: var(--radius); transition: background var(--transition);
}
.ref-item__play i { font-size: 2.8rem; color: #FFFFFF; opacity: 0.9; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.ref-item:hover .ref-item__play { background: rgba(122, 158, 126, 0.28); }
.ref-item:hover .ref-item__play i { color: var(--gold); }

.ref-stats {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: var(--gold-pale); border: 1px solid var(--gold-border); border-radius: var(--radius);
  padding: 1.5rem 2rem; margin-top: 3rem;
}
.ref-stat { text-align: center; flex: 1; min-width: 100px; }
.ref-stat__num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); }
.ref-stat__lbl { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }
.ref-stats__div { width: 1px; height: 38px; background: var(--gold-border); flex-shrink: 0; }

.testimonials {
  margin-top: 4rem;
  width: 100%;
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin-top: 1.5rem; }
.testi-card {
  background: var(--dark2); border: 1px solid rgba(31, 42, 36, 0.09);
  border-radius: var(--radius); padding: 1.6rem; position: relative; transition: all var(--transition);
}
.testi-card:hover { border-color: rgba(122, 158, 126, 0.22); transform: translateY(-3px); }
.testi-card::before {
  content: '\201C'; font-family: var(--font-display); font-size: 4rem;
  color: rgba(122, 158, 126, 0.20); position: absolute; top: 0.4rem; left: 1rem; line-height: 1;
}
.testi-stars  { color: var(--gold); font-size: 0.72rem; margin-bottom: 0.6rem; }
.testi-text   { font-size: 0.9rem; color: var(--gray); line-height: 1.72; margin-bottom: 1.2rem; margin-top: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold-pale); border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.testi-role { font-size: 0.75rem; color: var(--gray); }

/* ── 18. AUDIENCE PILLS ──────────────────────────────────────── */
.audience-section {
  background: var(--dark2);
  padding-block: 3.5rem;
  margin-top: 2.5rem;
  text-align: center;
}
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border: 1px solid var(--gold-border); padding: 0.55rem 1.2rem;
  border-radius: 100px; font-size: 0.88rem; color: var(--gray);
  transition: all var(--transition);
}
.pill i { color: var(--gold); font-size: 0.82rem; }
.pill:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--white); }

/* ── 19. CTA ─────────────────────────────────────────────────── */
.cta-section {
  background: var(--dark2); padding-block: var(--section-pad);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1561070791-2526d30994b5?w=1400&q=60') center/cover;
  opacity: 0.03;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section .section-title { font-size: clamp(1.9rem, 3.5vw, 3rem); }
.cta-section p { color: var(--gray); max-width: 460px; margin: 1rem auto 2.2rem; font-size: 0.97rem; line-height: 1.78; }
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 20. CONTACT ─────────────────────────────────────────────── */
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4.5rem; align-items: start; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.contact-icon {
  width: 42px; height: 42px; background: var(--gold-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); flex-shrink: 0;
}
.contact-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.18rem; }
.contact-value { font-size: 0.94rem; color: var(--gray); }
.contact-value a { color: var(--gray); transition: color var(--transition); }
.contact-value a:hover { color: var(--gold); }

.form-card { background: var(--dark2); border: 1px solid rgba(31, 42, 36, 0.10); border-radius: var(--radius-lg); padding: 2.25rem; }
.form-card__title { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--white); }
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-label-note {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(31, 42, 36, 0.55); margin-bottom: 0.4rem; }
.form-control, .form-select {
  width: 100%; background: var(--dark); border: 1px solid rgba(31, 42, 36, 0.12);
  color: var(--white); border-radius: var(--radius); padding: 0.7rem 0.95rem;
  font-size: 0.9rem; font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control::placeholder { color: rgba(31, 42, 36, 0.40); }
.form-control:focus, .form-select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.15);
}
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%236E7F75' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 12px; padding-right: 2.2rem;
}
.form-select option { background: #EEF2EE; color: #1F2A24; }
textarea.form-control { resize: vertical; min-height: 120px; }

.file-drop {
  background: #EEF2EE;
  border: 1.5px dashed rgba(122, 158, 126, 0.28);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.file-drop:hover,
.file-drop.is-active {
  border-color: var(--gold);
}
.file-drop .bi {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.file-drop__hint {
  font-size: 0.85rem;
  color: var(--gray);
}
.file-drop__meta {
  font-size: 0.75rem;
  color: rgba(110, 127, 117, 0.6);
}
.file-drop__input {
  display: none;
}
.file-drop__filename {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 0.4rem;
  display: none;
}

/* ── 21. SERVICE GALLERY ─────────────────────────────────────── */
.service-gallery__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.service-gallery__text {
  max-width: 640px;
}
.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}
.service-gallery__item {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark3);
  border: 1px solid rgba(31, 42, 36, 0.08);
  aspect-ratio: 1 / 1;
  padding: 0;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
}
.service-gallery__item picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.service-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
  filter: none;
}
.service-gallery__item:hover img {
  transform: scale(1.05);
  filter: none;
}
.service-gallery__overlay,
.service-gallery__category,
.service-gallery__caption {
  display: none !important;
}
.service-gallery__footer {
  margin-top: 2rem;
  text-align: center;
}
.service-gallery__empty {
  background: var(--dark2);
  border: 1px solid rgba(31, 42, 36, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: var(--gray);
}
.service-gallery__header-cta {
  flex-shrink: 0;
}

.pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(122,158,126,0.18);
  color: rgba(31,42,36,0.6);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50px;
  padding: 0 5px;
  margin-left: 4px;
  vertical-align: middle;
  transition: all 0.25s;
}
.filter-pill.active .pill-count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeUp 0.45s ease both;
}

/* Reference page */
.ref-hero {
  padding: 80px 20px 50px;
  text-align: center;
  background: var(--black, #F6F8F6);
  position: relative;
  overflow: hidden;
}
.ref-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(122,158,126,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.ref-hero__label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A9E7E;
  margin-bottom: 14px;
}
.ref-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white, #1F2A24);
  margin: 0 0 16px;
}
.ref-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(31,42,36,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.ref-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 28px 20px;
  background: #7A9E7E;
}
.ref-stat {
  text-align: center;
  color: #fff;
}
.ref-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.ref-stat__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}
.filter-sticky {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--black, #F6F8F6);
  padding: 12px 0;
  border-bottom: 1px solid rgba(122,158,126,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: top 0.15s ease;
}
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0 20px;
}
.filter-pill {
  font-family: 'DM Sans', sans-serif;
  background: transparent;
  border: 1.5px solid rgba(122,158,126,0.4);
  color: rgba(31,42,36,0.7);
  padding: 6px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-pill:hover {
  border-color: #7A9E7E;
  color: #7A9E7E;
}
.filter-pill.active {
  background: #7A9E7E;
  color: #fff;
  border-color: #7A9E7E;
}
.ref-section {
  padding: 40px 20px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.dynamic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}
.ref-item {
  display: block;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  background: #e8ede9;
  margin-bottom: 0;
  animation: fadeUp 0.4s ease both;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  width: 100%;
  font: inherit;
}
.ref-item picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.ref-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 1 / 1;
}
.ref-item:hover img {
  transform: scale(1.07);
}
.card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #7A9E7E;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: fit-content;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.ref-item:hover .card-action-btn {
  transform: translateY(0);
  opacity: 1;
}
.card-action-btn:hover {
  background: #fff;
  color: #1F2A24;
}
.video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.skeleton {
  background: #e8ede9;
  background: linear-gradient(110deg, #e3e9e4 8%, #eef2ee 18%, #e3e9e4 33%);
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
  border-radius: 10px;
  min-height: 260px;
  margin-bottom: 12px;
  break-inside: avoid;
}
@keyframes shine {
  to { background-position-x: -200%; }
}
.ref-empty {
  text-align: center;
  padding: 80px 20px;
  color: rgba(31,42,36,0.4);
  font-family: 'DM Sans', sans-serif;
  grid-column: 1 / -1;
}
.ref-empty i {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  opacity: 0.3;
}
.ref-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(31,42,36,0.45);
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: 0.05em;
}
.ref-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ref-toolbar .ref-count {
  margin: 0;
  text-align: left;
}
.btn-refresh-gallery {
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(31,42,36,0.12);
  color: #1f2a24;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 10px 24px rgba(31,42,36,0.08);
}
.btn-refresh-gallery:hover {
  transform: translateY(-1px);
  background: #f6f9f6;
}
.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}
.btn-load-more {
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #7A9E7E;
  color: #7A9E7E;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-load-more:hover {
  background: #7A9E7E;
  color: #fff;
}
.lb-share {
  color: rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.lb-share:hover {
  color: rgba(255,255,255,0.65);
}
.lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}
.ref-cta {
  background: #1F2A24;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.ref-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin: 0 0 12px;
}
.ref-cta__sub {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.6);
  margin: 0 0 28px;
  font-size: 0.95rem;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #7A9E7E;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-cta:hover {
  background: #fff;
  color: #1F2A24;
  transform: scale(1.04);
}

/* Textil nav + related */
.cat-nav {
  background: var(--dark);
  border-bottom: 1px solid rgba(122,158,126,0.18);
  position: sticky;
  top: 0;
  z-index: 800;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
  justify-content: center;
  padding-inline: 1.5rem;
}
.cat-nav__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.cat-nav__item i { font-size: 0.9rem; }
.cat-nav__item:hover,
.cat-nav__item.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.related-products {
  background: #f6f8f6;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(122,158,126,0.28);
  text-align: center;
}
.related-products h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #3e4a42;
}
.related-products h3 a {
  color: #2f4233;
  text-decoration: none;
}
.related-products h3 a:hover {
  color: #7A9E7E;
}
.related-products ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem 1.5rem;
}
.related-products li {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(122,158,126,0.12);
  transition: all 0.28s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.related-products li:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.related-products li a {
  font-weight: 600;
  color: #2f4233;
  text-decoration: none;
  display: block;
  flex-grow: 1;
}
.related-products li a:hover {
  color: #7A9E7E;
}
.related-products li p {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.35rem;
}

/* Utilities */
.u-mt-0 { margin-top: 0 !important; }
.u-mt-sm { margin-top: 1rem !important; }
.u-mt-md { margin-top: 1.5rem !important; }
.u-mt-lg { margin-top: 2rem !important; }
.u-mt-xl { margin-top: 2.5rem !important; }
.u-mt-xxl { margin-top: 3rem !important; }
.u-mb-lg { margin-bottom: 2rem !important; }
.u-maxw-full { max-width: 100% !important; }
.u-pb-0 { padding-bottom: 0 !important; }
.u-container-narrow { max-width: 860px !important; }
.u-grid-two-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0;
}
.u-grid-hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.u-relative-z1 {
  position: relative;
  z-index: 1;
}
.u-flex-start-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  background: rgba(122,158,126,0.08);
  border: 1px solid rgba(122,158,126,0.2);
  border-radius: 6px;
}
.u-note-icon {
  color: #7A9E7E;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.u-note-title {
  color: #1F2A24;
  font-size: 0.9rem;
}
.u-text-note {
  font-size: 0.82rem;
  color: #6E7F75;
  margin-top: 0.85rem;
}
.u-text-soft {
  font-size: 0.95rem;
  color: #6E7F75;
  line-height: 1.78;
  margin-bottom: 1.75rem;
}
.u-text-muted-tight {
  font-size: 0.85rem;
  color: #6E7F75;
  margin: 0.3rem 0 0;
  line-height: 1.65;
}
.u-title-reset { margin: 0 !important; }
.u-inline-dark { color: #1F2A24 !important; }
.u-btn-center { justify-content: center; }
.u-tag-row-center { justify-content: center; }
.u-special-box {
  margin-top: 2.5rem;
  background: #EEF2EE;
  border: 1px solid rgba(122,158,126,0.2);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
}
.u-special-box-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A9E7E;
  margin-bottom: 1rem;
}
.u-contact-upload-note {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.u-home-icon-sm { font-size: 0.85rem; }
.u-lightbox-video {
  max-height: 68vh;
  max-width: 100%;
  border-radius: 6px;
}
.is-hidden { display: none !important; }
.u-tech-params-mt { margin-top: 1.5rem !important; }
.u-use-grid-mt { margin-top: 2rem !important; }
.u-use-grid-mt-sm { margin-top: 1.75rem !important; }

/* ── 22. LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  align-items: center; justify-content: center; padding: 2rem;
  overflow: auto;
}
.lightbox.is-open { display: flex; }
.lightbox__inner   {
  position: relative;
  max-width: min(1200px, calc(100vw - 8rem));
  width: min(1200px, calc(100vw - 8rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.lightbox__img     {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 16rem);
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}
.lightbox__img--hidden { display: none; }
.lightbox__iframe  { width: 100%; aspect-ratio: 16/9; border: none; border-radius: var(--radius-lg); display: block; }
.lightbox__caption { text-align: center; margin-top: 1rem; font-size: 0.88rem; color: rgba(255, 255, 255, 0.55); }
.lightbox__cta {
  margin: 1.25rem auto 0;
  display: inline-flex;
}
.lightbox__close {
  position: fixed; top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); border: none; color: #FFFFFF;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover { background: var(--gold); }
.lightbox__nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); border: none; color: #FFFFFF;
  font-size: 1.15rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox__nav:hover { background: var(--gold); }
.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }

/* ── 23. FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(122, 158, 126, 0.14);
  padding: 3rem 0 2rem;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 220px;
}
.footer__logo img { height: 44px; width: auto; aspect-ratio: auto 180/56; }
.footer__sections {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.footer__section {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 180px;
}
.footer__section-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer__section a,
.footer__section span,
.footer__contacts div {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}
.footer__section a:hover { color: var(--gold); }
.footer__copy { font-size: 0.8rem; color: var(--gray); }

.seo-inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.seo-inline-link:hover {
  color: var(--gold-dark);
  text-decoration-color: var(--gold-dark);
}

.sitewide-services {
  background:
    radial-gradient(circle at top right, rgba(122, 158, 126, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(122, 158, 126, 0.08), transparent 30%),
    linear-gradient(180deg, #f5f8f5 0%, #edf3ed 100%);
  border-top: 1px solid rgba(122, 158, 126, 0.16);
  position: relative;
  overflow: hidden;
}

.sitewide-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122, 158, 126, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 158, 126, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 85%);
  pointer-events: none;
}

.sitewide-services .container {
  position: relative;
  z-index: 1;
}

.sitewide-services__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 0.7rem;
}

.sitewide-services__hero-copy {
  border: 1px solid rgba(122, 158, 126, 0.16);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(31, 42, 36, 0.06);
}

.sitewide-services__hero-copy {
  padding: 0.8rem 0.95rem;
}

.sitewide-services__focus {
  margin-bottom: 0.7rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(122, 158, 126, 0.16);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(8px);
}

.sitewide-services__focus-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.sitewide-services__focus-kicker {
  display: inline-block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.sitewide-services__focus-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  line-height: 1.2;
  color: var(--white);
}

.sitewide-services__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.55rem;
}

.sitewide-services__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 158, 126, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--gray2);
  font-size: 0.64rem;
  line-height: 1.35;
  gap: 0.32rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.sitewide-services__chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  flex: 0 0 auto;
}

.sitewide-services__chip:hover,
.sitewide-services__chip.is-current {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.2), rgba(122, 158, 126, 0.1));
  color: var(--white);
}

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

.sitewide-services__card {
  padding: 0.68rem;
  border: 1px solid rgba(122, 158, 126, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 251, 248, 0.82) 100%);
  box-shadow: 0 6px 18px rgba(31, 42, 36, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.sitewide-services__card:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 158, 126, 0.34);
  box-shadow: 0 10px 22px rgba(31, 42, 36, 0.06);
}

.sitewide-services__card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.sitewide-services__card-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.2), rgba(122, 158, 126, 0.08));
  color: var(--gold-dark);
  font-size: 0.72rem;
}

.sitewide-services__card-title {
  margin: 0 0 0.22rem;
  font-family: var(--font-display);
  font-size: 0.84rem;
  line-height: 1.2;
}

.sitewide-services__card-title a {
  color: var(--white);
}

.sitewide-services__card-title a:hover,
.sitewide-services__card-title a[aria-current="page"] {
  color: var(--gold);
}

.sitewide-services__card-text {
  margin: 0 0 0.45rem;
  color: var(--gray);
  font-size: 0.68rem;
  line-height: 1.35;
}

.sitewide-services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.26rem;
}

.sitewide-services__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 158, 126, 0.18);
  background: rgba(122, 158, 126, 0.07);
  color: var(--gray2);
  font-size: 0.62rem;
  line-height: 1.35;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.sitewide-services__pill:hover,
.sitewide-services__pill[aria-current="page"] {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.18), rgba(122, 158, 126, 0.1));
  border-color: rgba(122, 158, 126, 0.32);
  color: var(--gold-dark);
}

/* ── 24. ABOUT ───────────────────────────────────────────────── */
#o-mne { padding-block: 0; }
.about { display: grid; grid-template-columns: 1fr 1.15fr; min-height: 620px; background: var(--black); }

.about__visual {
  position: relative; background: var(--dark3); overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: 500px;
}
.about__placeholder {
  position: absolute;
  inset: 1.5rem;
  border: 2px dashed rgba(122, 158, 126, 0.40);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.about__placeholder:hover { border-color: rgba(122, 158, 126, 0.70); }

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: calc(var(--radius-lg) - 2px);
}

.about__badge {
  position: absolute; bottom: 2.25rem; right: 2.25rem;
  background: var(--gold); color: #FFFFFF; border-radius: var(--radius);
  padding: 0.85rem 1.2rem; text-align: center;
  box-shadow: 0 8px 28px rgba(122, 158, 126, 0.35); line-height: 1.2;
  z-index: 2;
}
.about__badge strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
.about__badge span   { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; opacity: 0.88; }

.about__text {
  padding: 4.5rem 4rem; background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
}
.eyebrow { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.about__text .h2 { font-family: var(--font-display); font-size: clamp(1.65rem, 2.4vw, 2.35rem); font-weight: 700; line-height: 1.18; color: var(--white); margin-bottom: 0; }
.about__text .rule { width: 40px; height: 2px; background: var(--gold); margin-block: 1rem 1.5rem; }
.about__intro { font-size: 1rem; color: var(--gray); line-height: 1.72; margin-bottom: 0.9rem; }
.about__intro strong { color: var(--white); font-weight: 700; }
.about__body { font-size: 0.90rem; color: var(--gray); line-height: 1.70; margin-bottom: 0.75rem; }
.about__body:last-of-type { margin-bottom: 0; }
.about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-block: 1.75rem 2rem; }
.av-card {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--dark2); border: 1px solid rgba(31, 42, 36, 0.09);
  border-radius: var(--radius); padding: 0.9rem 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.av-card:hover { border-color: rgba(122, 158, 126, 0.32); background: var(--dark3); }
.av-card > i { color: var(--gold); font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }
.av-title { font-size: 0.88rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.av-sub   { font-size: 0.78rem; color: var(--gray); margin-top: 0.12rem; line-height: 1.4; }

/* ── 25. UTILITIES ───────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-gray   { color: var(--gray); }
.text-center { text-align: center; }
.text-highlight { color: var(--white); }
.icon-xs { font-size: 0.75rem; }
.container--narrow { max-width: 860px; }
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-two-tight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.text-block {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 1rem;
}
.text-block:last-child {
  margin-bottom: 0;
}
.text-block--lg {
  font-size: 1rem;
  line-height: 1.82;
}
.text-block--lead {
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
.link-inline {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-accent {
  color: var(--gold);
}
.link-accent-strong {
  color: var(--gold-dark);
  font-weight: 600;
}
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ══════════════════════════════════════════════════════════════
   26. RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* ── TABLET  768px – 1024px ──────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 4.5rem; }

  .hero { min-height: auto; }
  .hero__content    { padding-block: 3rem 2.5rem; }
  .hero__title      { font-size: clamp(2rem, 5vw, 3.2rem); }
  .hero__subtitle   { font-size: 1.1rem; }
  .hero__description { font-size: 0.97rem; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid     { grid-template-columns: 1fr 1fr; }
  .testi-grid    { grid-template-columns: 1fr 1fr; }

  .tech-header   { grid-template-columns: 1fr; gap: 1.5rem; }
  .quality-row   { grid-template-columns: 1fr; gap: 2rem; }
  .quality-img   { height: 260px; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }

  .strip         { grid-template-columns: repeat(3, 1fr); }
  .strip__cell   { height: 220px; }

  .why-section   { grid-template-columns: 1fr; }
  .why-section__img { display: none; }
  .why-section__content { padding: 4rem 2.5rem; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-gallery__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .ref-grid      { columns: 2; }
  .ref-header    { grid-template-columns: 1fr; gap: 1rem; }

  .about         { grid-template-columns: 1fr; }
  .about__visual { min-height: 420px; }
  .about__text   { padding: 3rem 2.5rem; }

  .navbar__logo img { height: 120px; }
}

@media (max-width: 900px) {
  .navbar__nav,
  .navbar__actions {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }
}

/* ── MOBIL  ≤ 640px ──────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --section-pad: 3.5rem; }

  .container { padding-inline: 1.1rem; }

  .navbar__inner {
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
    padding-block: 0.95rem 0.85rem;
  }

  .navbar__logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .navbar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding: 0.35rem 0.6rem;
  }

  .navbar__logo img { height: 120px; }

  .hero { min-height: auto; }
  .hero__content     { padding-block: 3rem 2rem; }
  .hero__title       { font-size: 1.75rem; }
  .hero__subtitle    { font-size: 1rem; }
  .hero__description { font-size: 0.92rem; }
  .hero__image-wrapper { margin-top: 1.5rem; }
  .hero__badges      { gap: 1rem; }
  .hero__badge-item  { font-size: 0.75rem; }

  .services-grid { grid-template-columns: 1fr; }
  .subsvc-hero { grid-template-columns: 1fr; }
  .subsvc-hub-grid,
  .subsvc-card-grid,
  .subsvc-offer-grid { grid-template-columns: 1fr; }
  .subsvc-hero__actions { flex-direction: column; }
  .subsvc-hero__actions .btn { width: 100%; justify-content: center; }
  .internal-links__inner { flex-direction: column; align-items: flex-start; }
  .packages-grid { grid-template-columns: 1fr; }
  .tech-grid     { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .about__values { grid-template-columns: 1fr; }

  /* Why grid mobile border fix */
  .why-item { border-right: none !important; }
  .why-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(31, 42, 36, 0.08); }
  .why-item:last-child { border-bottom: none; }
  .why-section__content { padding: 3.5rem 0; }

  .strip       { grid-template-columns: repeat(2, 1fr); }
  .strip__cell { height: 180px; }

  .ref-grid    { columns: 1; }
  .ref-header  { grid-template-columns: 1fr; }
  .ref-filters { gap: 0.35rem; }
  .ref-stats   { flex-direction: column; text-align: center; gap: 1.25rem; }
  .ref-stats__div { width: 80px; height: 1px; }

  .form-row  { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .service-gallery__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-gallery__header-cta {
    display: none;
  }
  .service-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .stats-bar__inner { gap: 1rem; }
  .stat-box         { padding-inline: 1rem; min-width: 120px; }
  .stat-box__div    { display: none; }
  .stat-box__num    { font-size: 2rem; }

  .about__text  { padding: 2.5rem 1.5rem; }
  .about__badge { bottom: 1.25rem; right: 1.25rem; }
  .about__visual { min-height: 360px; }

  .footer__inner { flex-direction: column; text-align: center; }

  .marquee-band {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .marquee-band::-webkit-scrollbar { display: none; }
  .marquee-band__track {
    animation: none;
    padding-inline: 1rem;
  }

  .lightbox     { padding: 1rem; }
  .lightbox__inner { width: calc(100vw - 2rem); max-width: calc(100vw - 2rem); }
  .lightbox__img { max-height: calc(100vh - 14rem); }
  .lightbox__nav {
    display: flex;
    position: fixed;
    top: auto;
    bottom: 1rem;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.18);
  }
  .lightbox__prev { left: 1rem; }
  .lightbox__next { right: 1rem; }
  .lightbox__close { top: 0.75rem; right: 0.75rem; }
  .lightbox__caption { margin-top: 0.75rem; font-size: 0.82rem; }
  .lightbox__cta {
    margin-top: 0.9rem;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-inline: 1rem;
  }

  .section-title { font-size: clamp(1.55rem, 6vw, 2.2rem); }
  .section-sub   { font-size: 0.92rem; }

  .pills { gap: 0.4rem; }
  .pill  { font-size: 0.82rem; padding: 0.45rem 0.9rem; }

  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .process-inner { gap: 2rem; }
  .contact-inner { gap: 2.5rem; }
}

/* ── EXTRA SMALL  ≤ 400px ────────────────────────────────────── */
@media (max-width: 400px) {
  .hero__title { font-size: 1.55rem; }
  .strip       { grid-template-columns: 1fr; }
  .strip__cell { height: 160px; }
  .ref-filters { justify-content: flex-start; }
  .service-gallery__grid { grid-template-columns: 1fr; }
}

/* ── Doplňující utility třídy ────────────────────────────────── */
.audience-section__title { font-size: clamp(1.4rem, 2.5vw, 1.7rem); }

.section--reference { padding: 80px 0 40px; }
.ref-grid-cta { text-align: center; margin-top: 40px; }

.ref-stats__cta { margin-left: auto; white-space: nowrap; }
@media (max-width: 640px) {
  .sitewide-services { display: none; }
  .ref-stats__cta { margin-left: 0; width: 100%; justify-content: center; }
  .navbar__actions { display: none; }
  .footer__container,
  .footer__sections {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__section { min-width: 0; }
  .ref-grid--homepage { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .ref-grid--homepage { grid-template-columns: repeat(3, 1fr); }
  .sitewide-services__hero { grid-template-columns: 1fr; }
  .sitewide-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 400px) {
  .ref-grid--homepage { grid-template-columns: 1fr; }
}
