/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs {
  background: var(--paper);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--soft);
}
.breadcrumbs__list a {
  color: var(--soft);
  transition: color var(--t);
}
.breadcrumbs__list a:hover {
  color: var(--ink);
}
.breadcrumbs__sep {
  color: var(--line);
}
.breadcrumbs__list [aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}

/* ==========================================================================
   Service page hero (generic + geo)
   ========================================================================== */

.srv-hero {
  background: var(--paper);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.srv-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.srv-hero__content {
  max-width: 620px;
}
.srv-hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}
.srv-hero h1 .accent {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
}
.srv-hero__lead {
  font-size: 18px;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.55;
}
.srv-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.srv-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.srv-hero__facts div strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.srv-hero__facts div span {
  font-size: 13px;
  color: var(--soft);
  display: block;
}

.srv-hero__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.srv-hero__card-inner {
  position: relative;
  z-index: 2;
}
.srv-hero__card h3,
.srv-hero__card-title {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.srv-hero__card-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.srv-hero__card-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-2);
}
.srv-hero__card-list .icon {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}
.srv-hero__card .btn {
  width: 100%;
}

/* Photo-background variant — same visual language as homepage .srv-card */
.srv-hero__card--photo {
  border-color: transparent;
  color: #fff;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.srv-hero__card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.srv-hero__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 8, 0.88) 0%,
    rgba(10, 8, 8, 0.45) 55%,
    rgba(10, 8, 8, 0.1) 100%
  );
  z-index: 1;
}
.srv-hero__card--photo .srv-hero__card-inner {
  padding: 4px 4px 4px;
}
.srv-hero__card--photo h3 {
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.srv-hero__card--photo .srv-hero__card-list li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.4;
}
.srv-hero__card--photo .srv-hero__card-list .icon {
  color: #fff;
  opacity: 0.88;
}
.srv-hero__card--photo .srv-hero__card-list li strong {
  color: #fff;
}
.srv-hero__card--photo .srv-hero__icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  margin-bottom: 16px;
}
.srv-hero__card--photo .srv-hero__icon-lg img,
.srv-hero__card--photo .srv-hero__icon-lg svg {
  width: 24px;
  height: 24px;
  color: #fff;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.srv-hero__card--photo .btn--primary {
  background: #fff;
  color: var(--ink);
}
.srv-hero__card--photo .btn--primary:hover {
  background: var(--red);
  color: #fff;
}

/* Geo page hero variant */
.srv-hero--geo .srv-hero__content h1 {
  font-size: clamp(48px, 7vw, 86px);
}
.srv-hero--geo .geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.srv-hero--geo .geo-badge .icon {
  color: var(--red);
}

/* ==========================================================================
   Common problems
   ========================================================================== */

