/* ==========================================================================
   Announcement strip + topbar
   ========================================================================== */

.announce {
  display: none;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 11px 0;
}
.announce__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.announce__inner a {
  color: white;
}
.announce__text {
  letter-spacing: 0.2px;
}

.topbar {
  background: var(--paper-2);
  color: var(--soft);
  font-size: 13px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar__left,
.topbar__right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar__item .icon {
  color: var(--red);
  width: 14px;
  height: 14px;
}
.topbar__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line);
}
.topbar__link:hover {
  color: var(--ink);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  background: rgba(246, 241, 234, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  z-index: 230;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--t);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  height: 46px;
  width: auto;
  color: var(--ink);
}
.logo__img--white {
  filter: brightness(0) invert(1);
  height: 58px;
}

.nav__list {
  display: flex;
  gap: 30px;
}
.nav__item {
  position: relative;
}
.nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 0;
  position: relative;
  transition: color var(--t);
}
.nav__item > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity var(--t);
}
.nav__item > a:hover {
  color: var(--ink);
}
.nav__item > a:hover::after {
  opacity: 1;
}

/* Mega */
.has-mega {
  position: static;
  display: flex;
  align-items: center;
}
.mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  top: calc(100% + 8px);
  width: min(900px, 96vw);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  border: 1px solid var(--line);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
}
.has-mega:hover .mega,
.has-mega.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega__toggle {
  background: none;
  border: none;
  padding: 0 4px;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.mega__item,
.mega__item:link,
.mega__item:visited {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--r);
  transition: background var(--t);
  color: var(--ink);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.mega__item:hover {
  background: var(--paper);
}
.mega__icon,
.mega__item:link .mega__icon,
.mega__item:visited .mega__icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  padding: 6px;
  flex-shrink: 0;
  box-sizing: border-box;
}
/* <img> icons don't inherit `color`; convert the currentColor fills in
   /assets/images/*.svg to var(--red) via a precomputed CSS filter.
   Filter recipe (https://codepen.io/sosuke/pen/Pjoqqp) targeting #1456cf. */
.mega__icon--img {
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(22%) sepia(91%) saturate(2644%)
    hue-rotate(213deg) brightness(91%) contrast(91%);
}
.mega__item strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 2px;
  font-weight: 600;
}
.mega__item span {
  font-size: 12px;
  color: var(--soft);
}

/* Zones dropdown (topbar + footer) */
.zones-drop {
  position: relative;
  display: inline-block;
}
.zones-drop__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: inherit;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--pill);
  cursor: pointer;
  transition: all var(--t);
}
.topbar .zones-drop__btn {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}
.zones-drop__btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.zones-drop__chev {
  transition: transform var(--t);
  width: 12px;
  height: 12px;
}
.zones-drop__btn[aria-expanded="true"] .zones-drop__chev {
  transform: rotate(180deg);
}
.zones-drop__panel {
  position: absolute;
  right: 0;
  z-index: 200;
  width: min(320px, 90vw);
  max-height: 60vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  border: 1px solid var(--line);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--t);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.zones-drop__panel {
  top: calc(100% + 8px);
}
.zones-drop--up .zones-drop__panel {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(-6px);
}
.zones-drop__btn[aria-expanded="true"] + .zones-drop__panel {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.zones-drop .zones-drop__item {
  padding: 8px 10px;
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
}
.zones-drop .zones-drop__item:hover {
  background: var(--paper);
  color: var(--red);
}
@media (max-width: 768px) {
  .zones-drop__panel {
    grid-template-columns: 1fr;
  }
  .has-mega {
    display: inline;
  }
}

/* Mobile: footer zones dropdown floats as a fixed bottom-anchored sheet so it
   doesn't overflow the viewport top when scroll container is narrow/short. */
@media (max-width: 640px) {
  .zones-drop--up .zones-drop__panel {
    position: fixed;
    top: auto;
    bottom: 80px;
    left: 18px;
    right: 18px;
    width: auto;
    max-width: none;
    max-height: 50vh;
    transform: translateY(6px);
    grid-template-columns: repeat(3, 1fr);
  }
  .zones-drop--up .zones-drop__btn[aria-expanded="true"] + .zones-drop__panel {
    transform: translateY(0);
  }
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header__phone-link {
  text-align: right;
  line-height: 1.1;
  transition: color var(--t);
}
.header__phone-link:hover {
  color: var(--red);
}
.header__phone-small {
  display: block;
  font-size: 11px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 2px;
}
.header__phone-link strong {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--pill);
  border: 1.5px solid var(--line);
  place-items: center;
  color: var(--ink);
}
.burger:hover {
  border-color: var(--ink);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  background: var(--paper-2);
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq__aside {
  position: sticky;
  top: 120px;
}
.faq__photo {
  position: relative;
  margin: 28px 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 12;
  box-shadow: 0 12px 30px rgba(20, 14, 10, 0.12);
}
.faq__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.faq__photo-badges {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  pointer-events: none;
}
.faq__photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.faq__photo-badge .icon {
  width: 13px;
  height: 13px;
  color: var(--red);
  flex-shrink: 0;
}
.faq__aside-text {
  margin-top: 24px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.6;
}
.faq__cta {
  margin-top: 24px;
}

.faq__list {
  display: grid;
  gap: 2px;
}
.faq__item {
  margin: 2px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition:
    border-color var(--t),
    box-shadow var(--t);
}
.faq__item[open] {
  border-color: var(--ink);
  box-shadow: var(--sh-2);
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink);
  gap: 16px;
  font-family: var(--serif);
  letter-spacing: -0.005em;
  -webkit-tap-highlight-color: transparent;
}
.faq__item summary:focus {
  outline: none;
}
.faq__item summary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.faq__chev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ink);
  transition: transform var(--t-slow);
  stroke-width: 1.8;
}
.faq__item[open] .faq__chev {
  transform: rotate(45deg);
  color: var(--red);
}
.faq__body {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--soft);
  line-height: 1.65;
}
.faq__body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 8px 0;
}
.faq__body ol {
  list-style: decimal;
  padding-left: 22px;
  margin: 8px 0;
}
.faq__body li {
  padding: 2px 0;
}
.faq__body ul ul {
  list-style: circle;
}
.faq__list-inline {
  margin: 0;
  padding-left: 20px;
}
.faq__list-inline li {
  padding: 2px 0;
}

