/* ============================================================
   Contact page
   Shared pieces (.page-hero, .btn, .eyebrow) come from style.css.
   The FORM ITSELF also lives in style.css now (search "Shared form
   component"), because applications.html reuses it. Only the contact
   page's own layout, sidebar, and map remain here.
   ============================================================ */

.ct-main { background: var(--white); }

.ct-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}

/* ============================================================
   Details sidebar
   ============================================================ */
.ct-details { display: flex; flex-direction: column; gap: 20px; }

.ct-card {
  background: var(--off-white);
  border-radius: var(--rl);
  padding: 32px;
}
.ct-card h3 {
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.ct-detail {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.ct-detail:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.ct-detail > i {
  flex-shrink: 0;
  color: var(--accent);
  font-size: .95rem;
  width: 20px;
  text-align: center;
  margin-top: 3px;
}
.ct-detail-label {
  display: block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 5px;
}
.ct-detail p {
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.55;
  margin: 0;
}
.ct-detail p a { color: var(--navy); font-weight: 600; transition: color var(--ease); }
.ct-detail p a:hover { color: var(--accent); }
.ct-muted { color: var(--gray-400); font-size: .82rem; font-weight: 500; }

.ct-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap var(--ease);
}
.ct-detail-link i { font-size: .68rem; }
.ct-detail-link:hover { gap: 11px; }

/* Quick links card */
.ct-card--links { padding: 10px; background: var(--white); border: 1px solid var(--gray-200); }
.ct-quick {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 20px;
  border-radius: var(--r);
  transition: background var(--ease);
}
.ct-quick:hover { background: var(--off-white); }
.ct-quick > i:first-child {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.ct-quick div { flex: 1; }
.ct-quick strong {
  display: block;
  font-family: var(--font-head);
  font-size: .92rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.ct-quick span {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.4;
}
.ct-quick-arrow {
  flex-shrink: 0;
  color: var(--gray-400);
  font-size: .72rem;
  transition: color var(--ease), transform var(--ease);
}
.ct-quick:hover .ct-quick-arrow { color: var(--accent); transform: translateX(3px); }

/* ============================================================
   Map
   ============================================================ */
.ct-map-section { background: var(--off-white); padding: 80px 0 0; }

.ct-map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ct-map-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 14px; }
.ct-map-head > div { max-width: 640px; }
.ct-map-head p {
  color: var(--gray-600);
  font-size: 1.005rem;
  line-height: 1.75;
  margin: 0;
}
.ct-map-head .btn { flex-shrink: 0; }

.ct-map {
  line-height: 0;              /* kills the inline-frame descender gap */
  border-top: 1px solid var(--gray-200);
  filter: saturate(.92);
}
.ct-map iframe { display: block; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .ct-main-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  .ct-card         { padding: 26px 24px; }
  .ct-map-section  { padding-top: 56px; }
  .ct-map-head     { margin-bottom: 28px; }
  .ct-map iframe   { height: 380px; }
}

