/* Radovan Boháč — one-page stylesheet (zachovaný designový systém) */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #F5F2ED;
  font-family: 'Manrope', sans-serif;
  color: #14181C;
  overflow-x: hidden;
}

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

::selection {
  background: #E8792C;
  color: #fff;
}

.page {
  width: 100%;
}

/* Sticky header offset for anchors */
#uvod,
#nabidka,
#newsletter,
#vyberova-rizeni,
#upravy-budov,
#akcni-nabidky,
#kurz,
#cestovani,
#investice,
#ceniky,
#vize,
#nemovitosti,
#videa,
#kontakt {
  scroll-margin-top: 80px;
}

/* ——— Placeholders ——— */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFEAE1;
  color: #8A8175;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 16px;
}

/* ——— Header ——— */
.site-header {
  --header-bronze: 196, 143, 71;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: #F7F3EC;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition:
    padding 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

/* Jemný bronzový gradient separátor (ne tvrdý border) */
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--header-bronze), 0.28) 45%,
    rgba(var(--header-bronze), 0.28) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.site-header.is-scrolled {
  padding: 10px clamp(20px, 4vw, 64px);
  background: rgba(247, 243, 236, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(20, 24, 28, 0.05);
}

.site-header.is-scrolled .brand-logo {
  height: clamp(34px, 3.8vw, 42px);
  max-height: 42px;
}

.site-header.is-scrolled .desktop-nav a.cta {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  max-width: min(260px, 58vw);
  padding: 2px 4px 2px 0;
  margin-right: 4px;
}

.brand:focus-visible {
  outline: 2px solid rgba(196, 143, 71, 0.7);
  outline-offset: 4px;
  border-radius: 6px;
}

.brand-logo {
  display: block;
  height: clamp(36px, 4.1vw, 46px);
  width: auto;
  max-height: 46px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 28px);
  flex-wrap: nowrap;
}

.desktop-nav a:not(.cta) {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #3D454C;
  white-space: nowrap;
  padding: 4px 0 6px;
  transition: color 220ms ease;
}

.desktop-nav a:not(.cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(22px, 42%);
  height: 1.5px;
  background: #C48F47;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 230ms ease;
}

.desktop-nav a:not(.cta):hover,
.desktop-nav a:not(.cta).is-active {
  color: #C48F47;
}

.desktop-nav a:not(.cta):hover::after,
.desktop-nav a:not(.cta).is-active::after,
.desktop-nav a:not(.cta):focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav a:not(.cta):focus-visible {
  outline: 2px solid rgba(196, 143, 71, 0.65);
  outline-offset: 6px;
  border-radius: 4px;
  color: #C48F47;
}

.desktop-nav a.cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: clamp(10px, 1.4vw, 20px);
  background: #C48F47;
  color: #2A1F04;
  padding: 12px clamp(14px, 1.5vw, 22px);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease;
}

.desktop-nav a.cta:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow:
    0 6px 16px rgba(196, 143, 71, 0.28),
    0 2px 6px rgba(20, 24, 28, 0.06);
}

.desktop-nav a.cta:focus-visible {
  outline: 2px solid rgba(196, 143, 71, 0.8);
  outline-offset: 3px;
}

#mobileMenuBtn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background-color 200ms ease;
}

#mobileMenuBtn:hover,
#mobileMenuBtn:focus-visible {
  background: rgba(196, 143, 71, 0.12);
}

#mobileMenuBtn:focus-visible {
  outline: 2px solid rgba(196, 143, 71, 0.65);
  outline-offset: 2px;
}

#mobileMenu {
  display: none;
  position: sticky;
  top: var(--header-h, 80px);
  z-index: 99;
  background: #F7F3EC;
  border-bottom: none;
  box-shadow: 0 10px 28px rgba(20, 24, 28, 0.06);
  flex-direction: column;
  padding: 16px clamp(24px, 5vw, 80px) 20px;
  gap: 14px;
}

