/* invytrade.sk — firemný layout, nie šablóna
   IBM Plex web fonts: SIL Open Font License 1.1; see /assets/fonts/OFL.txt */

@font-face {
  font-family: "IBM Plex Serif";
  src: url("/assets/fonts/ibm-plex-serif-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #b11c0d;
  --red-dark: #8f160a;
  --ink: #141515;
  --ink-soft: #4a4f54;
  --line: #d8dadd;
  --paper: #faf9f7;
  --white: #fff;
  --max: min(1140px, calc(100% - 2.5rem));
  --text-max: 42rem;
  --text-wide: 46rem;
  --text-lead: 40rem;
  --font-sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-serif: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --hero-pad-top: clamp(1.1rem, 2.2vw, 1.75rem);
  --hero-pad-bottom: clamp(1.75rem, 4vw, 2.75rem);
  --hero-banner-min: clamp(220px, 28vw, 320px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0 0 .65em; line-height: 1.12; font-weight: 600; }
h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.8vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -.025em;
}
.home-hero h1 { max-width: 14ch; }
.page-intro h1,
.refs-hero h1,
.services-hero h1 {
  max-width: 18ch;
}
.service-hero h1 { max-width: none; }
h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); letter-spacing: -.02em; }
h3 { font-size: 1.15rem; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: var(--max); margin-inline: auto; }
.section { padding: 2rem 0 3rem; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  position: relative;
}
.brand img { width: min(196px, 46vw); height: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin-inline: auto;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.header-panel {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0 1.25rem;
  z-index: 50;
}
.header-panel.is-open { display: block; }

.mainnav ul { display: grid; gap: .15rem; }
.mainnav a {
  display: block;
  padding: .55rem 0;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
}
.mainnav a:hover { color: var(--red); }

.header-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.header-phone {
  text-decoration: none;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .header-panel {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: static;
    border: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
  }
  .mainnav ul {
    display: flex;
    gap: 1.75rem;
  }
  .mainnav a { padding: 0; }
  .header-end {
    margin: 0; padding: 0; border: 0;
  }
}

/* Buttons & links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.15rem;
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-solid {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
a.btn-solid,
.prose a.btn-solid {
  color: #fff;
}
.btn-solid:hover,
a.btn-solid:hover,
.prose a.btn-solid:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}
.btn-line {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
a.btn-line,
.prose a.btn-line {
  color: var(--ink);
}
.btn-line:hover,
a.btn-line:hover,
.prose a.btn-line:hover {
  border-color: var(--red);
  color: var(--red);
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.text-link:hover { color: var(--red); }

/* Homepage hero */
.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--white) 55%);
}
.home-hero__visual {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 28%;
  bottom: -8%;
  width: min(72vw, 420px);
  pointer-events: none;
  user-select: none;
}
.home-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 35%;
  opacity: 0.15;
}
.home-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, transparent 28%, transparent 72%, var(--white) 100%),
    linear-gradient(180deg, var(--paper) 0%, transparent 22%, transparent 68%, var(--white) 100%);
  pointer-events: none;
}
@media (min-width: 900px) {
  .home-hero__visual {
    top: 18%;
    bottom: -12%;
    width: min(46vw, 560px);
    right: max(0px, calc((100vw - min(1140px, calc(100% - 2.5rem))) / 2 - 2rem));
  }
}
.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .home-hero__grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 3rem;
    align-items: stretch;
    min-height: clamp(18rem, 32vw, 24rem);
  }
}
.home-hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 38rem;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin: 1.75rem 0 0;
}

.home-hero__aside {
  border-left: 3px solid var(--red);
  padding: .25rem 0 .25rem 1.25rem;
  color: var(--ink-soft);
  font-size: .98rem;
}
@media (min-width: 900px) {
  .home-hero__aside {
    align-self: end;
    justify-self: end;
    text-align: right;
    border-left: 0;
    border-right: 3px solid var(--red);
    padding: .25rem 1.25rem .25rem 0;
    max-width: 22rem;
  }
}
.aside-kicker {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .85rem;
}
.aside-phone a {
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.aside-phone a:hover { color: var(--red); }
.aside-mail a { text-decoration: none; }
.aside-mail a:hover { color: var(--red); }
.aside-address { margin-bottom: 0; }

/* Service rows */
.home-section-title {
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}
.home-services {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.service-rows { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  gap: .35rem 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 760px) {
  .service-row {
    grid-template-columns: minmax(220px, 1fr) 1.4fr auto;
    align-items: center;
  }
}
.service-row h3 { margin: 0; }
.service-row h3 a {
  text-decoration: none;
  color: var(--ink);
}
.service-row h3 a:hover { color: var(--red); }
.service-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .98rem;
}
.service-row__go {
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--red);
  justify-self: end;
}
.service-row__go:hover { color: var(--red-dark); }

/* Featured project */
.home-project {
  background: var(--ink);
  color: #ececec;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.home-project a { color: #fff; text-decoration: none; }
.home-project a:hover { color: #ffb9b0; }
.home-project__label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a8adb2;
  margin-bottom: .75rem;
}
.home-project h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  max-width: 22ch;
}
.home-project p { color: #d2d5d8; max-width: 42rem; }
.home-project__meta {
  margin: 0;
  font-size: .9rem;
  color: #9aa0a6;
}

/* About */
.home-about {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}
.home-about__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .home-about__grid { grid-template-columns: 1.2fr .8fr; gap: 3rem; }
}
.home-about__side {
  padding-top: .15rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) {
  .home-about__side {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 2rem;
  }
}

/* Brands strip */
.home-brands {
  padding: 1.75rem 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.home-brands__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem 1.5rem;
}
.home-brands p { margin: 0; color: var(--ink-soft); }

