/* contacto.css — estilos específicos de la página /contacto */

/* ───────── CT-HERO ───────── */
.ct-hero {
  background: var(--linen);
  padding: 200px 0 120px;
}
.ct-hero .h-display { max-width: 16ch; margin-bottom: 32px; }
.ct-hero .h-display em { font-style: italic; }
.ct-hero .lede { color: var(--earth); }

/* Hero 2-col grid (texto izq / foto der) */
.ct-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ct-hero-photo { aspect-ratio: 4/5; max-height: 520px; overflow: hidden; border-radius: 4px; }
.ct-hero-photo .ph,
.ct-hero-photo picture,
.ct-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .ct-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .ct-hero-photo { max-height: 360px; aspect-ratio: 16/10; }
}

/* ───────── CT-GRID ───────── */
.ct-grid {
  padding: 80px 0 140px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
@media (max-width: 980px) { .ct-grid { grid-template-columns: 1fr; } }

/* ───────── CT-MAIN ───────── */
.ct-main {
  background: var(--dark);
  color: var(--cream);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.ct-main::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(200,160,82,.16), transparent 70%);
}
.ct-main .eyebrow { color: var(--wheat); margin-bottom: 28px; }
.ct-main h2 { font-family: var(--sans); font-weight: 500; font-size: clamp(40px, 4.4vw, 64px); line-height: 1.02; margin: 0 0 28px; color: var(--cream); }
.ct-main h2 em { font-style: italic; color: var(--wheat); }
.ct-main p { color: rgba(250,248,243,.72); margin: 0 0 32px; max-width: 38ch; line-height: 1.65; }
.ct-rows {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(250,248,243,.12);
  margin: 32px 0;
}
.ct-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(250,248,243,.12);
  gap: 24px;
}
.ct-row dt {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--wheat);
}
.ct-row dd {
  font-family: var(--sans); font-weight: 500; font-size: 22px; margin: 0; color: var(--cream);
}
.ct-row dd a { cursor: pointer; }
.ct-row dd a:hover { color: var(--wheat); }
.ct-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.ct-actions .btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  background: var(--wheat);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--wheat);
  transition: background .25s ease, color .25s ease;
  cursor: pointer;
}
.ct-actions .btn-wa:hover { background: transparent; color: var(--wheat); }
.ct-actions .btn-wa svg { width: 16px; height: 16px; fill: currentColor; }

/* ───────── CT-SIDE ───────── */
.ct-side {
  display: flex; flex-direction: column; gap: 24px;
}
.ct-card {
  background: var(--cream);
  padding: 36px 32px;
  border: 1px solid rgba(33,28,24,.08);
  position: relative;
}
.ct-card .eyebrow { margin-bottom: 14px; display: block; color: var(--earth); }
.ct-card h3 { font-family: var(--sans); font-weight: 500; font-size: 28px; margin: 0 0 12px; }
.ct-card h3 em { font-style: italic; color: var(--wheat); }
.ct-card p { color: var(--earth); font-size: 14px; line-height: 1.65; margin: 0 0 20px; }
.ct-card .handle { font-family: var(--mono); font-size: 13px; color: var(--dark); }
.ct-ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  margin-top: 24px;
}
.ct-ig-grid > .ph,
.ct-ig-grid > .lp-picture { aspect-ratio: 1; }
.ct-stats {
  display: flex; gap: 28px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid rgba(33,28,24,.08);
}
.ct-stats dt { font-family: var(--sans); font-size: 24px; line-height: 1; color: var(--dark); margin: 0 0 4px; }
.ct-stats dd { margin: 0; font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--earth); }

/* ───────── CT-HOURS ───────── */
.ct-hours {
  background: var(--sage);
  color: var(--cream);
  padding: 28px 32px;
}
.ct-hours h4 {
  font-family: var(--sans); font-weight: 400; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(250,248,243,.78); margin: 0 0 16px;
}
.ct-hours ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ct-hours li {
  display: flex; justify-content: space-between;
  font-family: var(--sans); font-size: 16px; color: var(--cream);
  border-bottom: 1px dashed rgba(250,248,243,.22);
  padding-bottom: 6px;
}
.ct-hours li:last-child { border-bottom: 0; }
.ct-hours li span:last-child { color: rgba(250,248,243,.7); font-style: italic; }

/* ───────── Mobile ───────── */
@media (max-width: 720px) {
  .ct-hero { padding-top: 150px; }
  .ct-main { padding: 40px 28px; }
  .ct-row { grid-template-columns: 1fr; gap: 4px; }
}
