/*
 * WEBSTRATEGY HOMEPAGE — COMPONENT OVERRIDES
 *
 * The sections below intentionally preserve the former stylesheet load order.
 * Keeping final component decisions here avoids scattered one-purpose CSS files and inline styles.
 */

/* ==========================================================================
   PROCESS + FAQ — FOUNDATION
   ========================================================================== */
/* Rozhodovací část homepage: proces, očekávání a nejčastější otázky. */
.home-process {
  padding-bottom: clamp(72px, 6vw, 96px);
}

.home-process__steps {
  gap: clamp(24px, 3vw, 48px);
}

.home-process__steps li {
  min-height: 228px;
  padding: 18px 0 0;
  border-radius: 0;
}

.home-process__steps h3 {
  margin-top: 14px;
}

.home-process__roles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 80px);
  width: min(820px, 100%);
  margin: 8px 0 4px;
  padding: 28px 0;
}

.home-process__roles div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
}

.home-process__roles span {
  color: #8edcff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.home-process__roles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.home-process__expectations {
  margin-top: 0;
  padding: 24px 0 0;
  border-radius: 0;
}

.home-process__action {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.home-process__cta {
  margin-top: 0;
}

.home-process__action > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  line-height: 1.5;
}

.home-faq {
  padding: clamp(72px, 6vw, 96px) 24px clamp(64px, 6vw, 96px);
  color: #fff;
  background: #000;
}

.home-faq__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(54px, 9vw, 142px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.home-faq__head {
  align-self: start;
  position: sticky;
  top: 120px;
}

.home-faq__head > span {
  display: block;
  margin-bottom: 17px;
  color: #8edcff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-faq__head h2 {
  max-width: 440px;
  margin: 0;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.home-faq__head p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

.home-faq__list {
  min-width: 0;
}

.home-faq__list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.home-faq__list details:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.home-faq__list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 24px;
  align-items: center;
  padding: 27px 0;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

.home-faq__list summary::-webkit-details-marker {
  display: none;
}

.home-faq__list summary::after {
  content: "+";
  color: rgba(255, 255, 255, 0.66);
  font: 300 26px/1 "Geom", sans-serif;
  text-align: center;
  transition: transform 0.25s ease, color 0.25s ease;
}

.home-faq__list details[open] summary::after {
  color: #8edcff;
  transform: rotate(45deg);
}

.home-faq__list details > p {
  max-width: 680px;
  margin: -5px 52px 28px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.home-faq__contact {
  display: inline-flex;
  align-self: start;
  align-items: center;
  grid-column: 2;
  justify-self: start;
  margin-top: -96px;
  color: #8edcff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.home-faq__contact span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 0.2s ease;
}

.home-faq__contact:hover span,
.home-faq__contact:focus-visible span {
  transform: translateX(4px);
}

#recenze[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .home-process__roles {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .home-faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-faq__head {
    position: static;
  }

  .home-faq__contact {
    grid-column: auto;
    margin-top: -20px;
  }
}

@media (max-width: 620px) {
  .home-process__steps li {
    min-height: 0;
    padding: 16px 0 12px;
    border-radius: 0;
  }

  .home-process__expectations {
    padding: 22px 0 0;
    border-radius: 0;
  }

  .home-process__roles {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 14px;
    padding: 22px 0;
  }

  .home-process__roles div {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .home-process__action {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .home-faq {
    padding: 82px 18px 54px;
  }

  .home-faq__inner {
    gap: 38px;
  }

  .home-faq__head h2 {
    font-size: 36px;
  }

  .home-faq__list summary {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 16px;
    padding: 23px 0;
    font-size: 18px;
  }

  .home-faq__list details > p {
    margin: -3px 36px 24px 0;
    font-size: 14px;
  }
}

/* ==========================================================================
   PROCESS — FINAL COMPACT LAYOUT
   ========================================================================== */
/* Kompaktní proces spolupráce: hlavní informace jsou viditelné bez opakování. */
#spoluprace.home-process {
  padding: clamp(92px, 7vw, 124px) 24px clamp(76px, 5.5vw, 96px);
}

#spoluprace .home-process__head {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 36px clamp(52px, 8vw, 112px);
  margin-bottom: clamp(48px, 5vw, 64px);
}

#spoluprace .home-process__head h2 {
  max-width: 800px;
  font-size: clamp(42px, 4.2vw, 64px);
}