/* Contact closing */
.home-contact {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}
.home-contact h2 { max-width: 20ch; }
.home-contact p { color: var(--ink-soft); max-width: 36rem; }
.home-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0 0;
}

/* Inner pages */
.page-intro {
  height: auto;
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.page-intro__inner { max-width: var(--text-wide); }
.page-intro__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: var(--text-lead);
}
.hub-list { padding: 2rem 0 3rem; }

/* Certificates page */
.cert-iso { margin-bottom: 2.75rem; }
.cert-iso__grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 800px) {
  .cert-iso__grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 2.25rem;
  }
}
.cert-iso__badge {
  margin: 0;
  background: var(--white);
  padding: .75rem 1rem;
  border: 1px solid var(--line);
}
.cert-iso__badge img {
  width: 100%;
  height: auto;
  display: block;
}
.cert-iso__standards {
  margin: 1rem 0;
  padding-left: 1.1rem;
  list-style: disc;
}
.cert-iso__standards li { margin-bottom: .45rem; }
.cert-iso__num {
  color: var(--ink-soft);
  font-size: .92rem;
}
.cert-iso__meta {
  color: var(--ink-soft);
  font-size: .95rem;
}
.cert-iso__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  margin: 1.25rem 0 1rem;
}
.cert-iso__note {
  font-size: .9rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.cert-sika {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.prose { max-width: var(--text-max); }

/* References catalog */
.refs-highlight {
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--line);
}
.ref-catalog {
  padding: 2rem 0 3rem;
}
.ref-catalog__group + .ref-catalog__group {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.ref-catalog__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.ref-catalog__lead {
  color: var(--ink-soft);
  max-width: 44rem;
  margin-bottom: 1rem;
}
.ref-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  background: var(--white);
}
.ref-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  font-size: .92rem;
}
.ref-table th,
.ref-table td {
  padding: .65rem .75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.ref-table th {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
}
.ref-table tbody tr:last-child td { border-bottom: 0; }
.ref-table td:nth-child(4) { min-width: 14rem; }
.ref-table--projects { min-width: 52rem; }
.ref-table th.ref-table__num,
.ref-table td.ref-table__num {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.ref-catalog--projects {
  padding-top: 0;
  border-top: 1px solid var(--line);
}

/* Reference letters */
.ref-letters {
  padding: 0 0 2.5rem;
  border-bottom: 1px solid var(--line);
}
.ref-letters__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .ref-letters__grid { grid-template-columns: 1fr 1fr; }
}
.ref-letter {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.15rem 1.25rem;
}
.ref-letter__no {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 .35rem;
}
.ref-letter__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}
.ref-letter__head { margin-bottom: 1rem; }
.ref-letter__meta {
  display: grid;
  gap: .75rem;
  margin: 0;
}
.ref-letter__meta div { margin: 0; }
.ref-letter__meta dt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .2rem;
}
.ref-letter__meta dd {
  margin: 0;
  font-size: .92rem;
  color: var(--ink);
}
.ref-letter__sub,
.ref-letter__addr,
.ref-letter__contact {
  display: block;
  color: var(--ink-soft);
  font-size: .88rem;
  margin-top: .25rem;
}
.ref-letter__price {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.ref-letters__total {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .95rem;
  color: var(--ink-soft);
}

.ref-catalog--detail {
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

/* References hub — featured grid, filters, gallery */
.home-refs-teaser {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}
/* References page hero */
.refs-hero {
  position: relative;
  min-height: var(--hero-banner-min);
  background: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.refs-hero__banner {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.refs-hero__banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.refs-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  min-height: var(--hero-banner-min);
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
}
.refs-hero__copy {
  max-width: min(40rem, 52%);
}
.refs-hero h1 {
  margin: 0;
  line-height: 1.15;
}
.refs-hero__lead {
  margin: .85rem 0 0;
  font-size: clamp(1.05rem, 1.65vw, 1.22rem);
  font-weight: 500;
  line-height: 1.45;
  color: #1565c0;
  max-width: 34rem;
}
.refs-hero__body {
  margin-top: 1.1rem;
  max-width: 36rem;
  font-size: .98rem;
  color: var(--ink-soft);
}
.refs-hero__body p {
  margin: 0 0 .75rem;
}
.refs-hero__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .refs-hero__copy { max-width: 100%; }
  .refs-hero__banner img { object-position: 78% center; }
}

/* Services hub page */
.services-hero {
  position: relative;
  min-height: var(--hero-banner-min);
  background: #111;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.services-hero__bg {
  position: absolute;
  inset: 0;
}
.services-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.services-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 12, 14, .78) 0%, rgba(10, 12, 14, .45) 42%, rgba(10, 12, 14, .12) 100%);
  pointer-events: none;
}
.services-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  min-height: var(--hero-banner-min);
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
}
.services-hero__copy {
  max-width: 38rem;
  color: #fff;
}
.services-hero h1 {
  margin: 0;
  color: #fff;
  line-height: 1.12;
}
.services-hero__lead {
  margin: .9rem 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
  max-width: 34rem;
}
.services-hero__lead::after {
  content: '';
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 1.1rem;
  background: var(--red);
}
.services-hub {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--paper);
}
.services-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
}
.services-cards > li {
  display: flex;
  min-height: 0;
  background: #1c2128;
}
.services-card {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #1c2128;
  color: #fff;
}
.services-card__link {
  display: grid;
  grid-template-rows: auto 1fr auto;
  flex: 1;
  min-height: 17.5rem;
  height: 100%;
  padding: 1.2rem 1rem 1.05rem;
  gap: .85rem;
  color: inherit;
  text-decoration: none;
}
.services-card__link:hover .services-card__title {
  color: #f4b4ad;
}
.services-card__icon {
  display: flex;
  align-items: flex-end;
  height: 2.25rem;
  color: var(--red);
  line-height: 0;
}
.services-card__icon svg {
  display: block;
  width: 2rem;
  height: auto;
  max-height: 2rem;
}
.services-card__body {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-height: 0;
}
.services-card__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  min-height: 2.7rem;
}
.services-card__rule {
  display: block;
  width: 1.75rem;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.services-card__lead {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .74);
}
.services-card__go {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  align-self: flex-start;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.services-card__arrow {
  display: block;
}
.services-card__link:hover .services-card__go,
.services-card__link:focus-visible .services-card__go {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
@media (max-width: 1080px) {
  .services-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 1px;
  }
  .services-cards > li {
    background: #1c2128;
  }
  .services-card__link {
    min-height: 15.5rem;
  }
}
@media (max-width: 640px) {
  .services-cards {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .services-card__link {
    min-height: 0;
  }
}

.ref-featured-grid {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}
.ref-featured-cards {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .ref-featured-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .ref-featured-cards { grid-template-columns: repeat(3, 1fr); }
  .ref-featured-cards--home { grid-template-columns: repeat(3, 1fr); }
}
.ref-featured-card {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  height: 100%;
}
.ref-featured-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.ref-featured-card__link:hover h3 { color: var(--red); }
.ref-featured-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e4df;
  border-bottom: 1px solid var(--line);
}
.ref-featured-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ref-featured-card__body {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem 1.05rem;
  flex: 1;
}
.ref-featured-card__no {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  min-height: 1em;
  margin: 0 0 .45rem;
}
.ref-featured-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.35;
  min-height: 4.05em;
  margin: 0 0 .85rem;
}
.ref-featured-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .65rem;
  margin: auto 0 0;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
  font-size: .84rem;
  line-height: 1.4;
  color: var(--ink-soft);
}
.ref-featured-card__meta span:not(.ref-featured-card__category)::before {
  content: "·";
  margin-right: .65rem;
  color: var(--red);
}
.ref-featured-card__category { flex-basis: 100%; }
.ref-featured-card__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .8rem;
  padding-top: .7rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: uppercase;
  color: var(--ink);
}
.ref-featured-card__cta b {
  font-size: 1rem;
  color: var(--red);
  transition: transform .18s ease;
}
.ref-featured-card__link:hover .ref-featured-card__cta b { transform: translateX(.2rem); }
@media (max-width: 639px) {
  .ref-featured-card h3 { min-height: 0; }
}
.ref-catalog-hub {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}
.ref-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-end;
  margin: 1.25rem 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.ref-filters label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 10rem;
}
.ref-filters__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ref-filters select {
  font: inherit;
  padding: .45rem .6rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.ref-filters__count {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-soft);
  flex: 1 1 100%;
}
@media (min-width: 720px) {
  .ref-filters__count { flex: 1 1 auto; text-align: right; margin-left: auto; }
}
@media (max-width: 719px) {
  .ref-filters label {
    width: 100%;
    min-width: 0;
  }
  .ref-filters select { width: 100%; min-height: 2.75rem; }
}
.ref-table--catalog { min-width: 56rem; }
.ref-catalog-link {
  display: inline-block;
  margin-left: .35rem;
  font-size: .85rem;
  white-space: nowrap;
}
.ref-catalog-data-row.is-hidden { display: none; }
@media (max-width: 719px) {
  .ref-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .ref-table {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .ref-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .ref-table tbody {
    display: grid;
    gap: .8rem;
  }
  .ref-table tbody tr {
    display: block;
    padding: .35rem 1rem;
    border: 1px solid var(--line);
    background: var(--white);
  }
  .ref-table tbody td,
  .ref-table tbody td:nth-child(4),
  .ref-table th.ref-table__num,
  .ref-table td.ref-table__num {
    display: grid;
    grid-template-columns: minmax(6.75rem, 36%) minmax(0, 1fr);
    gap: .75rem;
    min-width: 0;
    padding: .65rem 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .ref-table tbody td:last-child { border-bottom: 0; }
  .ref-table tbody td::before {
    content: attr(data-label);
    color: var(--ink-soft);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.4;
    text-transform: uppercase;
  }
  .ref-table--catalog tbody tr {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "year type"
      "title title"
      "client client"
      "price price";
    gap: 0 .75rem;
    padding: 1rem;
  }
  .ref-table--catalog tbody td {
    display: block;
    padding: 0;
    border: 0;
  }
  .ref-table--catalog tbody td::before { display: block; margin-bottom: .2rem; }
  .ref-table--catalog tbody td:nth-child(1) { grid-area: year; color: var(--red); font-weight: 600; }
  .ref-table--catalog tbody td:nth-child(2) { grid-area: type; }
  .ref-table--catalog tbody td:nth-child(3) { grid-area: client; margin-top: .85rem; padding-top: .75rem; border-top: 1px solid var(--line); }
  .ref-table--catalog tbody td:nth-child(4) { grid-area: title; margin-top: .9rem; font-size: 1rem; font-weight: 600; line-height: 1.4; }
  .ref-table--catalog tbody td:nth-child(5) { grid-area: price; margin-top: .75rem; }
  .ref-catalog-link {
    display: block;
    width: fit-content;
    min-height: 2.75rem;
    margin: .65rem 0 0;
    padding: .6rem .8rem;
    border: 1px solid var(--red);
    color: var(--red);
    line-height: 1.45;
  }
}
.ref-gallery {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.ref-gallery__note {
  color: var(--ink-soft);
  font-size: .92rem;
  margin-bottom: 1rem;
}
.ref-gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}
.ref-gallery__item {
  margin: 0;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e4df;
}
.ref-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ref-detail-meta {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.ref-letter--detail {
  max-width: 52rem;
}
.ref-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.ref-detail__tags span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
}
.ref-related {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.ref-catalog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
}
.ref-catalog-list--compact .ref-catalog-row {
  display: grid;
  grid-template-columns: 4rem 1fr 2fr auto;
  gap: .75rem 1rem;
  padding: .65rem .85rem;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  align-items: baseline;
}
.ref-catalog-list--compact .ref-catalog-row:last-child { border-bottom: 0; }
@media (max-width: 720px) {
  .ref-catalog-list--compact .ref-catalog-row {
    grid-template-columns: 1fr;
    gap: .2rem;
  }
  .ref-catalog-row__price {
    text-align: left;
    white-space: normal;
  }
}
.ref-catalog-row__year { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.ref-catalog-row__price {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ref-vo-annex {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 3rem;
}
.ref-vo-annex__details {
  border: 1px solid var(--line);
  background: var(--white);
}
.ref-vo-annex__summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-family: var(--font-sans);
  font-weight: 600;
  list-style: none;
}
.ref-vo-annex__summary::-webkit-details-marker { display: none; }
.ref-vo-annex__summary::before {
  content: '▸';
  display: inline-block;
  margin-right: .5rem;
  transition: transform .15s ease;
}
.ref-vo-annex__details[open] .ref-vo-annex__summary::before { transform: rotate(90deg); }
.ref-vo-annex__body {
  padding: 0 1.15rem 1.25rem;
  border-top: 1px solid var(--line);
}

.prose a { color: var(--red); }
.contact-block {
  padding: 2rem 0 3rem;
  max-width: var(--text-max);
}

/* Service page hero */
.service-hero {
  height: auto;
  padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 62%);
}
.service-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.service-hero__copy { min-width: 0; }
@media (min-width: 900px) {
  .service-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}
.service-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--ink-soft);
  max-width: var(--text-lead);
  margin-top: .65rem;
}
.service-hero__body {
  margin-top: .85rem;
  max-width: var(--text-max);
  font-size: .95rem;
}
.service-hero__body p {
  margin: 0 0 .55rem;
}
.service-hero__media {
  margin: 0;
  height: clamp(220px, 34vw, 340px);
  max-height: 340px;
  overflow: hidden;
  background: #e8e4df;
  border: 1px solid var(--line);
}
.service-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero__img--placeholder {
  object-fit: cover;
}

