/* =========================================================
CONTACT SECTION — ENHANCED
Stacked info cards + map. Uses CSS variables compatible
with the rest of the site.
Classes prefixed with .contact-info- to avoid conflicts.
========================================================= */


/* =========================================================
TOKENS
========================================================= */

.contact{
  --c-navy:       #1a1f3c;
  --c-navy-deep:  #0f1429;
  --c-gold:       #c9a84c;
  --c-gold-soft:  #e8d28d;
  --c-cream:      #faf6ee;
  --c-text:       #2a2d3a;
  --c-muted:      #6b7280;
  --c-border:     #e8e0d0;
}


/* =========================================================
INFO STACK — replaces the simple .contact-map column
========================================================= */

.contact-info-stack{
  display: flex;
  flex-direction: column;
  gap: 16px;

  /* match the height of the sibling form column */
  height: 100%;
}


/* =========================================================
INFO CARD — base
========================================================= */

.contact-info-card{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 22px 24px;

  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: 14px;

  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.contact-info-card:hover{
  border-color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 18, 36, 0.08);
}

/* gold accent on left edge — subtle */
.contact-info-card::before{
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  background: var(--c-gold);
  border-radius: 2px;
  opacity: 0.7;
}


/* =========================================================
ICON
========================================================= */

.contact-info-icon{
  flex-shrink: 0;
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(201, 168, 76, 0.12);
  color: var(--c-gold);
  border-radius: 12px;

  transition: background .25s ease, color .25s ease;
}

.contact-info-card:hover .contact-info-icon{
  background: var(--c-gold);
  color: #ffffff;
}

.contact-info-icon .material-symbols-outlined{
  font-size: 24px;
  font-variation-settings: 'wght' 500;
}


/* =========================================================
BODY
========================================================= */

.contact-info-body{
  flex: 1;
  min-width: 0;
}

.contact-info-eyebrow{
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 6px;
}

.contact-info-title{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-navy);
  margin: 0 0 4px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.contact-info-text{
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--c-muted);
  margin: 0;
}

.contact-info-row{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
}

.contact-info-row:first-of-type{
  margin-top: 8px;
}

.contact-info-label{
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 95px;
}

.contact-info-value{
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-navy);
  font-feature-settings: 'tnum' 1; /* tabular numbers */
}


/* =========================================================
MAP CARD — same shell, no padding
========================================================= */

.contact-info-card.contact-info-map{
  padding: 0;
  overflow: hidden;

  /* take all remaining vertical space, but never shrink below this */
  flex: 1 1 auto;
  min-height: 220px;
}

.contact-info-card.contact-info-map::before{
  display: none; /* no gold bar inside the map card */
}

.contact-info-card.contact-info-map iframe{
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter .35s ease;
}

.contact-info-card.contact-info-map:hover iframe{
  filter: grayscale(0%) contrast(1);
}


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

@media (max-width: 720px){

  .contact-info-card{
    padding: 18px 20px;
  }

  .contact-info-icon{
    width: 42px;
    height: 42px;
  }

  .contact-info-title{
    font-size: 1.3rem;
  }

  .contact-info-label{
    min-width: 80px;
    font-size: 0.7rem;
  }

  .contact-info-card.contact-info-map iframe{
    height: 180px;
  }

}