.problems {
  background: var(--paper);
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem {
  padding: 32px 24px 32px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem:not(:nth-child(4n)) {
  /* all except last in row */
}
.problem:nth-child(4n) {
  border-right: none;
}
.problem:nth-last-child(-n + 4) {
  border-bottom: none;
}
.problem:not(:nth-child(4n + 1)) {
  padding-left: 24px;
}
.problem__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.problem h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.problem p {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.5;
}

/* ==========================================================================
   Geo coverage grid
   ========================================================================== */

.coverage {
  background: var(--paper-2);
}
.coverage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.coverage__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all var(--t);
}
.coverage__item > div:first-child {
  min-width: 0;
}
.coverage__item:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.coverage__place {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  font-family: var(--serif);
  letter-spacing: -0.01em;
}
.coverage__item small {
  font-size: 12px;
  color: var(--soft);
}
.coverage__time {
  background: var(--accent-soft);
  color: var(--red);
  padding: 6px 12px;
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   Related / cross-link cards
   ========================================================================== */

.related {
  background: var(--paper);
}

/* Legacy flat cards — still used on service/brand landing pages */
.related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.related__card {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all var(--t);
}
.related__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
}
.related__icon {
  width: 64px;
  height: 64px;
  background: var(--accent-soft);
  color: var(--red);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.related__icon svg {
  width: 32px;
  height: 32px;
}
.related__body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.related__body p {
  font-size: 14px;
  color: var(--soft);
  margin-bottom: 10px;
  line-height: 1.5;
}
.related__body span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.related__card:hover .related__body span {
  color: var(--red);
  border-color: var(--red);
}

@media (max-width: 1100px) {
  .srv-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem {
    border-right: none !important;
    padding: 28px 0 !important;
  }
  .problem:nth-child(2n-1) {
    border-right: 1px solid var(--line) !important;
    padding-right: 24px !important;
  }
  .coverage__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 14px 0;
  }
  .breadcrumbs__list {
    font-size: 12px;
    gap: 6px;
  }
  .srv-hero {
    padding: 40px 0 56px;
  }
  .srv-hero h1 {
    font-size: clamp(28px, 7.5vw, 42px);
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .srv-hero--geo .srv-hero__content h1 {
    font-size: clamp(30px, 8vw, 48px);
  }
  .srv-hero__lead {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .srv-hero__ctas {
    margin-bottom: 24px;
    gap: 10px;
  }
  .srv-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .srv-hero__facts {
    gap: 20px;
    padding-top: 22px;
    justify-self: center;
  }
  .srv-hero__facts div strong {
    font-size: 22px;
  }
  .srv-hero__facts div span {
    font-size: 12px;
  }
  .srv-hero__card {
    padding: 22px 20px;
  }
  .srv-hero__card h3,
  .srv-hero__card-title {
    font-size: 18px;
  }
  .srv-hero__card-list li {
    font-size: 14px;
  }
  .srv-hero--geo .geo-badge {
    font-size: 12px;
    padding: 6px 12px 6px 10px;
    margin-bottom: 16px;
  }
  .problem h3 {
    font-size: 17px;
  }
  .problem p {
    font-size: 13px;
  }
  .problem__num {
    font-size: 17px;
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .problem {
    border-right: none !important;
    padding: 24px 0 !important;
  }
  .coverage__grid {
    grid-template-columns: 1fr;
  }
  .related__card {
    flex-direction: column;
    text-align: left;
    gap: 16px;
    padding: 24px;
  }
  .srv-hero__facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 380px) {
  .srv-hero h1 {
    font-size: 26px;
  }
  .srv-hero--geo .srv-hero__content h1 {
    font-size: 28px;
  }
  .srv-hero__lead {
    font-size: 14px;
  }
  .srv-hero__card {
    padding: 18px 16px;
  }
}

/* ==========================================================================
   Cities section (service pages)
   ========================================================================== */

.cities {
  background: var(--paper);
}
.cities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cities__card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  min-height: 128px;
}
.cities__card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.cities__place {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.cities__detail {
  font-size: 13px;
  color: var(--soft);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cities__detail .icon {
  color: var(--red);
  width: 14px;
  height: 14px;
}
.cities__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  color: var(--red);
  opacity: 0.5;
  transition: all var(--t);
}
.cities__card:hover .cities__arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

.cities__card--featured {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.cities__card--featured .cities__place {
  color: #fff;
}
.cities__card--featured .cities__detail {
  color: rgba(255, 255, 255, 0.8);
}
.cities__card--featured .cities__detail .icon {
  color: #fff;
}
.cities__card--featured .cities__arrow {
  color: #fff;
  opacity: 1;
}
.cities__card--featured:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.cities__badge {
  position: absolute;
  top: 16px;
  right: 40px;
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  background: var(--accent-soft);
  padding: 3px 9px;
  border-radius: var(--pill);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.cities__card--featured .cities__badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cities__note {
  margin-top: 30px;
  text-align: center;
  font-size: 14.5px;
  color: var(--soft);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cities__note .icon {
  color: var(--red);
}

@media (max-width: 1100px) {
  .cities__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .cities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .cities__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Mobile sticky action bar (conversion-focused)
   ========================================================================== */

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 8px;
  z-index: 95;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.2);
}
.mobile-bar .btn {
  flex: 1;
  padding: 14px 10px;
  font-size: 14px;
  letter-spacing: 0;
  border-radius: var(--pill);
  min-height: 48px;
}
.mobile-bar .btn svg {
  flex-shrink: 0;
}
.mobile-bar .btn--outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}
.mobile-bar .btn--outline:hover,
.mobile-bar .btn--outline:active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.mobile-bar .btn--primary {
  background: var(--red);
  color: #fff;
}
.mobile-bar .btn--primary:hover,
.mobile-bar .btn--primary:active {
  background: var(--red-dark);
  transform: none;
}

@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
  }

  .back-top {
    bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* ==========================================================================
   Data-driven service page additions
   ========================================================================== */

/* Accent-tinted gradient backdrop behind hero using per-service --srv-accent */
.srv-hero {
  --srv-accent: var(--red);
}
.srv-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      900px 500px at 85% -10%,
      color-mix(in srgb, var(--srv-accent) 14%, transparent) 0%,
      transparent 60%
    ),
    radial-gradient(
      700px 420px at -10% 110%,
      color-mix(in srgb, var(--srv-accent) 8%, transparent) 0%,
      transparent 55%
    );
  opacity: 1;
}
.srv-hero > .container {
  position: relative;
  z-index: 1;
}
.srv-hero h1 .accent {
  color: var(--srv-accent);
}

/* Large icon badge on hero card — replaces external hero imagery */
.srv-hero__icon-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 20px;
  margin: 0 0 18px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--srv-accent) 18%, var(--white)) 0%,
    color-mix(in srgb, var(--srv-accent) 6%, var(--white)) 100%
  );
  border: 1px solid color-mix(in srgb, var(--srv-accent) 22%, var(--line));
}
.srv-hero__icon-lg svg {
  width: 52px;
  height: 52px;
  color: var(--srv-accent);
}

/* Related grid — 3 columns desktop when 3 cards present */
.related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Mobile tweaks for new data-driven elements */
@media (max-width: 960px) {
  .srv-hero__bg {
    background: radial-gradient(
      600px 400px at 50% -20%,
      color-mix(in srgb, var(--srv-accent) 16%, transparent) 0%,
      transparent 60%
    );
  }
}
@media (max-width: 640px) {
  .srv-hero__icon-lg {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 14px;
  }
  .srv-hero__icon-lg svg {
    width: 36px;
    height: 36px;
  }
  .srv-hero__facts {
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
  }
  .srv-hero__facts div strong {
    font-size: 22px;
  }
  .srv-hero__facts div span {
    max-width: none;
  }

  /* Problems grid stacks 1-col mobile with cleaner borders */
  .problems__grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    border-bottom: none;
    border-top: none;
  }
  .problem {
    padding: 22px 0 !important;
    border-right: none !important;
  }
  .problem:last-child {
    border-bottom: none !important;
  }

  /* Coverage grid — 1 col on mobile so the time pill never gets clipped */
  .coverage__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .coverage__item {
    padding: 14px 16px;
    gap: 12px;
    min-height: 58px;
  }
  .coverage__place {
    font-size: 15px;
  }
  .coverage__item small {
    font-size: 11.5px;
  }
  .coverage__time {
    font-size: 12px;
    padding: 5px 10px;
  }

  /* Related cards stack */
  .related__grid {
    grid-template-columns: 1fr;
  }
}