#spoluprace .home-process__head > p {
  max-width: 370px;
  font-size: 15px;
  line-height: 1.65;
}

#spoluprace .home-process__steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3.2vw, 50px);
}

#spoluprace .home-process__steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-content: start;
  min-height: 0;
  padding: 0;
}

#spoluprace .home-process__steps li > span {
  grid-column: 1;
  grid-row: 1 / 3;
  padding-top: 4px;
}

#spoluprace .home-process__steps h3 {
  grid-column: 2;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.16;
}

#spoluprace .home-process__steps p {
  grid-column: 2;
  max-width: 250px;
  font-size: 13px;
  line-height: 1.65;
}

#spoluprace .home-process__expectations {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
  margin-top: clamp(48px, 5vw, 66px);
  padding: 0;
}

#spoluprace .home-process__expectations div {
  padding: 0;
}

#spoluprace .home-process__expectations strong {
  margin-bottom: 8px;
  font-size: 18px;
}

#spoluprace .home-process__expectations span {
  max-width: 260px;
  font-size: 12px;
  line-height: 1.55;
}

#spoluprace .home-process__action {
  gap: 22px;
  margin-top: 34px;
}

#spoluprace .home-process__action > p {
  white-space: nowrap;
}

@media (max-width: 980px) {
  #spoluprace .home-process__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  #spoluprace .home-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  #spoluprace .home-process__steps p {
    max-width: 320px;
  }
}

@media (max-width: 620px) {
  #spoluprace.home-process {
    padding: 74px 18px 64px;
  }

  #spoluprace .home-process__head {
    margin-bottom: 46px;
  }

  #spoluprace .home-process__head h2 {
    font-size: 36px;
    line-height: 1.04;
  }

  #spoluprace .home-process__head > p {
    max-width: 500px;
    font-size: 14px;
  }

  #spoluprace .home-process__steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #spoluprace .home-process__steps li {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 10px;
    padding: 0;
  }

  #spoluprace .home-process__steps h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  #spoluprace .home-process__steps p {
    max-width: 480px;
    font-size: 14px;
    line-height: 1.58;
  }

  #spoluprace .home-process__expectations {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 46px;
    padding: 0;
  }

  #spoluprace .home-process__expectations div {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
    padding: 0;
  }

  #spoluprace .home-process__expectations strong {
    margin: 0;
    font-size: 16px;
  }

  #spoluprace .home-process__expectations span {
    max-width: none;
    font-size: 12px;
  }

  #spoluprace .home-process__action {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  #spoluprace .home-process__action > p {
    white-space: normal;
  }
}

/* ==========================================================================
   FAQ — STATIC HEADING OVERRIDE
   ========================================================================== */
/* FAQ: nadpis se posouvá přirozeně s celou sekcí. */
.home-faq__head {
  position: static;
  top: auto;
}

/* ==========================================================================
   CONTACT — FINAL LAYOUT
   ========================================================================== */
/* Contact section: a calm, low-friction final step after the FAQ. */
#kontakt.contact-section {
  padding-top: clamp(88px, 9vw, 132px);
  background: #000;
  color-scheme: dark;
}

.contact-intro {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.contact-eyebrow {
  margin: 0 0 16px;
  color: #48bcf2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#kontakt .kontaktForm-nadpis {
  max-width: 820px;
  margin: 0 auto 20px;
  padding: 0;
  color: #fff;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

#kontakt .kontaktForm-p {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  text-wrap: balance;
}

.contact-expectations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  list-style: none;
}

.contact-expectations li {
  display: inline-flex;
  align-items: center;
}

.contact-expectations li + li::before {
  content: "·";
  margin: 0 12px;
  color: rgba(72, 188, 242, 0.75);
}

#kontakt .kontaktForm {
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
}

#kontakt .kontakt-left,
#kontakt .kontakt-right {
  min-width: 0;
}

#kontakt .kontakt-left {
  justify-content: flex-end;
}

#kontakt .kontakt-right {
  justify-content: flex-start;
}

#kontakt .form {
  gap: 22px;
  max-width: 520px;
}