#mobileMenu::before {
  content: '';
  display: block;
  height: 1px;
  margin: 0 0 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 143, 71, 0.3) 50%,
    transparent 100%
  );
}

#mobileMenu a {
  font-size: 15px;
  font-weight: 600;
  color: #3D454C;
  transition: color 200ms ease;
  padding: 4px 0;
}

#mobileMenu a:hover,
#mobileMenu a:focus-visible,
#mobileMenu a.is-active {
  color: #C48F47;
}

#mobileMenu a:focus-visible {
  outline: 2px solid rgba(196, 143, 71, 0.65);
  outline-offset: 4px;
  border-radius: 4px;
}

#mobileMenu a.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C48F47;
  color: #2A1F04;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  margin-top: 4px;
  transition:
    transform 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease;
}

#mobileMenu a.cta:hover,
#mobileMenu a.cta:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 143, 71, 0.28);
  color: #2A1F04;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  width: 100%;
  /* Výška roste/klesá se ŠÍŘKOU (vw), ne s vh — při zúžení se hero zmenšuje */
  height: clamp(500px, calc(22vw + 340px), 700px);
  max-height: 700px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 24, 28, 0.18) 0%, rgba(20, 24, 28, 0.58) 100%);
}

/* Spodní přechod fotografie → světlá sekce (jen overlay, bez změny výšky) */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(245, 242, 237, 0) 0%,
    rgba(245, 242, 237, 0.08) 35%,
    rgba(245, 242, 237, 0.20) 68%,
    rgba(245, 242, 237, 0.38) 100%
  );
}

.hero-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-inline: clamp(20px, 4vw, 64px);
  box-sizing: border-box;
}

.hero-layout {
  height: 100%;
  display: grid;
  /* Text vlevo ~55 %, kruh vpravo ~36 % */
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.38fr);
  grid-template-areas:
    "copy orb"
    "stats stats";
  column-gap: clamp(16px, 2.5vw, 40px);
  row-gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(28px, 3.5vw, 56px);
  padding-bottom: clamp(20px, 2.5vw, 40px);
  box-sizing: border-box;
  color: #F5F2ED;
}

.hero-orb-wrap {
  grid-area: orb;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  max-width: 100%;
  /* Větší rezerva od pravého okraje hero */
  padding-right: clamp(18px, 3.2vw, 48px);
  box-sizing: border-box;
  /* Celý kruhový komponent o 60 px níže (desktop) */
  transform: translateY(60px);
}

.hero-orb {
  --orb-size: clamp(320px, 32vw, 470px);
  --orb-bronze: 196, 143, 71;
  position: relative;
  width: var(--orb-size);
  height: var(--orb-size);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 1;
}

.hero-orb-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-ring--outer {
  inset: 4%;
  border: 2px solid rgba(var(--orb-bronze), 0.9);
  box-shadow:
    0 0 6px 1px rgba(var(--orb-bronze), 0.55),
    0 0 14px 2px rgba(var(--orb-bronze), 0.35),
    0 0 28px 4px rgba(var(--orb-bronze), 0.18),
    inset 0 0 10px rgba(var(--orb-bronze), 0.12);
  filter:
    drop-shadow(0 0 3px rgba(var(--orb-bronze), 0.55))
    drop-shadow(0 0 8px rgba(var(--orb-bronze), 0.28));
}

.hero-orb-ring--mid {
  inset: 16%;
  border: 1.25px solid rgba(224, 179, 106, 0.42);
  box-shadow:
    0 0 8px 1px rgba(var(--orb-bronze), 0.22),
    0 0 18px 2px rgba(var(--orb-bronze), 0.12);
  filter: drop-shadow(0 0 4px rgba(var(--orb-bronze), 0.25));
}

