/* RE/MAX Diamond — farby a typografia ako diamond.sk (Astra + Elementor: Open Sans text, Lato nadpisy) */

:root {
  --bg: #f5f5f5;
  --bg-elevated: #ffffff;
  --text: #3a3a3a;
  --muted: #4b4f58;
  --line: rgba(0, 0, 0, 0.09);
  /* Oficiálna paleta z assetov diamond.sk */
  --remax-blue: #003ca5;
  --remax-blue-mid: #0156c4;
  --remax-blue-deep: #002a75;
  --remax-blue-bright: #0170b9;
  --remax-red: #e11c2e;
  --remax-red-deep: #b91624;
  /* Kompatibilita so staršími tokenmi v súbore */
  --teal: var(--remax-blue);
  --teal-deep: var(--remax-blue-deep);
  --sun: var(--remax-red);
  --sun-soft: rgba(225, 28, 46, 0.22);
  --sky: var(--remax-blue-bright);
  --glow: rgba(0, 60, 165, 0.32);
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  --shadow-soft: 0 10px 28px rgba(0, 60, 165, 0.14);
  --font-display: "Lato", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --max: 1180px;
  /* Hover obrázkov v mriežke: rám + tieň + scale (hero pásy Exclusive/Predaj majú vlastný blok nižšie) */
  --img-border: rgba(0, 60, 165, 0.13);
  --img-border-hover: rgba(0, 60, 165, 0.38);
  --img-shadow: 0 6px 28px rgba(15, 23, 42, 0.07), 0 2px 10px rgba(0, 60, 165, 0.06);
  --img-shadow-hover: 0 22px 48px rgba(0, 60, 165, 0.14), 0 10px 22px rgba(0, 0, 0, 0.09);
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--remax-blue-bright);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

/* Fotografie: celý záber + ostrosť (contain, GPU vrstva pri hover scale) */
img.photo-contain,
.hero-figure__img,
.banner-card img,
.page-cover__img,
.team-card img,
.blog-row__link img,
.blog-card__img {
  object-fit: contain;
  object-position: center center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.shell {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: #fff;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  left: 0.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Aurora mesh background — visible, aby full-bleed pásy pod hero (Exclusive, Predaj) neboli orezané */
.mesh-bg {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.mesh-bg::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 18% 0%, rgba(0, 60, 165, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 88% 8%, rgba(225, 28, 46, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(1, 112, 185, 0.1), transparent 55%),
    linear-gradient(180deg, #e8eef7 0%, var(--bg) 45%, var(--bg) 100%);
  animation: mesh-shift 18s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-2%, 1%, 0) scale(1.03);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--remax-blue), var(--remax-red));
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav desktop */
.nav-desktop {
  display: none;
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(0, 60, 165, 0.09);
  color: var(--remax-blue);
}

.nav-caret {
  font-size: 0.65rem;
  opacity: 0.6;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
}

.nav-dropdown a:hover {
  background: rgba(0, 60, 165, 0.07);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.6rem;
}

@media (min-width: 960px) {
  .header-cta {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--remax-blue), var(--remax-blue-mid));
  color: #fff;
  box-shadow: 0 10px 28px var(--glow);
}

.btn-primary:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn-sun {
  background: linear-gradient(135deg, var(--remax-red), var(--remax-red-deep));
  color: #fff;
  box-shadow: 0 10px 28px var(--sun-soft);
}

.btn-sun:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(0, 60, 165, 0.35);
  color: var(--remax-blue);
}

/* Mobile menu */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open .menu-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(244, 247, 251, 0.97);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem 2rem;
  overflow: auto;
  z-index: 40;
}