/* Accordion grid animation (JS-enhanced) */
.faq--animated .faq__body {
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows var(--t-slow);
}
.faq--animated .faq__item[open] > .faq__body {
  grid-template-rows: 1fr;
}
.faq__body-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 26px;
}
.faq__body-inner::after {
  content: "";
  display: block;
  height: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .faq--animated .faq__body,
  .faq__chev {
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .faq__aside-text {
    text-align: center;
  }
  .faq__cta {
    text-align: center;
  }
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 0;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 6, 6, 0.93) 0%,
    rgba(8, 6, 6, 0.82) 48%,
    rgba(8, 6, 6, 0.55) 100%
  );
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 96px 0 104px;
}
.cta .eyebrow--light {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}
.cta__text h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: #fff;
  text-wrap: balance;
}
.cta__text h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}
.cta__text > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 440px;
}
.cta__list {
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.cta__check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(45, 122, 79, 0.25);
  border: 1px solid rgba(45, 122, 79, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4ade80;
}
.cta__check-circle svg {
  width: 10px;
  height: 10px;
}

.cta__contacts {
  display: flex;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cta__contact-link {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-decoration: none;
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.22s;
}
.cta__contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}
.cta__contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.cta__contact-link small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0;
}
.cta__contact-link strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* Form card additions — title / subtitle / note */
.cta__form-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.cta__form-sub {
  font-size: 13px;
  color: var(--soft);
  margin: 0 0 28px;
  line-height: 1.5;
}
.cta__form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--soft);
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
@media (max-width: 480px) {
  .cta__form-note {
    font-size: 10.5px;
    gap: 5px;
  }
  .cta__form-note-check,
  .cta__form-note-dot {
    width: 11px;
    height: 11px;
  }
}
.cta__form-note-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2d7a4f;
  flex-shrink: 0;
  animation: cta-pulse 2s ease-in-out infinite;
}
.cta__form-note-check {
  width: 13px;
  height: 13px;
  color: #2d7a4f;
  flex-shrink: 0;
}
@keyframes cta-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 1024px) {
  .cta__contacts {
    flex-direction: column;
    justify-content: center;
  }
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 48px !important;
    padding-bottom: 56px !important;
  }
  .cta__text {
    text-align: center;
  }
  .cta__text h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .cta__text h2 em {
    display: inline;
  }
  .cta__text > p {
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
  }
  .cta__list {
    display: inline-flex;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    gap: 8px;
  }
  .cta__bg::after {
    background: rgba(8, 6, 6, 0.85);
  }
  .cta__form-cf7 .wpcf7-form {
    grid-template-columns: 1fr 1fr;
  }
  .cta__contact-link {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .cta__form-title {
    text-align: center;
  }
  .cta__form-sub {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .cta__form-cf7 .wpcf7-form {
    grid-template-columns: 1fr 1fr;
  }
  .cta__contact-link small {
    text-align: left;
  }
}

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #fff;
  padding: 32px;
  border-radius: var(--r-lg);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.field label span {
  font-weight: 400;
  text-transform: none;
  color: var(--soft);
  letter-spacing: 0;
}
.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t);
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--soft);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
}

.field__check {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--soft);
  cursor: pointer;
  line-height: 1.45;
}
.field__check input {
  margin-top: 3px;
  accent-color: var(--red);
}
.cta__form button {
  grid-column: 1 / -1;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 100px;
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 0 28px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer__col h4 {
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer__col > a,
.footer__col > p {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t);
}
.footer__col > a:hover {
  color: #fff;
}
.footer__col--about p {
  margin: 14px 0 22px;
  line-height: 1.65;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.22s;
}
a.footer__contact-item:hover {
  color: #fff;
}
a.footer__contact-item:hover .footer__contact-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
.footer__contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  transition:
    background 0.22s,
    border-color 0.22s;
}
.footer__contact-icon .icon {
  width: 15px;
  height: 15px;
  color: #fff;
  flex-shrink: 0;
}
.footer__contact-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.footer__contact-body small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}
.footer__contact-body strong {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
  word-break: break-word;
}

.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  padding: 0 !important;
  transition: all var(--t);
  color: rgba(255, 255, 255, 0.85);
}
.footer__socials a:hover {
  background: var(--red);
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.3);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom-inner > div {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a:hover {
  color: #fff;
}

/* ==========================================================================
   Floating elements
   ========================================================================== */

.back-top {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-2);
  border: 1px solid var(--line);
  z-index: 89;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t);
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Mobile nav open — fullscreen overlay */
.nav__head {
  display: none;
}
.nav__cta {
  display: none;
}

.nav--open {
  display: flex !important;
  flex-direction: column !important;
  position: fixed !important;
  top: 72px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: var(--paper) !important;
  padding: 18px 24px 18px 30px !important;
  overflow-y: auto !important;
  z-index: 220 !important;
}
.nav--open .nav__head {
  display: none;
}
@media (max-width: 640px) {
  .nav--open {
    top: 61px !important;
  }
}
.nav--open .nav__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: all var(--t);
}
.nav--open .nav__close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.nav--open .nav__list {
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  margin: 0;
  padding: 0 2px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.nav--open .nav__item {
  position: relative;
}
.nav--open .nav__item > a {
  width: 100%;
  padding: 18px 20px;
  font-size: 17px;
  border-radius: var(--r);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  min-height: 56px;
  border: 1px solid var(--line);
}
@media (hover: hover) {
  .nav--open .nav__item > a:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
}
/* Скрыть точку-подчёркивание десктопа на мобиле */
.nav--open .nav__item > a::after {
  display: none;
}
/* Шеврон-кнопка — абсолютно поверх ссылки, прозрачная */
.nav--open .mega__toggle {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  transition: transform var(--t);
  z-index: 1;
}
.nav--open .has-mega.is-open > .mega__toggle {
  transform: rotate(180deg);
}
.nav--open .has-mega.is-open > a,
.nav--open .has-mega.is-open > a:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.nav--open .mega {
  display: grid !important;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition:
    grid-template-rows 0.35s ease,
    margin-top 0.35s ease;
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 100%;
  transform: none !important;
  box-shadow: none !important;
  background: transparent;
  border: none;
  border-radius: 0;
  opacity: 1 !important;
  visibility: visible !important;
  margin-top: 0;
  padding: 0;
}
.nav--open .has-mega.is-open .mega {
  grid-template-rows: 1fr;
  margin-top: 4px;
}
.nav--open .mega__grid {
  min-height: 0;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  border-radius: var(--r);
  padding: 0 6px;
  transition: padding 0.35s ease;
}
.nav--open .has-mega.is-open .mega__grid {
  padding: 6px;
}
.nav--open .nav__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.nav--open .nav__cta .btn {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  font-size: 14px;
}

.nav__phone-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--soft);
  line-height: 1.2;
}
.nav__phone-display-number {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}
.nav__phone-display-label {
  font-weight: 500;
  font-size: 13px;
  color: var(--soft);
  line-height: 1.2;
}
.nav__phone-display-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
}

.nav__cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  min-height: 52px;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav__phone svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
/* Hide the WP-menu "Zóny obsluhy" item everywhere — desktop uses the
   topbar pill, mobile uses the custom sheet triggered by .nav__zones-trigger.
   Fallback: add `fhs-mobile-only` CSS class via Appearance → Menus → item. */
.nav__list .nav__item:has(> a[href*="/zony-obsluhy"]) {
  display: none !important;
}
.nav__list .fhs-mobile-only {
  display: none !important;
}

/* --------------------------------------------------------------------
   Zones trigger button — rendered as the last <li> inside .nav__list on
   mobile so it groups visually with other nav cards. Desktop hides the
   wrapping <li> entirely (see .nav__item--zones-trigger rule below).
   -------------------------------------------------------------------- */
.nav__item--zones-trigger {
  list-style: none;
}
.nav__zones-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  text-align: left;
  gap: 14px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  min-height: 56px;
  cursor: pointer;
  transition: all var(--t);
  -webkit-tap-highlight-color: transparent;
}
.nav__zones-trigger:hover,
.nav__zones-trigger:active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.nav__zones-trigger-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.nav__zones-trigger:hover .nav__zones-trigger-icon,
.nav__zones-trigger:active .nav__zones-trigger-icon {
  color: #fff;
}
.nav__zones-trigger-icon svg {
  width: 20px;
  height: 20px;
}
.nav__zones-trigger-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.nav__zones-trigger-label {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__zones-trigger-hint {
  font-family: var(--sans, inherit);
  font-size: 12px;
  font-weight: 400;
  color: #8d837c;
  opacity: 0.9;
}
.nav__zones-trigger:hover .nav__zones-trigger-hint,
.nav__zones-trigger:active .nav__zones-trigger-hint {
  color: rgba(255, 255, 255, 0.7);
}
.nav__zones-trigger-arrow {
  width: 18px;
  height: 18px;
  color: #8d837c;
  flex-shrink: 0;
}
.nav__zones-trigger:hover .nav__zones-trigger-arrow,
.nav__zones-trigger:active .nav__zones-trigger-arrow {
  color: #fff;
}

/* --------------------------------------------------------------------
   Zones sheet — full-screen bottom-sheet modal with search + tabs.
   Mobile-only; hidden on desktop.
   -------------------------------------------------------------------- */
.zones-sheet {
  position: fixed;
  inset: 0;
  z-index: 230;
  visibility: hidden;
  pointer-events: none;
}
.zones-sheet.is-open {
  visibility: visible;
  pointer-events: auto;
}
.zones-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.55);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.zones-sheet.is-open .zones-sheet__backdrop {
  opacity: 1;
}