.hero-orb-ring--inner {
  inset: 30%;
  border: 1px solid rgba(var(--orb-bronze), 0.42);
  background: rgba(12, 12, 12, 0.62);
  box-shadow:
    0 0 16px rgba(0, 0, 0, 0.35),
    0 0 14px rgba(var(--orb-bronze), 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-orb-core {
  position: absolute;
  inset: 34%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.hero-orb-logo {
  display: block;
  width: auto;
  height: clamp(44px, 5.2vw, 64px);
  max-width: 72%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 4px rgba(var(--orb-bronze), 0.35))
    drop-shadow(0 0 10px rgba(var(--orb-bronze), 0.18));
}

.hero-orb-item {
  --angle: calc(var(--i) * 36deg - 90deg);
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--orb-size) * -0.48)) rotate(calc(-1 * var(--angle)));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: color 250ms ease;
  z-index: 2;
}

.hero-orb-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E0B36A;
  opacity: 1;
  filter:
    drop-shadow(0 0 4px rgba(var(--orb-bronze), 0.7))
    drop-shadow(0 0 9px rgba(var(--orb-bronze), 0.45))
    drop-shadow(0 0 16px rgba(var(--orb-bronze), 0.22));
  animation: orb-icon-breathe 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.34s);
  transition: transform 250ms ease, color 250ms ease, filter 250ms ease;
  will-change: transform, filter;
}

.hero-orb-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.hero-orb-label {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 88px;
  color: #FFFFFF;
  text-shadow: 0 1px 8px rgba(20, 24, 28, 0.55);
  transition: color 250ms ease, opacity 250ms ease, text-shadow 250ms ease, filter 250ms ease;
}

@keyframes orb-icon-breathe {
  0%, 100% {
    filter:
      drop-shadow(0 0 4px rgba(196, 143, 71, 0.65))
      drop-shadow(0 0 9px rgba(196, 143, 71, 0.38))
      drop-shadow(0 0 16px rgba(196, 143, 71, 0.16));
  }
  50% {
    filter:
      drop-shadow(0 0 6px rgba(196, 143, 71, 0.82))
      drop-shadow(0 0 12px rgba(196, 143, 71, 0.48))
      drop-shadow(0 0 20px rgba(196, 143, 71, 0.24));
  }
}

.hero-orb-item:hover,
.hero-orb-item:focus-visible {
  color: #FFFFFF;
  outline: none;
}

.hero-orb-item:hover .hero-orb-label,
.hero-orb-item:focus-visible .hero-orb-label {
  color: #FFF8EC;
  opacity: 1;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.55),
    0 0 14px rgba(var(--orb-bronze), 0.45);
}

.hero-orb-item:hover .hero-orb-icon,
.hero-orb-item:focus-visible .hero-orb-icon {
  animation: none;
  color: #FFE2A8;
  transform: scale(1.12);
  filter:
    brightness(1.18)
    drop-shadow(0 0 6px rgba(var(--orb-bronze), 1))
    drop-shadow(0 0 14px rgba(var(--orb-bronze), 0.88))
    drop-shadow(0 0 28px rgba(var(--orb-bronze), 0.55))
    drop-shadow(0 0 40px rgba(var(--orb-bronze), 0.28));
}