body.nav-open .nav-mobile {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.nav-mobile .sub {
  padding-left: 1rem;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Hero */
.hero-wrap {
  padding: 2.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--remax-blue);
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--remax-blue), var(--remax-red));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-title .hl {
  background: linear-gradient(120deg, var(--remax-blue), var(--remax-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.trust-row strong {
  color: var(--text);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.avatar-stack span:first-child {
  margin-left: 0;
}

/* Panel rýchleho dopytu */
.search-dock {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.search-dock::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(0, 60, 165, 0.35),
    rgba(1, 112, 185, 0.22),
    rgba(225, 28, 46, 0.18)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.search-dock h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 1rem;
  font-weight: 700;
}

.search-grid {
  display: grid;
  gap: 0.75rem;
}

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

@media (min-width: 900px) {
  .search-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.field input,
.field select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fafafa;
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(0, 60, 165, 0.28);
  border-color: var(--remax-blue-bright);
}

.search-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: flex-end;
}

@media (min-width: 600px) {
  .search-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-end;
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf5 100%);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.cards-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(0, 60, 165, 0.12), rgba(225, 28, 46, 0.1));
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.card a.more {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--remax-blue);
  text-decoration: none;
}

.card a.more:hover {
  text-decoration: underline;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--remax-blue);
}

.stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Blog cards — skupina po 4 na širokých obrazovkách */
.blog-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--img-border);
  box-shadow: var(--img-shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s ease;
  will-change: transform;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--img-border-hover);
  box-shadow: var(--img-shadow-hover);
}

.blog-visual {
  height: 160px;
  background: linear-gradient(135deg, #dde7f5, #f5e6e8, #ffffff);
}

.blog-card .body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.blog-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.blog-card a {
  margin-top: 0.85rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--remax-blue);
  text-decoration: none;
}

/* CTA band */
.cta-band {
  margin: 2rem 0;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--remax-blue-deep) 0%, var(--remax-blue) 45%, #0156c4 100%);
  color: #f0f4ff;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0 0 0.5rem;
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.92;
}

.cta-band .btn-sun {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Offices */
.offices {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .offices {
    grid-template-columns: 1fr 1fr;
  }
}

.office-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.office-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
}

.office-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.office-card li {
  margin-bottom: 0.4rem;
}

.office-card a {
  color: var(--remax-blue-bright);
  font-weight: 600;
  text-decoration: none;
}

