:root {
  --zaqr-pink: #ff006c;
  --zaqr-pink-light: #ff2f86;
  --zaqr-black: #07080a;
  --zaqr-charcoal: #0d0f13;
  --zaqr-white: #ffffff;
  --zaqr-muted: rgba(255, 255, 255, 0.68);
  --zaqr-line: rgba(255, 255, 255, 0.12);
  --zaqr-shell: min(1380px, calc(100vw - 96px));
  --zaqr-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --zaqr-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--zaqr-black);
  color: var(--zaqr-white);
  font-family: var(--zaqr-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.site-main, .site-main > * { margin: 0 !important; }
.zaqr-shell { width: var(--zaqr-shell); margin-inline: auto; }
.alignfull { width: 100%; max-width: none; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed !important;
  top: 16px;
  left: 16px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  border-radius: 999px;
  background: #fff;
  color: #000;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(7, 8, 10, 0.80);
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  transition: height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled {
  height: 68px;
  background: rgba(7, 8, 10, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}
.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}
.zaqr-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}
.zaqr-brand img,
.zaqr-brand__custom-logo img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.zaqr-brand__custom-logo .custom-logo-link { display: block; }
.zaqr-brand__name {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.19em;
}
.primary-navigation { justify-self: center; }
.zaqr-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.zaqr-menu a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: color 160ms ease;
}
.zaqr-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--zaqr-pink);
  transition: right 180ms ease;
}
.zaqr-menu a:hover,
.zaqr-menu a:focus-visible { color: #fff; }
.zaqr-menu a:hover::after,
.zaqr-menu a:focus-visible::after { right: 0; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Shared buttons */
.zaqr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--zaqr-pink);
  color: #fff;
  box-shadow: 0 14px 38px rgba(255, 0, 108, 0.25);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.zaqr-button:hover,
.zaqr-button:focus-visible {
  transform: translateY(-2px);
  background: var(--zaqr-pink-light);
  box-shadow: 0 18px 42px rgba(255, 0, 108, 0.34);
}
.zaqr-button--header { min-height: 42px; padding: 0 18px; font-size: 12px; }

/* Hero Gutenberg block */
.zaqr-hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  padding-top: 78px;
  isolation: isolate;
  background: var(--zaqr-black);
}
.zaqr-hero__media,
.zaqr-hero__veil {
  position: absolute;
  inset: 0;
}
.zaqr-hero__media { z-index: -3; }
.zaqr-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.88) contrast(1.03);
}
.zaqr-hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.99) 0%, rgba(6, 7, 9, 0.96) 24%, rgba(6, 7, 9, 0.77) 46%, rgba(6, 7, 9, 0.18) 72%, rgba(6, 7, 9, 0.06) 100%),
    linear-gradient(180deg, rgba(6, 7, 9, 0.08) 45%, rgba(6, 7, 9, 0.48) 100%);
}
.zaqr-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}
.zaqr-hero__inner {
  min-height: 632px;
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  align-items: center;
  padding: 74px 0 78px;
}
.zaqr-hero__content { max-width: 625px; }
.zaqr-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 23px;
  color: var(--zaqr-pink-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}
.zaqr-kicker::before {
  content: "";
  width: 31px;
  height: 1px;
  background: currentColor;
}
.zaqr-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: var(--zaqr-display);
  font-size: clamp(58px, 5.1vw, 78px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.zaqr-hero h1 span { display: block; }
.zaqr-hero__copy {
  max-width: 570px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 15px;
  line-height: 1.75;
}
.zaqr-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 27px;
  margin-top: 31px;
}
.zaqr-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.zaqr-text-link span { color: var(--zaqr-pink); transition: transform 180ms ease; }
.zaqr-text-link:hover span,
.zaqr-text-link:focus-visible span { transform: translateX(4px); }
.zaqr-hero__principles {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 23px;
  margin-top: 38px;
}
.zaqr-hero__principles span {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, 0.49);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.zaqr-hero__principles span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--zaqr-pink);
  transform: translateY(-50%);
}
.zaqr-hero__scroll {
  position: absolute;
  right: 40px;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.40);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.zaqr-hero__scroll span {
  position: relative;
  width: 37px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}
