/*!******************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/frontend.scss ***!
  \******************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/** Хедер: горизонтальний ряд замість бургера. */
/* Shared section eyebrow / subtitle style — one source of truth.
   Use via `@include eyebrow;` (colour + margin stay per-block) or the
   global `.subtitle` class. */
/* ===========================================================
   Кнопки-пігулки — ОДНЕ джерело правди для розмірів.

   Раніше ту саму кнопку було написано в кількох місцях окремо, і вони
   розповзлись: .process-btn 15/30 gap 8, .cta-btn 13/22 gap 10,
   .btn-secondary 14/28. Тобто «однакова» кнопка мала різні розміри.

   Тепер геометрія лише тут; споживачі: .btn-primary / .btn-secondary
   (банер), .process-btn (CTA), .cta-btn (services), core/button (is-style-*).

   Прозора рамка 1.5px у базі — щоб обведений варіант мав ІДЕНТИЧНУ
   геометрію, а не був на 3px нижчим через товщину рамки.
   =========================================================== */
/* темна пігулка — головна кнопка (банер «Замовити сайт») */
/* амбер пігулка — CTA («Обговорити проєкт», services) */
/* обведена пігулка — вторинна кнопка (банер «Мої послуги») */
/* стрілка ↗ через CSS — для кнопок, куди SVG у розмітку не вставити
   (core/button). Там, де SVG уже є в розмітці (.btn-primary, .cta-btn),
   анімацію робить `svg` у pill-base. */
/* ===========================================================
   Metric-compatible fallback faces.

   With `font-display: swap` the browser paints text in the system
   sans-serif first, then swaps in the real font. Arial is narrower and
   has a different ascent than Montserrat / Fira Sans, so the swap used to
   reflow every line — the "text deforms while loading" effect (and CLS).

   These faces re-scale Arial to match the real font's advance width and
   vertical metrics, so the swap is (visually) a no-op. They are referenced
   from theme.json:  "Montserrat", "Montserrat Fallback", sans-serif

   Numbers are measured, not guessed: mean advance width over the Latin +
   Cyrillic alphabets of each font vs. the same set in C:/Windows/Fonts/arial.ttf
   (Arial = 0.5644 em), plus hhea ascent/descent divided by that ratio.
   =========================================================== */
@font-face {
  font-family: "Montserrat Fallback";
  src: local("Arial");
  size-adjust: 111.77%;
  ascent-override: 86.61%;
  descent-override: 22.46%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Fira Sans Fallback";
  src: local("Arial");
  size-adjust: 96.83%;
  ascent-override: 96.56%;
  descent-override: 27.37%;
  line-gap-override: 0%;
}
/* ===========================================================
   Global decorative effects — ported 1:1 from the design.
   Colours come from theme.json presets (§8): primary = #F5A800.
   =========================================================== */
/* shared content container width (matches theme.json wideSize) + side gutter */
:root {
  --site-container: 1400px;
  --site-gutter: 24px;
}

/* ── Noise / grain overlay over the whole viewport ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox=%270 0 512 512%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.75%27 numOctaves=%274%27 stitchTiles=%27stitch%27/%3E%3C/filter%3E%3Crect width=%27100%25%27 height=%27100%25%27 filter=%27url%28%23n%29%27 opacity=%270.04%27/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* ── Custom cursor (injected by effects.js) ── */
/* hidden by default (touch / mobile); shown only on desktop ≥1024px */
.cursor,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary);
  z-index: 9998;
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: multiply;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--wp--preset--color--primary);
  z-index: 9997;
  transition: left 0.14s ease-out, top 0.14s ease-out, width 0.2s, height 0.2s;
  opacity: 0.6;
}

@media screen and (min-width: 1024px) {
  .cursor,
  .cursor-ring {
    display: block;
  }
}
/* ── Reveal-on-scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Shared keyframes used across sections ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes wave {
  0%, 100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(18deg);
  }
  75% {
    transform: rotate(-8deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
@keyframes float1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes float3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes morph {
  0% {
    border-radius: 60% 40% 55% 45%/50% 60% 40% 50%;
  }
  50% {
    border-radius: 45% 55% 40% 60%/60% 45% 55% 40%;
  }
  100% {
    border-radius: 55% 45% 65% 35%/45% 55% 45% 55%;
  }
}
@keyframes morphAbout {
  0% {
    border-radius: 60% 40% 50% 50%/55% 45% 60% 40%;
  }
  50% {
    border-radius: 45% 55% 60% 40%/50% 60% 40% 55%;
  }
  100% {
    border-radius: 55% 45% 40% 60%/60% 40% 55% 45%;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ===========================================================
   Shared design buttons (.btn-primary / .btn-secondary).
   Used across hero, about and other section blocks.
   Excluded from the global link-hover mixin (see frontend.scss).

   Геометрія — зі спільних міксинів (global/_mixins.scss), щоб розміри
   не розповзались між банером, CTA, services і core/button.
   Стрілка тут — inline-SVG у розмітці, її анімує `svg` у pill-base.
   =========================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-primary svg {
  transition: transform 0.2s;
}
.btn-primary:hover svg {
  transform: translate(3px, 0);
}
.btn-primary {
  background: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--wp--preset--color--amber-dark);
  color: var(--wp--preset--color--background);
}
.btn-primary:hover svg {
  transform: translate(3px, -3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary svg {
  transition: transform 0.2s;
}
.btn-secondary:hover svg {
  transform: translate(3px, 0);
}
.btn-secondary {
  background: transparent;
  color: var(--wp--preset--color--foreground);
  border-color: rgba(8, 8, 8, 0.2);
  font-weight: 500;
}
.btn-secondary:hover {
  background: transparent;
  border-color: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--foreground);
}

/* ===========================================================
   Site header / navigation — CORE blocks + a custom burger.
   core/navigation uses overlayMenu:"never" (plain horizontal list);
   responsive behaviour is driven by JS toggling `.is-open` on .main-nav.
   Mobile-first: overlay menu by default, horizontal row from the `nav` breakpoint.
   =========================================================== */
/* kill the slide transition while the window is being resized (prevents
   the overlay from flashing when crossing the `nav` breakpoint) */
.nav-resizing .main-nav .nav-collapse {
  transition: none !important;
}