/* Page layout (inner pages) */
.page-hero {
  padding: 2.5rem 0 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.page-hero .sub {
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

.content-block {
  padding-bottom: 3rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul {
  padding-left: 1.25rem;
}

.service-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

.service-tile {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.service-tile h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.service-tile p {
  margin: 0;
  font-size: 0.95rem;
}

/* Form */
.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: var(--font-body);
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #0b1220;
  color: #cbd5e1;
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.site-footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.site-footer a:hover {
  color: #7eb8ff;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand .brand {
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 0.75rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Brand + obrázky z diamond.sk */
.brand--with-logo {
  gap: 0.75rem;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.brand-logo-img--footer {
  height: 40px;
  opacity: 0.95;
}

.hero-with-media {
  padding: 2.5rem 0 3rem;
}

/* Úvodná stránka — nadpis na fotke, fotka celá šírka, orez zarovnaný doľava */
.hero-with-media--headline-image {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.hero-cover {
  position: relative;
  width: 100%;
}

.hero-cover__visual {
  position: relative;
  width: 100%;
  min-height: min(58vh, 640px);
  overflow: hidden;
}

/* Úvodná stránka — hero: 150px odsadenie zľava a sprava, zaoblené všetky rohy fotky */
.hero-with-media--headline-image .hero-cover__visual {
  width: calc(100vw - 300px);
  margin-left: calc(50% - 50vw + 150px);
  margin-right: calc(50% - 50vw + 150px);
  box-sizing: border-box;
  border-radius: var(--radius-lg);
}

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

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0;
  transform: translateX(0);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  z-index: 2;
  transform: translateX(0);
}

/* Striedavo: odchod doľava / doprava, príchod z opačnej strany */
.hero-carousel__slide.is-exit-left {
  opacity: 0;
  transform: translateX(-4.5%);
  z-index: 1;
}

.hero-carousel__slide.is-exit-right {
  opacity: 0;
  transform: translateX(4.5%);
  z-index: 1;
}

.hero-carousel__slide.is-active.is-enter-from-right {
  opacity: 0;
  transform: translateX(5%);
}

.hero-carousel__slide.is-active.is-enter-from-left {
  opacity: 0;
  transform: translateX(-5%);
}

.hero-carousel__dots {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  max-width: min(100% - 2rem, 200px);
  pointer-events: auto;
}

.hero-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.hero-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.hero-carousel__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-figure--cover-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  pointer-events: none;
  background: #0a1628;
}

.hero-with-media--headline-image .hero-figure--cover-bg {
  border-radius: var(--radius-lg);
}

.hero-figure--cover-bg .hero-figure__img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: left center;
}

.hero-cover__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(0, 28, 72, 0.88) 0%,
    rgba(0, 40, 95, 0.55) 48%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.hero-cover__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  min-height: min(58vh, 640px);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  box-sizing: border-box;
  gap: 1.5rem;
}

.hero-cover__headline {
  flex: 0 0 auto;
}

.hero-cover__cta {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.hero-cover__eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero-cover__eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(180, 210, 255, 0.75));
}

.hero-title--home-lead {
  max-width: min(22rem, 100%);
  margin: 0;
}

@media (min-width: 640px) {
  .hero-title--home-lead {
    max-width: min(36rem, 100%);
  }
}

@media (min-width: 900px) {
  .hero-title--home-lead {
    max-width: min(44rem, 100%);
  }
}

.hero-title--on-photo {
  color: #fff;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
}

.hero-title--on-photo .hl {
  background: linear-gradient(120deg, #ffe8c4, #ffb8a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

/* Úvodný text + CTA na fotke, pod nadpisom „Kompletná ponuka…“ */
.hero-cover__lead {
  max-width: min(52rem, 100%);
  margin: 0 0 1rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.45);
}

.hero-cover__actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Pásy pod hero (Exclusive, Predaj…) — 150px odsadenie; rohy a tieň na odkaze (tieň nie je orezaný) */
.hero-landing-strip--fullbleed {
  width: calc(100vw - 300px);
  max-width: none;
  margin-left: calc(50% - 50vw + 150px);
  margin-right: calc(50% - 50vw + 150px);
  padding: 0 0 0.85rem;
  box-sizing: border-box;
}

/* Zahraničie (Exclusive) — pod hero */
.hero-zahranicie-strip {
  margin-top: 1.25rem;
}

/* Exclusive / Zahraničie — jeden obrázok rozdelený na 3 tretiny v jednom riadku (img 300 % šírky + margin) */
.hero-zahranicie-tri--link {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  width: 100%;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.hero-zahranicie-tri__cell {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.hero-zahranicie-tri__slice {
  width: 300%;
  max-width: none;
  height: auto;
  display: block;
}

.hero-zahranicie-tri__slice--1 {
  margin-left: 0;
}

.hero-zahranicie-tri__slice--2 {
  margin-left: -100%;
}

.hero-zahranicie-tri__slice--3 {
  margin-left: -200%;
}

@media (max-width: 520px) {
  .hero-zahranicie-tri--link {
    gap: 0.4rem;
  }
}

/* rfmotors.dueflex.tech — tieň + výstup pri hoveri / focus (celý pás) */
.hero-zahranicie-strip.hero-landing-strip--fullbleed .hero-zahranicie-tri--link.banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  box-shadow:
    0 22px 60px -14px rgb(0 0 0 / 0.38),
    0 12px 32px -10px rgb(0 0 0 / 0.22),
    0 4px 14px -4px rgb(0 0 0 / 0.14);
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out,
    border-color 0.3s ease-out;
}

.hero-zahranicie-strip.hero-landing-strip--fullbleed .hero-zahranicie-tri--link.banner-card:hover,
.hero-zahranicie-strip.hero-landing-strip--fullbleed .hero-zahranicie-tri--link.banner-card:focus-visible {
  transform: translateY(-0.5rem);
  border-color: color-mix(in srgb, var(--remax-blue) 38%, transparent);
  box-shadow:
    0 25px 50px -12px rgb(0 0 0 / 0.38),
    0 14px 28px -10px rgb(0 0 0 / 0.22),
    0 6px 12px -6px rgb(0 0 0 / 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .hero-zahranicie-strip.hero-landing-strip--fullbleed .hero-zahranicie-tri--link.banner-card {
    transition-duration: 0.001ms;
  }

  .hero-zahranicie-strip.hero-landing-strip--fullbleed .hero-zahranicie-tri--link.banner-card:hover,
  .hero-zahranicie-strip.hero-landing-strip--fullbleed .hero-zahranicie-tri--link.banner-card:focus-visible {
    transform: none;
  }
}

.hero-with-media .hero-grid {
  align-items: center;
}

@media (min-width: 900px) {
  .hero-with-media .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #eceff4 0%, #f7f8fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--img-border);
  box-shadow: var(--img-shadow);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s ease;
  will-change: transform;
}

.hero-figure:hover {
  transform: translateY(-6px);
  border-color: var(--img-border-hover);
  box-shadow: var(--img-shadow-hover);
}

.hero-figure__img {
  width: 100%;
  height: auto;
  max-height: min(85vh, 720px);
  display: block;
  vertical-align: middle;
  transition: transform 0.55s var(--ease-out-expo);
}

.hero-figure:hover .hero-figure__img {
  transform: translateZ(0) scale(1.03);
}

.hero-figure--cover-bg:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.hero-figure--cover-bg:hover .hero-figure__img {
  transform: none;
}

.banner-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .banner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Nadpis nad každým banerom (domov — sekcia pod „V číslach“) */
.home-page-banners .banner-grid__item {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.home-page-banners .banner-grid__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  color: var(--text);
  text-align: center;
}

/* Rovnaká výška a šírka náhľadu — jednotný rámec, orez cover */
.home-page-banners .banner-grid__item .banner-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.home-page-banners .banner-grid__item .banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.banner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--img-border);
  background: #eef1f6;
  min-height: 120px;
  box-shadow: var(--img-shadow);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s ease;
  will-change: transform;
}

.banner-card:hover {
  transform: translateY(-8px);
  border-color: var(--img-border-hover);
  box-shadow: var(--img-shadow-hover);
}

.banner-card img {
  width: 100%;
  height: auto;
  max-height: min(50vh, 360px);
  display: block;
  transition: transform 0.55s var(--ease-out-expo);
}

.banner-card:hover img {
  transform: translateZ(0) scale(1.04);
}

/* Musí byť po .banner-card — ten nastavuje align-items: center a img { width: 100 % }, čo by skrylo výrez */
.hero-zahranicie-strip .hero-zahranicie-tri--link.banner-card {
  align-items: stretch;
  justify-content: flex-start;
}

.hero-zahranicie-strip .hero-zahranicie-tri--link.banner-card img {
  width: 300%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transition: none;
}

.hero-zahranicie-strip .hero-zahranicie-tri--link.banner-card:hover img,
.hero-zahranicie-strip .hero-zahranicie-tri--link.banner-card:focus-visible img {
  transform: none;
}

.center-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Baner SATUR pod článkami (domov + /blog) — rovnaký štýl ako .banner-card hore */
.home-blog-promo {
  margin-top: 2.5rem;
  max-width: 100%;
}

.home-blog-promo .banner-card {
  width: 100%;
}

.home-blog-promo--page {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

/* Page cover (podstránky) — celý záber, text v spodnom priehľade */
.page-cover {
  position: relative;
  overflow: hidden;
  background: #0b1220;
}

.page-cover--short .page-cover__img {
  max-height: min(55vh, 420px);
}

.page-cover--tall .page-cover__img {
  max-height: min(75vh, 640px);
}

/* Predvolená výška hero; celý záber viditeľný (škálovanie, nie orez) */
.page-cover__img {
  width: 100%;
  height: auto;
  max-height: min(68vh, 540px);
  display: block;
  margin: 0 auto;
  transition: transform 0.55s var(--ease-out-expo);
}

.page-cover:hover .page-cover__img {
  transform: translateZ(0) scale(1.02);
}

.page-cover__shade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 35%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(11, 18, 32, 0.88) 0%,
    rgba(11, 18, 32, 0.45) 55%,
    transparent 100%
  );
}

.page-cover__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 0 2.5rem;
}

.page-cover__inner .eyebrow {
  color: #a8c8ff;
}

.page-cover__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.article-flow {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.article-flow h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.article-flow p {
  color: var(--muted);
}

.article-section:first-child h2 {
  margin-top: 0;
}

.article-external-cta {
  margin-top: 1.5rem;
}

.section-cta {
  margin-top: 1.25rem;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.team-card {
  margin: 0;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--img-border);
  overflow: hidden;
  box-shadow: var(--img-shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s ease;
  will-change: transform;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--img-border-hover);
  box-shadow: var(--img-shadow-hover);
}

.team-card img {
  width: 100%;
  height: auto;
  max-height: min(70vh, 520px);
  display: block;
  margin: 0 auto;
  background: linear-gradient(180deg, #e8ecf3, #f4f6f9);
  transition: transform 0.55s var(--ease-out-expo);
}

.team-card:hover img {
  transform: translateZ(0) scale(1.03);
}

.team-card figcaption {
  padding: 0.75rem 0.85rem;
  font-size: 0.85rem;
}

.team-card figcaption strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.team-card figcaption span {
  color: var(--muted);
  font-size: 0.8rem;
}

.page-hero-simple {
  padding: 2.5rem 0 1rem;
}

.blog-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 4rem;
}

/* Výpis blogu — rovnaká mriežka ako „Z blogu“ na domovskej stránke */
.blog-index-grid {
  padding: 0 0 2rem;
}

.blog-row {
  border-bottom: 1px solid var(--line);
}

.blog-row:last-child {
  border-bottom: none;
}

.blog-row__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  text-decoration: none;
  color: inherit;
  align-items: center;
  border-radius: var(--radius-sm);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo);
}