/* Cross-links card grid */
.xlinks__lead {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 640px;
  margin: 8px 0 0;
}
.xlinks__grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.xlinks__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.xlinks__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--ink);
  min-height: 120px;
  box-shadow: var(--sh-1);
  transition:
    box-shadow var(--t),
    transform var(--t);
}
.xlinks__card:hover {
  box-shadow: var(--sh-2);
  transform: translateY(-3px);
}
.xlinks__card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.xlinks__more {
  font-size: 13px;
  font-weight: 600;
  color: #838382;
  margin-top: 16px;
}
.xlinks__card--loc {
  flex-direction: row;
  align-items: center;
  min-height: auto;
  padding: 18px 24px;
  gap: 12px;
}
.xlinks__card--loc h3 {
  font-size: 16px;
  flex: 1;
}
.xlinks__card--loc .xlinks__more {
  margin-top: 0;
  white-space: nowrap;
}
.xlinks__pin {
  color: var(--red);
  flex-shrink: 0;
}
.xlinks__toggle {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
}
.xlinks__toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--t);
}
.xlinks__toggle-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.xlinks__toggle-chev {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}
.xlinks__toggle-btn[aria-expanded="true"] .xlinks__toggle-chev {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .xlinks__grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .xlinks__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .xlinks__grid--collapse .xlinks__card:nth-child(n + 5) {
    display: none;
  }

  .brand-tile {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .xlinks__grid--4 {
    grid-template-columns: 1fr;
  }
}
.xlinks__grid .xlinks__toggle {
  display: none;
}
@media (max-width: 768px) {
  .xlinks__grid .xlinks__toggle {
    display: block;
  }
}

/* Brand page — editorial content section between hero and services */
.brand-content {
  padding: 40px 0 56px !important;
  background: var(--paper);
  position: relative;
}
.brand-content::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 32px;
  border-radius: 2px;
}
.brand-content .entry-content {
  color: var(--ink-2);
}
.brand-content .entry-content > p:first-child {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.brand-content .entry-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.brand-content .entry-content h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 32px 0 16px;
  color: var(--ink);
  line-height: 1.25;
}
.brand-content .entry-content h3 {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--ink);
}
.brand-content .entry-content ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: grid;
  gap: 8px;
}
.brand-content .entry-content ul li {
  position: relative;
  padding: 0 0 0 28px;
  color: var(--ink-2);
  line-height: 1.55;
  font-size: 15px;
}
.brand-content .entry-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%231456cf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='1.5 5 4 7.5 8.5 2.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.brand-content .entry-content ol {
  list-style: decimal;
  padding-left: 22px;
  margin: 8px 0 14px;
}
.brand-content .entry-content ol li {
  padding: 3px 0;
  color: var(--ink-2);
  line-height: 1.55;
}
.brand-content .entry-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.brand-content .entry-content a:hover {
  color: var(--red-dark);
}
.brand-content .entry-content strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 640px) {
  .brand-content {
    padding: 28px 0 40px !important;
  }
  .brand-content::before {
    margin-bottom: 22px;
  }
  .brand-content .entry-content > p:first-child {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .brand-content .entry-content p {
    font-size: 15px;
  }
  .brand-content .entry-content h2 {
    margin: 24px 0 12px;
  }
  .brand-content .entry-content ul li {
    font-size: 14.5px;
    padding-left: 26px;
  }
}

/* Brand tile as link */
a.brand-tile {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.brand-tile:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
}

/* Error codes */
.error-codes__list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  row-gap: 10px;
}
.error-codes__dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.error-codes__row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.error-codes__row:last-child {
  border-bottom: 0;
}
.error-codes__row dt {
  flex-shrink: 0;
}
.error-codes__row dt code {
  background: var(--paper);
  padding: 3px 8px;
  border-radius: var(--r-sm, 4px);
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  border: 1px solid var(--line);
}
.error-codes__row dd {
  margin: 0;
  font-size: 14px;
  color: var(--soft);
}

/* ==========================================================================
   Thank-you page (page-dekujeme.php)
   ========================================================================== */

.ty-page {
  --ty-success: #2e7d32;
  --ty-success-soft: #e8f5e9;
  --ty-star: #f5a623;
  --ty-soft-2: #8f857e;
}

