/* ==========================================================================
   Contact Page — Template Styles
   ========================================================================== */

/* ── Section 1: 2-column split ───────────────────────────────────────────────
   Left column (form) sits on white; right column on a light grey bg.
   No Bootstrap container — the columns go edge-to-edge so the grey
   can span its full column width.
   ────────────────────────────────────────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  /* mobile: stacked */
  margin-top: 5rem;
}

@media (min-width: 992px) {
  .contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
  }
}

/* Shared column base */
.contact-col {
  display: flex;
  flex-direction: column;
}

.contact-col__inner {
  flex: 1;
  padding: 5rem 4rem;
}

@media (max-width: 1199.98px) {
  .contact-col__inner {
    padding: 4rem 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .contact-col__inner {
    padding: 3rem 1.5rem;
  }
}

/* Column 1 — Form (white) */
.contact-col--form {
  background: #ffffff;
}

/* Column 2 — Info (light grey) */
.contact-col--info {
  background: #f4f3f0;
}

/* Eyebrow label */
.contact-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

/* Column heading */
.contact-col__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-col__intro {
  /* color: var(--color-text-light); */
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

/* ── Contact info items ───────────────────────────────────────────────────── */
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-item__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--color-secondary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.contact-info-item__body {
  display: flex;
  flex-direction: column;
  padding-top: 0.125rem;
}

.contact-info-item__label {
  /* font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    margin-bottom: 0.3rem; */

  font-family: "Gothic A1";
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.contact-info-item__value {
  font-size: 1.0625rem;
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-heading);
  transition: color var(--transition);
  text-decoration: underline;
}

.contact-info-item__value:hover {
  color: var(--color-secondary);
}

/* ── Contact Form 7 overrides ────────────────────────────────────────────────
   Reset CF7 defaults so the form inherits the theme's visual language.
   ────────────────────────────────────────────────────────────────────────── */
.contact-form-wrap .wpcf7 {
  margin: 0;
}

.contact-form-wrap .wpcf7-form p {
  margin-bottom: 1.25rem;
}

.contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap input[type="number"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  padding: 0.275rem 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  outline: none;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-bottom-color: var(--color-secondary);
  box-shadow: none;
  background: transparent;
}

.contact-form-wrap textarea {
  min-height: 100px;
  height: 100px;
  resize: vertical;
}

/* Labels */
.contact-form-wrap label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 0.4rem;
}

/* Submit button */
.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: var(--color-primary);
  color: #ffffff;
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  width: auto;
}

.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #ffffff;
}

/* CF7 validation messages */
.contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 0.25rem;
  display: block;
}

.contact-form-wrap .wpcf7-response-output {
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  border: none;
}

.contact-form-wrap .wpcf7-mail-sent-ok {
  background: #d1fae5;
  color: #065f46;
}

.contact-form-wrap .wpcf7-validation-errors,
.contact-form-wrap .wpcf7-mail-sent-ng {
  background: #fee2e2;
  color: #991b1b;
}

.contact-form-placeholder {
  color: var(--color-text-light);
  font-style: italic;
  font-size: 0.9rem;
}

/* ── Section 2: Full-width map ───────────────────────────────────────────────
   The iframe fills its container; no padding/margin so it truly goes
   edge-to-edge. We remove the default bottom margin so it abuts the footer.
   ────────────────────────────────────────────────────────────────────────── */
.contact-map {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  /* collapse inline whitespace under the iframe */
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
}

/* Placeholder when no map URL is set */
.contact-map--placeholder {
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map__placeholder-inner {
  text-align: center;
  color: var(--color-text-light);
}

.contact-map__placeholder-inner i {
  font-size: 3rem;
  color: var(--color-border);
  display: block;
  margin-bottom: 1rem;
}

.contact-map__placeholder-inner p {
  font-size: 0.9rem;
  max-width: 340px;
  margin: 0 auto;
}