.zones-sheet__dialog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 92vh;
  height: 92dvh;
  background: var(--paper);
  border-radius: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(20, 14, 10, 0.25);
}
.zones-sheet.is-open .zones-sheet__dialog {
  transform: translateY(0);
}

.zones-sheet__handle {
  padding: 12px 0 4px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  cursor: grab;
}
.zones-sheet__handle::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
}

.zones-sheet__head {
  padding: 4px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}
.zones-sheet__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}
.zones-sheet__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--t);
}
.zones-sheet__close:active {
  background: var(--line);
  transform: scale(0.94);
}
.zones-sheet__close svg {
  width: 18px;
  height: 18px;
}

.zones-sheet__search {
  padding: 0 20px;
  margin-bottom: 14px;
  flex-shrink: 0;
  position: relative;
}
.zones-sheet__search-input {
  width: 100%;
  height: 48px;
  padding: 0 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  color: var(--ink);
  transition: all var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.zones-sheet__search-input::placeholder {
  color: #8d837c;
}
.zones-sheet__search-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(20, 86, 207, 0.1);
}
.zones-sheet__search-icon {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #8d837c;
  pointer-events: none;
}
.zones-sheet__search-clear {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  color: #706660;
  cursor: pointer;
  transition: background var(--t);
}
.zones-sheet__search-clear.is-visible {
  display: flex;
}
.zones-sheet__search-clear:active {
  background: #dfd4c3;
}
.zones-sheet__search-clear svg {
  width: 12px;
  height: 12px;
}

.zones-sheet__tabs {
  padding: 0 20px 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.zones-sheet__tabs::-webkit-scrollbar {
  display: none;
}

.zones-sheet__tab {
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #706660;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--t);
  flex-shrink: 0;
  font-family: inherit;
}
.zones-sheet__tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.zones-sheet__tab:active {
  transform: scale(0.97);
}

.zones-sheet__list {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 100px;
  overscroll-behavior: contain;
}

.zones-sheet__group {
  margin-bottom: 6px;
}
.zones-sheet__group[hidden] {
  display: none;
}

.zones-sheet__group-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8d837c;
  margin: 16px 4px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zones-sheet__group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.zones-sheet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.zones-sheet__grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: all var(--t);
  min-height: 48px;
}
.zones-sheet__grid-item:active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: scale(0.96);
}
.zones-sheet__grid-item[hidden] {
  display: none;
}

.zones-sheet__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zones-sheet__pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: all var(--t);
}
.zones-sheet__pill:active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: scale(0.96);
}
.zones-sheet__pill[hidden] {
  display: none;
}

.zones-sheet__featured {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: all var(--t);
  margin-bottom: 4px;
}
.zones-sheet__featured:active {
  background: var(--ink);
  color: #fff;
  transform: scale(0.99);
}
.zones-sheet__featured:active .zones-sheet__featured-icon {
  background: #fff;
  color: var(--ink);
}
.zones-sheet__featured:active .zones-sheet__featured-hint {
  color: rgba(255, 255, 255, 0.7);
}
.zones-sheet__featured-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: all var(--t);
}
.zones-sheet__featured-icon svg {
  width: 18px;
  height: 18px;
}
.zones-sheet__featured-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.zones-sheet__featured-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.zones-sheet__featured-hint {
  font-size: 12px;
  color: #8d837c;
  transition: color var(--t);
}
.zones-sheet__featured-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.zones-sheet__empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #8d837c;
}
.zones-sheet__empty.is-visible {
  display: flex;
}
.zones-sheet__empty-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: #a89d93;
}
.zones-sheet__empty-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.zones-sheet__empty-text {
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 260px;
}

/* Desktop: hide trigger <li> + sheet entirely (topbar dropdown handles zones). */
@media (min-width: 641px) {
  .nav__item--zones-trigger,
  .zones-sheet {
    display: none !important;
  }
}

body.zones-open {
  overflow: hidden;
}

body.nav-locked {
  overflow: hidden;
}
/* Disable header backdrop-filter while nav is open — backdrop-filter creates
   a containing block that would trap the fixed-positioned overlay. */
body.nav-locked .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--paper);
  transition: none;
}
body.nav-locked .header__inner,
body.nav-locked .header__cta,
body.nav-locked .header .btn {
  transition: none;
}

/* ==========================================================================
   Modal
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: visibility 0s linear 0.5s;
}
.modal[aria-hidden="false"] {
  visibility: visible;
  transition: visibility 0s;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 6, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  /* Default (closing): fade out over 0.25s, then hide. */
  transition:
    opacity 0.25s ease-out,
    visibility 0s linear 0.25s;
}
.modal[aria-hidden="false"] .modal__backdrop {
  opacity: 1;
  visibility: visible;
  /* Opening: snap in instantly so blur appears with no perceived delay. */
  transition: none;
}
.modal__dialog {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border: 1px solid #ebe2d1;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 48px rgba(20, 14, 10, 0.18);
  width: 100%;
  max-width: 680px;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  color: var(--ink);
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 14, 10, 0.15) transparent;
}
.modal[aria-hidden="false"] .modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal__dialog::-webkit-scrollbar {
  width: 6px;
}
.modal__dialog::-webkit-scrollbar-thumb {
  background: rgba(20, 14, 10, 0.15);
  border-radius: 3px;
}

/* Optional bg image + overlay (toggled via .modal--bg when an image is set in ACF) */
.modal--bg .modal__dialog {
  background: transparent;
  border-color: transparent;
}
.modal__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.modal__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal__bg-overlay {
  position: absolute;
  inset: 0;
}
.modal--bg .modal__close {
  z-index: 2;
}
.modal--bg .modal__head,
.modal--bg .modal__form {
  position: relative;
  z-index: 1;
}
.modal--bg .modal__head h2,
.modal--bg .modal__head .modal__title,
.modal--bg .modal__head .eyebrow {
  color: var(--paper);
}
.modal--bg .modal__head .eyebrow {
  color: #ffd27a;
}
.modal--bg .modal__head p {
  color: rgba(255, 255, 255, 0.78);
}
.modal--bg .modal__close {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-2);
  border: 1px solid #ebe2d1;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--t);
  font: inherit;
  padding: 0;
}
.modal__close:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: rotate(90deg);
}
.modal__close svg,
.modal__close .icon {
  width: 15px;
  height: 15px;
}

.modal__head {
  padding: 28px 28px 18px;
  margin-bottom: 0;
}
.modal__head .eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal__head h2,
.modal__title {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 8px;
  text-wrap: balance;
  padding-right: 50px;
}
.modal__head p {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.5;
  max-width: 500px;
}

.modal__form {
  padding: 0 28px 22px;
}

/* Scroll lock is handled by lenis.stop() — it adds .lenis-stopped on <html>
   which sets overflow: hidden. scrollbar-gutter: stable on <html> keeps
   the layout from shifting when the scrollbar disappears. */

/* ==========================================================================
   Modal CF7 form — light + 2×2 grid (demo style, scoped to modal only)
   ========================================================================== */
