  /* =========================================================
         CONTACT PAGE TITLE
      ========================================================= */
      .page-title.page-title-contact {
        padding: 7.5rem 0 3.5rem;
      }

      .page-title.page-title-contact h1 {
        margin-bottom: 0.45rem;
      }

      .page-title.page-title-contact p {
        margin: 0.35rem auto 0;
        max-width: 42rem;
      }

      .page-title.page-title-contact .breadcrumbs {
        margin-top: 0.9rem;
      }

      /* =========================================================
         CONTACT FORM — INTEREST CHECKBOX GROUP
      ========================================================= */
      .interest-group {
        border: 0;
        padding: 0;
        margin: 0;
        min-width: 0;
      }

      .interest-group legend {
        font-family: "Fraunces", serif;
        font-size: clamp(1.1rem, 1vw + 0.9rem, 1.45rem);
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 0.35rem;
      }

      .form-help-text {
        font-size: 0.95rem;
        line-height: 1.5;
        color: color-mix(in srgb, var(--default-color), transparent 12%);
        margin: 0 0 1rem 0;
      }

      .interest-group .form-check {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        margin-bottom: 0.85rem;
        padding: 0.95rem 1rem;
        border: 1px solid color-mix(in srgb, #b6543a, white 72%);
        border-radius: 0.85rem;
        background: color-mix(in srgb, #fff 94%, #c65a3a 6%);
        transition:
          border-color 0.25s ease,
          background-color 0.25s ease,
          box-shadow 0.25s ease,
          transform 0.25s ease;
      }

      /* =========================================================
         CONTACT FORM — NAME + EMAIL FIELDS
      ========================================================= */
      .contact-field-label {
        display: block;
        margin-bottom: 0.55rem;
        font-family: "Fraunces", serif;
        font-size: clamp(1rem, 0.35vw + 0.95rem, 1.18rem);
        font-weight: 600;
        line-height: 1.25;
        color: #7a2f22;
        letter-spacing: 0.01em;
      }

      .contact .php-email-form .contact-input {
        min-height: 3.25rem;
        font-size: 1rem;
        padding: 0.8rem 1rem;
        border-radius: 0.65rem;
        border: 1px solid color-mix(in srgb, #b6543a, white 72%);
        background: color-mix(in srgb, #fff 95%, #c65a3a 5%);
        color: #45241d;
        transition:
          border-color 0.25s ease,
          box-shadow 0.25s ease,
          background-color 0.25s ease;
      }

      .contact .php-email-form .contact-input::placeholder {
        color: #a07d75 !important;
        font-size: 0.95rem !important;
        font-style: italic;
      }

      .contact .php-email-form .contact-input:focus {
        border-color: #b64632;
        background: #fffdfc;
        box-shadow: 0 0 0 0.2rem rgba(182, 70, 50, 0.14);
        outline: none;
      }

      .contact .php-email-form .contact-input:user-invalid {
        border-color: #b64632;
        box-shadow: 0 0 0 0.15rem rgba(182, 70, 50, 0.12);
      }

      @media (max-width: 767px) {
        .contact-field-label {
          font-size: 1rem;
        }

        .contact .php-email-form .contact-input {
          min-height: 3.05rem;
          font-size: 0.98rem;
        }
      }
      /* =========================================================
   CONTACT FORM — STATUS MESSAGE
========================================================= */
.contact-form-status {
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  font-family: "Source Serif 4", serif;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

.contact-form-status.is-success {
  background: color-mix(in srgb, #ffffff 88%, #2f7d57 12%);
  border: 1px solid color-mix(in srgb, #2f7d57, white 60%);
  color: #1f5a3f;
}

.contact-form-status.is-error {
  background: color-mix(in srgb, #ffffff 88%, #b64632 12%);
  border: 1px solid color-mix(in srgb, #b64632, white 60%);
  color: #7a2f22;
}

#contact-submit-button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
    

    /* =========================================================
   CONTACT FORM — EDITORIAL CARD + EMBER PSYCHEDELIC WASH
   Small, safe visual upgrade for the contact page form only
========================================================= */

.contact #contact-form.php-email-form {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 2vw, 2rem);
  border-radius: 1.5rem;
  border: 1px solid rgba(180, 106, 70, 0.14);
  background:
    linear-gradient(145deg,
      rgba(255, 250, 246, 0.96) 0%,
      rgba(255, 245, 236, 0.94) 28%,
      rgba(248, 242, 248, 0.92) 62%,
      rgba(241, 247, 247, 0.92) 100%);
  box-shadow:
    0 18px 44px rgba(20, 32, 43, 0.08),
    0 4px 16px rgba(180, 106, 70, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Soft psychedelic halo behind the form */
.contact #contact-form.php-email-form::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 18rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 30%, rgba(250, 132, 88, 0.18), transparent 34%),
    radial-gradient(circle at 42% 12%, rgba(246, 140, 36, 0.14), transparent 30%),
    radial-gradient(circle at 72% 24%, rgba(182, 84, 110, 0.14), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(108, 146, 150, 0.12), transparent 28%);
  filter: blur(30px);
  opacity: 0.95;
  z-index: 0;
}

/* Keep form content above the glow layer */
.contact #contact-form.php-email-form > * {
  position: relative;
  z-index: 1;
}

/* Slightly more graceful spacing */
.contact #contact-form .row.gy-4 {
  --bs-gutter-y: 1.15rem;
}

/* Labels */
.contact #contact-form .contact-field-label,
.contact #contact-form fieldset legend,
.contact #contact-form label.fw-bold {
  color: #883d2a;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Help text */
.contact #contact-form .form-help-text {
  color: #6f6a66;
  font-size: 0.98rem;
}

/* Inputs / textarea / select */
.contact #contact-form .form-control,
.contact #contact-form .form-select,
.contact #contact-form .contact-input {
  border-radius: 1rem !important;
  border: 1px solid rgba(180, 106, 70, 0.22) !important;
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1px 2px rgba(20, 32, 43, 0.03);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.contact #contact-form .form-control:focus,
.contact #contact-form .form-select:focus,
.contact #contact-form .contact-input:focus {
  border-color: rgba(244, 140, 36, 0.7) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow:
    0 0 0 0.2rem rgba(244, 140, 36, 0.12),
    0 10px 24px rgba(244, 140, 36, 0.08) !important;
  transform: translateY(-1px);
}

/* Make the select feel less boxy */
.contact #contact-form .form-select {
  min-height: 3.35rem;
  padding-right: 2.75rem;
}

/* Checkbox group container */
.contact #contact-form .interest-group {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Checkbox cards */
.contact #contact-form .form-check {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 1rem 1rem 1rem 2.55rem;
  border-radius: 1rem;
  border: 1px solid rgba(180, 106, 70, 0.16);
  background:
    linear-gradient(135deg,
      rgba(255, 250, 248, 0.88),
      rgba(251, 244, 240, 0.88));
  box-shadow: 0 6px 16px rgba(20, 32, 43, 0.03);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.contact #contact-form .form-check:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 140, 36, 0.28);
  box-shadow: 0 10px 22px rgba(244, 140, 36, 0.06);
}

/* Checkbox input positioning */
.contact #contact-form .form-check-input {
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  margin: 0;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.35rem;
  border-color: rgba(136, 61, 42, 0.28);
}

.contact #contact-form .form-check-input:checked {
  background-color: #f48c24;
  border-color: #f48c24;
  box-shadow: 0 0 0 0.18rem rgba(244, 140, 36, 0.12);
}

.contact #contact-form .form-check-label {
  color: #4c4946;
  line-height: 1.55;
}

