/* ============================================
   SARAANSH — CONTACT PAGE STYLES
   ============================================ */

/* ============================================
   PAGE HEADER
   ============================================ */

.contact-header {
  padding: 14vh var(--gutter) 6vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.contact-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ochre);
  display: inline-block;
}

.contact-title {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact-sub {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.65;
  max-width: 380px;
}

.contact-header__right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 13px 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.contact-btn:hover {
  opacity: 0.82;
}

.contact-btn--solid {
  background: var(--charcoal);
  color: var(--ochre);
}

.contact-btn--ghost {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

/* ============================================
   MAP
   ============================================ */

.contact-map {
  width: 100%;
  height: 56vh;
  min-height: 340px;
  border-top: 1px solid var(--hairline);
}

/* Override Leaflet default styles to match palette */
.leaflet-container {
  font-family: var(--font) !important;
  background: var(--canvas-deep) !important;
}

.leaflet-tile-pane {
  filter: sepia(18%) saturate(85%) brightness(102%);
}

/* Custom popup style */
.saraansh-popup .leaflet-popup-content-wrapper {
  background: var(--canvas);
  border: 1px solid var(--hairline-strong);
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.saraansh-popup .leaflet-popup-content {
  margin: 0;
  padding: 14px 18px;
}

.saraansh-popup .leaflet-popup-tip-container {
  display: none;
}

.saraansh-popup-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.saraansh-popup-addr {
  font-size: 11px;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ============================================
   CONTACT STRIP
   ============================================ */

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
}

.contact-strip__item {
  padding: 32px var(--gutter);
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-strip__item:last-child {
  border-right: none;
}

.contact-strip__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.contact-strip__label::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ochre);
  display: inline-block;
}

.contact-strip__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
}

.contact-strip__sub {
  font-size: 11px;
  color: var(--charcoal-faint);
}

.contact-strip__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ochre);
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  width: fit-content;
}

/* ============================================
   DIRECTIONS NOTE
   ============================================ */

.contact-directions {
  padding: 20px var(--gutter);
  background: var(--canvas-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
}

.contact-directions__text {
  font-size: 13px;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

.contact-directions__text strong {
  color: var(--charcoal);
  font-weight: 600;
}

.contact-directions__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ochre);
  text-decoration: none;
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 1px;
  white-space: nowrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .contact-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 14vh var(--gutter) 5vh;
  }

  .contact-sub {
    max-width: none;
  }

  .contact-map {
    height: 44vh;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-strip__item {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }

  .contact-strip__item:last-child {
    border-bottom: none;
  }

  .contact-directions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  .contact-header__right {
    width: 100%;
  }

  .contact-btn {
    flex: 1;
    text-align: center;
  }

  .contact-map {
    height: 38vh;
  }
}
