/* ── CONTACT HERO ── same split layout as index hero ── */
.contact-hero {
  width: 100%;
  height: clamp(420px, 52vh, 580px);
  display: flex;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.contact-hero-left {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 180px 40px 40px 72px;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: clamp(60px, 7.5vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 24px;
  white-space: nowrap;
}

.contact-hero-right {
  flex: 0 0 52%;
  overflow: hidden;
  position: relative;
}

.contact-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #000000 0%,
    rgba(0,0,0,0.3) 18%,
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
}

.contact-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── CONTACT SECTION ── */
.contact-section {
  width: 100%;
  background: var(--cream);
  border-top: 4px solid var(--red);
  padding: 72px 48px;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

/* Info Text */
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}

.cinfo-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cinfo-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin: 0;
}

.cinfo-value {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  line-height: 1.7;
  margin: 0;
}

.cinfo-value a {
  color: #111111;
  text-decoration: none;
  transition: color .2s;
}
.cinfo-value a:hover { color: var(--red); }


.cinfo-hours {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
}

.cinfo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(0,0,0,0.05);
}

.cinfo-row:nth-child(even) {
  background: rgba(0,0,0,0.04);
}

.cinfo-row--today {
  background: var(--red) !important;
  border-radius: 6px;
}

.cinfo-row--today .cinfo-day,
.cinfo-row--today .cinfo-time {
  color: #ffffff;
  font-weight: 700;
}

.cinfo-today-msg {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.cinfo-today-msg strong {
  font-weight: 600;
  color: #ffffff;
}

.cinfo-day {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

.cinfo-time {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
}

/* Map */
.contact-map-wrap {
  background: #000000;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 36px 36px 40px;
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0 20px;
  border: 2px solid #2a2a2a;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 6px;
  transition: background .2s, transform .15s;
}
.btn-directions:hover { background: #a30d24; transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Hero: stack vertically like index */
  .contact-hero {
    flex-direction: column;
    height: auto;
  }
  .contact-hero-left {
    flex: none;
    padding: 140px 24px 40px;
    text-align: center;
    align-items: center;
  }
  .contact-title { font-size: 48px; white-space: normal; text-align: center; }
  .contact-hero-right {
    display: none;
  }

  /* Info + Map stacked */
  .contact-section { padding: 48px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-info-text { gap: 28px; }
  .cinfo-value { font-size: 16px; }
  .cinfo-day, .cinfo-time { font-size: 14px; }
  .contact-map-wrap { padding: 24px 20px 32px; }
  .map-container { height: 300px; }
  .btn-directions { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .contact-info { grid-template-columns: 1fr; }
  .contact-title { font-size: 38px; }
}