.main-nav {
  /* blockGap is for top-level sections only; the header uses its own gaps */
  --wp--style--block-gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9100;
  padding: 20px 0;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.main-nav.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(8, 8, 8, 0.07);
  padding: 14px 0;
}
.main-nav {
  /* keep header transparent while the overlay is open.
     IMPORTANT: backdrop-filter must be removed too — it creates a
     containing block for the position:fixed overlay, which would
     otherwise confine the menu to the nav bar instead of the viewport. */
}
.main-nav.is-open {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.main-nav {
  /* ── inner container (matches section containers' 1300px content) ── */
}
.main-nav .nav-inner {
  width: 100%;
  max-width: calc(var(--site-container) + 40px);
  margin: 0 auto;
  padding: 0 20px;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 9200;
}
@media screen and (min-width: 1240px) {
  .main-nav .nav-inner {
    max-width: calc(var(--site-container) + var(--site-gutter) * 2);
    padding: 0 var(--site-gutter);
  }
}
.main-nav {
  /* ── logo ── */
}
.main-nav .nav-logo {
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
}
.main-nav .nav-logo .nav-logo-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* animate SVG parts on hover */
}
.main-nav .nav-logo .nav-logo-link .nav-logo-svg rect {
  transition: fill 0.25s ease, transform 0.3s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.main-nav .nav-logo .nav-logo-link .nav-logo-svg text:first-of-type {
  transition: letter-spacing 0.3s ease;
}
.main-nav .nav-logo .nav-logo-link:hover {
  transform: translateY(-1px);
}
.main-nav .nav-logo .nav-logo-link:hover .nav-logo-svg rect {
  fill: var(--wp--preset--color--amber-dark);
  transform: rotate(-3deg) scale(1.04);
}
.main-nav .nav-logo .nav-logo-link:hover .nav-logo-svg text:first-of-type {
  letter-spacing: 0.2px;
}
.main-nav .nav-logo .nav-logo-svg {
  display: block;
  height: 26px;
  width: auto;
}
@media screen and (min-width: 1240px) {
  .main-nav .nav-logo .nav-logo-svg {
    height: 30px;
  }
}
.main-nav .nav-logo .wp-block-site-title {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.main-nav .nav-logo .wp-block-site-title a {
  color: var(--wp--preset--color--foreground);
  text-decoration: none;
  background: none;
}
.main-nav .nav-logo .nav-logo-badge {
  margin: 0;
  display: inline-block;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--foreground);
  padding: 2px 8px 3px;
  border-radius: 4px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.main-nav {
  /* ── burger (custom button) ── */
}
.main-nav .nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 9300;
}
.main-nav .nav-burger .nav-burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wp--preset--color--foreground);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.main-nav.is-open .nav-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.main-nav.is-open .nav-burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.main-nav.is-open .nav-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.main-nav {
  /* ===========================================================
     MOBILE (default) — .nav-collapse is a fullscreen overlay
     =========================================================== */
}
.main-nav .nav-collapse {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  background: var(--wp--preset--color--cream);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 96px 32px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.45s;
}
.main-nav.is-open .nav-collapse {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.main-nav .nav-links {
  width: 100%;
}
.main-nav .nav-links .wp-block-navigation__container {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.main-nav .nav-links .wp-block-navigation-item {
  width: 100%;
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
  transition: border-color 0.25s ease;
}
.main-nav .nav-links .wp-block-navigation-item:hover {
  border-color: var(--wp--preset--color--amber-dark);
}
.main-nav .nav-links .wp-block-navigation-item__content {
  display: block;
  width: 100%;
  padding: 18px 0;
  font-family: var(--wp--preset--font-family--heading-font);
  font-size: clamp(28px, 7vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--wp--preset--color--foreground);
  text-decoration: none;
  opacity: 1;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.main-nav .nav-links .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--amber-dark);
  padding-left: 8px;
}
.main-nav {
  /* CTA button (core/button) */
}
.main-nav .nav-actions {
  margin-top: 28px;
  width: 100%;
}
.main-nav .nav-actions .wp-block-button {
  width: 100%;
}
.main-nav .nav-actions .nav-cta .wp-block-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.main-nav .nav-actions .nav-cta .wp-block-button__link:hover {
  background: var(--wp--preset--color--amber-dark);
  color: var(--wp--preset--color--foreground);
}
.main-nav {
  /* ===========================================================
     DESKTOP (≥ nav breakpoint) — horizontal row, burger hidden
     =========================================================== */
}
@media screen and (min-width: 1240px) {
  .main-nav .nav-burger {
    display: none;
  }
  .main-nav {
    /* larger logo on desktop */
  }
  .main-nav .nav-logo .wp-block-site-title {
    font-size: 22px;
  }
  .main-nav .nav-logo .nav-logo-badge {
    font-size: 14px;
  }
  .main-nav .nav-collapse {
    position: static;
    width: auto;
    height: auto;
    z-index: auto;
    background: none;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 0;
    overflow: visible;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .main-nav .nav-links {
    width: auto;
  }
  .main-nav .nav-links .wp-block-navigation__container {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }
  .main-nav .nav-links .wp-block-navigation-item {
    width: auto;
    border-bottom: none;
  }
  .main-nav .nav-links .wp-block-navigation-item__content {
    display: inline;
    width: auto;
    padding: 0;
    font-family: var(--wp--preset--font-family--body-font);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .main-nav .nav-links .wp-block-navigation-item__content:hover {
    opacity: 1;
    padding-left: 0;
  }
  .main-nav .nav-links .current-menu-item .wp-block-navigation-item__content {
    opacity: 1;
  }
  .main-nav .nav-actions {
    margin-top: 0;
    width: auto;
  }
  .main-nav .nav-actions .wp-block-button {
    width: auto;
  }
  .main-nav .nav-actions .nav-cta .wp-block-button__link {
    width: auto;
    padding: 10px 24px;
    font-size: 15px;
  }
}

/* ===========================================================
   Перемикач мов — РІДНИЙ блок Polylang (polylang/language-switcher)
   з className="lang-switcher", лише в хедері.

   Розмітка блока:
     <nav><ul class="wp-block-polylang-language-switcher lang-switcher">
       <li class="lang-item … current-lang"><a hreflang="…">UA</a></li>
   Тобто пігулка — це <a> всередині .lang-item, а активна мова позначається
   класом .current-lang на <li> (не .is-active на посиланні, як було у
   власному варіанті). Підписи скорочує Polylang::shorten_switcher_labels().

   Рендериться з patterns/header.php як останній елемент .nav-collapse,
   тобто ПІСЛЯ кнопки «Зв'язатись». На десктопі .nav-collapse — це flex-ряд,
   тож перемикач природно опиняється в крайньому правому положенні;
   на мобільному (fullscreen-оверлей, колонка) — унизу, під CTA.

   Брейкпойнт — @include nav (див. _breakpoints.scss), НЕ хардкод: та сама
   точка, де хедер перемикається з бургера на горизонтальний ряд.
   =========================================================== */
.lang-switcher {
  display: flex;
  align-items: center;
  /* ul від блока: гасимо списковий вигляд */
  list-style: none;
  margin: 0;
  padding: 0;
  /* ── МОБІЛЬНИЙ: у нижній частині оверлея, під кнопкою CTA ──
     Відокремлюємо лінією, як пункти меню вище, щоб перемикач не «злипався»
     з кнопкою. Пігулки — той самий стиль, що й кнопки сайту. */
  width: 100%;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(8, 8, 8, 0.08);
}
@media screen and (min-width: 1240px) {
  .lang-switcher {
    width: auto;
    gap: 4px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    /* .nav-collapse дає gap 36px — трохи стягуємо, щоб перемикач
       читався як частина правої групи, а не окремий блок */
    margin-left: -18px;
  }
}
.lang-switcher .lang-item {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lang-switcher {
  /* Пігулка — посилання. `&__item` лишено для сумісності з попередньою
     власною розміткою (якщо десь ще трапиться), новий блок дає .lang-item a. */
}
.lang-switcher .lang-item a, .lang-switcher__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1.5px solid rgba(8, 8, 8, 0.14);
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--wp--preset--color--muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  /* Ховер — змінюється ЛИШЕ фон.
     Колір і text-decoration прибиті в кожному стані навмисно: theme.json
     робить усі посилання амбер + underline (styles.elements.link), і без
     явного перевизначення воно проступає на :hover/:focus/:active. */
}
.lang-switcher .lang-item a:hover, .lang-switcher .lang-item a:focus, .lang-switcher .lang-item a:focus-visible, .lang-switcher .lang-item a:active, .lang-switcher__item:hover, .lang-switcher__item:focus, .lang-switcher__item:focus-visible, .lang-switcher__item:active {
  background: rgba(8, 8, 8, 0.06);
  color: var(--wp--preset--color--muted);
  text-decoration: none;
}
.lang-switcher .lang-item a, .lang-switcher__item {
  /* ── ДЕСКТОП: компактні текстові кнопки без рамки ── */
}
@media screen and (min-width: 1240px) {
  .lang-switcher .lang-item a, .lang-switcher__item {
    padding: 6px 9px;
    border-color: transparent;
    border-radius: 8px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }
}
.lang-switcher {
  /* Активна мова — темна пігулка, як .btn-primary.
     Блок Polylang вішає .current-lang на <li>, тож окремим правилом ПІСЛЯ
     базового (а не вкладеним &.is-active — воно не дотяглося б до <a>). */
}
.lang-switcher .current-lang a, .lang-switcher__item.is-active {
  background: var(--wp--preset--color--foreground);
  border-color: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  /* Активна пігулка: на ховері трохи світлішає, колір тексту не міняється. */
}
.lang-switcher .current-lang a:hover, .lang-switcher .current-lang a:focus, .lang-switcher .current-lang a:focus-visible, .lang-switcher .current-lang a:active, .lang-switcher__item.is-active:hover, .lang-switcher__item.is-active:focus, .lang-switcher__item.is-active:focus-visible, .lang-switcher__item.is-active:active {
  background: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  text-decoration: none;
  opacity: 0.85;
}
@media screen and (min-width: 1240px) {
  .lang-switcher .current-lang a, .lang-switcher__item.is-active {
    background: rgba(8, 8, 8, 0.07);
    border-color: transparent;
    color: var(--wp--preset--color--foreground);
  }
  .lang-switcher .current-lang a:hover, .lang-switcher .current-lang a:focus, .lang-switcher .current-lang a:focus-visible, .lang-switcher .current-lang a:active, .lang-switcher__item.is-active:hover, .lang-switcher__item.is-active:focus, .lang-switcher__item.is-active:focus-visible, .lang-switcher__item.is-active:active {
    background: rgba(8, 8, 8, 0.12);
    color: var(--wp--preset--color--foreground);
    opacity: 1;
  }
}

.footer,
footer {
  margin-top: 0 !important;
}
.footer .is-style-column-border,
footer .is-style-column-border {
  margin-bottom: 35px !important;
}

.footer__top-columns .wp-block-heading mark {
  display: block;
}

@media screen and (min-width: 540px) {
  .footer__bottom-columns {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__bottom-columns .wp-block-column {
  display: flex;
}
@media screen and (min-width: 540px) {
  .footer__bottom-columns .wp-block-column {
    display: unset;
  }
}
.footer__bottom-columns .wp-block-column.copyright {
  order: 1;
}
@media screen and (min-width: 540px) {
  .footer__bottom-columns .wp-block-column.copyright {
    order: unset;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media screen and (min-width: 540px) {
  .footer__bottom-columns .wp-block-column.privacy {
    order: unset;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.footer__bottom-columns .footer-menu.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  background-image: linear-gradient(0deg, currentcolor, currentcolor min(1px, 0.1em), currentcolor min(1px, 0.1em), currentcolor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px !important;
  text-decoration: none !important;
  transition: background-size 0.4s, color 0.4s;
}
.footer__bottom-columns .footer-menu.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:hover {
  background-size: 100% 1px !important;
  color: var(--wp--preset--color--primary) !important;
}
.footer__bottom-columns .footer-menu.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  color: var(--wp--preset--color--white) !important;
}
.footer__bottom-columns .footer-menu.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content .wp-block-navigation-item__label {
  color: var(--wp--preset--color--white) !important;
}
.footer__bottom-columns .footer-menu.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--white) !important;
}

/* ===========================================================
   Site footer — built with CORE blocks (group / columns /
   heading / social-links / paragraph). Styled 1:1 to the design.
   =========================================================== */
.site-footer {
  /* the global blockGap is for top-level sections only — the footer
     controls its own spacing via explicit CSS gaps/padding */
  --wp--style--block-gap: 0;
  background: var(--wp--preset--color--foreground);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .site-footer {
    padding: 72px 0 0;
  }
}
.site-footer {
  /* reset core block default spacing inside the footer */
}
.site-footer p,
.site-footer h2 {
  margin: 0;
}
.site-footer .footer-container {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--site-container) + var(--site-gutter) * 2);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-container {
    padding: 0 var(--site-gutter);
  }
}
.site-footer {
  /* big background watermark — box matches .footer-container so the text
     lines up inside the 1300px content column (left-aligned under the tagline).
     Hidden on mobile; shown from 782px up, sized to fit the container width. */
}
.site-footer .footer-bg-text {
  display: none;
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: calc(var(--site-container) + var(--site-gutter) * 2);
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
}
@media (min-width: 782px) {
  .site-footer .footer-bg-text {
    display: block;
    /* scales with viewport, capped so the full text fits the 1300 container */
    font-size: clamp(90px, 11.8vw, 152px);
    padding: 0 var(--site-gutter);
  }
}
.site-footer {
  /* ── top: 2-column row (core columns stack on mobile) ── */
}
.site-footer .footer-top {
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 48px;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-top {
    gap: 60px;
    padding-bottom: 64px;
  }
}
.site-footer .footer-left {
  flex-basis: 0;
  flex-grow: 1;
}
.site-footer .footer-right {
  flex-basis: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-right {
    gap: 20px;
  }
}
.site-footer {
  /* ── tagline ── */
}
.site-footer .footer-tagline {
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: clamp(28px, 8vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--wp--preset--color--background);
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-tagline {
    font-size: clamp(36px, 4.5vw, 58px);
    margin-bottom: 32px;
  }
}
.site-footer .footer-tagline .highlight {
  position: relative;
  display: inline-block;
}
.site-footer .footer-tagline .highlight::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: -3px;
  right: -3px;
  height: 12px;
  background: var(--wp--preset--color--primary);
  z-index: -1;
  border-radius: 3px;
  transform: skewX(-3deg);
}
.site-footer {
  /* ── socials (core social-links) ── */
}
.site-footer .footer-socials.wp-block-social-links {
  gap: 10px;
  margin: 0;
}
.site-footer .footer-socials.wp-block-social-links .wp-block-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0 !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5) !important;
  transition: background-color 0.2s, border-color 0.2s, transform 0.15s;
}
.site-footer .footer-socials.wp-block-social-links .wp-block-social-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  margin: 0;
  color: inherit !important;
  background: transparent !important;
}
.site-footer .footer-socials.wp-block-social-links .wp-block-social-link svg,
.site-footer .footer-socials.wp-block-social-links .wp-block-social-link svg path {
  fill: currentColor !important;
}
.site-footer .footer-socials.wp-block-social-links .wp-block-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}
.site-footer .footer-socials.wp-block-social-links .wp-block-social-link:hover {
  background-color: var(--wp--preset--color--primary) !important;
  border-color: var(--wp--preset--color--primary);
  transform: translateY(-3px);
  color: var(--wp--preset--color--foreground) !important;
}
.site-footer {
  /* ── CTA cards ── */
}
.site-footer .footer-cta-card {
  position: relative;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px 28px;
  gap: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  /* stretched link — the whole card is clickable via the inner link */
}
.site-footer .footer-cta-card .footer-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-cta-card {
    border-radius: 20px;
    padding: 28px 32px;
  }
}
.site-footer .footer-cta-card {
  /* arrow circle as a pseudo-element (no empty block in the markup,
     so the editor shows no appender placeholder) */
}
.site-footer .footer-cta-card::after {
  content: "";
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(245, 168, 0, 0.12);
  border: 1px solid rgba(245, 168, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23F5A800%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E");
  transition: background-color 0.2s;
}
.site-footer .footer-cta-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(245, 168, 0, 0.4);
  transform: translateX(6px);
}
.site-footer .footer-cta-card:hover::after {
  background-color: var(--wp--preset--color--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23080808%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E");
}
.site-footer .footer-cta-label {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px !important;
}
.site-footer .footer-cta-value {
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-cta-value {
    font-size: 20px;
  }
}
.site-footer .footer-cta-value a {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}
.site-footer {
  /* ── nav pills row ── */
}
.site-footer .footer-nav-row.wp-block-navigation .wp-block-navigation__container {
  gap: 8px;
  flex-wrap: wrap;
}
.site-footer .footer-nav-row.wp-block-navigation .wp-block-navigation-item__content {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.site-footer .footer-nav-row.wp-block-navigation .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--background);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}
.site-footer {
  /* keep footer socials laid out in a row; the appender selectors only
     exist in the editor, so these are no-ops on the frontend. */
}
.site-footer .footer-socials.wp-block-social-links {
  display: flex;
  flex-flow: row wrap;
}
.site-footer .wp-block-social-links__social-prompt,
.site-footer .block-list-appender,
.site-footer .block-editor-button-block-appender {
  display: none !important;
}
.site-footer {
  /* ── bottom bar ── */
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0 22px;
  gap: 10px;
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-bottom {
    padding: 20px 0 24px;
  }
}
.site-footer .footer-copy {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
}
.site-footer .footer-copy span {
  color: rgba(255, 255, 255, 0.45);
}
.site-footer .footer-copy {
  /* Посилання на Публічний договір. Без цього правила воно падало на
     глобальні стилі посилань (темний колір + підкреслення) і на темному
     футері було просто невидиме. Поводиться так само, як .footer-policy a. */
}
.site-footer .footer-copy a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-copy a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .footer-policy {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
}
.site-footer .footer-policy a {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-policy a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ===========================================================
   Blog section — core Query Loop styled 1:1 to the design.
   Root = core group `.blog` (align full, constrained → 1300 content).
   =========================================================== */
/* scope to the section group only — WordPress also puts class="blog" on
   <body> for the posts index, so a bare `.blog` selector would leak its
   padding/background onto the whole page and detach the footer. */
.wp-block-group.blog {
  background: var(--wp--preset--color--cream);
  padding-top: 70px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .wp-block-group.blog {
    padding-top: 100px;
    padding-bottom: 110px;
  }
}
.wp-block-group.blog {
  /* ── header ── */
}
.wp-block-group.blog .blog-header {
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .wp-block-group.blog .blog-header {
    margin-bottom: 52px;
  }
}
.wp-block-group.blog .blog-label {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--wp--preset--color--amber-dark);
}
.wp-block-group.blog .blog-heading {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.03em;
  color: var(--wp--preset--color--foreground);
  line-height: 1.05;
}
.wp-block-group.blog .blog-all-wrap {
  flex-shrink: 0;
}
.wp-block-group.blog .blog-all {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.wp-block-group.blog .blog-all .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  background: transparent;
  border: 1.5px solid rgba(8, 8, 8, 0.2);
  color: var(--wp--preset--color--foreground);
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 100px;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
  /* arrow via CSS mask (currentColor) — no emoji glyphs */
}
.wp-block-group.blog .blog-all .wp-block-button__link::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M5 12h14M12 5l7 7-7 7%27/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M5 12h14M12 5l7 7-7 7%27/%3E%3C/svg%3E") center/contain no-repeat;
}
.wp-block-group.blog .blog-all .wp-block-button__link:hover {
  background: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  border-color: var(--wp--preset--color--foreground);
  transform: translateY(-2px);
}
.wp-block-group.blog {
  /* ── grid (post-template) ── */
}
.wp-block-group.blog .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .wp-block-group.blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .wp-block-group.blog .blog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.wp-block-group.blog .blog-grid {
  /* stretch each post item so all cards are equal (full) height.
     The card visual itself lives in the shared _post-card.scss partial. */
}
.wp-block-group.blog .blog-grid .wp-block-post {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

/* portfolio section reuses the blog section chrome but on a white bg */
.wp-block-group.blog.portfolio {
  background: var(--wp--preset--color--background);
}

@media screen and (min-width: 1200px) {
  .wp-block-group.blog .blog-grid.portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================================================
   Shared post card — one source of truth for the homepage blog
   section AND the single-post "Схожі статті" grid.
   Root class `.blog-card` (unscoped so it works in any container).
   =========================================================== */
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(8, 8, 8, 0.1);
  border-color: rgba(8, 8, 8, 0.06);
}

.blog-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #F0EDE6 0%, #E8E3D8 100%);
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-thumb {
  /* direct <img> (related cards via the_post_thumbnail) */
}
.blog-thumb > img {
  position: absolute;
  inset: 0;
}
.blog-thumb {
  /* core Query Loop featured image (homepage) */
}
.blog-thumb .wp-block-post-featured-image {
  position: absolute;
  inset: 0;
  margin: 0;
  height: 100%;
}

.blog-thumb-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100% - 28px);
  background: var(--wp--preset--color--primary);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--wp--preset--color--foreground);
}
.blog-thumb-tag a {
  color: var(--wp--preset--color--foreground);
  text-decoration: none;
}