.contact-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-field__label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.contact-field__label span,
.contact-field__hint {
  color: rgba(255, 255, 255, 0.54);
  font-weight: 400;
}

.contact-field__hint {
  margin-top: -1px;
  font-size: 12px;
  line-height: 1.45;
}

#kontakt .input,
#kontakt .textarea,
#kontakt .select-wrap select {
  min-height: 48px;
  padding: 8px 0 13px;
  border-bottom-color: rgba(255, 255, 255, 0.4);
  border-radius: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

#kontakt .input::placeholder,
#kontakt .textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#kontakt .input:hover,
#kontakt .textarea:hover,
#kontakt .select-wrap select:hover {
  border-bottom-color: rgba(255, 255, 255, 0.62);
}

#kontakt .input:focus,
#kontakt .textarea:focus,
#kontakt .select-wrap select:focus {
  border-bottom-color: #48bcf2;
  box-shadow: 0 2px 0 -1px #48bcf2;
}

#kontakt .input:user-invalid,
#kontakt .textarea:user-invalid {
  border-bottom-color: #ff8f8f;
}

#kontakt [aria-invalid="true"] {
  border-bottom-color: #ff8f8f;
}

.contact-field__error {
  margin: 0;
  color: #ffb1b1;
  font-size: 12px;
  line-height: 1.45;
}

#kontakt .textarea {
  min-height: 112px;
}

#kontakt .select-wrap::after {
  right: 2px;
  width: 10px;
  height: 10px;
  opacity: 0.72;
}

#kontakt .select-wrap select {
  padding-right: 28px;
}

#kontakt .odeslat-button {
  min-height: 52px;
  margin-top: 4px;
}

#kontakt .form-status {
  min-height: 0;
  margin: -6px 0 0;
  font-size: 13px;
}

#kontakt .form-privacy {
  max-width: 520px;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.6;
}

#kontakt .kontakt-right-videodiv {
  width: 100%;
  max-width: 540px;
}

#kontakt .kontakt-right-video {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 0;
  border-radius: 18px;
}

@media (max-width: 980px) {
  #kontakt .kontaktForm {
    width: min(620px, calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 56px;
  }

  #kontakt .kontakt-left,
  #kontakt .kontakt-right {
    justify-content: center;
  }

  #kontakt .kontakt-left {
    order: 1;
  }

  #kontakt .kontakt-right {
    order: 2;
  }

  #kontakt .kontakt-right-videodiv {
    max-width: 480px;
  }
}

@media (max-width: 600px) {
  #kontakt.contact-section {
    padding-top: 80px;
  }

  .contact-intro {
    width: min(100% - 32px, 520px);
    margin-bottom: 44px;
  }

  .contact-eyebrow {
    margin-bottom: 13px;
    font-size: 11px;
  }

  #kontakt .kontaktForm-nadpis {
    margin-bottom: 18px;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
  }

  #kontakt .kontaktForm-p {
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-expectations {
    margin-top: 20px;
    font-size: 12px;
  }

  .contact-expectations li + li::before {
    margin: 0 8px;
  }

  #kontakt .kontaktForm {
    width: min(100% - 32px, 520px);
    gap: 48px;
  }

  #kontakt .form {
    gap: 20px;
  }

  #kontakt .odeslat-button {
    min-height: 54px;
    font-size: 14px;
    letter-spacing: 1.2px;
  }

  #kontakt .kontakt-right-videodiv {
    max-width: 420px;
  }

  #kontakt .kontakt-right-video {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #kontakt .input,
  #kontakt .textarea,
  #kontakt .select-wrap select {
    transition: none;
  }
}

/* ==========================================================================
   FOOTER — FINAL LAYOUT
   ========================================================================== */
/* Footer: compact utility navigation and verifiable company information. */
.site-footer {
  border-top-color: rgba(72, 188, 242, 0.16);
}

.site-footer::before {
  width: min(96px, 22vw);
  height: 1px;
  box-shadow: 0 0 14px rgba(72, 188, 242, 0.46);
}

.site-footer__inner {
  width: min(1160px, calc(100% - 48px));
  padding: 58px 0 24px;
}