/* Textarea */
.contact #contact-form textarea.form-control {
  min-height: 9rem;
  resize: vertical;
}

/* Status message */
.contact #contact-form-status {
  border-radius: 1rem;
  padding: 0.95rem 1rem;
}

.contact #contact-form-status.is-success {
  background: rgba(5, 150, 82, 0.1);
  border: 1px solid rgba(5, 150, 82, 0.18);
  color: #0d6b43;
}

.contact #contact-form-status.is-error {
  background: rgba(223, 21, 41, 0.08);
  border: 1px solid rgba(223, 21, 41, 0.14);
  color: #9b2130;
}

/* Submit button */
.contact #contact-submit-button {
  min-height: 3.2rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 140, 36, 0.8);
  background:
    linear-gradient(135deg, #f48c24 0%, #fa8458 45%, #b6546e 100%);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 12px 24px rgba(244, 140, 36, 0.18),
    0 4px 10px rgba(182, 84, 110, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.contact #contact-submit-button:hover,
.contact #contact-submit-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.03);
  box-shadow:
    0 16px 30px rgba(244, 140, 36, 0.22),
    0 8px 18px rgba(182, 84, 110, 0.16);
}

/* Mobile tuning */
@media (max-width: 767.98px) {
  .contact #contact-form.php-email-form {
    padding: 1.1rem;
    border-radius: 1.15rem;
  }

  .contact #contact-form .form-check {
    padding: 0.9rem 0.9rem 0.9rem 2.35rem;
  }

  .contact #contact-submit-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .contact #contact-form.php-email-form::before {
    animation: emberFormGlow 14s ease-in-out infinite alternate;
  }

  @keyframes emberFormGlow {
    0% {
      transform: translate3d(0, 0, 0) scale(1);
      opacity: 0.88;
    }
    100% {
      transform: translate3d(1.5%, -1%, 0) scale(1.04);
      opacity: 1;
    }
  }
} 

.contact.section {
  background:
    radial-gradient(circle at top left, rgba(244, 140, 36, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(182, 84, 110, 0.05), transparent 22%),
    linear-gradient(180deg, #f5f1ee 0%, #f7f4f1 100%);
}


.contact #contact-submit-button {
  min-height: 3.9rem !important;
  padding: 1.05rem 2.2rem !important;
  margin: 0 !important;
  border-radius: 999px;
  border: 1px solid rgba(244, 140, 36, 0.8);
  background:
    linear-gradient(135deg, #f48c24 0%, #fa8458 45%, #b6546e 100%);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 12px 24px rgba(244, 140, 36, 0.18),
    0 4px 10px rgba(182, 84, 110, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}