/* ============================================
   BREAKPOINT MIXINS
   ============================================

   Matches the Tailwind screen config from Josh's
   previous build system. All 12 breakpoints available.

   Usage:
     .component {
       padding: 2rem;

       @mixin sm {
         padding: 1.5rem;
       }

       @mixin xs {
         padding: 1rem;
       }
     }

   Compiles to:
     .component { padding: 2rem; }
     @media (max-width: 991px) { .component { padding: 1.5rem; } }
     @media (max-width: 767px) { .component { padding: 1rem; } }

   ============================================ */

/* --- Max-width (mobile-first overrides) --- */

/* --- Min-width (desktop-first overrides) --- */

/* --- Range (min + max) --- */

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* --- Contact Main --- */
.section_contact-main {
  padding-top: 5rem;
  padding-bottom: 2.75rem;
}

/* --- Form + Details Layout --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 767px) {
.contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem
} }

.contact-form_wrapper {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}

.contact-form_wrapper iframe {
    width: 100%;
    min-height: 56.25rem;
    border: 0;
    display: block;
  }

/* --- Contact Sidebar --- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details_list {
  display: grid;
  gap: 1.25rem;
}

.contact-detail_item h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-heading);
    font-size: var(--text-h5);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

.contact-detail_item p {
    color: var(--color-body-text-dark);
    font-size: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0;
  }

.contact-detail_item a {
    color: var(--color-accent-blue);
    font-weight: 700;
    transition: color var(--transition-fast);
  }

.contact-detail_item a:hover {
      color: var(--color-primary-blue);
    }

.contact-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* --- Employment --- */
/* Background handled by .bg-light utility in HTML */

.employment-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 767px) {

.employment-split {
    grid-template-columns: 1fr;
    gap: 2rem
} }

/* Typography handled by .text-formatting .text-margins-sm .text-colors on .employment-split_text in HTML */
/* Button spacing handled by .button-group + .text-margins-sm integration */

.employment-split_image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {

.employment-split_image {
    order: -1
} }

/* --- Map --- */
.section_map {
  background-color: var(--color-white);
}

.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

@media (max-width: 767px) {

.map-wrapper {
    aspect-ratio: 4 / 3;
  } }
