:root {
  --white: #ffffff;
  --black: #0c0c0b;
  --canary: #ffef00;
  --cardinal: #c41e3a;
  --bg: var(--white);
  --ink: var(--black);
  --muted: rgba(12, 12, 11, 0.66);
  --line: var(--black);
  --field: var(--white);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--white);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='86' height='62' viewBox='0 0 86 62'%3E%3Crect width='86' height='62' fill='white'/%3E%3Cg font-family='Arial, Helvetica, sans-serif' font-weight='900' font-size='11' fill='%230c0c0b' fill-opacity='0.032'%3E%3Ctext x='1' y='11' transform='rotate(-8 1 11)'%3EGZ%3C/text%3E%3Ctext x='24' y='9' transform='rotate(7 24 9)'%3EGZ%3C/text%3E%3Ctext x='47' y='14' transform='rotate(-5 47 14)'%3EGZ%3C/text%3E%3Ctext x='68' y='10' transform='rotate(8 68 10)'%3EGZ%3C/text%3E%3Ctext x='9' y='28' transform='rotate(5 9 28)'%3EGZ%3C/text%3E%3Ctext x='33' y='31' transform='rotate(-9 33 31)'%3EGZ%3C/text%3E%3Ctext x='57' y='27' transform='rotate(6 57 27)'%3EGZ%3C/text%3E%3Ctext x='2' y='49' transform='rotate(8 2 49)'%3EGZ%3C/text%3E%3Ctext x='25' y='45' transform='rotate(-6 25 45)'%3EGZ%3C/text%3E%3Ctext x='49' y='53' transform='rotate(9 49 53)'%3EGZ%3C/text%3E%3Ctext x='70' y='47' transform='rotate(-7 70 47)'%3EGZ%3C/text%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='67' height='49' viewBox='0 0 67 49'%3E%3Crect width='67' height='49' fill='none'/%3E%3Cg font-family='Arial, Helvetica, sans-serif' font-weight='900' font-size='10' fill='%230c0c0b' fill-opacity='0.024'%3E%3Ctext x='4' y='13' transform='rotate(7 4 13)'%3EGZ%3C/text%3E%3Ctext x='28' y='10' transform='rotate(-8 28 10)'%3EGZ%3C/text%3E%3Ctext x='49' y='17' transform='rotate(6 49 17)'%3EGZ%3C/text%3E%3Ctext x='12' y='34' transform='rotate(-7 12 34)'%3EGZ%3C/text%3E%3Ctext x='37' y='31' transform='rotate(8 37 31)'%3EGZ%3C/text%3E%3Ctext x='55' y='43' transform='rotate(-5 55 43)'%3EGZ%3C/text%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='51' height='38' viewBox='0 0 51 38'%3E%3Crect width='51' height='38' fill='none'/%3E%3Cg font-family='Arial, Helvetica, sans-serif' font-weight='900' font-size='9' fill='%230c0c0b' fill-opacity='0.018'%3E%3Ctext x='2' y='10' transform='rotate(-6 2 10)'%3EGZ%3C/text%3E%3Ctext x='22' y='15' transform='rotate(8 22 15)'%3EGZ%3C/text%3E%3Ctext x='7' y='30' transform='rotate(7 7 30)'%3EGZ%3C/text%3E%3Ctext x='31' y='28' transform='rotate(-8 31 28)'%3EGZ%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-position: 0 0, 19px 13px, 41px 27px;
  background-size: 86px 62px, 67px 49px, 51px 38px;
}

a {
  color: inherit;
}

.social-links {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  gap: 14px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--black);
  padding: 0;
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.social-links a[aria-label="Facebook"] svg,
.social-links a[aria-label="Telegram"] svg {
  fill: currentColor;
  stroke: none;
}

.social-links a[aria-label="Telegram"] svg path:last-child {
  fill: none;
  stroke: var(--white);
  stroke-width: 1.6;
}

.social-links a:hover {
  color: var(--cardinal);
  transform: translateY(-2px);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 72px 18px 40px;
}