.hero-orb-item:focus-visible .hero-orb-icon {
  outline: 2px solid rgba(224, 179, 106, 0.7);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Decentní zesílení vnější kružnice při hover položky (bez změny klidového glow) */
.hero-orb:has(.hero-orb-item:is(:hover, :focus-visible)) .hero-orb-ring--outer {
  box-shadow:
    0 0 8px 1px rgba(var(--orb-bronze), 0.62),
    0 0 18px 3px rgba(var(--orb-bronze), 0.4),
    0 0 32px 5px rgba(var(--orb-bronze), 0.22),
    inset 0 0 12px rgba(var(--orb-bronze), 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb-icon {
    animation: none !important;
  }

  .hero-orb-item:hover .hero-orb-icon,
  .hero-orb-item:focus-visible .hero-orb-icon {
    transform: scale(1.08);
  }
}

.hero-copy {
  grid-area: copy;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

/* Desktop: pill + H1 + perex níže k CTA; layout pozice CTA/statistik beze změny */
@media (min-width: 801px) {
  .hero-copy-intro {
    transform: translateY(40px);
  }

  /* CTA níže — čistá mezera pod perexem ~25–30 px (bez posunu pill/H1/statistik) */
  .hero-actions {
    transform: translateY(40px);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 18px rgba(20, 24, 28, 0.12);
  color: #FFFFFF;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: clamp(14px, 1.8vw, 22px);
  width: fit-content;
  max-width: 100%;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(16px, 1.8vw, 24px);
  max-width: 100%;
}

.hero h1 .dot {
  color: #C48F47;
}

.hero-lead {
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.45;
  color: rgba(245, 242, 237, 0.85);
  max-width: 100%;
  margin: 0 0 clamp(18px, 2vw, 28px);
}

.hero-actions {
  display: flex;
  gap: clamp(10px, 1.5vw, 16px);
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
  font-size: clamp(15px, 1.15vw, 17px);
  padding: clamp(11px, 1vw, 15px) clamp(18px, 1.8vw, 28px);
  white-space: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C48F47;
  color: #2A1F04;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-outline {
  border: 2px solid rgba(245, 242, 237, 0.4);
  color: #F5F2ED;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
}

.btn-outline:hover {
  border-color: #F5F2ED;
}

.hero-stats {
  grid-area: stats;
  display: flex;
  gap: clamp(20px, 3.3vw, 48px);
  flex-wrap: wrap;
  align-self: end;
  width: fit-content;
  max-width: 100%;
}

.hero-stats .stat-value {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 800;
}

.hero-stats .stat-label {
  font-size: clamp(12px, 1.1vw, 16px);
  color: rgba(245, 242, 237, 0.75);
}

/* Desktop-only: užší perex + rozprostřené statistiky (po base pravidlech kvůli cascade) */
@media (min-width: 801px) {
  .hero-lead {
    max-width: 86%;
  }

  .hero-stats {
    grid-column: 1 / 2;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    align-items: start;
    flex-wrap: unset;
    width: 100%;
    /* Kompaktněji než plná šířka perexu — 3. položka zůstane pod levým textem */
    max-width: min(86%, 520px);
    column-gap: clamp(40px, 4.5vw, 72px);
    row-gap: 0;
    gap: unset;
  }
}

/* Mobilní grid POD hero — default skrytý */
.offer-mnav {
  display: none;
  padding: 28px clamp(20px, 5vw, 64px) 8px;
  background: #F5F2ED;
}

.offer-mnav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.offer-mnav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #EFEAE1;
  border-radius: 14px;
  padding: 12px 12px;
  color: #14181C;
  min-width: 0;
}

.offer-mnav-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #C48F47;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-mnav-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.offer-mnav-label {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

/* ——— Shared section bits ——— */
.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #C48F47;
  margin-bottom: 14px;
}

.section-label--light {
  color: #C48F47;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.section-title--lg {
  font-size: clamp(30px, 3vw, 44px);
}

.section-title--md {
  font-size: clamp(28px, 3vw, 42px);
}

.section-intro {
  font-size: 17px;
  color: #4A5259;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

.text-muted {
  font-size: 16px;
  line-height: 1.7;
  color: #4A5259;
  margin: 0 0 20px;
  max-width: 460px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.service-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C48F47;
  flex-shrink: 0;
}

.service-link {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  color: #14181C;
  border-bottom: 2px solid #C48F47;
  padding-bottom: 3px;
}

.img-col {
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
}

/* ——— Offer hub ——— */
.offer-hub {
  padding: 100px 5vw 80px;
}

.offer-hub-intro {
  max-width: 640px;
  margin-bottom: 48px;
}

.offer-hub-intro .section-title {
  margin: 0 0 16px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #EFEAE1;
  border-radius: 20px;
  padding: 24px 22px;
  min-height: 168px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(20, 24, 28, 0.08);
}

.hub-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(196, 143, 71, 0.18);
  color: #C48F47;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hub-icon svg {
  width: 20px;
  height: 20px;
}

.hub-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.hub-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hub-card-text {
  font-size: 13px;
  line-height: 1.45;
  color: #4A5259;
}

.hub-arrow {
  font-size: 18px;
  font-weight: 700;
  color: #C48F47;
  margin-top: auto;
}

/* ——— Topic sections ——— */
.topic {
  padding: 80px 5vw;
}

.topic--split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.topic--reverse {
  grid-template-columns: 1.15fr 1fr;
}

.topic--tint {
  background: #EFEAE1;
}

.topic-copy .section-title {
  margin: 0 0 16px;
}

.topic--wide .topic-wide-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

.topic--wide .topic-wide-intro .section-title {
  margin: 0 0 16px;
}

.topic-cta {
  margin-top: 36px;
}

/* Promo cards (akce) */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promo-card {
  background: #F5F2ED;
  border-radius: 20px;
  padding: 28px 24px;
}

.promo-tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #C48F47;
  margin-bottom: 12px;
}

.promo-title {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4A5259;
}

/* CTA block (kurz) */
.topic--cta-block {
  padding: 0 5vw 80px;
}

.cta-block-inner {
  background: #14181C;
  color: #F5F2ED;
  border-radius: 32px;
  padding: 72px 5vw;
  text-align: center;
}

.cta-block-inner .section-title {
  margin: 0 auto 20px;
  max-width: 640px;
}

.cta-block-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 242, 237, 0.75);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* Dark invest section */
.topic--dark {
  background: #14181C;
  color: #F5F2ED;
  border-radius: 32px;
  margin: 0 5vw 80px;
  width: calc(90vw);
  box-sizing: border-box;
  padding: 72px 5vw;
}

