/* ============================================================
   contact.css — Contact page ONLY
   style.css must be loaded before this file.
   Contains: Hero, contact cards grid, map, address.
   Navigation, CTA Card, Footer → style.css only.
   ============================================================ */

/* ── HERO BANNER ────────────────────────────────────────── */
.ct-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/contact-bg.png') center/cover no-repeat;
}

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

.ct-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.ct-hero-title {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.ct-hero-brand {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: .12em;
}

/* ── CONTACT CARDS ──────────────────────────────────────── */
.ct-cards {
  background: #ffffff;
}

.ct-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ct-card {
  border: 1px solid #e2d9c8;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  background: #ffffff;
}

.ct-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}



.ct-card-label {
  font-size: 20px;
  font-weight: 400;
  color: #666666;
  line-height: 24px;
}

.ct-card-value {
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 24px;
}

.ct-card-value--bold {
  font-weight: 700;
}

.ct-card-btn {
  margin-top: 1rem;
  align-self: flex-end;
}

/* ── LOCATE US ──────────────────────────────────────────── */
.ct-locate {
  background: #ffffff;
}

.ct-locate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.ct-map-wrap {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  border: 1px solid #e2d9c8;
}

.ct-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.ct-address {
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
}

.ct-direction-btn {
  padding: .75rem 2.5rem;
}

/* ── RESPONSIVE — TABLET ────────────────────────────────── */
@media (max-width: 900px) {
  .ct-cards-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 480px; margin-inline: auto; }
  .ct-map-wrap   { aspect-ratio: 16/7; }
}

/* ── RESPONSIVE — MOBILE ────────────────────────────────── */
@media (max-width: 640px) {
  .ct-hero        { height: 220px; }
  .ct-hero-title  { font-size: 28px; }
  .ct-hero-brand  { font-size: 16px; }
  .ct-cards-grid  { max-width: 100%; }
  .ct-map-wrap    { aspect-ratio: 4/3; }
  .ct-card        { padding: 1.5rem; }
}