.contact-shell {
  width: min(760px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cardinal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(4.2rem, 14vw, 10.5rem);
  font-weight: 780;
  line-height: 0.84;
  letter-spacing: 0;
}

.prompt-box {
  position: relative;
  margin: 0 auto clamp(24px, 5vw, 42px);
  padding: clamp(18px, 3vw, 26px);
  border: 2px solid var(--ink);
  background: var(--canary);
  box-shadow:
    10px 10px 0 var(--ink),
    0 18px 34px rgba(12, 12, 11, 0.18);
  text-align: center;
  transform: translate(-5px, -5px);
}

.prompt-box p {
  max-width: 100%;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.35rem, 3.2vw, 2.05rem);
  font-weight: 880;
  line-height: 1.12;
}

.prompt-box span {
  display: block;
}

.prompt-box .mobile-prompt-line {
  display: none;
}

.prompt-box .desktop-prompt-line {
  white-space: nowrap;
}

.prompt-box a {
  color: var(--cardinal);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.prompt-box .arrow {
  display: block;
  width: 74px;
  height: 72px;
  margin: 6px auto 0;
}

.prompt-box .arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.spray-stroke {
  fill: none;
  stroke: var(--cardinal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 12;
  filter: drop-shadow(2px 2px 0 var(--black));
}

.spray-stroke.accent {
  stroke-width: 5;
  opacity: 0.9;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 30px);
  border: 2px solid var(--line);
  background: var(--white);
  text-align: left;
}

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

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 0;
  background: var(--field);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  outline: none;
  padding: 14px 15px;
}

input[type="file"] {
  cursor: pointer;
  font-weight: 750;
}

input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 2px solid var(--black);
  background: var(--canary);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 9px 12px;
}

textarea {
  resize: vertical;
  min-height: 160px;
}

.voice-recorder {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 8px;
}

.voice-button {
  min-height: 48px;
  margin: 0;
  padding: 10px 12px;
  font-size: 0.92rem;
}

.voice-button.record {
  background: var(--canary);
  color: var(--black);
}

.voice-button.stop,
.voice-button.remove {
  background: var(--black);
  color: var(--white);
}

.voice-button.remove {
  grid-column: 1 / -1;
  background: var(--cardinal);
}

.voice-preview {
  width: 100%;
  min-height: 42px;
}

.voice-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.voice-status:empty {
  display: none;
}

input:focus,
textarea:focus {
  border-color: var(--cardinal);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}

button {
  min-height: 52px;
  margin-top: 6px;
  border: 2px solid var(--black);
  background: var(--cardinal);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

button:hover {
  transform: translateY(-2px);
  background: var(--black);
  border-color: var(--black);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 1.2em;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.form-status.is-success {
  color: var(--black);
}

.form-status.is-error {
  color: var(--cardinal);
}

.sent-sign {
  position: relative;
  margin: 0 auto 28px;
  padding: clamp(24px, 5vw, 40px);
  border: 3px solid var(--black);
  background: var(--canary);
  color: var(--black);
  text-align: center;
  box-shadow:
    14px 14px 0 var(--black),
    0 22px 36px rgba(12, 12, 11, 0.18);
  transform: translate(-7px, -7px) rotate(-1deg);
}

.sent-sign.is-popping {
  animation: sign-pop 1050ms ease-out both;
}

.sent-sign::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid var(--cardinal);
  pointer-events: none;
}

.sent-sign p {
  position: relative;
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 5.8rem);
  font-weight: 950;
  line-height: 0.92;
}

.sent-sign span {
  display: block;
}

