:root {
  --ar-black: #050505;
  --ar-black-2: #111111;
  --ar-red: #e30613;
  --ar-red-dark: #b8000a;
  --ar-white: #ffffff;
  --ar-paper: #f7f7f7;
  --ar-text: #202020;
  --ar-muted: #626262;
  --ar-border: #dddddd;
  --ar-shadow: 0 18px 45px rgba(0, 0, 0, .12);
  --container: 1120px;
  --font: Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ar-white);
  color: var(--ar-text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ar-red);
  text-decoration: none;
  text-underline-offset: 4px;
}

a:hover { text-decoration: underline; }

p { margin: 0 0 1rem; }

h1, h2, h3, h4 {
  margin: 0 0 1rem;
  color: var(--ar-black);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.3rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }

button, input, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(227, 6, 19, .4);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 34px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--ar-red);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus { top: 1rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
}

.logo-band {
  background:
    linear-gradient(90deg, rgba(227, 6, 19, .16), transparent 22%, transparent 78%, rgba(227, 6, 19, .16)),
    var(--ar-black);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo-band__inner {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand { display: inline-flex; text-decoration: none; }
.brand:hover { text-decoration: none; }

.brand-logo,
.custom-logo-link img {
  display: block;
  width: min(720px, 90vw);
  max-height: 145px;
  object-fit: contain;
}

.nav-band {
  background: #fff;
  border-bottom: 1px solid var(--ar-border);
}

.nav-band__inner {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-nav .menu,
.footer-nav .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.25rem, 1vw, 1.1rem);
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: .45rem .95rem;
  color: #111;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .88rem;
  border-bottom: 3px solid transparent;
  text-decoration: none;
}

.primary-nav .current-menu-item > a,
.primary-nav a:hover {
  color: var(--ar-red);
  border-bottom-color: var(--ar-red);
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 0;
  width: 46px;
  height: 42px;
  border: 1px solid var(--ar-border);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.screen-reader-text) {
  width: 24px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-main { min-height: 52vh; }

.home-hero {
  overflow: hidden;
  position: relative;
  padding: clamp(3rem, 7vw, 5.8rem) 0;
  background:
    radial-gradient(circle at 82% 25%, rgba(227, 6, 19, .09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 88%);
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .78fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.home-hero__copy {
  max-width: 720px;
}

.breadcrumb-inline,
.breadcrumbs {
  margin: 0 0 1.1rem;
  color: var(--ar-muted);
  font-size: .92rem;
}

.home-hero h1 {
  margin-bottom: 1.1rem;
  letter-spacing: -.04em;
}

.lead {
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: #2d2d2d;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border .18s ease, transform .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button--primary {
  color: #fff;
  background: var(--ar-red);
  border-color: var(--ar-red);
}

.button--primary:hover {
  background: var(--ar-red-dark);
  border-color: var(--ar-red-dark);
  color: #fff;
}

.button--outline {
  background: #fff;
  color: #111;
  border-color: #111;
}

.button--outline:hover {
  background: #111;
  color: #fff;
}

.globe-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at 50% 42%, rgba(227, 6, 19, .22), transparent 38%),
    linear-gradient(135deg, #060606, #141414);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--ar-shadow);
}

.globe-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
}


.globe-card--image {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 47%, rgba(227, 6, 19, .24), transparent 44%),
    linear-gradient(135deg, #030303, #111);
}

.globe-gif {
  position: relative;
  z-index: 2;
  display: block;
  width: min(380px, 74vw);
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 22px rgba(227, 6, 19, .34));
}

.globe-card--image .globe-caption,
.globe-card--canvas .globe-caption {
  max-width: 420px;
}
.globe-card--canvas {
  overflow: hidden;
  min-height: 430px;
  background:
    radial-gradient(circle at 50% 47%, rgba(227, 6, 19, .24), transparent 44%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .08), transparent 36%),
    linear-gradient(135deg, #030303, #111);
}

.ar-globe-canvas {
  position: relative;
  z-index: 2;
  display: block;
  width: min(420px, 78vw);
  aspect-ratio: 1;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(227, 6, 19, .36));
}

@media (prefers-reduced-motion: reduce) {
  .ar-globe-canvas {
    filter: drop-shadow(0 0 18px rgba(227, 6, 19, .25));
  }
}


.globe-caption {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.82);
  text-align: center;
  font-weight: 700;
  letter-spacing: .04em;
}

.globe {
  position: relative;
  z-index: 1;
  width: min(330px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.9), rgba(255,255,255,.2) 8%, transparent 18%),
    radial-gradient(circle at 50% 50%, #171717 0%, #050505 72%, #000000 100%);
  border: 4px solid rgba(255,255,255,.9);
  box-shadow:
    inset -34px -18px 55px rgba(0,0,0,.78),
    inset 26px 12px 42px rgba(255,255,255,.12),
    0 24px 65px rgba(0,0,0,.55);
}