@keyframes ty-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ty-scale-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ty-ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes ty-soft-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
@keyframes ty-check-pop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero */
.ty-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 10vw, 104px) 0 clamp(36px, 5vw, 56px);
  background: var(--paper);
}
.ty-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ty-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.85);
  display: block;
}
.ty-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(246, 241, 234, 0.5) 0%,
      var(--paper) 65%
    ),
    linear-gradient(180deg, rgba(246, 241, 234, 0.4), var(--paper) 90%);
  pointer-events: none;
}
.ty-hero__bg[data-has-custom-overlay="1"]::after {
  display: none;
}
.ty-hero__bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ty-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(20, 86, 207, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}
.ty-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* Check icon with rings */
.ty-hero__icon {
  position: relative;
  width: clamp(88px, 11vw, 112px);
  height: clamp(88px, 11vw, 112px);
  margin: 0 auto clamp(24px, 3vw, 32px);
  animation: ty-scale-in 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ty-hero__icon-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--ty-success);
  border-radius: 50%;
  opacity: 0;
  animation: ty-ring-pulse 2.4s ease-out infinite;
}
.ty-hero__icon-ring:nth-child(2) {
  animation-delay: 0.8s;
}
.ty-hero__icon-inner {
  position: absolute;
  inset: 0;
  background: var(--ty-success-soft);
  color: var(--ty-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-hero__icon-inner svg {
  width: 52%;
  height: 52%;
  animation: ty-check-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.ty-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--ty-soft-2);
  margin-bottom: 16px;
  animation: ty-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}
.ty-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ty-success);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
  animation: ty-soft-pulse 2s ease-in-out infinite;
}
.ty-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 clamp(14px, 2vw, 18px);
  animation: ty-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}
.ty-hero__title em {
  font-style: italic;
  color: var(--soft);
  font-weight: 500;
}
.ty-hero__lead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--soft);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto clamp(28px, 3.5vw, 36px);
  animation: ty-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}
.ty-hero__lead strong {
  color: var(--ink);
  font-weight: 600;
}

/* Call timer */
.ty-call-timer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 26px);
  max-width: 440px;
  margin: 0 auto clamp(32px, 4vw, 40px);
  box-shadow: var(--sh-2);
  animation: ty-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}
.ty-call-timer__row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.ty-call-timer__icon {
  width: 42px;
  height: 42px;
  background: rgba(20, 86, 207, 0.08);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ty-call-timer__icon .icon {
  width: 20px;
  height: 20px;
}
.ty-call-timer__text {
  flex: 1;
  text-align: left;
  min-width: 0;
}
.ty-call-timer__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.ty-call-timer__sub {
  font-size: 13px;
  color: var(--soft);
}
.ty-call-timer__countdown {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.ty-call-timer__bar {
  height: 4px;
  background: var(--paper-2);
  border-radius: var(--pill);
  overflow: hidden;
}
.ty-call-timer__fill {
  height: 100%;
  background: linear-gradient(90deg, #1e68e3, var(--red));
  border-radius: var(--pill);
  width: 0;
  transition: width 1s linear;
}

.ty-hero__ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: ty-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

/* Floating cards */
.ty-tech-card {
  position: absolute;
  right: clamp(20px, 5vw, 60px);
  top: clamp(80px, 14vw, 140px);
  z-index: 3;
  width: clamp(180px, 15vw, 210px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--sh-3);
  animation: ty-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s backwards;
  transform: rotate(3deg);
  transition: transform var(--t);
}
.ty-tech-card:hover {
  transform: rotate(0) translateY(-4px);
}
.ty-tech-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--paper-2);
}
.ty-tech-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ty-tech-card__meta {
  padding: 0 4px 4px;
}
.ty-tech-card__name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.2;
}
.ty-tech-card__role {
  font-size: 11px;
  color: var(--soft);
  margin-bottom: 8px;
}
.ty-tech-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--soft);
}
.ty-tech-card__rating strong {
  color: var(--ink);
  font-weight: 600;
}
.ty-tech-card__stars {
  display: inline-flex;
  gap: 1px;
}
.ty-tech-card__stars .icon {
  width: 10px;
  height: 10px;
  color: var(--ty-star);
}

.ty-status-card {
  position: absolute;
  left: clamp(20px, 5vw, 60px);
  top: clamp(220px, 22vw, 280px);
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--sh-2);
  animation: ty-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s backwards;
  transform: rotate(-3deg);
  transition: transform var(--t);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 200px;
}
.ty-status-card:hover {
  transform: rotate(0) translateY(-4px);
}
.ty-status-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ty-success);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2);
  flex-shrink: 0;
  animation: ty-soft-pulse 2s ease-in-out infinite;
}
.ty-status-card__text {
  font-size: 12px;
  line-height: 1.35;
  color: var(--soft);
}
.ty-status-card__text strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1px;
}

/* ==========================================================================
   TY Steps — "Co bude dál" 5-step progress with connector line and status badges.
   Matches ty-steps.html demo 1:1.
   ========================================================================== */
.ty-steps {
  position: relative;
  padding: clamp(56px, 8vw, 112px) 0;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ty-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 14, 10, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 14, 10, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    transparent 80%
  );
  pointer-events: none;
}
.ty-steps > .container {
  position: relative;
  z-index: 1;
}

/* Head */
.ty-steps__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
  text-align: left;
}
.ty-steps__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--red);
  margin-bottom: 14px;
}
.ty-steps__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 680px;
  margin: 0;
}
.ty-steps__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}
.ty-steps__intro {
  font-size: clamp(14.5px, 1.2vw, 16px);
  color: var(--soft);
  line-height: 1.6;
  max-width: 380px;
  text-wrap: pretty;
  margin: 0;
}