/* editor: the Query Loop preview can drop the absolute positioning, which
   made the tag stretch full-width — keep it a compact corner pill there too */
.editor-styles-wrapper .blog-thumb {
  position: relative;
}
.editor-styles-wrapper .blog-thumb .wp-block-post-terms.blog-thumb-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100% - 28px);
}

.blog-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  margin: 0 0 10px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--wp--preset--color--muted);
}

.blog-title {
  margin: 0 0 10px;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .blog-title {
    font-size: 20px;
  }
}
.blog-title a {
  color: var(--wp--preset--color--foreground);
  text-decoration: none;
  /* stretched link — whole card clickable */
}
.blog-title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blog-excerpt {
  margin: 0 0 16px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--wp--preset--color--muted);
}
.blog-excerpt p {
  margin: 0;
}
.blog-excerpt .wp-block-post-excerpt__more-text {
  display: none;
}

.blog-read {
  margin: auto 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--wp--preset--color--foreground);
  /* diagonal arrow via CSS mask (no emoji glyphs), animates on hover */
}
.blog-read::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  transition: transform 0.2s;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") center/contain no-repeat;
}

.blog-card:hover .blog-read::after {
  transform: translate(3px, -3px);
}

/* ===========================================================
   «Схема роботи» — секція на ЧИСТИХ core/blocks.
   group > group.process-inner > (eyebrow, title, columns, buttons).
   Іконка кожної фази — core/image (SVG з assets/img/process/).
   Контейнер повторює сусідні секції (--site-container + gutter).
   =========================================================== */
