.request-hero {
  padding: 160px 48px 80px;
  background: var(--mist);
  border-bottom: 1px solid rgba(4,18,46,0.07);
  text-align: center;
}
.request-hero-inner { max-width: 680px; margin: 0 auto; }
.request-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue-primary); margin-bottom: 28px;
}
.request-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--blue-primary); }
.request-headline {
  font-family: var(--font-serif); font-size: clamp(36px, 4vw, 60px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--soil); margin-bottom: 20px;
}
.request-headline em { font-style: italic; color: var(--blue-primary); }
.request-sub {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: rgba(4,18,46,0.55); max-width: 520px; margin: 0 auto;
}

/* FORM SECTION */
.form-section {
  padding: 80px 48px 120px;
  background: var(--white);
}
.form-card {
  max-width: 680px; margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(7,58,160,0.12);
  border-radius: 18px;
  padding: 56px 56px 52px;
  box-shadow: 0 12px 40px rgba(4,18,46,0.06);
}

.form-group { margin-bottom: 28px; }
.form-group:last-of-type { margin-bottom: 36px; }

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(4,18,46,0.5); margin-bottom: 10px;
}
.form-label span {
  color: var(--blue-primary);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  display: block; width: 100%;
  font-family: var(--font-sans); font-size: 15px; font-weight: 300;
  color: var(--soil);
  background: var(--mist);
  border: 1px solid rgba(7,58,160,0.14);
  border-radius: 8px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(4,18,46,0.3); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(7,58,160,0.08);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%2304122e' stroke-width='1.5'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-select option { color: var(--soil); background: var(--white); }
.form-select option[value=""] { color: rgba(4,18,46,0.35); }

.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-divider {
  border: none; border-top: 1px solid rgba(7,58,160,0.08);
  margin: 32px 0;
}

.form-submit {
  width: 100%;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white); background: var(--blue-primary);
  border: none; border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.form-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(7,58,160,0.18);
}
.form-submit:active { transform: translateY(0); }

.form-note {
  text-align: center; margin-top: 20px;
  font-size: 12px; font-weight: 300; color: rgba(4,18,46,0.4);
  line-height: 1.5;
}

/* SUCCESS STATE */
.form-success {
  display: none;
  text-align: center; padding: 48px 24px;
}
.form-success.visible { display: block; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #e9f7ee; border: 1px solid rgba(18,104,67,0.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
}
.success-title {
  font-family: var(--font-serif); font-size: 32px; font-weight: 400;
  color: var(--soil); margin-bottom: 12px;
}
.success-body {
  font-size: 15px; font-weight: 300; color: rgba(4,18,46,0.55); line-height: 1.7;
}

/* FOOTER */
footer { background: var(--mist); border-top: 1px solid rgba(4,18,46,0.08); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 48px; max-width: 1400px; margin: 0 auto; }
.footer-brand { margin-bottom: 16px; }
.footer-tagline { font-size: 13px; font-weight: 300; color: rgba(4,18,46,0.5); line-height: 1.6; max-width: 280px; margin-top: 12px; }
.footer-col-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(4,18,46,0.4); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(4,18,46,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--soil); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 48px; border-top: 1px solid rgba(4,18,46,0.06); max-width: 1400px; margin: 0 auto; }
.footer-copy { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; color: rgba(4,18,46,0.3); }
.footer-indigenous { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; color: rgba(4,18,46,0.25); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .request-hero { padding: 120px 24px 64px; }
  .form-section { padding: 56px 24px 96px; }
  .form-card { padding: 36px 28px 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 20px 24px; text-align: center; }
}