.topic-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.topic-dark-grid .section-title {
  margin: 0 0 20px;
}

.topic-dark-lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 242, 237, 0.75);
  margin: 0 0 28px;
  max-width: 460px;
}

.topic-dark-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dark-card {
  background: rgba(245, 242, 237, 0.06);
  border: 1px solid rgba(245, 242, 237, 0.12);
  border-radius: 16px;
  padding: 24px;
}

.dark-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.dark-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 242, 237, 0.7);
}

/* Price cards */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.price-card {
  background: #EFEAE1;
  border-radius: 20px;
  padding: 32px 28px;
}

.price-card--accent {
  background: #14181C;
  color: #F5F2ED;
}

.price-card--accent .price-note {
  color: rgba(245, 242, 237, 0.7);
}

.price-name {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #C48F47;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.price-value {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.price-note {
  font-size: 14px;
  line-height: 1.5;
  color: #4A5259;
}

/* About / Vize */
.topic--about {
  padding: 100px 5vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.about-copy .section-title {
  margin: 0 0 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: #F5F2ED;
  border-radius: 20px;
  padding: 28px 24px;
}

.topic--tint .why-card {
  background: #F5F2ED;
}

.why-card .title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4A5259;
}

/* ——— Videos (YouTube gallery) ——— */
.videos-section {
  --videos-gap: 18px;
  --videos-visible: 4;
  padding: 80px 5vw 40px;
  background: #F5F2ED;
}

.videos-intro {
  max-width: 640px;
  margin-bottom: 36px;
}

.videos-intro .section-title {
  margin: 0 0 14px;
}

.videos-intro-text {
  max-width: 560px;
}

.videos-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.videos-viewport {
  min-width: 0;
  overflow: hidden;
}