/* Service pages */
.service-scope {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
}
.service-scope__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.service-scope__grid--media {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .service-scope__grid--media {
    grid-template-columns: 1fr minmax(220px, .9fr);
    gap: clamp(1.5rem, 3vw, 3rem);
  }
}
.service-scope__grid--media .scope-list {
  max-width: none;
}
.service-scope__media {
  margin: 0;
  justify-self: center;
}
.service-scope__media img {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  margin-inline: auto;
}
.service-scope__note {
  margin-top: 1.35rem;
  max-width: var(--text-wide);
  color: var(--ink-soft);
  font-size: .98rem;
}
.service-scope__note .text-link {
  white-space: nowrap;
}
.scope-list {
  display: grid;
  gap: .65rem;
  max-width: var(--text-max);
}
.scope-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink-soft);
}
.scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  background: var(--red);
}

.specialties-hub {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.service-back {
  padding: 0 0 1.5rem;
}

.service-cta {
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.service-cta__inner {
  display: grid;
  gap: 1.25rem;
  align-items: end;
}
@media (min-width: 800px) {
  .service-cta__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.service-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  max-width: 22ch;
}
.service-cta p { color: var(--ink-soft); margin-bottom: 0; max-width: 36rem; }
.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0;
}

/* About page */
.about-content {
  padding: 2rem 0 2.5rem;
}
.about-content__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .about-content__grid {
    grid-template-columns: 1.35fr .85fr;
    gap: 3rem;
    align-items: start;
  }
}
.about-section-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.reference-data-title { white-space: nowrap; }

