/* ============================================================
   CONTACT BODY
============================================================ */
.contact-body {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 34rem;
  gap: 5rem;
  align-items: start;
}

/* ============================================================
   LEFT COLUMN: INFO SECTIONS
============================================================ */
.info-section {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(26,42,34,0.1);
}
.info-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.info-section__headline {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--racing);
  margin-bottom: 1.25rem;
}

.info-section__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-section__body p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(26,42,34,0.85);
}

.info-section__sub {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26,42,34,0.7);
  margin-bottom: 1.25rem;
}

/* Office list */
.office-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.office-item__name {
  color: var(--tom-thumb);
  margin-bottom: 0.5rem;
}

.office-item__address {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--racing);
  margin-bottom: 0.625rem;
}

.office-item__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
}

.office-item__link {
  font-family: var(--font-dm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tom-thumb);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.15s;
}
.office-item__link:hover { opacity: 0.7; }

.office-item__divider {
  color: rgba(26,42,34,0.25);
  font-size: 0.875rem;
}

/* Social / review links */
.social-review-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-dm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--racing);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(26,42,34,0.15);
  border-radius: 0.375rem;
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none;
}
.social-link:hover {
  background: rgba(26,42,34,0.04);
  border-color: rgba(26,42,34,0.25);
}

.social-link__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.social-link--facebook { color: #1877F2; border-color: rgba(24,119,242,0.2); }
.social-link--facebook:hover { background: rgba(24,119,242,0.05); border-color: rgba(24,119,242,0.35); }

.social-link--google { color: var(--racing); }

/* ============================================================
   RIGHT COLUMN: FORM
============================================================ */
.contact-form-wrap {
  background: var(--white-rock);
  border: 1px solid rgba(26,42,34,0.14);
  border-radius: 0.5rem;
  padding: 2.5rem;
  position: sticky;
  top: 6rem;
}

.form-header {
  margin-bottom: 1.75rem;
}
.form-header__eyebrow {
  color: var(--tom-thumb);
  margin-bottom: 0.5rem;
}
.form-header__headline {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--racing);
  margin-bottom: 0.625rem;
}
.form-header__sub {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(26,42,34,0.65);
}
.form-header__sub a {
  color: var(--tom-thumb);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

/* Success / error states */
.form-success,
.form-error {
  padding: 1rem 1.25rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-dm);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.form-success {
  background: rgba(47,74,58,0.08);
  border: 1px solid rgba(47,74,58,0.25);
  color: var(--tom-thumb);
}
.form-error {
  background: rgba(204,107,49,0.08);
  border: 1px solid rgba(204,107,49,0.3);
  color: #8b3a0f;
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-family: var(--font-dm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--racing);
  letter-spacing: 0.01em;
}
.form-required {
  color: var(--tuscany);
  margin-left: 0.125rem;
}

.form-input {
  background: var(--ecru);
  border: 1px solid rgba(26,42,34,0.2);
  border-radius: 0.25rem;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-dm);
  font-size: 0.9375rem;
  color: var(--racing);
  width: 100%;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(26,42,34,0.4); }
.form-input:focus {
  border-color: var(--finlandia);
  box-shadow: 0 0 0 3px rgba(90,113,96,0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A2A22' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 7.5rem;
  line-height: 1.55;
}

/* Honeypot */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* reCAPTCHA */
.g-recaptcha {
  margin-top: 0.25rem;
}

.form-submit {
  background: var(--tuscany);
  color: var(--ecru);
  font-family: var(--font-dm);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.15s;
  margin-top: 0.25rem;
}
.form-submit:hover { opacity: 0.88; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-privacy {
  font-family: var(--font-dm);
  font-size: 0.8125rem;
  color: rgba(26,42,34,0.5);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================
   RESPONSIVE — 64rem
============================================================ */
@media (max-width: 64rem) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .contact-form-wrap { position: static; }
}

/* ============================================================
   RESPONSIVE — 48rem
============================================================ */
@media (max-width: 48rem) {
  .contact-body { padding-top: 3rem; padding-bottom: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { padding: 1.75rem; }
  .form-row--two { grid-template-columns: 1fr; }
	
	.contact-grid {
		display: flex;
		flex-direction: column-reverse;
	}
}

/* ============================================================
   RESPONSIVE — 30rem
============================================================ */
@media (max-width: 30rem) {
  .contact-form-wrap { padding: 1.25rem; }
  .info-section__headline { font-size: 1.5rem; }
}
