.rfq,
.footer {
  --content: min(1440px, calc(100vw - 72px));
  --font-readable-min: 16px;
}

.rfq.section { padding: clamp(100px, 10vw, 168px) 0; }
.rfq .wrap,
.footer .wrap { width: var(--content); margin-inline: auto; }
.rfq .reveal { opacity: 0; transform: translateY(54px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rfq .reveal.is-visible { opacity: 1; transform: none; }
.rfq .section-kicker { display: inline-flex; align-items: center; gap: 13px; color: #df8553; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.rfq .section-kicker::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.rfq .section-title { max-width: 1000px; margin: 20px 0 0; font-family: inherit !important; font-size: clamp(46px, 4.2vw, 64px); font-weight: 600 !important; line-height: 1.1 !important; letter-spacing: 0 !important; }
.rfq .section-lead { max-width: 680px; margin: 28px 0 0; color: #b7aaa0; font-size: 18px; line-height: 1.8; }
.rfq .pill-button { display: inline-flex; align-items: center; gap: 14px; padding: 7px 7px 7px 20px; border: 0; border-radius: 999px; background: #1d1815; color: white; font-size: 15px; font-weight: 750; text-decoration: none; cursor: pointer; transition: transform .7s var(--ease), background .7s var(--ease); }
.rfq .pill-button i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #cf7140; color: white; font-style: normal; transition: transform .7s var(--ease); }
.rfq .pill-button:hover { transform: translateY(-3px); }
.rfq .pill-button:hover i { transform: translate(3px, -1px) scale(1.05); }

.rfq { background: #171411; color: #f8efe5; }
.rfq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 8vw; align-items: start; }
.contact-stack { display: grid; gap: 10px; margin-top: 38px; }
.contact-chip { display: flex; align-items: center; gap: 15px; padding: 16px 18px; border-radius: 20px; background: rgba(255,255,255,.055); font-size: 16px; }
.contact-chip i { width: 38px; height: 38px; display: grid; flex: 0 0 38px; place-items: center; border-radius: 50%; background: #d47745; font-style: normal; }
.form-shell { padding: 8px; border-radius: 34px; background: rgba(255,255,255,.075); box-shadow: inset 0 1px rgba(255,255,255,.1); }
.rfq-form { padding: 34px; border-radius: 27px; background: #f4ece1; color: #211914; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / 3; }
.field label { font-size: var(--font-readable-min); font-weight: 750; }
.field input,
.field select,
.field textarea { width: 100%; padding: 16px 17px; border: 0; border-radius: 16px; outline: none; background: #e8ddd0; color: #211914; box-shadow: none; font-family: inherit; font-size: 16px; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { margin: 16px 0 20px; color: #74695f; font-size: var(--font-readable-min); }
.submit-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.submit-row span { color: #70655c; font-size: var(--font-readable-min); }
.rfq-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy-consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; color: #61584f; font-size: 16px; line-height: 1.55; cursor: pointer; }
.privacy-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; accent-color: #8b5b3e; }
.rfq-status { margin: 0 0 18px; padding: 14px 16px; border-radius: 14px; font-size: 16px; line-height: 1.55; }
.rfq-status--success { background: #edf6f0; color: #215f47; }
.rfq-status--error { background: #fff1ed; color: #8b3e2f; }

.footer { padding: 60px 0 30px; background: #0f0d0b; color: #b8aca1; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 50px; }
.footer-brand h2 { margin: 0; color: #fff3e8; font-size: 18px; letter-spacing: .2em; }
.footer-brand p { max-width: 400px; margin: 16px 0 0; font-size: var(--font-readable-min); }
.footer h3 { margin: 0 0 16px; color: #f0e5dc; font-size: var(--font-readable-min); }
.footer a,
.footer-grid > div > span { display: block; margin: 8px 0; color: #a89c92; font-size: var(--font-readable-min); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); font-size: var(--font-readable-min); }

@media (max-width: 1080px) {
  .rfq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .rfq,
  .footer { --content: calc(100% - 28px); }
  .rfq.section { padding: 86px 0; }
  .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .submit-row { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .rfq-form { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .rfq .reveal { opacity: 1; transform: none; transition: none; }
}