.modal__form--cf7 .wpcf7 .screen-reader-response {
  position: absolute;
  left: -9999px;
}
.modal__form--cf7 .wpcf7 .hidden-fields-container {
  display: none;
}

.modal__form--cf7 .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal__form--cf7 .wpcf7-form p {
  margin: 0;
}
.modal__form--cf7 .wpcf7-form br {
  display: none;
}
.modal__form--cf7 .cf7-row {
  min-width: 0;
  display: block;
}
.modal__form--cf7 .cf7-row--full,
.modal__form--cf7 .wpcf7-form > p,
.modal__form--cf7 .wpcf7-form > .wpcf7-submit,
.modal__form--cf7 .wpcf7-form > .wpcf7-spinner,
.modal__form--cf7 .wpcf7-form > .wpcf7-acceptance {
  grid-column: 1 / -1;
}

.modal__form--cf7 .wpcf7-form label,
.modal__form--cf7 .wpcf7 label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #706660;
  letter-spacing: 1.6px;
  text-transform: none;
  line-height: 1.4;
  margin-bottom: 0;
}
.modal__form--cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}

.modal__form--cf7 .wpcf7-form input[type="text"],
.modal__form--cf7 .wpcf7-form input[type="tel"],
.modal__form--cf7 .wpcf7-form input[type="email"],
.modal__form--cf7 .wpcf7-form select,
.modal__form--cf7 .wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid transparent;
  border-radius: 14px;
  transition: all var(--t);
  outline: none;
  min-height: 50px;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.modal__form--cf7 .wpcf7-form textarea {
  resize: vertical;
  min-height: 92px;
  line-height: 1.5;
  font-family: var(--sans);
}
.modal__form--cf7 .wpcf7-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23706660' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m4 6 4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}
.modal__form--cf7 .wpcf7-form input::placeholder,
.modal__form--cf7 .wpcf7-form textarea::placeholder {
  color: #8f857e;
}
.modal__form--cf7 .wpcf7-form input:hover,
.modal__form--cf7 .wpcf7-form select:hover,
.modal__form--cf7 .wpcf7-form textarea:hover {
  background-color: #ede4d3;
}
.modal__form--cf7 .wpcf7-form input:focus,
.modal__form--cf7 .wpcf7-form select:focus,
.modal__form--cf7 .wpcf7-form textarea:focus {
  background-color: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(20, 86, 207, 0.12);
}

/* Acceptance checkbox */
.modal__form--cf7 .wpcf7-acceptance {
  display: block;
  grid-column: 1 / -1;
}
.modal__form--cf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0 !important;
}
.modal__form--cf7 .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;
}
.modal__form--cf7 .wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  transition: all var(--t);
  accent-color: auto;
  outline: none;
}
.modal__form--cf7 .wpcf7-acceptance input[type="checkbox"]:hover {
  border-color: var(--ink);
}
.modal__form--cf7 .wpcf7-acceptance input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}
.modal__form--cf7 .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}
.modal__form--cf7 .wpcf7-acceptance.is-error input[type="checkbox"],
.modal__form--cf7 .wpcf7-acceptance.wpcf7-not-valid input[type="checkbox"] {
  border-color: #d9453f;
  box-shadow: 0 0 0 3px rgba(217, 69, 63, 0.1);
  outline: none;
}
.modal__form--cf7 .wpcf7-acceptance.is-error label,
.modal__form--cf7 .wpcf7-acceptance.wpcf7-not-valid label {
  color: #d9453f !important;
}

/* Submit — text + inline SVG arrow (see main.js button upgrade) */
.modal__form--cf7 .wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 16px 24px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: -0.005em;
  min-height: 54px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  -webkit-appearance: none;
  appearance: none;
  grid-column: 1 / -1;
}
.modal__form--cf7 .wpcf7-form .wpcf7-submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--t);
}
.modal__form--cf7 .wpcf7-form .wpcf7-submit:hover svg {
  transform: translateX(4px);
}
.modal__form--cf7 .wpcf7-form .wpcf7-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 86, 207, 0.4);
}
.modal__form--cf7 .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}
.modal__form--cf7 .wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Spinner */
.modal__form--cf7 .wpcf7-spinner {
  display: none;
  width: 22px;
  height: 22px;
  margin: 0 0 0 10px;
  border: 2px solid rgba(20, 86, 207, 0.25);
  border-top-color: var(--red);
  border-radius: 50%;
  vertical-align: middle;
  animation: fhs-modal-spin 0.8s linear infinite;
  background: none !important;
}
.modal__form--cf7 .wpcf7-form.submitting .wpcf7-spinner {
  display: inline-block;
}
@keyframes fhs-modal-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Validation tip with icon + shake */
.modal__form--cf7 .wpcf7-not-valid-tip {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  color: #d9453f;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
  animation: fhs-modal-shake 0.3s ease-out;
}
.modal__form--cf7 .wpcf7-not-valid-tip::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23d9453f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='6.5'/><path d='M8 5v3.5'/><circle cx='8' cy='11' r='0.5' fill='%23d9453f'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
@keyframes fhs-modal-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(3px);
  }
}

.modal__form--cf7 .wpcf7-form input.wpcf7-not-valid,
.modal__form--cf7 .wpcf7-form select.wpcf7-not-valid,
.modal__form--cf7 .wpcf7-form textarea.wpcf7-not-valid {
  border-color: #d9453f !important;
  background: #fff5f4 !important;
  box-shadow: 0 0 0 3px rgba(217, 69, 63, 0.1) !important;
}

