.hero-grid,
.contact-grid,
.channel-list,
.reason-chips,
.form-grid,
.support-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.contact-grid {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.hero-copy h1,
.panel h2,
.section-header h2 {
  margin: 22px 0 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-copy p,
.panel-intro,
.submit-note,
.section-header p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}

.panel {
  padding: 32px;
}

.panel h2 {
  margin-top: 0;
  font-size: clamp(34px, 4vw, 50px);
}

.channel-list {
  margin-top: 24px;
}

.channel {
  padding: 24px;
  border-radius: 26px;
}

.channel h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.channel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.channel-value {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
  color: var(--primary);
}

.channel-links,
.channel-address {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.channel-links .channel-value {
  margin-top: 0;
}

.channel-links {
  gap: 10px;
}

.channel-address {
  font-style: normal;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.reason-chips {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 24px 0 0;
}

.chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.form-messages {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.form-message {
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.form-message--success {
  background: rgba(88, 196, 130, 0.14);
  color: hsl(146 54% 28%);
}

.form-message--error {
  background: rgba(255, 107, 107, 0.14);
  color: hsl(356 58% 34%);
}

.form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.field.full { grid-column: 1 / -1; }

.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.field-optional {
  color: var(--muted);
  font-weight: 600;
}

.field-error {
  color: hsl(356 58% 40%);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.captcha-row {
  display: grid;
  gap: 12px;
  grid-template-columns: max-content 170px;
  align-items: center;
  justify-content: start;
}

.captcha-prompt {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(47, 54, 92, 0.08);
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  width: fit-content;
  max-width: 280px;
}

.captcha-row input {
  max-width: 170px;
  justify-self: end;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(47, 54, 92, 0.10);
  background: rgba(255,255,255,0.84);
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 70%, transparent);
}

input:focus,
textarea:focus {
  border-color: rgba(197, 4, 113, 0.28);
  box-shadow: 0 0 0 4px rgba(197, 4, 113, 0.08);
}

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

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.submit-row .button--primary,
.cta-actions .button {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 15px;
}

.submit-row .button--primary {
  letter-spacing: -0.01em;
}

@media (max-width: 1120px) {
  .hero-grid,
  .contact-grid,
  .reason-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid { align-items: start; }

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

@media (max-width: 920px) {
  .hero-grid,
  .contact-grid,
  .reason-chips,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid > .panel:first-child {
    order: 2;
  }

  .contact-grid > .panel:last-child {
    order: 1;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

  .captcha-row input {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .panel,
  .channel,
  .chip { padding: 24px; }
}

@media (max-width: 520px) {
  input,
  textarea { width: 100%; }

  .hero-copy h1,
  .panel h2,
  .section-header h2,
  .cta-shell h2 { font-size: clamp(40px, 12vw, 56px); }

  .hero-copy p,
  .panel-intro,
  .submit-note,
  .section-header p,
  .cta-shell p { font-size: 17px; }

  .hero {
    padding-top: 36px;
    padding-bottom: 34px;
  }

  .contact-grid {
    gap: 22px;
  }
}