@media (min-width: 600px) {
  .blog-row__link {
    grid-template-columns: 200px 1fr;
  }
}

.blog-row__link img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 260px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-sm);
  background: #eef1f6;
  border: 1px solid var(--img-border);
  box-shadow: var(--img-shadow);
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s ease;
}

.blog-row:hover .blog-row__link img {
  transform: translateZ(0) scale(1.04) translateY(-2px);
  border-color: var(--img-border-hover);
  box-shadow: var(--img-shadow-hover);
}

.blog-row__body h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.blog-row__body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.blog-row__more {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--remax-blue);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.blog-card__img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 260px;
  margin: 0 auto;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: #eef1f6;
  transition: transform 0.55s var(--ease-out-expo);
}

.blog-card:hover .blog-card__img {
  transform: translateZ(0) scale(1.04);
}

.blog-card__more {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--remax-blue);
}

.not-found {
  min-height: 55vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.two-col-contact {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 4rem;
  align-items: start;
}

@media (min-width: 900px) {
  .two-col-contact {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontakt-form-title {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-maps-section {
  padding-bottom: 2.5rem;
}

.contact-maps-section--home {
  padding-top: 2.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.contact-maps-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  color: var(--remax-blue-deep);
}

.contact-maps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .contact-maps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

.map-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.75rem;
  box-shadow: var(--img-shadow);
}

.map-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--remax-blue);
}

.map-address {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.map-embed-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(145deg, #e8edf5 0%, #f0f2f5 100%);
}

.map-embed-slot.map-embed--loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: map-shimmer 1.1s ease-in-out infinite;
  pointer-events: none;
}

.map-embed-slot.map-embed--loading .map-embed-iframe {
  opacity: 0;
}

.map-embed-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
  transition: opacity 0.35s ease;
}