/* Progress bar at top */
.ty-steps__progress {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line-soft, #ebe2d1);
  border-radius: var(--pill);
  margin-bottom: clamp(32px, 4vw, 48px);
  box-shadow: var(--sh-1, 0 1px 2px rgba(20, 14, 10, 0.04));
  flex-wrap: wrap;
}
.ty-steps__progress-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px 5px 8px;
  background: rgba(47, 125, 50, 0.12);
  border: 1px solid rgba(47, 125, 50, 0.3);
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 600;
  color: #2f7d32;
  white-space: nowrap;
  flex-shrink: 0;
}
.ty-steps__progress-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f7d32;
  box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.18);
  animation: ty-pulse-green 2s ease-in-out infinite;
}
@keyframes ty-pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.18);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(47, 125, 50, 0.08);
  }
}
.ty-steps__progress-text {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.4;
  flex: 1;
  min-width: 220px;
  margin: 0;
}
.ty-steps__progress-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* Steps grid */
.ty-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  position: relative;
}
/* Connector dashed line behind icons */
.ty-steps__grid::before {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0,
    var(--line) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
  pointer-events: none;
}
/* Progress fill (filled by JS to current step position) */
.ty-steps__grid::after {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(10% + 24px);
  width: var(--ty-fill-width, 0%);
  height: 2px;
  background: var(--red);
  z-index: 0;
  pointer-events: none;
  transition: width 0.8s ease-out;
}

/* Step card */
.ty-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft, #ebe2d1);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.5vw, 28px) clamp(18px, 2vw, 22px);
  transition: all var(--t-slow, 0.6s cubic-bezier(0.16, 1, 0.3, 1));
  z-index: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: ty-step-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ty-step:nth-child(1) {
  animation-delay: 0.05s;
}
.ty-step:nth-child(2) {
  animation-delay: 0.15s;
}
.ty-step:nth-child(3) {
  animation-delay: 0.25s;
}
.ty-step:nth-child(4) {
  animation-delay: 0.35s;
}
.ty-step:nth-child(5) {
  animation-delay: 0.45s;
}
@keyframes ty-step-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ty-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3, 0 20px 48px rgba(20, 14, 10, 0.12));
  border-color: var(--line);
}

/* Current step — accent gradient border */
.ty-step--current {
  background: linear-gradient(180deg, #f2f7ff 0%, var(--white) 40%);
  border-color: rgba(20, 86, 207, 0.25);
}
.ty-step--current::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--red) 0%, transparent 50%);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* Illustration circle */
.ty-step__illustration {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all var(--t);
  z-index: 2;
  flex-shrink: 0;
}
.ty-step__illustration .icon {
  width: 24px;
  height: 24px;
  color: inherit;
}
.ty-step:hover .ty-step__illustration {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(20, 86, 207, 0.28);
}
.ty-step--current .ty-step__illustration {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(20, 86, 207, 0.28);
}
.ty-step--completed .ty-step__illustration {
  background: #2f7d32;
  border-color: #2f7d32;
  color: var(--white);
}

/* Status badge top-right */
.ty-step__status {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: var(--pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}
.ty-step__status--completed {
  background: rgba(47, 125, 50, 0.12);
  color: #2f7d32;
  border: 1px solid rgba(47, 125, 50, 0.25);
}
.ty-step__status--current {
  background: rgba(20, 86, 207, 0.1);
  color: var(--red);
  border: 1px solid rgba(20, 86, 207, 0.25);
}
.ty-step__status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.ty-step__status--current .ty-step__status-dot {
  animation: ty-pulse-blue 1.8s ease-in-out infinite;
}
@keyframes ty-pulse-blue {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(20, 86, 207, 0.18);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(20, 86, 207, 0.08);
  }
}

/* Step number / eyebrow */
.ty-step__num {
  font-family: var(--serif);
  font-size: 11.5px;
  font-weight: 600;
  font-style: italic;
  color: var(--red);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.ty-step__num::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.ty-step__title {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 10px;
  text-wrap: balance;
}
.ty-step__desc {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.ty-step__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 12px;
  background: var(--paper);
  border: 1px solid var(--line-soft, #ebe2d1);
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  align-self: flex-start;
  text-transform: none;
}
.ty-step__time svg {
  width: 12px;
  height: 12px;
  color: var(--red);
  flex-shrink: 0;
}

/* Support bar bottom */
.ty-steps__support {
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line-soft, #ebe2d1);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--sh-1, 0 1px 2px rgba(20, 14, 10, 0.04));
}
.ty-steps__support-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}
.ty-steps__support-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef3fc;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ty-steps__support-icon svg {
  width: 20px;
  height: 20px;
}
.ty-steps__support-text {
  line-height: 1.4;
}
.ty-steps__support-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.ty-steps__support-sub {
  font-size: 13px;
  color: var(--soft);
}
.ty-steps__support-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ty-steps__support-actions .btn svg {
  width: 13px;
  height: 13px;
  color: var(--red-2, #1e68e3);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .ty-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ty-steps__grid::before,
  .ty-steps__grid::after {
    display: none;
  }
}
@media (max-width: 820px) {
  .ty-steps__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }
  .ty-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ty-steps__grid > :nth-child(5) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .ty-steps__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ty-steps__grid > :nth-child(5) {
    grid-column: auto;
  }
  .ty-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 16px;
    padding: 20px;
  }
  .ty-step__illustration {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    grid-row: 1 / span 4;
  }
  .ty-step__illustration .icon {
    width: 20px;
    height: 20px;
  }
  .ty-step__status {
    position: static;
    grid-column: 2;
    align-self: flex-start;
    margin-bottom: 4px;
  }
  .ty-step__num,
  .ty-step__title,
  .ty-step__desc,
  .ty-step__time {
    grid-column: 2;
  }
  .ty-step__num {
    margin-bottom: 4px;
  }
  .ty-step__title {
    font-size: 17px;
  }
  .ty-step__time {
    margin-top: 10px;
  }
  .ty-steps__support {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .ty-steps__support-actions {
    width: 100%;
  }
  .ty-steps__support-actions .btn {
    flex: 1;
  }
}
@media (max-width: 380px) {
  .ty-step__title {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ty-step {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .ty-steps__progress-badge-dot,
  .ty-step__status--current .ty-step__status-dot {
    animation: none;
  }
}

/* Helpful section */
.ty-helpful {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--paper);
}
.ty-helpful__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 28px);
}
.ty-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
}
.ty-card__eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--ty-soft-2);
  margin-bottom: 10px;
  display: block;
}
.ty-card__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.ty-card__title em {
  font-style: italic;
  color: var(--soft);
  font-weight: 500;
}