.videos-track {
  display: flex;
  gap: var(--videos-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.videos-track::-webkit-scrollbar {
  display: none;
}

.videos-card {
  --card-basis: calc((100% - (var(--videos-visible) - 1) * var(--videos-gap)) / var(--videos-visible));
  flex: 0 0 var(--card-basis);
  max-width: var(--card-basis);
  scroll-snap-align: start;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.videos-card:focus-visible {
  outline: 2px solid rgba(196, 143, 71, 0.7);
  outline-offset: 4px;
  border-radius: 22px;
}

.videos-card-media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #EFEAE1;
  box-shadow: 0 10px 28px rgba(20, 24, 28, 0.08);
}

.videos-card[data-aspect="16:9"] .videos-card-media {
  aspect-ratio: 16 / 9;
}

.videos-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 280ms ease;
}

.videos-card-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.videos-card-play span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(196, 143, 71, 0.92);
  color: #2A1F04;
  box-shadow: 0 8px 22px rgba(20, 24, 28, 0.22);
  transition: transform 250ms ease, filter 250ms ease, background-color 250ms ease;
}

.videos-card-play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.videos-card:hover .videos-card-media img,
.videos-card:focus-visible .videos-card-media img {
  transform: scale(1.05);
}

.videos-card:hover .videos-card-play span,
.videos-card:focus-visible .videos-card-play span {
  filter: brightness(1.12);
  transform: scale(1.06);
  background: #D4A45A;
}

.videos-card-title {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #14181C;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.videos-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(196, 143, 71, 0.45);
  background: #F7F3EC;
  color: #C48F47;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 200ms ease, color 200ms ease, opacity 200ms ease, border-color 200ms ease;
}

.videos-nav svg {
  width: 20px;
  height: 20px;
}

.videos-nav:hover:not(:disabled),
.videos-nav:focus-visible:not(:disabled) {
  background: rgba(196, 143, 71, 0.14);
  border-color: rgba(196, 143, 71, 0.7);
}

.videos-nav:focus-visible {
  outline: 2px solid rgba(196, 143, 71, 0.65);
  outline-offset: 3px;
}

.videos-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.videos-cta-wrap {
  margin-top: 28px;
}

.videos-status {
  margin: 16px 0 0;
  font-size: 14px;
  color: #4A5259;
}

/* ——— Realizations map ——— */
.realizations-section {
  padding: 80px 5vw;
  background: #F5F2ED;
}

.realizations-inner {
  width: 100%;
}

.realizations-intro {
  max-width: 640px;
  margin-bottom: 32px;
}

.realizations-intro .section-title {
  margin: 0 0 14px;
}

.realizations-intro-text {
  max-width: 560px;
}

.realizations-map-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(196, 143, 71, 0.28);
  box-shadow: 0 16px 40px rgba(20, 24, 28, 0.08);
  background: #F7F3EC;
}

.realizations-legend {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(247, 243, 236, 0.94);
  border: 1px solid rgba(196, 143, 71, 0.22);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 600;
  color: #14181C;
}

.realizations-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.realizations-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(20, 24, 28, 0.18);
  flex-shrink: 0;
}

.realizations-legend-dot--completed {
  background: #3D9A5F;
}

.realizations-legend-dot--progress {
  background: #C48F47;
}

.realizations-map {
  width: 100%;
  height: 580px;
  min-height: 420px;
  background: #EFEAE1;
}

.realizations-map.realizations-map--empty {
  display: grid;
  place-items: center;
}

.realizations-empty {
  text-align: center;
  padding: 24px;
  max-width: 360px;
  color: #4A5259;
  font-size: 15px;
  line-height: 1.55;
}

.realizations-status {
  margin: 0;
  padding: 12px 16px 0;
  font-size: 14px;
  color: #9B1C1C;
}

.realizations-attribution {
  margin: 0;
  padding: 8px 14px 12px;
  font-size: 11px;
  line-height: 1.4;
  color: #4A5259;
}

.realizations-attribution a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.realizations-marker {
  background: transparent;
  border: 0;
}

.realizations-marker-pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(20, 24, 28, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.92);
}

.realizations-marker-pin span {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}

.realizations-marker-pin--completed {
  background: #3D9A5F;
}

.realizations-marker-pin--progress {
  background: #C48F47;
}

.realizations-marker--progress .realizations-marker-pin {
  animation: realizations-pulse 2.8s ease-in-out infinite;
}