.process-section {
  background: var(--wp--preset--color--cream);
  padding: 72px 0;
}
@media screen and (min-width: 1024px) {
  .process-section {
    padding: 100px 0;
  }
}
.process-section {
  /* внутрішній контейнер — 1:1 як .container сусідніх секцій */
}
.process-section .process-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--site-container) + var(--site-gutter) * 2);
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .process-section .process-inner {
    padding: 0 var(--site-gutter);
  }
}
.process-section .process-eyebrow {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wp--preset--color--amber-dark);
  margin: 0 0 10px;
}
.process-section .process-title {
  margin: 0 0 40px;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--wp--preset--color--foreground);
}
.process-section .process-cards.wp-block-columns {
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 781px) {
  .process-section .process-cards.wp-block-columns {
    flex-wrap: wrap;
  }
}
.process-section .process-card.wp-block-column {
  background: var(--wp--preset--color--card);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.process-section .process-card.wp-block-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(8, 8, 8, 0.08);
  border-color: rgba(8, 8, 8, 0.1);
}
.process-section {
  /* шапка: іконка (core/image) + номер фази */
}
.process-section .process-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.process-section {
  /* іконка-плитка: амбер-квадрат, всередині SVG core/image */
}
.process-section .process-icon.wp-block-image {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background-color: rgba(245, 168, 0, 0.14);
}
.process-section .process-icon.wp-block-image img {
  width: 26px;
  height: 26px;
  max-width: none;
}
.process-section .process-num {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: var(--wp--preset--color--primary);
}
.process-section .process-card .wp-block-heading {
  margin: 0 0 14px;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--wp--preset--color--foreground);
}
.process-section .process-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.process-section .process-card ul li {
  position: relative;
  padding-left: 18px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--wp--preset--color--muted);
}
.process-section .process-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary);
}
.process-section .process-card ul li strong {
  color: var(--wp--preset--color--foreground);
  font-weight: 600;
}
.process-section {
  /* CTA — core/button. Вигляд і геометрія зі спільних міксинів (раніше тут
     був власний набір із gap 8px, що розходився з рештою амбер-кнопок).
     Стрілку малюємо через CSS: у core/button SVG у розмітку не вставити. */
}
.process-section .process-cta {
  margin-top: 44px;
}
.process-section .process-btn .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.process-section .process-btn .wp-block-button__link svg {
  transition: transform 0.2s;
}
.process-section .process-btn .wp-block-button__link:hover svg {
  transform: translate(3px, 0);
}
.process-section .process-btn .wp-block-button__link {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--foreground);
  font-weight: 600;
}
.process-section .process-btn .wp-block-button__link:hover {
  background: var(--wp--preset--color--amber-dark);
  color: var(--wp--preset--color--foreground);
}
.process-section .process-btn .wp-block-button__link::after {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.2s;
}
.process-section .process-btn .wp-block-button__link:hover::after {
  transform: translate(3px, -3px);
}