/* Referral card */
.ty-referral {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper);
  border: none;
}
.ty-referral .ty-card__eyebrow {
  color: rgba(255, 255, 255, 0.45);
}
.ty-referral .ty-card__title {
  color: var(--white);
}
.ty-referral .ty-card__title em {
  color: rgba(255, 255, 255, 0.5);
}
.ty-referral__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 0 20px;
}
.ty-referral__code {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  margin-bottom: 16px;
}
.ty-referral__code-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
}
.ty-referral__code-value {
  flex: 1;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
}
.ty-referral__copy {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  font-family: inherit;
  transition:
    background var(--t),
    color var(--t);
}
.ty-referral__copy:hover {
  background: rgba(255, 255, 255, 0.2);
}
.ty-referral__copy.is-copied {
  background: rgba(74, 222, 128, 0.25);
  color: #4ade80;
}
.ty-referral__share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ty-referral__share a {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    background var(--t),
    color var(--t);
}
.ty-referral__share a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.ty-referral__share svg {
  width: 13px;
  height: 13px;
}

/* Responsive */
@media (max-width: 1000px) {
  .ty-tech-card,
  .ty-status-card {
    display: none;
  }
}
@media (max-width: 820px) {
  .ty-steps__grid,
  .ty-helpful__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .ty-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .ty-hero__ctas .btn {
    width: 100%;
  }
  .ty-call-timer__row {
    flex-wrap: wrap;
  }
  .ty-call-timer__countdown {
    margin-left: auto;
  }
  .ty-referral__code {
    flex-wrap: wrap;
  }
  .ty-referral__code-value {
    font-size: 16px;
    min-width: 100%;
  }
  .ty-referral__copy {
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ty-page *,
  .ty-page *::before,
  .ty-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Kontakt page (page-kontakt.php)
   ========================================================================== */

.k-page {
  --k-success: #2e7d32;
  --k-success-soft: #e8f5e9;
  --k-soft-2: #8f857e;
}

/* Hero */
.k-hero {
  padding: clamp(56px, 9vw, 96px) 0 clamp(32px, 4vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.k-hero::before {
  content: none;
}
.k-hero__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.k-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--k-soft-2);
  margin-bottom: 18px;
}
.k-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--k-success);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
  animation: k-soft-pulse 2s ease-in-out infinite;
}
@keyframes k-soft-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
.k-hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 auto 20px;
  max-width: 22ch;
  text-wrap: balance;
}
.k-hero__title em {
  font-style: italic;
  color: var(--soft);
  font-weight: 500;
}
.k-hero__lead {
  font-size: clamp(15px, 1.35vw, 17px);
  color: var(--soft);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}
.k-hero__lead strong {
  color: var(--ink);
  font-weight: 600;
}

/* Main (form + side) */
.k-main {
  padding: clamp(20px, 3vw, 40px) 0 clamp(56px, 8vw, 80px);
  background: var(--paper);
}
.k-main__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.k-main__grid > .k-form {
  display: flex;
  flex-direction: column;
}

/* CF7 form fields — match kontakt mock styling (overrides .cta__form-cf7 defaults) */
.k-form .wpcf7 {
  display: contents;
}
.k-form .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.k-form .wpcf7-form > .cf7-row {
  grid-column: span 1;
  margin: 0;
  min-width: 0;
}
.k-form .wpcf7-form > .cf7-row--full,
.k-form .wpcf7-form > .wpcf7-acceptance,
.k-form .wpcf7-form > p {
  grid-column: 1 / -1;
  margin: 0;
  min-width: 0;
}

.k-form .wpcf7-form input[type="text"],
.k-form .wpcf7-form input[type="tel"],
.k-form .wpcf7-form input[type="email"],
.k-form .wpcf7-form select,
.k-form .wpcf7-form textarea {
  width: 100%;
  margin-top: 10px;
  padding: 16px 18px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 52px;
  outline: none;
  transition:
    background 0.22s,
    border-color 0.22s,
    box-shadow 0.22s;
}
.k-form .wpcf7-form textarea {
  min-height: 140px;
  line-height: 1.5;
  resize: vertical;
}
.k-form .wpcf7-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='%23706660'><polygon points='0,0 10,0 5,6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 6px;
}
.k-form .wpcf7-form input::placeholder,
.k-form .wpcf7-form textarea::placeholder {
  color: var(--k-soft-2);
  font-weight: 400;
}
.k-form .wpcf7-form input:focus,
.k-form .wpcf7-form select:focus,
.k-form .wpcf7-form textarea:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(20, 86, 207, 0.1);
}
.k-form .wpcf7-form .wpcf7-acceptance label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #706660 !important;
  line-height: 1.45 !important;
  cursor: pointer;
  letter-spacing: 0.2px !important;
  text-transform: none !important;
  padding: 4px 0;
  margin-bottom: 0;
}
.k-form .wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  min-height: 52px;
  letter-spacing: -0.005em;
  transition:
    background 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
}
.k-form .wpcf7-form .wpcf7-submit:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 86, 207, 0.3);
}