/* Response output — hidden; we show status via modal close on mailsent */
.modal__form--cf7 .wpcf7-response-output {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ==========================================================================
   Brands footer inside modal
   ========================================================================== */
.modal .brands__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 28px 22px;
  margin-top: 0;
  border-top: 1px solid #ebe2d1;
  font-size: 12.5px;
  color: var(--soft);
  line-height: 1.4;
  text-align: center;
}
.modal .brands__foot-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(20, 86, 207, 0.3);
  text-underline-offset: 3px;
  border-bottom: 0;
  transition: all var(--t);
}
.modal .brands__foot-link:hover {
  color: #1e68e3;
  text-decoration-color: #1e68e3;
  border-bottom: 0;
}
.modal .brands__foot-dot {
  width: 3px;
  height: 3px;
  background: var(--line);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Legacy CTA form still uses global CF7 grid (kept from previous CSS) */
.cta__form-cf7 .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cta__form-cf7 .cf7-row--full,
.cta__form-cf7 .wpcf7-form > .cf7-row--full {
  grid-column: 1 / -1;
}
/* Validation tip with icon + shake (same treatment as modal form) */
.cta__form-cf7 .wpcf7-not-valid-tip {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  color: #d9453f;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
  animation: fhs-modal-shake 0.3s ease-out;
}
.cta__form-cf7 .wpcf7-not-valid-tip::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23d9453f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='6.5'/><path d='M8 5v3.5'/><circle cx='8' cy='11' r='0.5' fill='%23d9453f'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.cta__form-cf7 .wpcf7-form input.wpcf7-not-valid,
.cta__form-cf7 .wpcf7-form select.wpcf7-not-valid,
.cta__form-cf7 .wpcf7-form textarea.wpcf7-not-valid {
  border-color: #d9453f !important;
  background: #fff5f4 !important;
  box-shadow: 0 0 0 3px rgba(217, 69, 63, 0.1) !important;
}

.cta__form-cf7 .wpcf7-response-output {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.cta__form-cf7 .wpcf7-acceptance.is-error input[type="checkbox"],
.cta__form-cf7 .wpcf7-acceptance.wpcf7-not-valid input[type="checkbox"] {
  border-color: #d9453f;
  box-shadow: 0 0 0 3px rgba(217, 69, 63, 0.1);
  outline: none;
}
.cta__form-cf7 .wpcf7-acceptance.is-error label,
.cta__form-cf7 .wpcf7-acceptance.wpcf7-not-valid label {
  color: #d9453f !important;
}

/* ==========================================================================
   Modal responsive
   ========================================================================== */
@media (max-width: 640px) {
  .modal {
    align-items: flex-end;
  }
  .modal__dialog {
    max-width: 100%;
    max-height: 94vh;
    max-height: 94dvh;
    margin: 0;
    border-radius: 24px 24px 0 0;
    border-bottom: none;
    padding-bottom: env(safe-area-inset-bottom, 0);
    transform: translateY(100%);
  }
  .modal[aria-hidden="false"] .modal__dialog {
    transform: translateY(0) scale(1);
  }

  .modal__dialog::before {
    content: "";
    position: sticky;
    top: 0;
    left: 50%;
    display: block;
    width: 40px;
    height: 4px;
    margin: 8px auto 0;
    background: var(--line);
    border-radius: 2px;
    z-index: 3;
  }

  .modal__close {
    top: 16px;
    right: 14px;
    width: 36px;
    height: 36px;
  }
  .modal__head {
    padding: 14px 20px 14px;
  }
  .modal__head h2,
  .modal__head .modal__title {
    font-size: 22px;
    padding-right: 48px;
  }
  .modal__head p {
    font-size: 13px;
  }

  .modal__form {
    padding: 0 20px 18px;
  }

  .modal__form--cf7 .wpcf7-form {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .cta__form-cf7 .wpcf7-form {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .modal .brands__foot {
    display: none;
  }
}

@media (max-width: 480px) {
  .modal__form--cf7 .wpcf7-form {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .modal__form--cf7 .wpcf7-form input,
  .modal__form--cf7 .wpcf7-form select,
  .modal__form--cf7 .wpcf7-form textarea {
    padding: 12px 12px;
    font-size: 14px;
  }
  .modal__form--cf7 .wpcf7-form select {
    padding-right: 30px;
    background-position: right 8px center;
    background-size: 14px;
  }
}

@media (max-width: 380px) {
  .modal__head h2,
  .modal__head .modal__title {
    font-size: 21px;
  }
  .modal__head p {
    font-size: 12.5px;
  }
  .modal__form--cf7 .wpcf7-form input,
  .modal__form--cf7 .wpcf7-form select,
  .modal__form--cf7 .wpcf7-form textarea {
    padding: 11px 10px;
    font-size: 13.5px;
  }
  .modal__form--cf7 .wpcf7-form select {
    padding-right: 26px;
    background-position: right 6px center;
    background-size: 12px;
  }
}

@media (min-width: 641px) and (max-height: 600px) and (orientation: landscape) {
  .modal__dialog {
    max-height: 96vh;
    max-height: 96dvh;
    border-radius: 16px;
    max-width: 720px;
  }
  .modal {
    align-items: center;
  }
  .modal__head {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .modal__form {
    padding-bottom: 16px;
  }
  .modal__form--cf7 .wpcf7-form textarea {
    min-height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal *,
  .modal *::before,
  .modal *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .modal__form--cf7 .wpcf7-spinner {
    animation-duration: 1s !important;
  }
}

/* Footer nav menus */
.footer__col .menu {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.footer__col .menu li {
  margin: 0;
}
.footer__col .menu a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 2;
  transition: color var(--t);
}
.footer__col .menu a:hover {
  color: #fff;
}

/* CF7 form in CTA section — demo styling (cta_section mockup) */
.cta__form.cta__form-cf7 {
  background: var(--white);
  padding: 36px;
  border-radius: var(--r-lg);
  width: 100%;
  display: block;
  box-shadow: 0 20px 48px rgba(20, 14, 10, 0.14);
}
.cta__form-cf7 > div,
.cta__form-cf7 .wpcf7 {
  width: 100%;
}

.cta__form-cf7 .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta__form-cf7 .cf7-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.cta__form-cf7 .cf7-row--full,
.cta__form-cf7 .wpcf7-form > .cf7-row--full {
  grid-column: 1 / -1;
}

/* Labels */
.cta__form-cf7 .wpcf7-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--soft);
  text-transform: none;
  line-height: 1.4;
  margin-bottom: 0;
  display: block;
}

/* Inputs / select / textarea */
.cta__form-cf7 .wpcf7-form input[type="text"],
.cta__form-cf7 .wpcf7-form input[type="tel"],
.cta__form-cf7 .wpcf7-form input[type="email"],
.cta__form-cf7 .wpcf7-form select,
.cta__form-cf7 .wpcf7-form textarea {
  width: 100%;
  margin-top: 10px;
  padding: 11px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  outline: none;
  transition:
    border-color var(--t),
    box-shadow var(--t),
    background-color var(--t);
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.cta__form-cf7 .wpcf7-form input::placeholder,
.cta__form-cf7 .wpcf7-form textarea::placeholder {
  color: #b0a89e;
}
.cta__form-cf7 .wpcf7-form input:focus,
.cta__form-cf7 .wpcf7-form select:focus,
.cta__form-cf7 .wpcf7-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(20, 86, 207, 0.1);
  background-color: var(--white);
}
.cta__form-cf7 .wpcf7-form textarea {
  resize: none;
  height: 88px;
  min-height: 88px;
  font-family: var(--sans);
}

/* Select chevron (triangle via background-image) */
.cta__form-cf7 .wpcf7-form select {
  padding-right: 36px;
  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 13px center;
  background-size: 8px 5px;
}

/* Acceptance checkbox — native square with paper bg */
.cta__form-cf7 .wpcf7-acceptance {
  display: block;
  grid-column: 1 / -1;
}
.cta__form-cf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0 !important;
}
.cta__form-cf7 .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;
  flex-wrap: nowrap;
}
.cta__form-cf7 .wpcf7-acceptance .wpcf7-list-item-label {
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .cta__form-cf7 .wpcf7-acceptance label {
    font-size: 11px !important;
    gap: 8px;
  }
  .cta__form-cf7 .wpcf7-acceptance input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
  .cta__form-cf7 .wpcf7-acceptance input[type="checkbox"]:checked::after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
  }
}
.cta__form-cf7 .wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: relative;
  transition: all var(--t);
  accent-color: auto;
  outline: none;
  box-shadow: none;
}
.cta__form-cf7 .wpcf7-acceptance input[type="checkbox"]:hover {
  border-color: var(--ink);
}
.cta__form-cf7 .wpcf7-acceptance input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}
.cta__form-cf7 .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Blue inline link inside the acceptance label (both modal + CTA) */
.cta__form-cf7 .wpcf7-acceptance .wpcf7-list-item-label a,
.modal__form--cf7 .wpcf7-acceptance .wpcf7-list-item-label a {
  color: var(--red) !important;
  text-decoration: underline;
  text-decoration-color: rgba(20, 86, 207, 0.35);
  text-underline-offset: 2px;
  font-weight: 600;
  border-bottom: 0;
}
.cta__form-cf7 .wpcf7-acceptance .wpcf7-list-item-label a:hover,
.modal__form--cf7 .wpcf7-acceptance .wpcf7-list-item-label a:hover {
  text-decoration-color: var(--red);
}

/* Submit — ink pill, hover → red lift */
.cta__form-cf7 .wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: -0.005em;
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  grid-column: 1 / -1;
}
.cta__form-cf7 .wpcf7-form .wpcf7-submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--t);
}
.cta__form-cf7 .wpcf7-form .wpcf7-submit:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 86, 207, 0.3);
}
.cta__form-cf7 .wpcf7-form .wpcf7-submit:hover svg {
  transform: translateX(4px);
}
.cta__form-cf7 .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}