@keyframes realizations-pulse {
  0%, 100% { box-shadow: 0 6px 16px rgba(20, 24, 28, 0.22), 0 0 0 0 rgba(196, 143, 71, 0.35); }
  50% { box-shadow: 0 6px 16px rgba(20, 24, 28, 0.22), 0 0 0 10px rgba(196, 143, 71, 0); }
}

.realizations-popup.leaflet-popup {
  margin-bottom: 28px;
}

.realizations-popup .leaflet-popup-content-wrapper {
  border-radius: 16px;
  border: 1px solid rgba(196, 143, 71, 0.25);
  box-shadow: 0 12px 28px rgba(20, 24, 28, 0.14);
  padding: 0;
}

.realizations-popup .leaflet-popup-content {
  margin: 0;
  min-width: 220px;
  max-width: min(320px, calc(100vw - 48px));
}

.realizations-popup .leaflet-popup-tip {
  background: #F7F3EC;
  border: 1px solid rgba(196, 143, 71, 0.2);
}

.realizations-popup-card {
  padding: 16px 18px 18px;
  font-family: Manrope, system-ui, sans-serif;
  color: #14181C;
}

.realizations-popup-status {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.realizations-popup-status--completed {
  background: rgba(61, 154, 95, 0.14);
  color: #2F7A4C;
}

.realizations-popup-status--progress {
  background: rgba(196, 143, 71, 0.16);
  color: #8A5A1E;
}

.realizations-popup-title {
  margin: 0 0 6px;
  font-family: Sora, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.realizations-popup-location {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #4A5259;
}

.realizations-popup-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4A5259;
}

.realizations-popup-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #C48F47;
  text-decoration: none;
}

.realizations-popup-link:hover,
.realizations-popup-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .realizations-section {
    padding: 64px 5vw;
  }

  .realizations-map {
    height: clamp(420px, 52vh, 500px);
  }

  .realizations-legend {
    position: static;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .realizations-marker--progress .realizations-marker-pin {
    animation: none;
  }
}

/* Modal player */
.videos-modal[hidden] {
  display: none !important;
}

.videos-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.videos-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 28, 0.62);
  backdrop-filter: blur(4px);
}

.videos-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
}

.videos-modal-dialog:has(.videos-modal-frame[data-aspect="16:9"]) {
  width: min(920px, 100%);
}

.videos-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.92);
  color: #14181C;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.videos-modal-close svg {
  width: 18px;
  height: 18px;
}

.videos-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.videos-modal-frame[data-aspect="16:9"] {
  aspect-ratio: 16 / 9;
}

.videos-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1100px) {
  .videos-section {
    --videos-visible: 3;
  }
}

@media (max-width: 800px) {
  .videos-section {
    --videos-visible: 2;
    padding: 64px 5vw 28px;
  }
}

@media (max-width: 600px) {
  .videos-section {
    --videos-gap: 14px;
  }

  .videos-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .videos-nav {
    display: none;
  }

  /* 1 celá karta + peek další */
  .videos-card {
    --card-basis: 78%;
  }

  .videos-viewport {
    overflow: visible;
  }

  .videos-track {
    overflow-x: auto;
    margin-inline: 0;
    padding-right: 5vw;
  }
}

/* ——— Contact ——— */
.contact {
  padding: 40px 5vw 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-copy .section-title {
  margin: 0 0 20px;
}

.contact-copy .lead {
  font-size: 16px;
  line-height: 1.7;
  color: #4A5259;
  margin: 0 0 32px;
  max-width: 440px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EFEAE1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.contact-item .label {
  font-size: 13px;
  color: #4A5259;
}

.contact-item .value {
  font-weight: 700;
  font-size: 16px;
}

#contactForm {
  background: #14181C;
  border-radius: 24px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  background: rgba(245, 242, 237, 0.06);
  border: 1px solid rgba(245, 242, 237, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  color: #F5F2ED;
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  width: 100%;
}

#contactForm textarea {
  resize: none;
}

#contactForm select option {
  background: #14181C;
  color: #F5F2ED;
}