.globe::before,
.globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.globe::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(255,255,255,.18) 36px 38px),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(255,255,255,.15) 36px 38px);
  opacity: .68;
  mix-blend-mode: screen;
}

.globe::after {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), inset -44px -22px 60px rgba(0,0,0,.68);
}

.globe__map {
  position: absolute;
  top: 7%;
  left: -55%;
  width: 210%;
  height: 86%;
  background:
    radial-gradient(ellipse at 10% 38%, rgba(227,6,19,.95) 0 7%, transparent 7.6%),
    radial-gradient(ellipse at 28% 23%, rgba(255,255,255,.82) 0 8%, transparent 8.6%),
    radial-gradient(ellipse at 41% 60%, rgba(227,6,19,.86) 0 9%, transparent 9.7%),
    radial-gradient(ellipse at 60% 30%, rgba(255,255,255,.72) 0 7%, transparent 7.8%),
    radial-gradient(ellipse at 76% 58%, rgba(227,6,19,.82) 0 8%, transparent 8.8%),
    radial-gradient(ellipse at 92% 32%, rgba(255,255,255,.72) 0 7%, transparent 7.8%),
    linear-gradient(90deg, transparent, rgba(227,6,19,.16), transparent);
  filter: blur(.1px);
  animation: arGlobeSpin 12s linear infinite;
}

.globe__shine {
  position: absolute;
  inset: 10% 43% auto 16%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.35), transparent 70%);
  transform: rotate(-24deg);
}

.globe__line {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 2px;
  background: rgba(255,255,255,.42);
  transform-origin: center;
}

.globe__line--one { transform: translateY(-50%) rotate(0deg); }
.globe__line--two { transform: translateY(-50%) rotate(29deg); }
.globe__line--three { transform: translateY(-50%) rotate(-29deg); }

@keyframes arGlobeSpin {
  from { transform: translateX(0); }
  to { transform: translateX(-45%); }
}

.section {
  padding: clamp(3.2rem, 7vw, 5.6rem) 0;
}

.section--white { background: #fff; }
.section--page-body { background: #fff; }

.compact-copy {
  max-width: 900px;
}

.section-label {
  color: var(--ar-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .84rem;
}

.page-hero {
  position: relative;
  padding: clamp(1.25rem, 2.9vw, 2.2rem) 0;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, .045), transparent 42%, rgba(227, 6, 19, .08)),
    linear-gradient(180deg, #fbfbfb, #ffffff);
  border-bottom: 1px solid var(--ar-border);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: max(17px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  width: min(180px, 42vw);
  height: 4px;
  background: var(--ar-red);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.42), transparent 78%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(280px, .56fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  letter-spacing: -.04em;
}

.page-hero__aside {
  position: relative;
  padding: 1rem 1.1rem 1rem 1.25rem;
  background: rgba(255,255,255,.74);
  border-left: 4px solid var(--ar-red);
  box-shadow: 0 10px 28px rgba(0,0,0,.045);
}

.page-hero__aside p {
  margin: .35rem 0 0;
  color: #3f3f3f;
  font-size: .98rem;
  line-height: 1.58;
}

.page-hero__label {
  color: var(--ar-red);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .75rem;
}

.breadcrumbs {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-bottom: .65rem;
}

.breadcrumbs a { color: var(--ar-muted); }

.content-block,
.legal-copy,
.contact-data,
.contact-form-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--ar-border);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.content-block {
  max-width: 960px;
}

.content-block h2,
.legal-copy h2,
.contact-data h2,
.contact-form-card h2 {
  position: relative;
  padding-bottom: .7rem;
}

.content-block h2::after,
.legal-copy h2::after,
.contact-data h2::after,
.contact-form-card h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin-top: .75rem;
  background: var(--ar-red);
}

.split-cards,
.services-list,
.contact-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.split-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.services-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); align-items: start; }