@keyframes sign-pop {
  0% {
    opacity: 0;
    transform: translate(-7px, 110px) rotate(-7deg) scale(0.42, 0.42);
    box-shadow:
      4px 4px 0 var(--black),
      0 8px 16px rgba(12, 12, 11, 0.12);
  }

  18% {
    opacity: 1;
    transform: translate(-7px, -30px) rotate(3deg) scale(1.12, 0.86);
    box-shadow:
      22px 22px 0 var(--black),
      0 28px 42px rgba(12, 12, 11, 0.2);
  }

  34% {
    transform: translate(-7px, 18px) rotate(-3deg) scale(0.94, 1.08);
    box-shadow:
      10px 10px 0 var(--black),
      0 16px 28px rgba(12, 12, 11, 0.16);
  }

  50% {
    transform: translate(-7px, -18px) rotate(2deg) scale(1.04, 0.94);
    box-shadow:
      18px 18px 0 var(--black),
      0 26px 40px rgba(12, 12, 11, 0.19);
  }

  66% {
    transform: translate(-7px, 7px) rotate(-2deg) scale(0.98, 1.03);
    box-shadow:
      12px 12px 0 var(--black),
      0 18px 30px rgba(12, 12, 11, 0.17);
  }

  82% {
    transform: translate(-7px, -10px) rotate(1deg) scale(1.01, 0.98);
    box-shadow:
      16px 16px 0 var(--black),
      0 24px 36px rgba(12, 12, 11, 0.18);
  }

  100% {
    opacity: 1;
    transform: translate(-7px, -7px) rotate(-1deg) scale(1);
    box-shadow:
      14px 14px 0 var(--black),
      0 22px 36px rgba(12, 12, 11, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sent-sign.is-popping {
    animation: none;
  }
}

.secure-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.secure-note a {
  color: var(--cardinal);
  font-weight: 750;
  text-underline-offset: 4px;
}

.form-divider {
  width: min(520px, 86%);
  margin: 26px auto 24px;
  border-top: 3px dashed var(--black);
}

.social-divider {
  width: min(520px, 86%);
  margin: 28px auto 24px;
  border-top: 3px dashed var(--black);
}

.anonymous-box {
  margin-top: 0;
  padding: 18px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.anonymous-box p {
  margin: 0 0 8px;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 850;
  line-height: 1.18;
}

.anonymous-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--canary);
  font-size: clamp(0.98rem, 2vw, 1.2rem);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.anonymous-label {
  color: var(--canary);
  text-decoration: none;
}

.anonymous-address {
  display: block;
  padding: 10px 14px;
  border: 2px solid var(--canary);
  background: var(--canary);
  color: var(--black);
  line-height: 1.05;
  box-shadow: 6px 6px 0 var(--cardinal);
}

.anonymous-mobile-line {
  display: none;
}

.anonymous-desktop-line {
  display: block;
}

.social-blocks {
  display: grid;
  gap: 12px;
  margin: 26px auto 0;
}

.social-block {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 2px solid var(--black);
  color: var(--white);
  font-size: clamp(1.1rem, 3.1vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 7px 7px 0 var(--black);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.social-block:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--black);
}

.social-block.telegram {
  background: #229ed9;
}

.social-block.instagram {
  background:
    linear-gradient(135deg, #4f1f6f 0%, #9b1b6a 52%, #c8334d 100%);
}

.social-block.facebook {
  background: #1877f2;
}

@media (max-width: 560px) {
  .social-links {
    position: relative;
    top: auto;
    right: auto;
    justify-content: center;
    gap: 12px;
    margin: 18px auto 6px;
  }

  .page {
    align-items: start;
    min-height: auto;
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(3.8rem, 19vw, 5.8rem);
  }

  .prompt-box {
    padding: 22px 12px 20px;
  }

  .prompt-box p {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
    line-height: 1.1;
  }

  .prompt-box .desktop-prompt-line {
    display: none;
  }

  .prompt-box .mobile-prompt-line {
    display: block;
  }

  .prompt-box .mobile-prompt-line.keep-together {
    white-space: nowrap;
  }

  .prompt-box .arrow {
    margin-top: 10px;
  }

  .anonymous-box {
    padding: 20px 12px;
  }

  .anonymous-box p {
    font-size: clamp(1.05rem, 5.4vw, 1.45rem);
  }

  .anonymous-link {
    font-size: clamp(0.9rem, 4.8vw, 1.2rem);
    gap: 9px;
    width: 100%;
  }

  .anonymous-address {
    width: 100%;
    padding: 11px 8px;
    font-size: clamp(0.82rem, 4.25vw, 1.08rem);
  }

  .social-blocks {
    gap: 10px;
    margin-top: 24px;
  }

  .social-block {
    min-height: 58px;
    font-size: clamp(1.05rem, 6vw, 1.42rem);
  }

  .anonymous-desktop-line {
    display: none;
  }

  .anonymous-mobile-line {
    display: block;
  }
}