#contactForm button[type="submit"] {
  background: #C48F47;
  color: #2A1F04;
  border: none;
  border-radius: 999px;
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
  font-family: 'Manrope', sans-serif;
}

#contactForm button[type="submit"]:hover {
  filter: brightness(1.08);
}

#formStatus {
  font-size: 13px;
  color: rgba(245, 242, 237, 0.5);
  text-align: center;
}

/* ——— Footer ——— */
.site-footer {
  padding: 40px 5vw;
  border-top: 1px solid rgba(20, 24, 28, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  display: block;
  height: 34px;
  width: auto;
  max-height: 34px;
  max-width: 206px;
  object-fit: contain;
}

.footer-copy {
  font-weight: 700;
  font-size: 14px;
  color: #4A5259;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #4A5259;
}

.footer-nav a:hover {
  color: #14181C;
}

.footer-meta {
  font-size: 14px;
  color: #4A5259;
}

/* ——— Responsive ——— */
@media (max-width: 1440px) {
  .hub-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1200px) {
  .hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .desktop-nav {
    gap: 18px;
  }
}

/* Hamburger dříve — ať se menu namačká */
@media (max-width: 1024px) {
  nav.desktop-nav {
    display: none !important;
  }

  #mobileMenuBtn {
    display: flex !important;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero {
    height: clamp(540px, calc(22vw + 340px), 600px);
  }

  .hero h1 {
    font-size: clamp(36px, 4.2vw, 52px);
  }
}

@media (max-width: 800px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }

  .hero-shell {
    height: auto;
  }

  .hero-layout {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stats";
    padding-top: 48px;
    padding-bottom: 36px;
    row-gap: 28px;
  }

  .hero-orb-wrap {
    display: none !important;
  }

  .offer-mnav {
    display: block;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.1;
  }

  .hero-lead {
    font-size: clamp(16px, 4.2vw, 18px);
  }

  .hero-badge {
    font-size: clamp(12px, 3.2vw, 14px);
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    font-size: 15px;
    white-space: normal;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-stats .stat-value {
    font-size: clamp(28px, 7vw, 34px);
  }

  .hero-media img {
    object-position: 68% 40%;
  }
}

@media (max-width: 900px) {
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic--split,
  .topic--reverse,
  .topic-dark-grid,
  .about-grid,
  .contact,
  .promo-grid,
  .price-grid {
    grid-template-columns: 1fr !important;
  }

  .about-values {
    grid-template-columns: 1fr !important;
  }

  .topic--split .img-col,
  .topic--reverse .img-col {
    order: -1;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .topic--dark {
    margin: 0 4vw 60px;
    width: calc(92vw);
    padding: 56px 6vw;
  }

  .cta-block-inner {
    padding: 56px 6vw;
  }

  #contactForm {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .offer-hub,
  .topic {
    padding: clamp(64px, 8vw, 100px) clamp(24px, 5vw, 80px) clamp(48px, 6vw, 80px);
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    max-height: none;
  }

  .hero-media img {
    object-position: 65% 42%;
  }
}

@media (max-width: 600px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }

  .hub-card {
    min-height: 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
  }

  .hub-card-body {
    flex: 1;
  }

  .hub-arrow {
    margin-top: 0;
    align-self: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-media img {
    object-position: 70% 40%;
  }

  .img-col {
    height: 240px;
  }

  .topic--about {
    padding: 72px clamp(24px, 5vw, 80px);
  }

  .contact {
    padding: 24px clamp(24px, 5vw, 80px) 72px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px clamp(24px, 5vw, 80px);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats > div:last-child {
    grid-column: 1 / -1;
  }

  .brand {
    max-width: min(200px, 62vw);
  }

  .offer-mnav-label {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats > div:last-child {
    grid-column: auto;
  }
}