/* Rows that should span full width */
.cta__form-cf7 .wpcf7-form > p:last-of-type,
.cta__form-cf7 .wpcf7-form > .wpcf7-submit,
.cta__form-cf7 .wpcf7-form > .cf7-row--submit,
.cta__form-cf7 .wpcf7-form > .cf7-row--acceptance {
  grid-column: 1 / -1;
}
.cta__form-cf7 .wpcf7-form br {
  display: none;
}

/* Cross-locations — pill list used on brand & service pages */
.cross-locations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cross-locations__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--t);
}
.cross-locations__link:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .cross-locations__grid {
    gap: 8px;
  }
  .cross-locations__link {
    padding: 8px 14px;
    font-size: 13px;
  }
  .cta__form-cf7 {
    padding: 20px;
  }
}

.cky-btn-revisit-wrapper {
  display: none !important;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process.section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.process.section::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;
}
.process.section > .container {
  position: relative;
  z-index: 1;
}

.process .h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}

.process__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  position: relative;
}
/* Dotted connector behind icons (desktop / 3-col only). */
.process__list::before {
  content: "";
  position: absolute;
  top: clamp(50px, 4.5vw, 56px);
  left: 10%;
  right: 10%;
  height: 2px;
  background-image: radial-gradient(
    circle,
    var(--line) 1.4px,
    transparent 1.4px
  );
  background-size: 10px 2px;
  background-repeat: repeat-x;
  z-index: 0;
  pointer-events: none;
}

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

.process__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md, 14px);
  background: var(--white);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.process__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(20, 86, 207, 0.12) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.process__icon .icon,
.process__icon svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.process__item:hover .process__icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: scale(1.03) rotate(-3deg);
  box-shadow: 0 12px 28px rgba(20, 14, 10, 0.22);
}
.process__item:hover .process__icon::before {
  opacity: 1;
}
.process__item:hover .process__icon .icon,
.process__item:hover .process__icon svg {
  transform: scale(1.06);
}

.process__item h3 {
  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;
}
.process__item p {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.process__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft, var(--line));
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  border-bottom: 0;
}
.process__link .icon {
  width: 12px;
  height: 12px;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.process__link:hover {
  color: var(--red);
}
.process__link:hover .icon {
  transform: translateX(3px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .process__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process__list::before {
    display: none;
  }

  /* Mobile-only CTA card — dark variant with phone icon. Overrides the
     global `u-mobile-only { display:none }` from base.css. */
  .process__item.u-mobile-only {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .process__item.u-mobile-only::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 260px;
    height: 260px;
    background: radial-gradient(
      circle,
      rgba(20, 86, 207, 0.35) 0%,
      transparent 65%
    );
    pointer-events: none;
    z-index: 0;
  }
  .process__item.u-mobile-only > * {
    position: relative;
    z-index: 1;
  }
  .process__item.u-mobile-only .process__icon {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(20, 86, 207, 0.45);
    margin-bottom: 5px;
  }
  .process__item.u-mobile-only h3 {
    color: var(--white);
  }
  .process__item.u-mobile-only p {
    color: rgba(246, 241, 234, 0.72);
  }
  .process__item.u-mobile-only .process__link {
    color: var(--white);
    border-top-color: rgba(255, 255, 255, 0.15);
    font-family: var(--serif);
    font-size: 16px;
  }
  .process__item.u-mobile-only:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(20, 14, 10, 0.35);
  }
  .process__item.u-mobile-only:hover .process__icon {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.03) rotate(-3deg);
  }
}

@media (max-width: 640px) {
  .process__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Horizontal card layout on phones — icon left, content right. */
  .process__item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 0;
    padding: 20px;
  }
  .process__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    grid-row: 1 / span 3;
    align-self: start;
  }
  .process__icon .icon,
  .process__icon svg {
    width: 22px;
    height: 22px;
  }
  .process__item h3 {
    grid-column: 2;
    font-size: 17px;
    margin: 0 0 6px;
  }
  .process__item p {
    grid-column: 2;
    margin: 0;
  }
  .process__link {
    grid-column: 2;
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process__item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================================
   Pricing table
   ========================================================================== */

.pricing {
  background: var(--paper-2);
}
.pricing__table {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 8px 32px;
  box-shadow: var(--sh-2);
  max-width: 960px;
  margin: 0 auto;
}
.pricing__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.pricing__row:last-child {
  border-bottom: none;
}
.pricing__row--head {
  padding: 18px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--soft);
  font-weight: 600;
}
.pricing__row strong {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
}
.pricing__price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pricing__price--free {
  color: var(--success);
}
.pricing__row > span:last-child {
  color: var(--soft);
  font-size: 14px;
}

.pricing__row--highlight {
  margin: 10px -16px 0 -16px;
  padding: 22px 16px;
  background: var(--paper);
  border-radius: var(--r);
  border-bottom: none;
  position: relative;
}
.pricing__row--highlight::before {
  content: "★ Nejčastější volba";
  position: absolute;
  top: -8px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--pill);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 32px auto 0;
}
.pricing__foot-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}
.pricing__cta {
  text-align: center;
  margin-top: 36px;
}
.pricing__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pricing__note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--soft);
}
.pricing__foot-item .icon {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}
.pricing__foot-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 2px;
  font-weight: 600;
}
.pricing__foot-item span {
  font-size: 13px;
  color: var(--soft);
}

/* ==========================================================================
   Brands
   ========================================================================== */

.brands {
  background: var(--paper);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands__head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.brands__grid-wrap {
  position: relative;
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.brands__grid--collapsed > li:nth-child(n + 16) {
  display: none;
}
@media (min-width: 641px) {
  .brands__grid--collapsed > li:nth-child(15) {
    display: none;
  }
}
.brands__grid > li:nth-child(n + 16) {
  animation: brands-reveal 0.38s ease both;
}
@keyframes brands-reveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.brands__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  pointer-events: none;
  border-radius: 0 0 var(--r) var(--r);
  background: linear-gradient(
    to bottom,
    rgba(248, 243, 232, 0) 0%,
    var(--paper) 92%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}
.brands__grid-wrap:has(.brands__grid--collapsed) .brands__fade {
  opacity: 1;
}
.brands__show-more {
  margin: 24px auto 0;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
}
.brands__show-more-chev {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.brands__show-more[aria-expanded="true"] .brands__show-more-chev {
  transform: rotate(180deg);
}
.brand-tile {
  background: var(--paper);
  padding: 32px 12px;
  text-align: center;
  font-size: 20px;
  color: var(--ink-2);
  transition: all var(--t);
  display: grid;
  place-items: center;
  min-height: 100px;
}
.brand-tile:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
}

/* Brands simple text listing */
.brands__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.brands__foot {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--soft);
  flex-wrap: wrap;
}
.brands__all {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.brands__all .btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--t);
}
.brands__all .btn:hover svg {
  transform: translateX(3px);
}
.brands__foot-link {
  color: #1456cf;
  font-weight: 600;
  border-bottom: 1px solid rgba(20, 86, 207, 0.3);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.brands__foot-link:hover {
  color: #0e3e99;
  border-bottom-color: #0e3e99;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews {
  background: var(--paper-2);
}
.reviews__platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: end;
  align-self: end;
}
.platform-link {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  transition: all var(--t);
}
.platform-link:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.platform-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.platform-link__mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
}
.platform-link__mark--firmy {
  background: #d9232d;
}
.platform-link__mark--seznam {
  background: #cc0000;
}
.platform-link strong {
  display: block;
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 600;
}
.platform-link span {
  display: block;
  font-size: 11px;
  color: var(--soft);
}

