/* ─── CONTACT PAGE ─── */

/* ─── HERO ─── */
.ct-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/about/salonPrincipal.JPEG');
  background-size: cover;
  background-position: center;
  filter: brightness(.4) saturate(.7);
}

.ct-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.ct-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--cream);
  margin: 16px 0 24px;
}

.ct-hero-content h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.ct-hero-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.ct-hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── INFO CARDS ─── */
.ct-info {
  background: var(--dark);
  padding: 96px 0;
}

.ct-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ct-card {
  background: var(--dark);
  padding: 48px 36px;
  transition: background var(--transition);
}

.ct-card:hover {
  background: #1a1922;
}

.ct-card-icon {
  color: var(--gold);
  margin-bottom: 24px;
}

.ct-card h3 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.ct-big-link {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  letter-spacing: .01em;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.ct-big-link:hover {
  color: var(--gold-lt);
}

.ct-card > p {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .04em;
  line-height: 1.6;
}

/* ─── HORARIO ─── */
.ct-schedule {
  background: var(--black);
  padding: 96px 0;
}

.ct-schedule-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ct-schedule-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--cream);
  margin: 16px 0 0;
}

.ct-schedule-text h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.ct-schedule-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  letter-spacing: .015em;
  margin-top: 0;
}

.ct-hours {
  border-top: 1px solid var(--border);
}

.ct-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.ct-day {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
}

.ct-time {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .02em;
}

.ct-hours-row--closed .ct-day,
.ct-hours-row--closed .ct-time {
  color: var(--gold-dk);
  opacity: .6;
}

/* ─── MAPA ─── */
.ct-map-section {
  background: var(--dark);
  padding: 80px 0 0;
}

.ct-map-header {
  padding-bottom: 56px;
}

.ct-map-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--cream);
  margin: 16px 0 0;
}

.ct-map-header h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.ct-map-wrap {
  position: relative;
}

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

.ct-map-label {
  position: absolute;
  bottom: 32px;
  left: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.ct-map-label strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .02em;
}

.ct-map-label span {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .08em;
}

.ct-map-label a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  transition: color var(--transition);
}

.ct-map-label a:hover {
  color: var(--gold-lt);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .ct-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ct-hero { height: 50vh; }
  .ct-hero-btns { flex-direction: column; align-items: center; }

  .ct-schedule-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ct-map-label { left: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .ct-info-grid { grid-template-columns: 1fr; }
  .ct-card { padding: 36px 28px; }

  .ct-map-wrap iframe { height: 320px; }
  .ct-map-label { position: static; border-top: none; }
}
