/* ===== CFG DESIGN SYSTEM — BASE ===== */
/* Load this first, then load a brand-specific CSS override file. */
/* All --brand-* tokens below are defaults (CFG parent brand). */
/* Override them in a per-site brand file: <link href="brand.css"> */

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

:root {
  /* ---- Brand tokens (override per site) ---- */
  --brand-bg: #0d2a1e;
  /* dark hero / nav / footer background */
  --brand-bg-rgb: 13, 42, 30;
  --brand-darker: #0a1f16;
  /* darker variant: form card, contact cards */
  --brand-surface: #eff8f4;
  /* light surface: services panel, testimonial cards */
  --brand-accent: #8b38d8;
  /* CTA color: buttons, pill nav, checkbox */
  --brand-text-on-dark: #eee3f5;
  /* text on dark backgrounds */
  --brand-text-on-dark-rgb: 238, 227, 245;

  /* ---- Shared tokens (same on all sites) ---- */
  --bg-white: #ffffff;
  --text-dark: #1c2228;
  --text-body: #313236;
  --text-muted: #73757a;
  --green: #52c76e;
  --divider-dark: rgba(28, 34, 40, 0.15);

  --f-head: 'Manrope', sans-serif;
  --f-body: 'Red Hat Display', sans-serif;
  --f-ui: 'Inter', sans-serif;

  --max-w: 1200px;
  --px: 120px;
  --py: 144px;
  --r-card: 8px;
  --r-pill: 999px;

  /* ---- Motion tokens (sdílené; hodnoty odpovídají dosavadním nejčastějším křivkám,
       aby se pohyb sjednotil bez změny feelu) ---- */
  --ease-out: cubic-bezier(.22, 1, .36, 1);      /* silný ease-out pro vstupy/UI */
  --ease-in-out: cubic-bezier(.4, 0, .2, 1);     /* pohyb/morph po obrazovce */
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);   /* iOS-like křivka pro drawer/sheet */
  --dur-fast: .15s;   /* press feedback, drobné hover změny */
  --dur: .25s;        /* dropdowny, burger, běžné UI */
  --dur-slow: .35s;   /* větší panely, overlay menu */
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  background: var(--brand-bg);
  color: var(--brand-text-on-dark);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 88px;
  background: var(--brand-bg);
  padding: 0 var(--px);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  width: 64px;
  height: 22px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 46px;
}

.nav__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.16px;
  cursor: pointer;
  transition: opacity .2s;
}

.nav__item:hover {
  opacity: .7;
}

.nav__cta {
  background: var(--brand-accent);
  color: white;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  transition: opacity .2s;
}

.nav__cta:hover {
  opacity: .85;
}

/* CFG Trust Badge — shown in nav and footer on all subsidiary sites */
.nav__cfg-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 500;
  color: rgba(var(--brand-text-on-dark-rgb), .5);
  border-left: 1px solid rgba(var(--brand-text-on-dark-rgb), .2);
  padding-left: 20px;
  margin-left: 6px;
  transition: opacity .2s;
}

.nav__cfg-badge:hover {
  opacity: .7;
}

.nav__cfg-badge img {
  width: 122px;
  height: auto;
  object-fit: contain;
}

/* ===== HERO ===== */
.hero {
  background: var(--brand-bg);
  padding: calc(88px + 90px) var(--px) 90px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  overflow-x: hidden;
}

.hero__content {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__text-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__headline {
  font-family: var(--f-head);
  font-size: 86px;
  font-weight: 500;
  color: var(--brand-text-on-dark);
  line-height: 1;
  letter-spacing: -1.72px;
  max-width: 541px;
}

.hero__subrow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero__sub {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  line-height: 1.29;
  letter-spacing: .2px;
  max-width: 445px;
}

.hero__cta-link {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  transition: opacity .2s;
}

.hero__cta-link:hover {
  opacity: .7;
}

/* Hero cards */
.hero__cards-wrapper {
  padding-left: max(0px, calc((100% - var(--max-w)) / 2));
  overflow-x: hidden;
}

.hero__cards {
  display: flex;
  gap: 32px;
  width: max-content;
}

.hero__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 281px;
  flex-shrink: 0;
}