.zaqr-hero__scroll span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--zaqr-pink);
  transform: translateX(-100%);
  animation: zaqr-scroll-line 2.4s ease-in-out infinite;
}
@keyframes zaqr-scroll-line { 50% { transform: translateX(100%); } 100% { transform: translateX(100%); } }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 0, 108, 0.09), transparent 28%),
    #08090b;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.9fr 1.45fr;
  gap: 58px;
  padding: 76px 0 67px;
}
.zaqr-brand--footer { margin-bottom: 20px; }
.site-footer__brand > p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.75;
}
.site-footer__column,
.site-footer__contact { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__column h2,
.site-footer__contact h2 { margin: 0; }
.site-footer__column h2 {
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-footer__column a,
.site-footer__column span {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}
.site-footer__column a:hover { color: #fff; }
.site-footer__eyebrow {
  margin: 0 0 13px;
  color: var(--zaqr-pink-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-footer__contact h2 {
  max-width: 390px;
  margin-bottom: 25px;
  font-family: var(--zaqr-display);
  font-size: clamp(31px, 2.6vw, 43px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom div { display: flex; gap: 24px; }
.site-footer__bottom a:hover { color: #fff; }
.zaqr-page-shell { min-height: 60vh; padding-top: 130px; padding-bottom: 90px; color: #111; background: #fff; }

@media (max-width: 1100px) {
  :root { --zaqr-shell: min(100% - 56px, 1180px); }
  .site-header__inner { gap: 24px; }
  .zaqr-menu { gap: 22px; }
  .site-footer__top { grid-template-columns: 1.2fr 0.75fr 1fr; }
  .site-footer__contact { grid-column: 1 / -1; padding-top: 10px; }
}

@media (max-width: 900px) {
  .site-header { height: 70px; }
  .admin-bar .site-header { top: 46px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; justify-self: end; order: 2; }
  .header-cta { display: none; }
  .primary-navigation {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    padding: 28px;
    background: rgba(7, 8, 10, 0.98);
    border-top: 1px solid rgba(255,255,255,.09);
  }
  .admin-bar .primary-navigation { top: 116px; }
  .primary-navigation.is-open { display: block; }
  .zaqr-menu { flex-direction: column; align-items: flex-start; gap: 4px; }
  .zaqr-menu a { padding: 13px 0; font-size: 18px; }
  .zaqr-hero { min-height: 670px; padding-top: 70px; }
  .zaqr-hero__inner { min-height: 600px; grid-template-columns: 1fr; padding: 58px 0 65px; }
  .zaqr-hero__media img { object-position: 68% center; }
  .zaqr-hero__veil {
    background:
      linear-gradient(90deg, rgba(6,7,9,.98) 0%, rgba(6,7,9,.88) 55%, rgba(6,7,9,.32) 100%),
      linear-gradient(180deg, rgba(6,7,9,.08) 38%, rgba(6,7,9,.72) 100%);
  }
  .zaqr-hero__scroll { display: none; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand, .site-footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --zaqr-shell: calc(100% - 36px); }
  .zaqr-brand__name { font-size: 14px; }
  .zaqr-hero { min-height: 690px; }
  .zaqr-hero__media img { object-position: 70% center; }
  .zaqr-hero__veil {
    background:
      linear-gradient(90deg, rgba(6,7,9,.98) 0%, rgba(6,7,9,.89) 64%, rgba(6,7,9,.54) 100%),
      linear-gradient(180deg, rgba(6,7,9,.12) 28%, rgba(6,7,9,.82) 100%);
  }
  .zaqr-hero__inner { min-height: 620px; align-items: end; padding: 54px 0 58px; }
  .zaqr-kicker { margin-bottom: 19px; font-size: 9px; }
  .zaqr-hero h1 { font-size: clamp(47px, 14.4vw, 64px); line-height: .96; }
  .zaqr-hero__copy { margin-top: 20px; font-size: 14px; line-height: 1.65; }
  .zaqr-hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 26px; }
  .zaqr-hero__principles { gap: 11px 16px; margin-top: 29px; }
  .zaqr-hero__principles span { font-size: 8px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 38px; padding: 58px 0 48px; }
  .site-footer__brand, .site-footer__contact { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

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