.reviews__carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
.reviews__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all var(--t);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.reviews__nav:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.reviews__nav--prev {
  left: -24px;
}
.reviews__nav--prev .icon {
  transform: rotate(180deg);
}
.reviews__nav--next {
  right: -24px;
}

.reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar {
  display: none;
}

.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review__stars {
  color: #e8a531;
  display: flex;
  gap: 2px;
}
.review__stars .icon {
  width: 16px;
  height: 16px;
}
.review__date {
  font-size: 12px;
  color: var(--soft);
}
.review p {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  flex: 1;
}
.review__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review__author {
  display: flex;
  gap: 12px;
  align-items: center;
}
.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}
.review__author strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
}
.review__author span {
  font-size: 12px;
  color: var(--soft);
}
.review__src {
  font-size: 11.5px;
  color: var(--soft);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.review__src svg {
  width: 14px;
  height: 14px;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}
.reviews__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: all var(--t);
  padding: 0;
}
.reviews__dots button.active {
  background: var(--ink);
  width: 24px;
  border-radius: var(--pill);
}

/* ==========================================================================
   Responsive — components
   ========================================================================== */

@media (max-width: 1100px) {
  .brands__grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .review {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 960px) {
  .brands__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .pricing__row,
  .pricing__row--head {
    grid-template-columns: 1.2fr 1fr;
  }
  .pricing__row > span:last-child,
  .pricing__row--head > span:last-child {
    display: none;
  }
  .pricing__foot {
    grid-template-columns: 1fr;
    justify-self: center;
  }
  .pricing__foot-item {
    justify-content: unset;
  }
}

@media (max-width: 640px) {
  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-tile {
    padding: 18px 6px;
    min-height: 68px;
    font-size: 14px !important;
    letter-spacing: normal !important;
  }

  .process__item + .process__item::before {
    display: none;
  }
  .review {
    flex: 0 0 calc(90% - 10px);
  }
  .reviews__nav {
    display: none;
  }
  .reviews__platforms {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 -18px;
    padding: 4px 18px;
    gap: 10px;
    justify-self: start;
    align-self: start;
    width: calc(100% + 36px);
  }
  .reviews__platforms::-webkit-scrollbar {
    display: none;
  }
  .platform-link {
    flex-shrink: 0;
  }
  .review {
    padding: 24px 22px;
  }
  .review p {
    font-size: 16px;
  }
  .reviews__dots button {
    min-width: 10px;
    height: 10px;
  }
  .reviews__dots button.active {
    width: 28px;
  }
  .pricing__row {
    padding: 18px 0;
  }
  .pricing__table {
    padding: 6px 20px;
  }
  .pricing__row--highlight {
    padding: 18px;
  }
  .pricing__row--highlight::before {
    left: 28px;
  }
  .pricing__price {
    font-size: 20px;
  }
  .review:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq__aside {
    position: static;
  }
  .mega {
    width: min(780px, 94vw);
  }
  .mega__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .nav,
  .header__phone-link,
  .topbar__right > *:nth-child(n + 3),
  .topbar__left > *:nth-child(n + 4) {
    display: none;
  }
  .burger {
    display: grid;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }
  .announce {
    display: none;
  }
  .header__inner {
    padding: 14px 20px;
    gap: 12px;
  }
  .header__cta {
    gap: 10px;
  }
  .logo__img {
    height: 40px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding: 0 16px 70px;
  }
  .footer__col--about,
  .footer__col:last-child {
    grid-column: 1 / -1;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta {
    padding: 70px 0;
  }
  .cta__form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .cookie__actions .btn {
    flex: 1;
  }
  .announce__text {
    font-size: 12px;
  }
  .cta {
    padding: 64px 0 !important;
  }
  .cta__inner {
    gap: 32px;
    padding: 0 18px !important;
  }
  .cta__form {
    padding: 20px;
    gap: 12px;
  }
  .cta__contacts a {
    padding: 12px 14px;
  }
  .cta__contacts strong {
    font-size: 14px;
  }
  .faq__item summary {
    padding: 18px 20px;
    font-size: 15.5px;
    gap: 12px;
    min-height: 56px;
  }
  .faq__body {
    padding: 0 20px 20px;
    font-size: 14.5px;
  }
  .faq__chev {
    width: 18px;
    height: 18px;
  }
  .footer__contact a,
  .footer__contact span {
    min-height: 40px;
    padding: 6px 0;
  }
  .footer__socials a {
    min-width: 46px;
    min-height: 46px;
  }
  .header__inner {
    padding: 10px 16px;
    min-height: 60px;
  }
  .logo__img {
    height: 36px !important;
  }
}

/* ==========================================================================
   Why us / Why local — shared between home and service/city pages
   ========================================================================== */

.why {
  background: var(--paper);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.why__item {
  position: relative;
  border-radius: var(--r-lg, 22px);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.why__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(18, 16, 16, 0.22);
}
.why__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
      110deg,
      #2a2624 0%,
      #3a3432 45%,
      #4a4340 50%,
      #3a3432 55%,
      #2a2624 100%
    )
    0 0 / 200% 100%;
  animation: fhs-skel 1.6s ease-in-out infinite;
}
.why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
}
.why__photo img[loading="lazy"]:not(.is-loaded) {
  opacity: 0;
}
@keyframes fhs-skel {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.why__item:hover .why__photo img {
  transform: scale(1.05);
}
.why__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 7, 7, 0.88) 0%,
    rgba(8, 7, 7, 0.4) 55%,
    rgba(8, 7, 7, 0.08) 100%
  );
}
.why__content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
  width: fit-content;
  letter-spacing: 0.2px;
  font-family: var(--sans);
}
.why__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.22);
}
.why__badge-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.why__num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin: 0;
  font-style: normal;
}
.why__item h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.why__item p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}
.why__stats {
  display: flex;
  gap: 0;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.why__stat {
  flex: 1;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  margin-right: 16px;
}
.why__stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.why__stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 2px;
}
.why__stat span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}
.why__schedule {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.why__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
}
.why__pill svg {
  width: 11px;
  height: 11px;
  opacity: 0.7;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why__item {
    min-height: 280px;
  }
  .why__content {
    padding: 22px 24px;
  }
}

/* ==========================================================================
   Read More / SEO expandable block
   ========================================================================== */

.readmore {
  background: var(--white);
}
.readmore__inner {
  margin: 0 auto;
}
.readmore__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.2;
}
.readmore__content {
  position: relative;
  max-height: 320px;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.readmore__body {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
}
.readmore__body p {
  margin: 0 0 14px;
}
.readmore__body strong {
  color: var(--ink);
}
.readmore__body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 8px 0 14px;
}
.readmore__body ol {
  list-style: decimal;
  padding-left: 22px;
  margin: 8px 0 14px;
}
.readmore__body li {
  padding: 2px 0;
}
.readmore__body a {
  color: var(--red);
  text-decoration: underline;
}
.readmore__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    var(--white) 95%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.readmore__content.is-open {
  max-height: 100%;
}
.readmore__content.is-open .readmore__fade {
  opacity: 0;
}
.readmore__toggle {
  margin: 22px auto 0;
  display: flex;
}

@media (max-width: 640px) {
  .readmore__content {
    max-height: 260px;
  }
  .readmore__body {
    font-size: 14.5px;
  }
}

/* ==========================================================================
   Generic page template (page.php) — hero + prose body + CTA
   ========================================================================== */

.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);
  list-style: none;
  padding: 0;
  margin: 0;
}
.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;
}
@media (max-width: 640px) {
  .breadcrumbs {
    padding: 14px 0;
  }
  .breadcrumbs__list {
    font-size: 12px;
    gap: 6px;
  }
}