/* ===========================================================
   core/list block styles — chosen in the editor:
   "Акцент (амбер)" (default) / "Стандартний".
   =========================================================== */
/* Акцент — amber markers, bold numbers */
.wp-block-list.is-style-accent li::marker {
  color: var(--wp--preset--color--amber-dark);
}

ol.wp-block-list.is-style-accent > li::marker {
  color: var(--wp--preset--color--amber-dark);
  font-weight: 700;
}

/* Стандартний — reset to default markers */
.wp-block-list.is-style-plain li::marker {
  color: currentColor;
  font-weight: 400;
}

/* ===========================================================
   core/separator — light, subtle rule
   =========================================================== */
.wp-block-separator:not(.is-style-dots) {
  border: none;
  height: 1px;
  background-color: rgba(8, 8, 8, 0.12);
  opacity: 1;
  /* default (short, centered) variant — keep it short but subtle */
}
.wp-block-separator:not(.is-style-dots):not(.is-style-wide):not(.alignwide):not(.alignfull) {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-separator.is-style-wide {
  width: 100%;
}

/* ===========================================================
   Project-inquiry modal ("Обговорімо ваш проєкт") + CF7 form.
   Opened from [href="#project-modal"] / .open-project-modal.
   =========================================================== */
body.pm-lock {
  overflow: hidden;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.project-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.project-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(3px);
}
.project-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: auto;
  background: var(--wp--preset--color--background);
  border-radius: 24px;
  padding: 40px 36px 36px;
  box-shadow: 0 40px 120px rgba(8, 8, 8, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .project-modal__dialog {
    padding: 48px 48px 44px;
  }
}
.project-modal.is-open .project-modal__dialog {
  transform: none;
}
.project-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.06);
  color: var(--wp--preset--color--foreground);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.project-modal__close svg {
  width: 18px;
  height: 18px;
}
.project-modal__close:hover {
  background: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  transform: rotate(90deg);
}
.project-modal__eyebrow {
  margin: 0 0 10px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--amber-dark);
}
.project-modal__title {
  margin: 0 0 10px;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--wp--preset--color--foreground);
}
.project-modal__sub {
  margin: 0 0 26px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--wp--preset--color--muted);
}
.project-modal {
  /* ── CF7 form ── */
}
.project-modal .pm-field {
  margin-bottom: 20px;
}
.project-modal .pm-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wp--preset--color--foreground);
}
.project-modal .pm-label span {
  color: var(--wp--preset--color--amber-dark);
}
.project-modal input[type=text],
.project-modal input[type=email],
.project-modal input[type=tel],
.project-modal textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  color: var(--wp--preset--color--foreground);
  background: var(--wp--preset--color--card);
  border: 1.5px solid rgba(8, 8, 8, 0.1);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s, background 0.2s;
}
.project-modal input[type=text]::-moz-placeholder, .project-modal input[type=email]::-moz-placeholder, .project-modal input[type=tel]::-moz-placeholder, .project-modal textarea::-moz-placeholder {
  color: var(--wp--preset--color--muted);
  opacity: 0.7;
}
.project-modal input[type=text]::placeholder,
.project-modal input[type=email]::placeholder,
.project-modal input[type=tel]::placeholder,
.project-modal textarea::placeholder {
  color: var(--wp--preset--color--muted);
  opacity: 0.7;
}
.project-modal input[type=text]:focus,
.project-modal input[type=email]:focus,
.project-modal input[type=tel]:focus,
.project-modal textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
  background: var(--wp--preset--color--background);
}
.project-modal textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.project-modal {
  /* radios as selectable pills */
}
.project-modal .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  /* kill the global CF7 radio circle (_forms.scss) inside the modal */
}
.project-modal .wpcf7-radio .wpcf7-list-item::before,
.project-modal .wpcf7-radio .wpcf7-list-item::after {
  content: none !important;
  display: none !important;
}
.project-modal .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
}
.project-modal .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}
.project-modal .wpcf7-radio input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.project-modal .wpcf7-radio .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--wp--preset--color--card);
  border: 1.5px solid rgba(8, 8, 8, 0.12);
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  line-height: 1.2;
  color: var(--wp--preset--color--muted);
  transition: all 0.2s;
}
.project-modal .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label {
  background: var(--wp--preset--color--foreground);
  border-color: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
}
.project-modal .wpcf7-radio label:hover .wpcf7-list-item-label {
  border-color: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--foreground);
}
.project-modal .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:hover {
  color: var(--wp--preset--color--background);
}
.project-modal {
  /* file field */
}
.project-modal .pm-field--file input[type=file] {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  color: var(--wp--preset--color--muted);
}
.project-modal .pm-field--file .pm-file-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--wp--preset--color--muted);
}
.project-modal .pm-field--file.has-file .pm-file-hint {
  color: var(--wp--preset--color--amber-dark);
  font-weight: 600;
}
.project-modal {
  /* submit */
}
.project-modal .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  background: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  padding: 15px 32px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.project-modal .wpcf7-submit:hover {
  background: var(--wp--preset--color--amber-dark);
  transform: translateY(-2px);
}
.project-modal {
  /* CF7 feedback / validation */
}
.project-modal .wpcf7-not-valid-tip {
  color: #d33;
  font-size: 13px;
  margin-top: 5px;
}
.project-modal .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 10px;
  font-size: 14px;
}
.project-modal .wpcf7-spinner {
  margin-left: 10px;
}
.project-modal {
  /* ── success screen ── */
}
.project-modal__success {
  text-align: center;
  padding: 20px 0;
}
.project-modal__success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-modal__success-icon svg {
  width: 34px;
  height: 34px;
}
.project-modal__success h3 {
  margin: 0 0 12px;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--wp--preset--color--foreground);
}
.project-modal__success p {
  margin: 0 auto 28px;
  max-width: 380px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--wp--preset--color--muted);
}
.project-modal__success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  font-size: 0;
  border-radius: 8px;
  border: 1px solid var(--wp--preset--color--foreground);
  transition: all 0.4s;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  display: none;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