.hero__card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 281 / 335;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #172c3a;
}

.hero__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__card-badge {
  position: absolute;
  top: 18px;
  left: 20px;
  background: white;
  color: var(--brand-bg);
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  padding: 4px 8px;
  border-radius: 4px;
}

.hero__card-label {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-text-on-dark);
  line-height: 1.3;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-white);
  padding: var(--py) var(--px);
}

.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.services__title {
  font-family: var(--f-head);
  font-size: 96px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -1.12px;
  margin-bottom: 80px;
}

.services__layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.services__list {
  width: 366px;
  flex-shrink: 0;
}

.services__item {
  padding: 16px 0;
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 500;
  color: rgba(28, 34, 40, .32);
  border-bottom: 1px solid rgba(28, 34, 40, .1);
  cursor: pointer;
  transition: color .2s;
}

.services__item--active {
  font-weight: 600;
  color: var(--text-dark);
  border-bottom-color: rgba(28, 34, 40, .6);
}

.services__item:hover:not(.services__item--active) {
  color: rgba(28, 34, 40, .6);
}

.services__preview {
  width: 701px;
  flex-shrink: 0;
  background: var(--brand-surface);
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.services__preview-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services__preview-text {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 439px;
}

.services__logos-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services__logos-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.76px;
}

.services__logos {
  display: flex;
  align-items: center;
  gap: 42px;
  opacity: .8;
}

.services__logos img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.services__preview-cta {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: opacity .2s;
}

.services__preview-cta:hover {
  opacity: .6;
}

/* ===== STATS ===== */
.stats {
  background: var(--brand-bg);
  padding: var(--py) var(--px);
}

.stats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 103px;
  align-items: flex-start;
}

.stats__left {
  flex-shrink: 0;
  width: 410px;
}

.stats__headline {
  font-family: var(--f-head);
  font-size: 64px;
  font-weight: 500;
  color: var(--brand-text-on-dark);
  line-height: 1.1;
  letter-spacing: -1.28px;
}

.stats__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stats__divider {
  height: 1px;
  background: rgba(var(--brand-text-on-dark-rgb), .4);
}

.stats__big {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats__row {
  display: flex;
  gap: 48px;
}

.stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats__num {
  display: block;
  font-family: var(--f-head);
  font-size: 96px;
  font-weight: 500;
  color: var(--brand-text-on-dark);
  line-height: 1;
  letter-spacing: -2.88px;
}

.stats__desc {
  display: block;
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, .78);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-white);
  padding: var(--py) var(--px);
}

.testimonials__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonials__title {
  font-family: var(--f-head);
  font-size: 40px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: .4px;
  line-height: 1.1;
  margin-bottom: 64px;
}

.testimonials__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.testimonials__card {
  background: var(--brand-surface);
  border-radius: var(--r-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials__card-head {
  display: flex;
  align-items: center;
  gap: 17px;
}

.testimonials__avatar {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
  background: #d0d0d0;
  flex-shrink: 0;
}

.testimonials__name {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: .24px;
  line-height: 1.1;
}

.testimonials__role {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(49, 50, 54, .5);
  letter-spacing: .14px;
  line-height: 1.29;
  margin-top: 4px;
}

.testimonials__product {
  font-family: var(--f-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .2px;
}

.testimonials__product span {
  color: rgba(49, 50, 54, .5);
}

.testimonials__quote {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(49, 50, 54, .7);
  line-height: 1.6;
  letter-spacing: .2px;
}

/* ===== PRESS ===== */
.press {
  background: var(--bg-white);
  padding: 80px var(--px) 144px;
}

.press__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 59px;
}

.press__title {
  font-family: var(--f-head);
  font-size: 40px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .4px;
  line-height: 1.1;
}

.press__logos {
  display: flex;
  align-items: center;
  gap: 59px;
}

.press__logos img {
  max-width: none;
  width: auto;
  flex-shrink: 0;
}

/* ===== BLOG ===== */
.blog {
  background: var(--bg-white);
  padding: 0 var(--px) 164px;
}

.blog__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.blog__title {
  font-family: var(--f-head);
  font-size: 56px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -1.68px;
  margin-bottom: 40px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}

.blog__card:hover .blog__card-title {
  opacity: .7;
}

.blog__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--brand-bg);
}

.blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .blog__card:hover .blog__img {
    transform: scale(1.03);
  }
}

.blog__tag {
  position: absolute;
  top: 10px;
  left: 8px;
  background: #edeff1;
  color: var(--text-dark);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
}

.blog__card-title {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -.22px;
  transition: opacity .2s;
}

.blog__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.32px;
  text-transform: uppercase;
}

.blog__separator {
  height: 1px;
  background: var(--divider-dark);
  margin-top: 7px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brand-bg);
  padding: 96px 96px 0;
  overflow: hidden;
  position: relative;
}

.footer__inner {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.footer__headline {
  font-family: var(--f-head);
  font-size: 56px;
  font-weight: 600;
  color: var(--brand-text-on-dark);
  line-height: 1.1;
  letter-spacing: -1.12px;
}

.footer__body {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* Form card */
.footer__form-card {
  width: 560px;
  flex-shrink: 0;
  background: var(--brand-darker);
  border-radius: var(--r-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer__form-title {
  font-family: var(--f-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--brand-text-on-dark);
  letter-spacing: -.32px;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__form-row {
  display: flex;
  gap: 16px;
}

.footer__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.footer__field label {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text-on-dark);
}

.footer__field input,
.footer__field textarea {
  background: transparent;
  width: 100%;
  border: 1px solid rgba(var(--brand-text-on-dark-rgb), .2);
  border-radius: var(--r-card);
  padding: 16px;
  color: var(--brand-text-on-dark);
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  resize: none;
  transition: border-color .2s;
}

.footer__field input::placeholder,
.footer__field textarea::placeholder {
  color: rgba(var(--brand-text-on-dark-rgb), .45);
}

.footer__field input:focus,
.footer__field textarea:focus {
  border-color: rgba(var(--brand-text-on-dark-rgb), .5);
}

.footer__gdpr {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__gdpr input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 0.5px solid rgba(var(--brand-text-on-dark-rgb), .4);
  accent-color: var(--brand-accent);
  cursor: pointer;
}

.footer__gdpr label {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--brand-text-on-dark);
  cursor: pointer;
}

.footer__submit {
  align-self: flex-start;
  background: var(--brand-accent);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 600;
  transition: opacity .2s;
}

.footer__submit:hover {
  opacity: .85;
}

/* Nav columns */
.footer__nav-cols {
  flex: 1;
  display: flex;
  gap: 56px;
}

.footer__nav-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__nav-heading {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text-on-dark);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-list li,
.footer__nav-list a {
  font-family: var(--f-body);
  font-size: 15px;
  color: rgba(var(--brand-text-on-dark-rgb), .85);
  transition: opacity .2s;
}

.footer__nav-list a:hover {
  opacity: .6;
}

.footer__addr-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__addr-name {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-text-on-dark);
}

.footer__addr-block address,
.footer__addr-block p {
  font-family: var(--f-body);
  font-size: 14px;
  font-style: normal;
  color: rgba(var(--brand-text-on-dark-rgb), .85);
  line-height: 1.65;
}

/* Contact label */
.footer__contact-label {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2.16px;
}

/* Contact cards */
.footer__contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer__contact-card {
  background: var(--brand-darker);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__contact-card-title {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-text-on-dark);
  letter-spacing: -.11px;
}

.footer__contact-layout {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.footer__contact-photo-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.footer__contact-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: #555;
}

.footer__status-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid white;
}

.footer__contact-pname {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-text-on-dark);
  letter-spacing: -.051px;
}

.footer__contact-prole {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--brand-text-on-dark);
  margin-top: 4px;
  opacity: .85;
}

.footer__contact-divider {
  width: 1px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(var(--brand-text-on-dark-rgb), .18);
}

.footer__contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--brand-text-on-dark);
}

/* CFG Badge in footer */
.footer__cfg-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--brand-text-on-dark-rgb), .6);
}