.page-basic__hero {
  padding: 64px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-basic__hero-inner {
  max-width: 860px;
}
.page-basic__title {
  margin-bottom: 0;
}
.page-basic__lead {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--soft);
  max-width: 680px;
  text-wrap: pretty;
}

.page-basic__body {
  padding: 64px 0 96px;
  background: var(--paper);
}
.page-basic__prose {
  max-width: 760px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.75;
}
.page-basic__prose > * + * {
  margin-top: 18px;
}
.page-basic__prose h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-top: 44px;
}
.page-basic__prose h3 {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 34px;
}
.page-basic__prose h2 + *,
.page-basic__prose h3 + * {
  margin-top: 10px;
}
.page-basic__prose strong {
  color: var(--ink);
  font-weight: 600;
}
.page-basic__prose a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.page-basic__prose a:hover {
  text-decoration: none;
}
.page-basic__prose ul,
.page-basic__prose ol {
  padding-left: 22px;
}
.page-basic__prose ul {
  list-style: disc;
}
.page-basic__prose ol {
  list-style: decimal;
}
.page-basic__prose li + li {
  margin-top: 6px;
}
.page-basic__prose li::marker {
  color: var(--red);
}
.page-basic__prose blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--red);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}
.page-basic__prose img {
  border-radius: var(--r);
  margin: 8px 0;
}
.page-basic__prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 36px 0;
}
.page-basic__prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 8px 0;
}
.page-basic__prose th,
.page-basic__prose td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.page-basic__prose th {
  color: var(--ink);
  font-weight: 600;
  background: var(--paper-2);
}
.page-basic__prose code {
  background: var(--paper-2);
  padding: 2px 6px;
  border-radius: var(--r-xs);
  font-size: 0.92em;
}

/* Blog list (home.php / archive.php / index.php fallback) */
.post-list {
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
}
.post-list__item {
  margin: 0;
}
.post-list__link {
  display: block;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: inherit;
  text-decoration: none;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.post-list__link:hover {
  border-color: var(--ink);
  box-shadow: var(--sh-1);
  transform: translateY(-2px);
}
.post-list__meta {
  display: block;
  font-size: 13px;
  color: var(--soft);
  margin-bottom: 6px;
}
.post-list__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 8px;
}
.post-list__excerpt {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 12px;
}
.post-list__more {
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
}
.post-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  align-items: center;
}
.post-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--r-xs);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color var(--t), background var(--t);
}
.post-pagination .page-numbers:hover {
  border-color: var(--ink);
}
.post-pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

@media (max-width: 640px) {
  .page-basic__hero {
    padding: 48px 0;
  }
  .page-basic__body {
    padding: 48px 0 72px;
  }
  .page-basic__lead {
    font-size: 16.5px;
  }
  .page-basic__prose {
    font-size: 15.5px;
  }
  .post-list__link {
    padding: 20px 22px;
  }
}

/* ==========================================================================
   CF7 submit button — universal progress / success / error states
   Hides the native CF7 spinner and draws a full-width progress bar on the
   submit button via ::before. Piggy-backs on CF7's own form-state classes:
     .wpcf7-form.submitting → animated progress + shimmer
     .wpcf7-form.sent       → green completion
     .wpcf7-form.invalid
     .wpcf7-form.failed
     .wpcf7-form.spam       → red fill + shake
   Works on top of the existing scoped button styles in modal / CTA / hero /
   kontakt forms — those supply base colour, padding, hover; this layer adds
   the feedback states.
   ========================================================================== */

.wpcf7 .wpcf7-spinner,
.wpcf7-form .wpcf7-spinner,
.wpcf7 .ajax-loader,
.wpcf7-form .ajax-loader {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
}

/* Progress-bar layer lives on <button> only — ::before doesn't render on
   <input>, so hero/kontakt (still native <input>) aren't affected and keep
   their existing visuals unchanged. */
.wpcf7-form button.wpcf7-submit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.wpcf7-form button.wpcf7-submit::before {
  content: "";
  position: absolute;
  /* -1px bleed on every side so the fill covers sub-pixel anti-aliasing
     fringing at the button's rounded pill edges. overflow:hidden on the
     button still clips it back to the pill shape. */
  inset: -1px;
  background: linear-gradient(
    90deg,
    var(--red) 0%,
    #1e68e3 40%,
    #4a8bff 70%,
    #1e68e3 100%
  );
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  pointer-events: none;
}

.wpcf7-form.submitting button.wpcf7-submit {
  pointer-events: none;
  cursor: wait;
  color: #fff;
  /* Solid dark base keeps white label readable across the whole button even
     while the ::before gradient hasn't swept to the right edge yet. Without
     this, buttons with a light default bg (hero card) would show white text
     on white for the un-filled portion. */
  background-color: #0f4fb8;
}
.wpcf7-form.submitting button.wpcf7-submit::before {
  animation:
    fhs-cf7-progress 900ms cubic-bezier(0.33, 1, 0.68, 1) forwards,
    fhs-cf7-shimmer 1.2s linear infinite;
}
@keyframes fhs-cf7-progress {
  0% {
    transform: scaleX(0);
  }
  55% {
    transform: scaleX(0.65);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes fhs-cf7-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Success: brief green flash, then reverts so the button returns to normal.
   We animate the button's background-color in lockstep with the ::before
   overlay so any sub-pixel anti-aliasing at the pill's rounded edges tints
   matching-colour instead of leaking the button's original white. */
.wpcf7-form.sent button.wpcf7-submit::before {
  background: linear-gradient(90deg, #2f7d32, #3ba93f);
  animation: fhs-cf7-flash 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.wpcf7-form.sent button.wpcf7-submit {
  animation:
    fhs-cf7-flash-text 1.8s cubic-bezier(0.4, 0, 0.2, 1),
    fhs-cf7-flash-bg-sent 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Error: brief red flash + shake, then reverts to original button look */
.wpcf7-form.invalid button.wpcf7-submit::before,
.wpcf7-form.failed button.wpcf7-submit::before,
.wpcf7-form.spam button.wpcf7-submit::before {
  background: linear-gradient(90deg, #c44545, #d86565);
  animation: fhs-cf7-flash 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wpcf7-form.invalid button.wpcf7-submit,
.wpcf7-form.failed button.wpcf7-submit,
.wpcf7-form.spam button.wpcf7-submit {
  animation:
    fhs-cf7-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97),
    fhs-cf7-flash-text 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    fhs-cf7-flash-bg-error 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fhs-cf7-flash-bg-sent {
  15%,
  70% {
    background-color: #3ba93f;
  }
}
@keyframes fhs-cf7-flash-bg-error {
  15%,
  70% {
    background-color: #d86565;
  }
}

/* Flash animation for .sent / .invalid — fades a full-width overlay in
   and out via opacity. We keep scaleX(1) throughout so the gradient fills
   the whole button with no partial-width rounding artifacts, and the fade
   handles the "couple seconds and gone" feel. */
@keyframes fhs-cf7-flash {
  0% {
    transform: scaleX(1);
    opacity: 0;
  }
  15% {
    transform: scaleX(1);
    opacity: 1;
  }
  70% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}
@keyframes fhs-cf7-flash-text {
  0%,
  72% {
    color: #fff;
  }
}
@keyframes fhs-cf7-shake {
  10%,
  90% {
    transform: translateX(-2px);
  }
  20%,
  80% {
    transform: translateX(3px);
  }
  30%,
  50%,
  70% {
    transform: translateX(-5px);
  }
  40%,
  60% {
    transform: translateX(5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-form button.wpcf7-submit,
  .wpcf7-form button.wpcf7-submit::before {
    animation-duration: 0.01ms !important;
    transition-duration: 0.15s !important;
  }
}