.swiper-button-next {
  position: relative;
  transform: rotate(90deg);
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-next::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcgMTdMMTcgNyIgc3Ryb2tlPSIjMDgwODA4IiBzdHJva2Utb3BhY2l0eT0iMC45IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNyA3SDE3VjE3IiBzdHJva2U9IiMwODA4MDgiIHN0cm9rZS1vcGFjaXR5PSIwLjkiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
  position: absolute;
  right: 25%;
  top: 25%;
  transform: rotate(315deg);
  content: "";
}

.swiper-button-prev {
  transform: rotate(270deg);
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-prev::after {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcgMTdMMTcgNyIgc3Ryb2tlPSIjMDgwODA4IiBzdHJva2Utb3BhY2l0eT0iMC45IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNyA3SDE3VjE3IiBzdHJva2U9IiMwODA4MDgiIHN0cm9rZS1vcGFjaXR5PSIwLjkiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
  position: absolute;
  right: 25;
  top: 25%;
  transform: rotate(315deg);
}

/* body-font (не heading) — інпути вже на ньому, тож форма консистентна,
   і не доводиться тягнути окремий FiraSans-Regular (47 KiB) заради двох правил. */
label {
  font-family: var(--wp--preset--font-family--body-font);
  font-weight: 500;
}

form {
  box-sizing: border-box;
}
form textarea,
form input[type=text],
form input[type=email] {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--wp--preset--color--foreground);
  padding: 20px 15px;
  border-radius: 8px;
  color: var(--wp--preset--color--foreground);
  font-family: var(--wp--preset--font-family--body-font);
}
form textarea::-moz-placeholder, form input[type=text]::-moz-placeholder, form input[type=email]::-moz-placeholder {
  font-size: 1rem;
  font-family: var(--wp--preset--font-family--body-font);
  color: var(--wp--preset--color--foreground);
  opacity: 0.7;
}
form textarea::placeholder,
form input[type=text]::placeholder,
form input[type=email]::placeholder {
  font-size: 1rem;
  font-family: var(--wp--preset--font-family--body-font);
  color: var(--wp--preset--color--foreground);
  opacity: 0.7;
}
form input[type=submit] {
  background-color: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  border: 1px solid transparent;
  line-height: 1;
  border-radius: 8px;
  padding-top: 1.25rem;
  padding-right: 3.75rem;
  padding-bottom: 1.25rem;
  padding-left: 2rem;
  font-weight: 600;
  position: relative;
  transition: all 0.4s;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: clamp(0.875rem, 0.875rem + (1vw - 0.2rem) * 0.103, 0.938rem);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcgMTdMMTcgNyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTcgN0gxN1YxNyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-position: 85% 50%;
  cursor: pointer;
  border: 1px solid var(--wp--preset--color--foreground);
}
form input[type=submit]:hover {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcgMTdMMTcgNyIgc3Ryb2tlPSIjMDgwODA4IiBzdHJva2Utb3BhY2l0eT0iMC45IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNyA3SDE3VjE3IiBzdHJva2U9IiMwODA4MDgiIHN0cm9rZS1vcGFjaXR5PSIwLjkiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
  color: var(--wp--preset--color--foreground);
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--foreground);
}
form input[type=submit][disabled] {
  opacity: 0.8;
}
form .wpcf7-not-valid-tip {
  color: #cf2e2e;
}
form {
  /* -------------------------
     Checkbox (CF7 acceptance)
  -------------------------- */
}
form .form__row--acceptance {
  display: flex;
  align-items: center;
  gap: 10px;
}
form .wpcf7-acceptance {
  display: flex;
}
form .wpcf7-list-item {
  position: relative;
  margin: 0;
}
form .wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
form {
  /* outer circle */
}
form .wpcf7-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid var(--wp--preset--color--primary);
  transition: all 0.2s ease;
}
form {
  /* inner dot */
}
form .wpcf7-list-item::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 13px;
  width: 12px;
  height: 12px;
  background: var(--wp--preset--color--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}
form .form__checkbox {
  padding-left: 30px;
  cursor: pointer;
}
form .wpcf7-list-item:has(input:checked)::after {
  transform: translate(-50%, -50%) scale(1);
}

/* CF7 errors */
.wpcf7 form.spam .wpcf7-response-output {
  padding-left: unset !important;
  padding-right: unset !important;
  border: unset !important;
  color: var(--wp--preset--color--foreground) !important;
  font-weight: 600 !important;
}