.site-footer__grid {
  grid-template-columns: minmax(280px, 1.4fr) minmax(170px, 0.65fr) minmax(240px, 0.9fr);
  gap: clamp(48px, 7vw, 104px);
}

.site-footer__wordmark {
  font-size: 27px;
}

.site-footer__brand p {
  max-width: 390px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer__column h2 {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.site-footer__column address,
.site-footer__nav {
  gap: 8px;
}

.site-footer__column address a,
.site-footer__nav a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__column address span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer__bottom {
  margin-top: 46px;
  padding-top: 20px;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 22px;
}

.site-footer__legal a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__wordmark:hover,
.site-footer__column address a:hover,
.site-footer__nav a:hover,
.site-footer__legal a:hover {
  color: #48bcf2;
}

.site-footer__wordmark:focus-visible,
.site-footer__column address a:focus-visible,
.site-footer__nav a:focus-visible,
.site-footer__legal a:focus-visible {
  outline: 2px solid #48bcf2;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 42px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer__inner {
    width: min(100% - 32px, 520px);
    padding-top: 50px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 34px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__brand p {
    max-width: 360px;
    font-size: 13px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    gap: 13px;
    margin-top: 38px;
  }

  .site-footer__legal {
    justify-content: flex-start;
    gap: 7px 18px;
  }

  .site-footer__column address a,
  .site-footer__nav a,
  .site-footer__legal a {
    min-height: 40px;
  }
}

@media (max-width: 340px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__column address a,
  .site-footer__nav a,
  .site-footer__legal a {
    transition: none;
  }
}

/* ==========================================================================
   REFERENCE CARDS — FINAL INTERACTION OVERRIDES
   ========================================================================== */
#reference .item {
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.45s ease;
}

#reference .item:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
}

#reference .item-btn {
    gap: 9px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

#reference .item-btn__icon {
    width: 15px;
    height: 15px;
}

#reference .item:hover .item-btn {
    background: rgba(255, 255, 255, 0.16);
}

#reference .item:hover .item-btn__icon,
#reference .item-btn:hover .item-btn__icon {
    transform: translate(2px, -2px);
}

#reference .reference-controls {
    width: max-content;
    gap: 2px;
    margin: 28px auto 0;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

#reference .reference-control {
    width: 48px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.75, 0.25, 1), opacity 0.25s ease;
}

#reference .reference-control__icon {
    width: 22px;
    height: 22px;
    stroke-width: 1.9;
}

#reference .reference-control:hover:not(:disabled) {
    border-color: transparent;
    background: #fff;
    color: #05070a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
    transform: scale(1.02);
}

#reference .reference-control:active:not(:disabled) {
    transform: scale(0.94);
}

#reference .reference-prev:hover:not(:disabled) .reference-control__icon {
    transform: translateX(-1.5px);
}

#reference .reference-next:hover:not(:disabled) .reference-control__icon {
    transform: translateX(1.5px);
}

#reference .reference-control:disabled {
    opacity: 0.28;
    box-shadow: none;
}

#reference .item-section.grabbing,
#reference .item-section.free-scroll {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

@media (max-width: 700px) {
    #reference .reference-controls {
        margin-top: 20px;
    }

    #reference .reference-control {
        width: 48px;
        height: 44px;
    }
}

@media (min-width: 701px) {
    #reference .item {
        flex-basis: 390px;
    }
}

@media (hover: none) {
    #reference .item:hover {
        transform: none;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    }

    #reference .item:hover .item-btn {
        background: rgba(255, 255, 255, 0.1);
    }

    #reference .reference-control:hover:not(:disabled) {
        border-color: transparent;
        background: transparent;
        color: rgba(255, 255, 255, 0.94);
        box-shadow: none;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    #reference .item,
    #reference .item::before,
    #reference .item-btn,
    #reference .item-btn__icon {
        transition: none;
    }
}

/* Jednotná typografie domovské stránky včetně prvků, které standardně nedědí font. */
body,
body * {
    font-family: "Geom", sans-serif !important;
}

/* Hero wordmark: barevné provedení značky pouze v prvním kontaktu. */
#hero .hero-wordmark .hero-word {
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.045em;
    font-family: "Anta", sans-serif !important;
}

#hero .hero-wordmark .hero-word--strong {
    color: #48bcf2;
    font-weight: 900;
}