.footer__cfg-badge img {
  width: 40px;
  height: auto;
  object-fit: contain;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__bottom-line {
  height: 1px;
  background: rgba(var(--brand-text-on-dark-rgb), .18);
}

.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__legal li,
.footer__legal a {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(var(--brand-text-on-dark-rgb), .75);
  transition: opacity .2s;
}

.footer__legal a:hover {
  opacity: .6;
}

.footer__copy {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(var(--brand-text-on-dark-rgb), .75);
}

/* Watermark */
.footer__watermark {
  text-align: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(180px, 38vw, 645px);
  color: var(--brand-text-on-dark);
  line-height: .79;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  :root {
    --px: 64px;
  }

  .hero__headline {
    font-size: 68px;
  }

  .stats__num {
    font-size: 72px;
  }

  .services__preview {
    width: 560px;
  }
}

@media (max-width: 1024px) {
  :root {
    --px: 40px;
    --py: 96px;
  }

  .hero__headline {
    font-size: 52px;
  }

  .hero__subrow {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .services__layout {
    flex-direction: column;
    gap: 48px;
  }

  .services__list {
    width: 100%;
  }

  .services__preview {
    width: 100%;
  }

  .stats__inner {
    flex-direction: column;
    gap: 64px;
  }

  .stats__left {
    width: 100%;
  }

  .stats__num {
    font-size: 64px;
  }

  .testimonials__cards {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__body {
    flex-direction: column;
  }

  .footer__form-card {
    width: 100%;
  }

  .footer__contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --px: 20px;
    --py: 72px;
  }

  .nav__links .nav__item:not(.nav__cta) {
    display: none;
  }

  .hero__headline {
    font-size: 40px;
  }

  .services__title {
    font-size: 76px;
  }

  .stats__headline {
    font-size: 44px;
  }

  .stats__num {
    font-size: 52px;
  }

  .stats__row {
    flex-direction: column;
    gap: 40px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .footer__nav-cols {
    flex-direction: column;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer__contact-layout {
    flex-wrap: wrap;
  }

  .footer__headline {
    font-size: 36px;
  }

  .footer__watermark {
    font-size: clamp(100px, 42vw, 300px);
  }
}

/* CFG-CONSENT-CSS:START — sdílená cookie lišta (cfg-consent.js). Barvy přes --brand-* tokeny. */
.cfg-cc {
  position: fixed;
  left: 16px; right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 2000;
  max-width: 560px;
  margin: 0 auto;
  background: var(--brand-darker);
  color: var(--brand-text-on-dark);
  border: 1px solid rgba(var(--brand-text-on-dark-rgb), .12);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
  padding: 22px;
  display: none;
}
.cfg-cc.is-visible { display: block; }
.cfg-cc__title { font-family: var(--f-head, sans-serif); font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.cfg-cc__text { font-size: 13.5px; line-height: 1.55; margin: 0; color: rgba(var(--brand-text-on-dark-rgb), .75); }
.cfg-cc__link { color: inherit; text-decoration: underline; }
.cfg-cc__cats { margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.cfg-cc__cat { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.cfg-cc__cat input { width: 18px; height: 18px; accent-color: var(--brand-accent); }
.cfg-cc__cat em { font-style: normal; opacity: .6; }
.cfg-cc__btns { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.cfg-cc__btn {
  min-height: 46px; padding: 11px 18px;
  font: 600 14.5px/1 var(--f-head, sans-serif);
  border-radius: 10px; cursor: pointer; flex: 1 1 auto;
  border: 1.5px solid transparent;
  transition: background .15s, border-color .15s, opacity .15s;
}
.cfg-cc__btn--primary { background: var(--brand-accent); color: #fff; }
.cfg-cc__btn--primary:hover { opacity: .9; }
.cfg-cc__btn--ghost { background: transparent; color: var(--brand-text-on-dark); border-color: rgba(var(--brand-text-on-dark-rgb), .3); }
.cfg-cc__btn--ghost:hover { border-color: rgba(var(--brand-text-on-dark-rgb), .6); }
@media (max-width: 520px) { .cfg-cc__btn { flex-basis: 100%; } }
/* CFG-CONSENT-CSS:END */