@media (max-width: 540px) {
  .k-form .wpcf7-form {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .k-main__grid > .k-form {
    padding: 18px;
    min-width: 0;
  }
  .k-form .wpcf7-form input[type="text"],
  .k-form .wpcf7-form input[type="tel"],
  .k-form .wpcf7-form input[type="email"],
  .k-form .wpcf7-form select,
  .k-form .wpcf7-form textarea {
    padding: 12px 14px;
    font-size: 14px;
    min-height: 46px;
  }
}

/* Form head (inside .cta__form-cf7 wrapper) */
.k-form__head {
  margin-bottom: clamp(24px, 3vw, 32px);
}
.k-form__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--k-soft-2);
  margin-bottom: 10px;
}
/* Override .cta__form-title sizing just for the kontakt page form */
.k-form .cta__form-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 10px;
}
.k-form .cta__form-title em {
  font-style: italic;
  color: var(--soft);
  font-weight: 500;
}
.k-form .cta__form-sub {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.55;
  margin: 0;
}

/* Side — cards stacked vertically, sticky so it rides with the form on scroll.
   top offset clears the sticky .header (~80px) so the aside pins right below it. */
.k-side {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 20px);
  position: sticky;
  top: 96px;
  align-self: start;
}
@media (max-width: 900px) {
  .k-side {
    position: static;
  }
}

/* Form hint — green check instead of pulsing dot */
.k-form__hint-check {
  width: 13px;
  height: 13px;
  color: #2d7a4f;
  flex-shrink: 0;
}

.k-contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(22px, 2.5vw, 28px);
  transition:
    border-color 0.22s,
    box-shadow 0.22s;
}
.k-contact-card:hover {
  border-color: var(--ink-2);
  box-shadow: var(--sh-2);
}
.k-contact-card__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--k-soft-2);
  margin-bottom: 8px;
}
.k-contact-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.2;
}
.k-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.k-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.k-contact-item:first-of-type {
  padding-top: 0;
}
.k-contact-item__icon {
  width: 38px;
  height: 38px;
  background: rgba(20, 86, 207, 0.08);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.22s,
    color 0.22s;
}
.k-contact-item__icon .icon {
  width: 17px;
  height: 17px;
}
a.k-contact-item:hover .k-contact-item__icon {
  background: var(--red);
  color: var(--white);
}
.k-contact-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.k-contact-item__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--k-soft-2);
  margin-bottom: 3px;
}
.k-contact-item__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  word-break: break-word;
}
a.k-contact-item:hover .k-contact-item__value {
  color: var(--red);
}
.k-contact-item__sub {
  font-size: 12px;
  color: var(--soft);
  margin-top: 2px;
}

/* Emergency */
.k-emergency {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper);
  border: none;
}
.k-emergency:hover {
  box-shadow: var(--sh-3);
}
.k-emergency .k-contact-card__eyebrow {
  color: rgba(255, 255, 255, 0.45);
}
.k-emergency .k-contact-card__title {
  color: var(--white);
}
.k-emergency__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0 0 18px;
}
.k-emergency__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition:
    background 0.22s,
    border-color 0.22s;
}
.k-emergency__btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}
.k-emergency__btn-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.k-emergency__btn-icon .icon {
  width: 17px;
  height: 17px;
}
.k-emergency__btn-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.k-emergency__btn-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}
.k-emergency__btn-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* Hours */
.k-hours {
  padding: clamp(56px, 7vw, 80px) 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.k-hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.k-hours__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--k-soft-2);
  margin-bottom: 14px;
}
.k-hours__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 16px;
}
.k-hours__title em {
  font-style: italic;
  color: var(--soft);
  font-weight: 500;
}
.k-hours__lead {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 440px;
}
.k-hours__lead strong {
  color: var(--ink);
  font-weight: 600;
}
.k-hours__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.k-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--sh-1);
}
.k-badge-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--k-success);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
  flex-shrink: 0;
  animation: k-soft-pulse 2s ease-in-out infinite;
}
.k-hours__table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(22px, 2.5vw, 30px);
  box-shadow: var(--sh-1);
}
.k-hours-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.k-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
}
.k-hours-row:last-child {
  border-bottom: none;
}
.k-hours-row__day {
  color: var(--soft);
  font-weight: 500;
}
.k-hours-row__time {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.k-hours-row--today .k-hours-row__day {
  color: var(--ink);
  font-weight: 600;
}
.k-hours-row--today {
  position: relative;
}
.k-hours-row--today::after {
  content: "DNES";
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--k-success);
  background: var(--k-success-soft);
  padding: 2px 7px;
  border-radius: var(--pill);
  margin-left: 8px;
}
.k-hours__footnote {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--soft);
  line-height: 1.45;
}
.k-hours__footnote strong {
  color: var(--ink);
  font-weight: 600;
}