@keyframes map-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Kurzor — plávajúce bublinky (aktivuje JS, desktop + jemná animácia) */
.cursor-bubbles-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100050;
  overflow: hidden;
  contain: strict;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cursor-bubbles-root.is-ready {
  opacity: 1;
}

/* Po zastavení myši — bublinky zmiznú, systémový kurzor (bez html.bubble-cursor-active) */
.cursor-bubbles-root.is-ready.cursor-bubbles--idle {
  opacity: 0;
}

.cursor-bubble {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, width, height, opacity;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.2) 42%, transparent 72%),
    radial-gradient(circle at 50% 50%, rgba(1, 112, 185, 0.45), rgba(0, 60, 165, 0.12));
  box-shadow:
    0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 2px 14px rgba(1, 112, 185, 0.22),
    0 0 20px rgba(225, 28, 46, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(1px);
}

.cursor-bubble--lead {
  box-shadow:
    0 0 1px rgba(255, 255, 255, 0.95) inset,
    0 3px 18px rgba(1, 112, 185, 0.35),
    0 0 24px rgba(225, 28, 46, 0.12);
}

html.bubble-cursor-active {
  cursor: none;
}

html.bubble-cursor-active body,
html.bubble-cursor-active body * {
  cursor: none !important;
}

html.bubble-cursor-active body input:not([type="checkbox"]):not([type="radio"]),
html.bubble-cursor-active body textarea,
html.bubble-cursor-active body select,
html.bubble-cursor-active body [contenteditable="true"] {
  cursor: text !important;
}