.split-cards article,
.services-list article {
  padding: clamp(1.15rem, 3vw, 1.7rem);
  background: #fff;
  border: 1px solid var(--ar-border);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.services-list span {
  display: inline-flex;
  margin-bottom: .8rem;
  color: var(--ar-red);
  font-weight: 800;
  letter-spacing: .12em;
}

.legal-copy {
  max-width: 940px;
}

.contact-data p:last-child { margin-bottom: 0; }

.contact-form-wrap { margin-top: 1rem; }

.notice {
  padding: .85rem 1rem;
  margin: 0 0 1rem;
  border-left: 4px solid currentColor;
  background: #f7f7f7;
  font-weight: 700;
}

.notice--success { color: #156f2b; }
.notice--error { color: #a6000b; }

.form-field,
.form-check { margin: 0 0 1rem; }

.form-field label,
.form-check label {
  display: block;
  font-weight: 700;
  color: #222;
}

.form-field span { color: var(--ar-red); }

.form-field input,
.form-field textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .8rem .85rem;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  background: #fff;
  color: #111;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--ar-red);
  box-shadow: 0 0 0 3px rgba(227,6,19,.12);
  outline: none;
}

.form-check label {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-weight: 400;
  color: var(--ar-muted);
}

.form-check input { margin-top: .35rem; }

.form-field--hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.site-footer {
  background: var(--ar-black);
  color: rgba(255,255,255,.76);
  margin-top: 0;
  border-top: 5px solid var(--ar-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .75fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.4rem, 6vw, 4rem) 0;
}

.footer-logo img {
  width: min(420px, 92vw);
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.site-footer h2 {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-footer a { color: #fff; }

.footer-nav .menu {
  display: grid;
  gap: .35rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .92rem;
}

.footer-bottom p { margin: 0; }

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 1100;
  width: min(640px, calc(100% - 2rem));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  color: #111;
  border: 1px solid var(--ar-border);
  box-shadow: var(--ar-shadow);
}

.cookie-banner p { margin: 0; }
.cookie-banner[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

@media (max-width: 920px) {
  .logo-band__inner { min-height: 96px; }
  .home-hero__grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-list { grid-template-columns: 1fr; }
  .globe-card { order: -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 760px) {
  .nav-band__inner {
    justify-content: flex-end;
    min-height: 56px;
  }

  .menu-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--ar-border);
    box-shadow: 0 12px 30px rgba(0,0,0,.13);
    display: none;
  }

  .primary-nav.is-open { display: block; }

  .primary-nav .menu {
    display: grid;
    gap: 0;
    padding: .3rem 0;
  }

  .primary-nav a {
    width: 100%;
    justify-content: center;
    border-bottom: 0;
    border-left: 4px solid transparent;
  }

  .primary-nav .current-menu-item > a,
  .primary-nav a:hover {
    border-left-color: var(--ar-red);
    background: #f7f7f7;
  }

  .split-cards { grid-template-columns: 1fr; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-banner .button { width: 100%; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .logo-band__inner { min-height: 82px; }
  .brand-logo, .custom-logo-link img { width: 94vw; }
  .home-hero { padding-top: 2rem; }
  .globe { width: min(270px, 72vw); }
  .globe-gif { width: min(300px, 76vw); }
  .ar-globe-canvas { width: min(320px, 78vw); }
}


/* Gutenberg-friendly styling added in v11 */
.wp-block-group.home-hero,
.wp-block-group.section {
  max-width: none;
}

.wp-block-group.container {
  width: min(calc(100% - 34px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

.wp-block-buttons.hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border .18s ease, transform .18s ease;
}

.wp-block-button .wp-block-button__link:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.wp-block-button.button--primary .wp-block-button__link {
  color: #fff;
  background: var(--ar-red);
  border-color: var(--ar-red);
}

.wp-block-button.button--primary .wp-block-button__link:hover {
  color: #fff;
  background: var(--ar-red-dark);
  border-color: var(--ar-red-dark);
}

.wp-block-button.button--outline .wp-block-button__link {
  background: #fff;
  color: #111;
  border-color: #111;
}

.wp-block-button.button--outline .wp-block-button__link:hover {
  background: #111;
  color: #fff;
}

.split-cards.wp-block-columns,
.services-list.wp-block-columns,
.contact-grid.wp-block-columns {
  gap: 1rem;
  margin-top: 1.4rem;
}

.split-cards .wp-block-column,
.services-list .wp-block-column {
  padding: clamp(1.15rem, 3vw, 1.7rem);
  background: #fff;
  border: 1px solid var(--ar-border);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.services-list .service-number {
  display: inline-flex;
  margin: 0 0 .8rem;
  color: var(--ar-red);
  font-weight: 800;
  letter-spacing: .12em;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form .form-field,
.contact-form .form-check {
  margin: 0;
}

.contact-form .form-field--full,
.contact-form button[type="submit"] {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 760px) {
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .page-hero {
    padding: 1.3rem 0 1.55rem;
  }

  .page-hero__aside {
    padding: .9rem 1rem;
  }
}


/* v13: poprawki formularza i stopki */
.form-check label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  column-gap: .7rem;
  width: 100%;
}

.form-check input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: .22rem 0 0;
  accent-color: var(--ar-red);
}

.form-check__text {
  display: block;
  min-width: 0;
  line-height: 1.55;
}

.form-check__text a {
  display: inline;
  white-space: nowrap;
  font-weight: 700;
}

.scroll-top-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .7rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}

.scroll-top-link::after {
  content: "↑";
  color: var(--ar-red);
  font-weight: 800;
}

.scroll-top-link:hover {
  border-color: rgba(255,255,255,.44);
  background: rgba(255,255,255,.06);
  text-decoration: none;
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-check label {
    column-gap: .6rem;
  }
}


/* v15 antispam/contact refinements */
.ar-email-link {
  word-break: normal;
  overflow-wrap: anywhere;
}

.ar-email-fallback {
  white-space: normal;
}

.form-field--hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


.form-turnstile {
    margin: 6px 0 4px;
}

.form-turnstile .cf-turnstile {
    display: inline-block;
    max-width: 100%;
}