.form__container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.form__row {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 782px) {
  .form__row--half {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.form__row--acceptance {
  flex-direction: row;
  align-items: center;
}

/* ===========================================================
   Чекбокс згоди (CF7 [acceptance]) — попап проєкту + сторінка Контакти.

   Свідомо КВАДРАТНИЙ: коло = вибір одного з варіантів (радіо),
   квадрат = перемикач. Глобальний form{} у _forms.scss малює круглий
   радіо-стиль з внутрішньою крапкою і ховає сам input — тут глушимо
   це так само, як уже зроблено для .wpcf7-radio.

   Живе в main.css (не в page-бандлі), бо попап рендериться у футері
   на КОЖНІЙ сторінці.
   =========================================================== */
.pm-field--consent .wpcf7-acceptance,
.cf-group--consent .wpcf7-acceptance {
  display: block;
}
.pm-field--consent .wpcf7-list-item,
.cf-group--consent .wpcf7-list-item {
  margin: 0;
  padding: 0;
  /* глушимо круглий радіо-стиль із глобального form{} */
}
.pm-field--consent .wpcf7-list-item::before, .pm-field--consent .wpcf7-list-item::after,
.cf-group--consent .wpcf7-list-item::before,
.cf-group--consent .wpcf7-list-item::after {
  content: none !important;
  display: none !important;
}
.pm-field--consent label,
.cf-group--consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}
.pm-field--consent,
.cf-group--consent {
  /* повертаємо input у потік: глобально він absolute + opacity 0 */
}
.pm-field--consent .wpcf7-acceptance input[type=checkbox],
.cf-group--consent .wpcf7-acceptance input[type=checkbox] {
  position: relative !important;
  opacity: 1 !important;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  border: 2px solid rgba(8, 8, 8, 0.25);
  border-radius: 5px;
  background: var(--wp--preset--color--background);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pm-field--consent .wpcf7-acceptance input[type=checkbox]:hover,
.cf-group--consent .wpcf7-acceptance input[type=checkbox]:hover {
  border-color: var(--wp--preset--color--primary);
}
.pm-field--consent .wpcf7-acceptance input[type=checkbox]:checked,
.cf-group--consent .wpcf7-acceptance input[type=checkbox]:checked {
  background: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
}
.pm-field--consent .wpcf7-acceptance input[type=checkbox],
.cf-group--consent .wpcf7-acceptance input[type=checkbox] {
  /* галочка */
}
.pm-field--consent .wpcf7-acceptance input[type=checkbox]:checked::after,
.cf-group--consent .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 5px;
  height: 9px;
  border: solid var(--wp--preset--color--foreground);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pm-field--consent .wpcf7-acceptance input[type=checkbox]:focus-visible,
.cf-group--consent .wpcf7-acceptance input[type=checkbox]:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
}
.pm-field--consent .wpcf7-list-item-label,
.cf-group--consent .wpcf7-list-item-label {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wp--preset--color--muted);
}
.pm-field--consent .wpcf7-list-item-label a,
.cf-group--consent .wpcf7-list-item-label a {
  color: var(--wp--preset--color--foreground);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.pm-field--consent .wpcf7-list-item-label a:hover,
.cf-group--consent .wpcf7-list-item-label a:hover {
  color: var(--wp--preset--color--amber-dark);
}

.is-style-decor:not(.has-text-align-center) {
  position: relative;
  z-index: 9;
}
.is-style-decor:not(.has-text-align-center)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--wp--preset--color--primary);
  z-index: -1;
  max-width: 1300px;
}
.is-style-decor:not(.has-text-align-center) mark::after {
  background-color: var(--wp--preset--color--foreground);
}

.wp-block-heading {
  position: relative;
  z-index: 11;
}
.wp-block-heading.has-text-align-center.is-style-decor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--wp--preset--color--primary);
  z-index: -1;
}

/* ===========================================================
   core/button — стилі блока.

   Стилі реєструються в js/editor.js (primary / amber / border /
   text / text-yellow), але раніше не мали ЖОДНОГО CSS: класи
   is-style-* лягали в HTML, а theme.json → elements.button фарбував
   усі кнопки в один амбер-прямокутник. Тому в редакторі вибір був,
   а на фронті всі кнопки виглядали однаково.

   Геометрія й вигляд — зі спільних міксинів (global/_mixins.scss),
   тих самих, що живлять .btn-primary/.btn-secondary (банер),
   .process-btn (CTA) і .cta-btn (services). Один розмір для всіх.

   ВАЖЛИВО (історія): стару глобальну систему стрілок прибрали, бо вона
   вішала absolute ::after на КОЖЕН .wp-element-button і ламала кастомні
   кнопки. Тому тут селектор лише .wp-block-button__link (core-блок),
   НЕ .wp-element-button, а стрілка додається лише конкретним is-style-*.
   =========================================================== */
/* ── БАЗА = темна пігулка (.btn-primary) ──
   Свідомо на .wp-block-button__link, а не лише на .is-style-default:
   свіжовставлена кнопка взагалі не має класу is-style-*, і має одразу
   виглядати по-дизайну. */
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.wp-block-button__link svg {
  transition: transform 0.2s;
}
.wp-block-button__link:hover svg {
  transform: translate(3px, 0);
}
.wp-block-button__link {
  background: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  font-weight: 500;
}
.wp-block-button__link:hover {
  background: var(--wp--preset--color--amber-dark);
  color: var(--wp--preset--color--background);
}

/* Default / Primary — темна пігулка зі стрілкою (1:1 як банерна) */
.wp-block-button.is-style-default .wp-block-button__link::after,
.wp-block-button.is-style-primary .wp-block-button__link::after {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.2s;
}
.wp-block-button.is-style-default .wp-block-button__link:hover::after,
.wp-block-button.is-style-primary .wp-block-button__link:hover::after {
  transform: translate(3px, -3px);
}

/* Amber — амбер-пігулка + темний текст (= CTA «Обговорити проєкт») */
.wp-block-button.is-style-amber .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.wp-block-button.is-style-amber .wp-block-button__link svg {
  transition: transform 0.2s;
}
.wp-block-button.is-style-amber .wp-block-button__link:hover svg {
  transform: translate(3px, 0);
}
.wp-block-button.is-style-amber .wp-block-button__link {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--foreground);
  font-weight: 600;
}
.wp-block-button.is-style-amber .wp-block-button__link:hover {
  background: var(--wp--preset--color--amber-dark);
  color: var(--wp--preset--color--foreground);
}
.wp-block-button.is-style-amber .wp-block-button__link::after {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.2s;
}
.wp-block-button.is-style-amber .wp-block-button__link:hover::after {
  transform: translate(3px, -3px);
}

/* With Border — обведена пігулка (= .btn-secondary) */
.wp-block-button.is-style-border .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.wp-block-button.is-style-border .wp-block-button__link svg {
  transition: transform 0.2s;
}
.wp-block-button.is-style-border .wp-block-button__link:hover svg {
  transform: translate(3px, 0);
}
.wp-block-button.is-style-border .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--foreground);
  border-color: rgba(8, 8, 8, 0.2);
  font-weight: 500;
}
.wp-block-button.is-style-border .wp-block-button__link:hover {
  background: transparent;
  border-color: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--foreground);
}

/* Text / Text Yellow — посилання без фону.
   Тут геометрію пігулки навмисно скидаємо: це текстовий лінк. */