/* Blog a odborné články */
.blog-hub { padding: clamp(2rem, 5vw, 4rem) 0; }
.blog-card { display: grid; border: 1px solid var(--line); background: var(--white); }
@media (min-width: 800px) { .blog-card { grid-template-columns: 1.15fr .85fr; } }
.blog-card__media { min-height: 18rem; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.4rem, 4vw, 3rem); }
.blog-card__body h2 { font-family: var(--font-serif); font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.15; margin: .4rem 0 1rem; }
.blog-card__body h2 a { color: inherit; text-decoration: none; }
.blog-eyebrow { margin: 0; color: var(--red); font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.blog-article__hero { padding: clamp(2rem, 5vw, 4.5rem) 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.blog-article__hero-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 940px) { .blog-article__hero-grid { grid-template-columns: .85fr 1.15fr; } }
.blog-article__hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 4.3rem); line-height: 1.02; margin: .6rem 0 1rem; }
.blog-article__lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-soft); line-height: 1.55; }
.blog-article__meta { font-size: .82rem; color: var(--ink-soft); }
.blog-article__hero figure { margin: 0; }
.blog-article__hero img { display: block; width: 100%; height: auto; border: 1px solid var(--line); }
.blog-article__layout { display: grid; gap: clamp(2rem, 5vw, 5rem); padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(3rem, 6vw, 6rem); }
@media (min-width: 980px) { .blog-article__layout { grid-template-columns: 15rem minmax(0, 48rem); justify-content: center; align-items: start; } }
.blog-toc { display: flex; flex-direction: column; gap: .65rem; padding: 1rem; border-left: 3px solid var(--red); background: var(--paper); font-size: .88rem; }
@media (min-width: 980px) { .blog-toc { position: sticky; top: 6rem; } }
.blog-toc a { color: var(--ink-soft); text-decoration: none; }
.blog-toc a:hover { color: var(--red); }
.blog-prose { min-width: 0; font-size: 1.02rem; line-height: 1.75; }
.blog-prose h2 { font-family: var(--font-serif); font-size: clamp(1.7rem, 3.5vw, 2.55rem); line-height: 1.15; margin: 3rem 0 1rem; scroll-margin-top: 6rem; }
.blog-prose h3 { font-family: var(--font-sans); font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.3; margin: .25rem 0 .75rem; }
.blog-prose h4 { margin: 0 0 .5rem; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.blog-perex { font-size: 1.18rem; font-weight: 500; color: var(--ink); }
.blog-checklist { padding-left: 1.25rem; }
.blog-checklist li { margin-bottom: .75rem; }
.blog-note { margin: 1.5rem 0; padding: 1.1rem 1.25rem; border-left: 3px solid var(--red); background: var(--paper); }
.blog-verdict { margin: 2rem 0; padding: clamp(1.25rem, 4vw, 2rem); border: 1px solid var(--red); background: #fff8f6; }
.blog-verdict h2 { margin-top: 0; }
.blog-verdict--final { border-color: var(--ink); background: var(--paper); }
.blog-table-wrap { margin: 1.25rem 0; overflow-x: auto; border: 1px solid var(--line); }
.blog-table { width: 100%; min-width: 42rem; border-collapse: collapse; font-size: .9rem; line-height: 1.5; }
.blog-table th, .blog-table td { padding: .8rem .9rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.blog-table th { background: var(--ink); color: var(--white); font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; }
.blog-table tbody tr:last-child td { border-bottom: 0; }
.blog-fit-grid { display: grid; gap: 1rem; margin: 1.25rem 0; }
@media (min-width: 680px) { .blog-fit-grid { grid-template-columns: 1fr 1fr; } }
.blog-fit-grid section { padding: 1.15rem; border: 1px solid var(--line); background: var(--paper); }
.blog-fit-grid h3 { margin-top: 0; }
.blog-fit-grid ul { margin-bottom: 0; padding-left: 1.15rem; }
.cooling-chain { list-style: none; margin: 1.25rem 0; padding: 0; counter-reset: cooling-chain; }
.cooling-chain li { display: grid; grid-template-columns: 2rem 1fr; gap: .25rem .8rem; padding: .9rem 0; border-bottom: 1px solid var(--line); counter-increment: cooling-chain; }
.cooling-chain li::before { content: counter(cooling-chain, decimal-leading-zero); grid-row: 1 / 3; color: var(--red); font-weight: 600; }
.cooling-chain strong, .cooling-chain span { grid-column: 2; }
.cooling-chain span { color: var(--ink-soft); font-size: .92rem; }
.blog-table--sources { min-width: 62rem; }
@media (max-width: 719px) {
  .blog-table-wrap {
    overflow: visible;
    border: 0;
  }
  .blog-table,
  .blog-table--sources {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .blog-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .blog-table tbody {
    display: grid;
    gap: .8rem;
  }
  .blog-table tbody tr {
    display: block;
    padding: .35rem 1rem;
    border: 1px solid var(--line);
    background: var(--white);
  }
  .blog-table tbody td {
    display: grid;
    grid-template-columns: minmax(6.5rem, 37%) minmax(0, 1fr);
    gap: .75rem;
    padding: .7rem 0;
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
  }
  .blog-table tbody td:last-child { border-bottom: 0; }
  .blog-table tbody td::before {
    content: attr(data-label);
    color: var(--ink-soft);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1.4;
    text-transform: uppercase;
  }
}
.cooling-type { position: relative; margin: 1.25rem 0; padding: 1.4rem; border: 1px solid var(--line); background: var(--white); }
.cooling-type__number { position: absolute; right: 1rem; top: .75rem; color: #827d78; font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600; }
.cooling-type h3 { padding-right: 3rem; }
.cooling-type__visual { margin: 1rem -1.4rem 1.25rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.cooling-type__visual img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cooling-type__visual figcaption { padding: .65rem 1.4rem; color: var(--ink-soft); font-size: .82rem; line-height: 1.45; }
.cooling-type__cols { display: grid; gap: 1rem; margin-top: 1rem; }
@media (min-width: 680px) { .cooling-type__cols { grid-template-columns: 1fr 1fr; } }
.cooling-type__cols > div { padding: 1rem; background: var(--paper); }
.cooling-type__cols ul { margin: 0; padding-left: 1.1rem; font-size: .93rem; }
.blog-decision-grid { display: grid; gap: .75rem; }
@media (min-width: 640px) { .blog-decision-grid { grid-template-columns: 1fr 1fr; } }
.blog-decision-grid div { display: flex; flex-direction: column; gap: .25rem; padding: 1rem; border: 1px solid var(--line); }
.blog-decision-grid span { color: var(--ink-soft); font-size: .9rem; }
.blog-cta { margin-top: 3rem; padding: clamp(1.5rem, 5vw, 3rem); background: var(--ink); color: var(--white); }
.blog-cta .blog-eyebrow { color: #ff8a80; }
.blog-cta h2 { margin-top: .5rem; color: var(--white); }
.blog-sources { margin-top: 3rem; font-size: .88rem; color: var(--ink-soft); }
.blog-sources ul { padding-left: 1.1rem; }
.contact-form-section { padding: clamp(2.5rem, 6vw, 5rem) 0; border-top: 1px solid var(--line); background: var(--paper); scroll-margin-top: 5rem; }
.contact-form-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .contact-form-grid { grid-template-columns: .7fr 1.3fr; } }
.contact-form { display: grid; gap: 1rem; }
@media (min-width: 640px) { .contact-form { grid-template-columns: 1fr 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .85rem; font-weight: 600; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; padding: .75rem; border: 1px solid var(--line); background: var(--white); font: inherit; color: var(--ink); }
.contact-form__wide { grid-column: 1 / -1; }
.contact-form__consent { display: grid !important; grid-template-columns: auto 1fr; align-items: start; font-weight: 400 !important; }
.contact-form__trap { position: absolute !important; left: -9999px; }
.contact-form__alert { margin: 0; padding: .9rem 1rem; border: 1px solid #a72a1d; border-left-width: 4px; background: #fff2ef; color: #75170d; font-size: .9rem; line-height: 1.5; }
.contact-form__alert:focus { outline: 3px solid rgba(177, 28, 13, .25); outline-offset: 2px; }
.contact-form__status { margin: 0; color: var(--ink-soft); font-size: .85rem; }
.contact-form button:disabled { cursor: wait; opacity: .55; }
.about-history p:last-child { margin-bottom: 0; }
.about-leadership {
  border-left: 3px solid var(--red);
  padding-left: 1.25rem;
}
.about-leadership__name {
  font-weight: 600;
  margin: 1rem 0 .25rem;
}
.about-leadership__meta {
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 0;
}

.about-facts {
  padding: 2.5rem 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.facts-table {
  display: grid;
  gap: .85rem;
  max-width: 46rem;
  margin: 0 0 1.25rem;
}
.facts-table > div {
  display: grid;
  gap: .2rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .facts-table > div {
    grid-template-columns: 11rem 1fr;
    gap: 1rem;
    align-items: baseline;
  }
}
.facts-table dt {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
}
.facts-table dd { margin: 0; color: var(--ink-soft); }
.about-sidlo-note {
  font-size: .92rem;
  color: var(--ink-soft);
  max-width: 46rem;
  margin: 0;
}

.about-registry {
  padding: 2.5rem 0;
}
.about-registry__intro {
  max-width: 42rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.registry-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .registry-cards { grid-template-columns: 1fr 1fr; }
}
.registry-card {
  border: 1px solid var(--line);
  padding: 1.25rem 1.35rem;
  background: var(--white);
}
.registry-card h3 {
  font-size: 1.05rem;
  margin-bottom: .65rem;
}
.registry-card p {
  color: var(--ink-soft);
  font-size: .98rem;
  margin-bottom: .85rem;
}
.registry-card p:last-child { margin-bottom: 0; }

.about-links {
  padding: 1.5rem 0 3rem;
  border-top: 1px solid var(--line);
}
.about-links__inner p { margin: 0; }

/* Capabilities */
.capabilities,
.capabilities-teaser,
.partners-block {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}
.capabilities__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  margin-bottom: .65rem;
}
.capabilities__intro {
  color: var(--ink-soft);
  max-width: 44rem;
  margin-bottom: 1.5rem;
}
.capabilities__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.capability-card {
  border: 1px solid var(--line);
  padding: 1.2rem 1.3rem;
  background: var(--white);
}
.capability-card--media {
  position: relative;
  overflow: hidden;
  min-height: 12.5rem;
}
.capability-card__watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
}
.capability-card__content {
  position: relative;
  z-index: 1;
}
.capability-card h3 {
  font-size: 1.02rem;
  margin-bottom: .5rem;
}
.capability-card__intro {
  font-size: .95rem;
  color: var(--ink-soft);
  margin-bottom: .75rem;
}
.capability-card__list {
  display: grid;
  gap: .45rem;
}
.capability-card__list li {
  font-size: .92rem;
  color: var(--ink-soft);
  padding-left: .9rem;
  position: relative;
}
.capability-card__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--red);
}
.capabilities-teaser__list {
  display: grid;
  gap: .85rem;
  max-width: 46rem;
  margin-bottom: 1rem;
}
.capabilities-teaser__list li {
  color: var(--ink-soft);
  font-size: .98rem;
}
.partners-block {
  background: var(--paper);
}
.partners-block__inner { max-width: 46rem; }
.partners-block__meta {
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}
.about-cooperation {
  padding: 0 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.about-trade {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.about-trade__lead {
  color: var(--ink-soft);
  max-width: 44rem;
  margin-bottom: 1.75rem;
}
.about-trade__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 900px) {
  .about-trade__grid { grid-template-columns: 1.1fr .9fr; }
}
.about-trade__grid h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  margin-bottom: .65rem;
}
.about-trade__region {
  font-size: .95rem;
  color: var(--ink-soft);
  margin: .75rem 0 0;
}
.about-trade__partner { margin-bottom: 1rem; }
.about-trade__contact {
  font-size: .95rem;
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 3px solid var(--red);
  background: var(--paper);
  padding: 2rem 0 1rem;
  color: var(--ink-soft);
  font-size: .92rem;
}
.site-footer a { text-decoration: none; color: var(--ink); }
.site-footer a:hover { color: var(--red); }
.footer-top {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.25rem;
  align-items: start;
}
@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, .9fr) minmax(0, .9fr);
    gap: 1.5rem 1.5rem;
  }
}
.footer-name {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}
.footer-meta { font-size: .85rem; }
.footer-social {
  margin-top: .85rem;
}
.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .92rem;
  font-weight: 500;
}
.footer-social__icon {
  flex-shrink: 0;
  color: var(--ink);
}
.footer-social__link:hover .footer-social__icon {
  color: var(--red);
}
.footer-iso {
  margin-top: 0;
}
.footer-iso__link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  text-decoration: none;
}
.footer-iso__badge {
  display: block;
  width: min(100%, 180px);
  height: auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: .25rem .35rem;
}
.footer-iso__text {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-iso__link:hover .footer-iso__text { color: var(--red); }
.footer-label {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .45rem;
}
.footer-sublabel {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .4rem;
}
.footer-links {
  display: grid;
  gap: .2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a { font-size: .9rem; }
.footer-bottom {
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
}
.footer-bottom p { margin: 0; }
.footer-credit {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-credit:hover {
  color: var(--red);
  border-bottom-color: currentColor;
}
.footer-cookie-settings {
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
  color: var(--red);
  border-bottom-color: currentColor;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 300;
  max-width: 36rem;
  margin-inline: auto;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20, 21, 21, .12);
}
.cookie-banner p {
  margin: 0 0 .95rem;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.cookie-banner a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.cookie-banner__actions .btn {
  min-height: 2.75rem;
  padding: .55rem 1rem;
  font-size: .9rem;
}

/* CANPACK case study */
.case-study { overflow: hidden; }
.case-study h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.35rem); max-width: 17ch; }
.case-eyebrow,
.case-kicker {
  margin: 0 0 .85rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.case-hero {
  position: relative;
  min-height: clamp(610px, 78vh, 850px);
  display: grid;
  align-items: end;
  isolation: isolate;
  background: #171818;
  color: #fff;
}
.case-hero__image,
.case-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.case-hero__image { z-index: -2; object-fit: cover; object-position: center 56%; }
.case-hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8,9,9,.92) 0%, rgba(8,9,9,.68) 52%, rgba(8,9,9,.18) 100%),
              linear-gradient(0deg, rgba(8,9,9,.72), transparent 55%);
}
.case-hero__content { padding-block: clamp(4rem, 9vw, 7rem) 3rem; }
.case-hero h1 { max-width: 16ch; font-size: clamp(2.65rem, 6.5vw, 5.6rem); line-height: 1.01; }
.case-hero__content > p:not(.case-kicker) { max-width: 44rem; color: rgba(255,255,255,.84); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.case-kicker { color: #ff7467; }
.case-facts { display: grid; gap: .75rem; margin-top: 2.2rem; }
.case-facts li { padding-top: .7rem; border-top: 1px solid rgba(255,255,255,.3); }
.case-facts span { display: block; color: rgba(255,255,255,.58); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.case-facts strong { font-size: .95rem; }
@media (min-width: 700px) {
  .case-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 48rem; gap: 1.5rem; }
}
.case-summary,
.case-compare,
.case-process,
.case-material,
.case-gallery,
.case-result { padding-block: clamp(4rem, 8vw, 7rem); }
.case-summary__grid,
.case-material__grid,
.case-result__grid { display: grid; gap: 2.2rem; }
.case-summary__copy,
.case-result__grid > :last-child { max-width: 42rem; color: var(--ink-soft); font-size: 1.1rem; }
@media (min-width: 860px) {
  .case-summary__grid,
  .case-result__grid { grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
}
.case-compare { padding-top: 0; background: #fff; }
.case-compare__head { display: grid; gap: 1rem; margin-bottom: 2rem; align-items: end; }
.case-compare__head > p { max-width: 39rem; color: var(--ink-soft); }
.case-compare__grid { display: grid; gap: 1rem; }
.case-compare__item { position: relative; margin: 0; overflow: hidden; background: #191a1a; color: #fff; }
.case-compare__item a { display: block; overflow: hidden; }
.case-compare__item img { width: 100%; height: clamp(350px, 72vw, 620px); object-fit: cover; transition: transform .35s ease; }
.case-compare__item--before img { object-position: center 48%; }
.case-compare__item--after img { object-position: center 58%; }
.case-compare__item a:hover img { transform: scale(1.02); }
.case-compare__item figcaption { display: grid; grid-template-columns: 2.5rem 1fr; gap: .8rem; padding: 1.15rem 1.25rem 1.3rem; }
.case-compare__item figcaption > span { color: #ff7467; font-size: .78rem; font-weight: 600; }
.case-compare__item figcaption strong { display: block; font-size: 1.08rem; }
.case-compare__item figcaption p { margin: .15rem 0 0; color: rgba(255,255,255,.66); font-size: .88rem; line-height: 1.45; }
.case-compare__item--before::before,
.case-compare__item--after::before { position: absolute; z-index: 2; top: 1rem; left: 1rem; padding: .35rem .6rem; color: #fff; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; pointer-events: none; }
.case-compare__item--before::before { content: "Pôvodný stav"; background: var(--red); }
.case-compare__item--after::before { content: "Výsledok"; background: #171818; }
@media (min-width: 760px) {
  .case-compare__head { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .case-compare__grid { grid-template-columns: 1fr 1fr; }
  .case-compare__item img { height: clamp(420px, 43vw, 620px); }
}
.case-process { background: #171818; color: #fff; }
.case-process .case-eyebrow { color: #ff7467; }
.case-steps { display: grid; margin-top: 2.6rem; border-top: 1px solid #3b3d3d; }
.case-steps li { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid #3b3d3d; }
.case-steps li > span { color: #ff7467; font-weight: 600; }
.case-steps h3 { margin-bottom: .3rem; font-size: 1.25rem; }
.case-steps p { margin: 0; color: #adb0b0; }
@media (min-width: 820px) {
  .case-steps { grid-template-columns: repeat(4, 1fr); }
  .case-steps li { display: block; padding: 1.5rem 1.5rem 0 0; border-bottom: 0; }
  .case-steps li > span { display: block; margin-bottom: 2rem; }
}
@media (min-width: 1000px) {
  .case-steps--six { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
}
.case-hero--bridge .case-hero__image { object-position: center 48%; }
.case-study--bridge .ref-detail-meta { padding-block: clamp(4rem, 8vw, 7rem); background: #fff; }
.case-material { background: #f1f0ed; }
.case-material__grid { align-items: center; }
.case-material__brand { min-height: 250px; padding: clamp(2rem, 5vw, 4rem); display: grid; place-content: center; background: #fff; border: 1px solid var(--line); }
.case-material__brand a { display: block; transition: transform .2s ease; }
.case-material__brand a:hover { transform: translateY(-3px); }
.case-material__brand p { margin: 1.25rem 0 0; color: var(--ink-soft); text-align: center; font-size: .83rem; }
.case-material__grid > :last-child p:not(.case-eyebrow) { color: var(--ink-soft); }
@media (min-width: 860px) {
  .case-material__grid { grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); }
}
.case-gallery h2 { margin-bottom: 2rem; }
.case-gallery__grid { display: grid; gap: 1.4rem; }
.case-photo { margin: 0; background: var(--paper); }
.case-photo a { display: block; overflow: hidden; background: #dadbd9; }
.case-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.case-photo a:hover img { transform: scale(1.025); }
.case-photo figcaption { padding: 1rem 1rem 1.2rem; }
.case-photo figcaption strong,
.case-photo figcaption span { display: block; }
.case-photo figcaption strong { margin-bottom: .25rem; }
.case-photo figcaption span { color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }
@media (min-width: 680px) {
  .case-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .case-photo--wide { grid-column: span 2; }
  .case-photo--wide img { aspect-ratio: 16 / 8.5; }
  .case-gallery__grid > .case-photo:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 1.4rem) / 2);
    justify-self: center;
  }
}
.case-result { background: var(--paper); }
.case-checks { display: grid; gap: .55rem; margin-top: 1.6rem; color: var(--ink); }
.case-checks li { position: relative; padding-left: 1.7rem; }
.case-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 600; }
.case-cta { padding-block: clamp(4.5rem, 9vw, 8rem); background: var(--red); color: #fff; text-align: center; }
.case-cta__inner { display: grid; justify-items: center; }
.case-cta .case-eyebrow { color: rgba(255,255,255,.7); }
.case-cta h2 { max-width: 20ch; }
.case-cta__inner > p:not(.case-eyebrow) { max-width: 42rem; color: rgba(255,255,255,.82); }
.case-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1rem; }
.case-cta .btn-solid { background: #fff; border-color: #fff; color: var(--red-dark); }
.case-cta .btn-solid:hover { background: #171818; border-color: #171818; color: #fff; }
.case-cta .btn-line { border-color: rgba(255,255,255,.7); color: #fff; }
.case-cta .btn-line:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* Industrial floor repairs specialty */
.floor-needs,
.floor-process,
.floor-system,
.floor-proof { padding-block: clamp(3.5rem, 7vw, 6rem); }
.floor-eyebrow {
  margin: 0 0 .7rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.floor-needs h2,
.floor-process h2,
.floor-system h2,
.floor-proof h2 { font-family: var(--font-serif); font-size: clamp(1.9rem, 3.6vw, 3rem); }
.floor-needs__lead { max-width: 48rem; color: var(--ink-soft); }
.floor-needs__grid { display: grid; gap: 1px; margin-top: 2.2rem; background: var(--line); border: 1px solid var(--line); }
.floor-needs__grid article { padding: 1.5rem; background: #fff; }
.floor-needs__grid article > span { display: block; margin-bottom: 1.5rem; color: var(--red); font-size: .8rem; font-weight: 600; }
.floor-needs__grid h3 { margin-bottom: .45rem; }
.floor-needs__grid p { margin: 0; color: var(--ink-soft); font-size: .93rem; }
@media (min-width: 700px) { .floor-needs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .floor-needs__grid { grid-template-columns: repeat(4, 1fr); } }
.floor-process { background: #171818; color: #fff; }
.floor-process__grid { display: grid; gap: 2.5rem; }
.floor-process .floor-eyebrow { color: #ff7467; }
.floor-process p:not(.floor-eyebrow) { color: #b7baba; }
.floor-process ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid #404242; }
.floor-process li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #404242; }
.floor-process li strong { color: #ff7467; }
@media (min-width: 860px) { .floor-process__grid { grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; } }
.floor-system { background: #f1f0ed; }
.floor-system__grid,
.floor-proof__grid { display: grid; gap: 2.5rem; align-items: center; }
.floor-system__logo { min-height: 220px; display: grid; place-items: center; padding: 2.5rem; background: #fff; border: 1px solid var(--line); }
.floor-system__logo a { transition: transform .2s ease; }
.floor-system__logo a:hover { transform: translateY(-3px); }
.floor-system__grid p:not(.floor-eyebrow),
.floor-proof__grid p:not(.floor-eyebrow) { color: var(--ink-soft); }
.floor-proof__media { display: block; overflow: hidden; min-height: 320px; background: var(--paper); }
.floor-proof__media img { width: 100%; height: clamp(320px, 44vw, 520px); object-fit: cover; transition: transform .35s ease; }
.floor-proof__media:hover img { transform: scale(1.025); }
@media (min-width: 860px) {
  .floor-system__grid { grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); }
  .floor-proof__grid { grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 7vw, 6rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