html.bubble-cursor-active body input[type="checkbox"],
html.bubble-cursor-active body input[type="radio"] {
  cursor: pointer !important;
}

html.bubble-cursor-active body .map-embed-iframe {
  cursor: auto !important;
}

@media (pointer: coarse) {
  .cursor-bubbles-root {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-bubbles-root {
    display: none !important;
  }

  .map-embed-slot.map-embed--loading::after {
    animation: none;
    opacity: 0.35;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-figure,
  .hero-figure__img,
  .hero-carousel__slide,
  .banner-card,
  .banner-card img,
  .page-cover__img,
  .team-card,
  .team-card img,
  .blog-card,
  .blog-card__img,
  .blog-row__link img {
    transition: none !important;
  }

  .hero-figure:hover,
  .banner-card:hover,
  .team-card:hover,
  .blog-card:hover {
    transform: none;
  }

  .hero-figure:hover .hero-figure__img,
  .banner-card:hover img,
  .page-cover:hover .page-cover__img,
  .team-card:hover img,
  .blog-card:hover .blog-card__img,
  .blog-row:hover .blog-row__link img {
    transform: none;
  }
}

/* --- Úvodná stránka: vzdušnejší ritmus; štatistiky pred banermi --- */
main.home-page .hero-with-media--headline-image {
  padding-top: 5rem;
  padding-bottom: 3.75rem;
}

/* Exclusive — väčší odstup od karuselu, viac vzduchu nad „múrom“ obsahu */
main.home-page .hero-zahranicie-strip {
  margin-top: 10rem;
}

main.home-page .hero-landing-strip--fullbleed {
  padding-bottom: 1.75rem;
}

main.home-page > .section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

main.home-page > .section.alt.home-page-stats {
  padding-top: 3rem;
  padding-bottom: 5.25rem;
}

main.home-page > .section.alt.home-page-stats .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

main.home-page > .section.shell.home-page-banners {
  padding-top: 4rem;
  padding-bottom: 5.5rem;
}

main.home-page > .section[aria-labelledby="home-blog"] {
  padding-top: 2.75rem;
  padding-bottom: 5.5rem;
}

main.home-page > .section[aria-labelledby="home-blog"] .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

main.home-page > .section.alt:last-of-type {
  padding-top: 5.5rem;
  padding-bottom: 4rem;
}

main.home-page .banner-grid {
  gap: 2rem;
}

@media (min-width: 900px) {
  main.home-page .banner-grid {
    gap: 2.5rem;
  }
}

main.home-page .blog-grid {
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 880px) {
  main.home-page .blog-grid {
    gap: 2.35rem;
  }
}

/* Z blogu — 4 karty: rovnaká výška náhľadu, texty v stĺpci zarovnané do výšky */
main.home-page .blog-grid .blog-card {
  height: 100%;
  min-height: 0;
}

main.home-page .blog-card__img {
  width: 100%;
  height: 200px;
  max-height: none;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

main.home-page .blog-card__link {
  flex: 1;
  min-height: 0;
}

main.home-page .blog-card .body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

main.home-page .blog-card p {
  flex: 1 1 auto;
  min-height: 0;
}

main.home-page .blog-card__more {
  margin-top: auto;
  flex-shrink: 0;
}

main.home-page .section-head {
  margin-bottom: 3rem;
}

main.home-page .center-cta {
  margin-top: 3.5rem;
}

main.home-page .home-blog-promo {
  margin-top: 4.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

main.home-page .contact-maps-section--home {
  margin-top: 2.5rem;
  padding-top: 3.5rem;
}

main.home-page .contact-maps-grid {
  gap: 1.75rem;
}

@media (min-width: 800px) {
  main.home-page .contact-maps-grid {
    gap: 2rem;
  }
}