.wp-block-button.is-style-text .wp-block-button__link::after,
.wp-block-button.is-style-text-yellow .wp-block-button__link::after {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.2s;
}
.wp-block-button.is-style-text .wp-block-button__link:hover::after,
.wp-block-button.is-style-text-yellow .wp-block-button__link:hover::after {
  transform: translate(3px, -3px);
}
.wp-block-button.is-style-text .wp-block-button__link,
.wp-block-button.is-style-text-yellow .wp-block-button__link {
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  padding: 4px 0;
  font-weight: 600;
}
.wp-block-button.is-style-text .wp-block-button__link:hover,
.wp-block-button.is-style-text-yellow .wp-block-button__link:hover {
  background: transparent;
  transform: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wp-block-button.is-style-text .wp-block-button__link {
  color: var(--wp--preset--color--foreground);
}
.wp-block-button.is-style-text .wp-block-button__link:hover {
  color: var(--wp--preset--color--amber-dark);
}

.wp-block-button.is-style-text-yellow .wp-block-button__link {
  color: var(--wp--preset--color--amber-dark);
}
.wp-block-button.is-style-text-yellow .wp-block-button__link:hover {
  color: var(--wp--preset--color--foreground);
}

.is-style-column-border {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px 28px;
}

.is-style-tools {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  padding-bottom: var(--wp--preset--spacing--70);
}
@media screen and (min-width: 600px) {
  .is-style-tools {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
}
@media screen and (min-width: 920px) {
  .is-style-tools {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr !important;
  }
}
.is-style-tools .wp-block-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
.is-style-tools .wp-block-column .wp-block-image {
  max-width: 60px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.is-style-tools .wp-block-column .wp-block-image img {
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.is-style-tools .wp-block-column .wp-block-image img:hover {
  filter: grayscale(0%);
  transform: rotate(-10deg);
  z-index: 10;
}

.is-style-column-border {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px 28px;
}

.is-style-tools {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  padding-bottom: var(--wp--preset--spacing--70);
}
@media screen and (min-width: 600px) {
  .is-style-tools {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
}
@media screen and (min-width: 920px) {
  .is-style-tools {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr !important;
  }
}
.is-style-tools .wp-block-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
.is-style-tools .wp-block-column .wp-block-image {
  max-width: 60px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.is-style-tools .wp-block-column .wp-block-image img {
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.is-style-tools .wp-block-column .wp-block-image img:hover {
  filter: grayscale(0%);
  transform: rotate(-10deg);
  z-index: 10;
}

.is-style-banner .wp-block-media-text {
  margin: 0 auto !important;
}
@media screen and (min-width: 1400px) {
  .is-style-banner .wp-block-media-text {
    position: relative;
  }
  .is-style-banner .wp-block-media-text::after {
    content: "";
    position: absolute;
    right: -123px;
    top: -125px;
    width: 538px;
    height: 500px;
    background-color: #ffb647;
    filter: blur(-2px);
    border-radius: 15%;
    transform: rotate(45deg);
    animation: float 3s ease-in-out infinite;
    will-change: transform;
  }
}
@media screen and (min-width: 768px) {
  .is-style-banner {
    min-height: 700px;
  }
}
.is-style-banner .wp-block-media-text__content {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .is-style-banner .wp-block-media-text__content {
    padding-top: 6.25rem;
  }
}
.is-style-banner .wp-block-media-text__media {
  position: relative;
  right: -1rem;
  top: -24px;
}
@media screen and (min-width: 601px) {
  .is-style-banner .wp-block-media-text__media {
    position: absolute;
    max-width: 65%;
    z-index: 1;
  }
}
@media screen and (min-width: 700px) {
  .is-style-banner .wp-block-media-text__media {
    max-width: 60%;
  }
}
@media screen and (min-width: 1400px) {
  .is-style-banner .wp-block-media-text__media {
    max-width: unset;
    animation: float 3s ease-in-out infinite;
    will-change: transform;
  }
}

.is-style-info {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0 15px !important;
  align-items: center;
}
.is-style-info figure {
  grid-row: span 2;
  margin: 0;
  align-self: start;
}
.is-style-info p:first-of-type {
  font-weight: 700;
  align-self: end;
}
.is-style-info p:last-of-type {
  align-self: start;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.is-style-about {
  padding-top: var(--wp--preset--spacing--70);
  padding-bottom: var(--wp--preset--spacing--70);
}
.is-style-about .wp-block-media-text__content {
  padding-left: unset !important;
  padding-right: unset !important;
}

.is-style-subtitle {
  margin-bottom: 10px;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 700;
  line-height: 1.2;
}

.is-style-paragraph-wide {
  max-width: var(--wp--style--global--wide-size) !important;
}

.is-style-paragraph-line {
  font-weight: 700;
  padding-left: 100px;
  position: relative;
}
.is-style-paragraph-line::before {
  content: "";
  position: absolute;
  left: 0;
  width: 80px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: var(--wp--preset--color--primary);
}

/* Legacy global .wp-block-post styling removed — it conflicted with the new
   blog design (added shadow/radius/padding to every post + inner groups).
   Blog cards are now styled in styles/global/_blog.scss; the archive page
   will get its own scoped styles when redesigned. */
.is-style-blog-posts .columns-4.wp-block-post-template {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .is-style-blog-posts .columns-4.wp-block-post-template {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .is-style-blog-posts .columns-4.wp-block-post-template {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.wp-block-query-pagination .wp-block-query-pagination-numbers {
  display: flex;
  gap: 10px;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
  padding: 8px 13px;
  border-radius: 8px;
  border: 1px solid var(--wp--preset--color--foreground);
  min-width: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--wp--preset--color--foreground);
  transition: opacity 0.3s;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers:hover {
  opacity: 0.7;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--foreground);
}

.post__share .social__label {
  padding-right: 10px;
}
.post__share .single__social:not(:last-child) {
  margin-right: 10px;
}
.post__share .single__social img {
  max-width: 28px;
  transition: opacity 0.4s;
}
.post__share .single__social img:hover {
  opacity: 0.7;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  overflow-x: hidden;
}

/* global reusable section eyebrow / subtitle */
.subtitle {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wp--preset--color--amber-dark);
}

/* Default block spacing = global blockGap (24px) for post/page content.
   The homepage stacks full-bleed sections that manage their own padding,
   so reset the gap to 0 there (cascades to inner blocks). */
.home .wp-block-post-content {
  --wp--style--block-gap: 0;
}

/* The root (.wp-site-blocks) is a flow container too, so the global block gap
   would push header/main/footer apart (main gets a stray margin-top). Keep the
   top-level structure flush; the 24px gap is only for content deeper in. */
.wp-site-blocks > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

a:not(.wp-block-button__link):not(.wp-block-social-link-anchor):not(.wp-block-site-logo a):not(.wp-block-post-featured-image a):not(.footer__top-columns figure a):not(.page-numbers):not(.footer-menu li a):not(.btn-primary):not(.btn-secondary):not(.nav-logo):not(.nav-close-link):not(.footer-cta-card):not(.footer-social-btn):not(.footer-policy):not(.footer-link):not(.cta-btn):not(.cta-email):not(.wp-block-navigation-item__content):not(.wp-block-button__link):not(.post-card):not(.featured-card):not(.blog-card a):not(.page-btn):not(.post-cat):not(.post-share-btn):not(.blog-thumb-tag a):not(.post-crumbs a):not(.nav-logo-link):not(.proj-card):not(.proj-card a):not(.project-card):not(.contact-item):not(.svc-card):not(.gallery-item):not(.sidebar-btn):not(.process-btn):not(.lang-switcher a) {
  background-image: linear-gradient(0deg, currentcolor, currentcolor min(1px, 0.1em), currentcolor min(1px, 0.1em), currentcolor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px !important;
  text-decoration: none !important;
  transition: background-size 0.4s, color 0.4s;
}
a:not(.wp-block-button__link):not(.wp-block-social-link-anchor):not(.wp-block-site-logo a):not(.wp-block-post-featured-image a):not(.footer__top-columns figure a):not(.page-numbers):not(.footer-menu li a):not(.btn-primary):not(.btn-secondary):not(.nav-logo):not(.nav-close-link):not(.footer-cta-card):not(.footer-social-btn):not(.footer-policy):not(.footer-link):not(.cta-btn):not(.cta-email):not(.wp-block-navigation-item__content):not(.wp-block-button__link):not(.post-card):not(.featured-card):not(.blog-card a):not(.page-btn):not(.post-cat):not(.post-share-btn):not(.blog-thumb-tag a):not(.post-crumbs a):not(.nav-logo-link):not(.proj-card):not(.proj-card a):not(.project-card):not(.contact-item):not(.svc-card):not(.gallery-item):not(.sidebar-btn):not(.process-btn):not(.lang-switcher a):hover {
  background-size: 100% 1px !important;
  color: var(--wp--preset--color--primary) !important;
}

@media screen and (min-width: 768px) {
  .has-modal-open body::before {
    content: "";
    width: calc(100% - 440px);
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
}
@media screen and (min-width: 2000px) {
  .has-modal-open body::before {
    width: calc(100% - 30vw);
  }
}

/*# sourceMappingURL=main.css.map*/