/* Contact page only: contact info list, quote form, success state, map, location */

.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 4vw, 60px); align-items: start; }
@media (max-width: 999px) { .contact__grid { grid-template-columns: 1fr; } }
.contact-info__list { margin-top: 32px; display: grid; gap: 0; }
.contact-info__row { padding: 20px 0; border-top: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; }
.contact-info__row:last-child { border-bottom: 1px solid var(--border); }
.contact-info__row .icon { width: 19px; height: 19px; color: var(--blue); flex: 0 0 auto; margin-top: 3px; }
.contact-info__title { font-family: var(--font-heading); font-size: 15.5px; font-weight: 600; color: var(--navy); }
.contact-info__row p { margin-top: 6px; font-size: 15px; line-height: 1.62; color: var(--text-muted); }

.contact-form-panel { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--blue); padding: clamp(26px, 3vw, 38px); }
.contact-form-panel h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); }
.contact-form-panel__note { margin-top: 9px; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
.contact-form { margin-top: 24px; display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 619px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: grid; gap: 8px; }
.form-field label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 14px; font-size: 15px; color: var(--navy);
  border: 1px solid var(--border-input); border-radius: 3px; background: var(--bg-panel);
  outline: none; font-family: inherit;
}
.form-field textarea { line-height: 1.55; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue); background: var(--white);
}
.form-error { display: flex; gap: 10px; align-items: flex-start; background: var(--error-bg); border: 1px solid var(--error-border); padding: 12px 14px; }
.form-error .icon { width: 17px; height: 17px; color: #b3261e; flex: 0 0 auto; margin-top: 1px; }
.form-error span { font-size: 14px; line-height: 1.55; color: var(--error-text); }
.contact-form__submit { width: 100%; }
.contact-form__privacy { font-size: 12.5px; line-height: 1.55; color: var(--text-faint); }

.contact-success { display: grid; gap: 16px; justify-items: start; }
.contact-success__icon { width: 46px; height: 46px; background: var(--green-tint); display: flex; align-items: center; justify-content: center; }
.contact-success__icon .icon { width: 22px; height: 22px; color: var(--green); }
.contact-success h2 { font-size: 23px; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); }
.contact-success p { font-size: 15.5px; line-height: 1.62; color: var(--text-body); }
.contact-success p.small { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
.contact-success strong { color: var(--navy); }

.location__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 3.5vw, 48px); align-items: start; }
@media (max-width: 999px) { .location__grid { grid-template-columns: 1fr; } }
.location__list { margin-top: 24px; display: grid; gap: 0; }
.location__row { padding: 15px 0; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: baseline; }
.location__row:last-child { border-bottom: 1px solid var(--border); }
.location__term { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); flex: 0 0 130px; }
.location__val { font-size: 15px; color: var(--text-dark-body); flex: 1; min-width: 180px; }
.location__map { aspect-ratio: 16/10; border: 1px solid var(--border); position: relative; width: 100%; overflow: hidden; }
.location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