/* FAQ */
.k-faq {
  padding: clamp(56px, 8vw, 88px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.k-faq__head {
  text-align: center;
  margin: 0 auto clamp(32px, 4vw, 48px);
  max-width: 640px;
}
.k-faq__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--k-soft-2);
  margin-bottom: 10px;
}
.k-faq__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 14px;
}
.k-faq__title em {
  font-style: italic;
  color: var(--soft);
  font-weight: 500;
}
.k-faq__sub {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.55;
  margin: 0;
}
.k-faq__sub a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.k-faq__sub a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}
.k-faq__list {
  max-width: 820px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 900px) {
  .k-main__grid,
  .k-hours__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .k-page *,
  .k-page *::before,
  .k-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Responsive — service pages (extracted)
   ========================================================================== */

@media (max-width: 640px) {
  .srv-hero {
    padding: 40px 0 60px !important;
  }
  .srv-hero h1 {
    font-size: clamp(36px, 10vw, 48px) !important;
  }
  .srv-hero__ctas {
    flex-direction: column;
    gap: 10px;
  }
  .srv-hero__ctas .btn {
    width: 100%;
  }
  .breadcrumbs {
    padding: 14px 0;
  }
  .breadcrumbs__list {
    font-size: 12px;
    gap: 6px;
  }
  .cities__card {
    padding: 20px;
    min-height: 100px;
  }
  .cities__place {
    font-size: 19px;
  }
  .related__card:hover {
    transform: none;
  }
}

/* ==========================================================================
   O nás / About page
   ========================================================================== */

.about-page {
  background: var(--paper);
}

/* ── Hero ── */
.about-hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.about-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(246, 241, 234, 0.75) 0%,
    rgba(246, 241, 234, 0.92) 60%,
    var(--paper) 100%
  );
}
.about-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 22px;
  padding: 8px 18px 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
}
.about-hero__dot {
  width: 8px;
  height: 8px;
  background: var(--success, #2d7a4f);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.2);
  animation: about-hero-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes about-hero-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(45, 122, 79, 0.1);
  }
}
.about-hero__title {
  font-family: var(--serif);
  font-size: clamp(34px, 5.4vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 22px;
  text-wrap: balance;
}
.about-hero__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.about-hero__lead {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.about-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}
.about-hero__teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.about-hero__teaser-item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.about-hero__teaser-item span {
  font-size: 12px;
  color: var(--soft);
  line-height: 1.35;
  display: block;
}

/* ── Story ── */
.about-story {
  background: var(--paper);
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story__text .eyebrow {
  color: var(--red);
  margin-bottom: 14px;
}
.about-story__text h2 {
  margin-bottom: 22px;
  max-width: 520px;
}
.about-story__body {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.72;
}
.about-story__body p {
  margin: 0 0 14px;
}
.about-story__body p:first-child {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
}
.about-story__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  align-self: stretch;
}
.about-story__image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

/* ── Stats ── */
.about-stats {
  background: var(--paper);
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.about-stats__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
}
.about-stats__item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stats__item span {
  font-size: 13px;
  color: var(--soft);
  display: block;
  line-height: 1.4;
}

/* ── Values ── */
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-values__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--t);
}
.about-values__item:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.about-values__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.about-values__icon svg,
.about-values__icon img {
  width: 24px;
  height: 24px;
}
.about-values__item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.about-values__item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--soft);
  margin: 0;
}

/* ── Timeline / Milníky ── */
.about-timeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.about-timeline__list::before {
  content: "";
  position: absolute;
  left: 78px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent-soft) 0%,
    var(--accent-soft) 50%,
    transparent 100%
  );
}
.about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 18px 0;
  align-items: flex-start;
}
.about-timeline__item:not(:last-child) {
  padding-bottom: 28px;
}
.about-timeline__year {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  padding-right: 8px;
  text-align: right;
}
.about-timeline__year::after {
  content: "";
  position: absolute;
  left: 78px;
  top: -9px;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--red);
  z-index: 1;
}
.about-timeline__body {
  padding-left: 16px;
  padding-top: 4px;
}
.about-timeline__body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
}
.about-timeline__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--soft);
  margin: 0;
}

/* ── About responsive ── */
@media (max-width: 1024px) {
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story__image {
    max-width: 680px;
    margin: 0 auto;
  }
  .about-story__image img {
    min-height: 360px;
  }
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-timeline__list {
    padding-left: 32px;
  }
  .about-timeline__list::before {
    left: 6px;
  }
  .about-timeline__item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
  .about-timeline__year {
    font-size: 18px;
    text-align: left;
    padding-right: 0;
  }
  .about-timeline__year::after {
    right: auto;
    left: -25px;
    top: 6px;
    width: 12px;
    height: 12px;
  }
  .about-timeline__body {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 56px 0 64px;
  }
  .about-hero__teaser {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
@media (max-width: 640px) {
  .about-hero {
    padding: 44px 0 56px;
  }
  .about-hero__eyebrow {
    font-size: 11px;
    padding: 6px 14px 6px 12px;
  }
  .about-hero__ctas {
    margin-bottom: 40px;
    align-items: center;
  }
  .about-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .about-hero__teaser {
    padding-top: 28px;
  }
  .about-story__body p:first-child {
    font-size: 16px;
  }
  .about-stats__item {
    padding: 24px 20px;
  }
  .about-values__grid {
    grid-template-columns: 1fr;
  }
  .about-values__item {
    padding: 24px 22px;
  }
  .about-timeline__item {
    padding: 14px 0;
  }
  .about-timeline__body h3 {
    font-size: 17px;
  }
  .about-timeline__body p {
    font-size: 14px;
  }
}
