/* ═══════════════════════════════════════════════
   GICELL ACADEMY — estilos (monocromo luxury)
   Replica of concept art · Playfair Display + Jost
   Scopeado bajo .gicell-home / .gicell-footer para convivir con Elementor.
   ═══════════════════════════════════════════════ */

.gicell-home *, .gicell-footer * { margin: 0; padding: 0; box-sizing: border-box; }

.gicell-home, .gicell-footer {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.gicell-home img, .gicell-footer img { display: block; max-width: 100%; }
.gicell-home a, .gicell-footer a { text-decoration: none; color: inherit; }
.gicell-home ul, .gicell-footer ul { list-style: none; }
.gicell-home figure, .gicell-footer figure { margin: 0; }

.gicell-home .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Icons ─────────────────────────────── */
.gicell-home .ic {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.gicell-home .ic--fill { fill: currentColor; stroke: none; }
.gicell-home .ic--chev { width: 11px; height: 11px; opacity: 0.7; }
.gicell-home .ic--arrow { width: 13px; height: 13px; }

/* ── Buttons ───────────────────────────── */
.gicell-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 14px 26px;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.gicell-home .btn--sm { padding: 10px 20px; font-size: 12px; }
.gicell-home .btn--block { width: 100%; }

.gicell-home .btn--light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}
.gicell-home .btn--light:hover { background: var(--white); }

.gicell-home .btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.gicell-home .btn--ghost-light:hover { background: rgba(255, 255, 255, 0.1); }

.gicell-home .btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(14, 14, 14, 0.35);
}
.gicell-home .btn--ghost-dark:hover { background: var(--black); color: var(--white); }

.gicell-home .btn--dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.gicell-home .btn--dark:hover { background: var(--black-2); }

/* ── Shared type ───────────────────────── */
.gicell-home .eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--metal);
  text-align: center;
  margin-bottom: 18px;
}
.gicell-home .eyebrow--left { text-align: left; }

.gicell-home .section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
.gicell-home .section-title--center { text-align: center; }

.gicell-home .section-text {
  font-size: 14px;
  color: var(--muted);
  max-width: 440px;
  margin-top: 14px;
}
.gicell-home .section-text--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gicell-home .link-underline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid rgba(14, 14, 14, 0.4);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.gicell-home .link-underline:hover { color: var(--metal); border-color: var(--metal); }

/* ═══════════ HEADER (resto no-chrome; topbar/header/nav vienen de Elementor) ═══════════ */
.gicell-home .logo img { height: 34px; width: auto; display: block; }

/* ═══════════ HERO ═══════════ */
.gicell-home .hero {
  position: relative;
  height: 690px;
  overflow: hidden;
}
.gicell-home .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: contrast(1.02) brightness(0.96);
  opacity: 0;
  transition: opacity 1.1s ease;
}
.gicell-home .hero__img.is-active { opacity: 1; }
.gicell-home .hero__slides .hero__img:nth-child(2) { object-position: 50% 16%; }
.gicell-home .hero__slides .hero__img:nth-child(3) { object-position: 50% 22%; }
.gicell-home .hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.62) 0%, rgba(10,10,10,.25) 45%, rgba(10,10,10,0) 70%),
    linear-gradient(0deg,  rgba(10,10,10,.55) 0%, rgba(10,10,10,0) 40%),
    linear-gradient(180deg,rgba(10,10,10,.35) 0%, rgba(10,10,10,0) 22%);
}
.gicell-home .hero__content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 110px;
}
.gicell-home .hero__title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--white);
  animation: gicell-rise 0.9s ease both;
}
.gicell-home .hero__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  letter-spacing: 0.03em;
  animation: gicell-rise 0.9s 0.15s ease both;
}
.gicell-home .hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  animation: gicell-rise 0.9s 0.3s ease both;
}
.gicell-home .hero__dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.gicell-home .hero__dots span {
  width: 6px;
  height: 6px;
  padding: 5px;
  background-clip: content-box;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.gicell-home .hero__dots span:hover { transform: scale(1.4); }
.gicell-home .hero__dots span.is-active { background-color: var(--white); }

@keyframes gicell-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════ WELCOME ═══════════ */
.gicell-home .welcome { padding: 96px 0 90px; background: var(--white); }
.gicell-home .welcome__title {
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.gicell-home .welcome__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
}
.gicell-home .welcome__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}
.gicell-home .welcome__col + .welcome__col { border-left: 1px solid var(--line); }
.gicell-home .welcome__icon {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--metal);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gicell-home .welcome__heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-top: 22px;
}
.gicell-home .welcome__text {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 260px;
  margin: 12px 0 20px;
}

/* ═══════════ SERVICES ═══════════ */
.gicell-home .services {
  background: var(--black);
  padding: 100px 0;
  color: var(--white);
}
.gicell-home .services__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.gicell-home .services__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 44px;
}
.gicell-home .accordion__item { border-bottom: 1px solid var(--line-dark); }
.gicell-home .accordion__item.is-open { border-bottom: none; margin-bottom: 10px; }
.gicell-home .accordion__head {
  display: flex;
  width: 100%;
  align-items: center;
  text-align: left;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
  color: inherit;
  font: inherit;
  border-radius: 6px;
  transition: border-color 0.35s, padding 0.35s;
}
.gicell-home .accordion__item.is-open .accordion__head {
  border-color: rgba(255, 255, 255, 0.35);
  padding: 18px 22px;
}
.gicell-home .accordion__num {
  font-size: 13px;
  color: var(--metal-2);
  letter-spacing: 0.06em;
}
.gicell-home .accordion__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  flex: 1;
}
.gicell-home .accordion__toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
  transition: all 0.35s;
}
.gicell-home .accordion__item.is-open .accordion__toggle {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  transform: rotate(0deg);
}
.gicell-home .accordion__head:hover .accordion__toggle { border-color: var(--metal-2); color: var(--metal-2); }
.gicell-home .accordion__collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}
.gicell-home .accordion__item.is-open .accordion__collapse { grid-template-rows: 1fr; }
.gicell-home .accordion__collapse > .accordion__body { overflow: hidden; }
.gicell-home .accordion__body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  padding: 0 4px;
  max-width: 460px;
}
.gicell-home .accordion__item.is-open .accordion__body { padding: 16px 4px 6px; }
.gicell-home .services__media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ═══════════ BEFORE / AFTER ═══════════ */
.gicell-home .compare { padding: 100px 0; background: var(--white); }
.gicell-home .compare__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.gicell-home .compare__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}
.gicell-home .compare__media.is-dragging .compare__handle { transform: translate(-50%, -50%) scale(1.08); }
.gicell-home .compare__media img { pointer-events: none; }
.gicell-home .compare__before,
.gicell-home .compare__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gicell-home .compare__after { clip-path: inset(0 0 0 50%); }
.gicell-home .compare__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
}
.gicell-home .compare__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.gicell-home .compare__handle .ic { width: 18px; height: 18px; }
.gicell-home .compare__tag {
  position: absolute;
  bottom: 18px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 6px 13px;
  border-radius: 3px;
}
.gicell-home .compare__tag--left { left: 18px; }
.gicell-home .compare__tag--right { right: 18px; }
.gicell-home .compare__copy .btn { margin-top: 30px; }

/* ═══════════ STYLISTS ═══════════ */
.gicell-home .stylists { padding: 30px 0 100px; background: var(--white); }
.gicell-home .stylists__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 56px;
}
/* Una sola instructora: feature horizontal oscuro (foto + copy + highlights + CTA). */
.gicell-home .stylists--solo { padding: 110px 0; background: var(--black); }
.gicell-home .stylists__feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.gicell-home .stylists__feature-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.gicell-home .stylists__feature-photo img,
.gicell-home .stylists__feature-photo .stylist__initial {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}
.gicell-home .stylists__feature-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 46px 26px 22px;
  background: linear-gradient(0deg, rgba(14, 14, 14, 0.9) 0%, rgba(14, 14, 14, 0) 100%);
}
.gicell-home .stylists__feature-name {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.gicell-home .stylists__feature-role {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
  margin-top: 4px;
}
.gicell-home .stylists--solo .eyebrow { color: var(--gold); }
.gicell-home .stylists--solo .section-title { color: var(--white); margin-top: 10px; }
.gicell-home .stylists--solo .section-text { color: rgba(255, 255, 255, 0.72); max-width: 520px; }
.gicell-home .stylists__highlights {
  list-style: none;
  margin: 30px 0 36px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.gicell-home .stylists__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.gicell-home .stylists__highlights .ic {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  stroke: var(--gold);
  stroke-width: 2.4;
}
@media (max-width: 820px) {
  .gicell-home .stylists--solo { padding: 72px 0; }
  .gicell-home .stylists__feature { grid-template-columns: 1fr; gap: 34px; }
  .gicell-home .stylists__feature-photo { max-width: 380px; margin: 0 auto; }
  .gicell-home .stylists__feature-copy { text-align: center; }
  .gicell-home .stylists__feature-copy .eyebrow--left { text-align: center; }
  .gicell-home .stylists--solo .section-text { max-width: none; margin: 0 auto; }
  .gicell-home .stylists__highlights { max-width: 340px; margin-left: auto; margin-right: auto; }
}
.gicell-home .stylist { text-align: center; }
.gicell-home .stylist__photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
}
.gicell-home .stylist__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gicell-home .stylist:hover .stylist__photo img { transform: scale(1.05); }
.gicell-home .stylist__initial {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 66px;
  font-weight: 500;
  color: var(--muted, #9c8f75);
  background: linear-gradient(135deg, #f4f0e7, #e8e1d3);
}
.gicell-home .stylist__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-top: 18px;
}
.gicell-home .stylist__role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ═══════════ BOOKING BAND ═══════════ */
.gicell-home .booking {
  position: relative;
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
}
.gicell-home .booking__content {
  position: relative;
  z-index: 5;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.gicell-home .booking__title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.18;
}
.gicell-home .booking__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 430px;
  margin: 20px auto 30px;
}
.gicell-home .booking__photo {
  position: absolute;
  border-radius: 10px;
  z-index: 2;
}
.gicell-home .booking__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gicell-home .booking__photo--left {
  left: 6%;
  top: 68px;
  width: 190px;
  height: 235px;
}
.gicell-home .booking__photo--right {
  right: 6%;
  bottom: 64px;
  width: 220px;
  height: 270px;
}
.gicell-home .booking__badge {
  position: absolute;
  right: -52px;
  bottom: -46px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gicell-home .booking__badge-ring {
  position: absolute;
  inset: 8px;
  animation: gicell-spin 18s linear infinite;
}
.gicell-home .booking__badge-ring text {
  font-family: var(--font-body);
  font-size: 9.2px;
  letter-spacing: 0.22em;
  fill: rgba(255, 255, 255, 0.75);
}
.gicell-home .booking__badge-star {
  width: 22px;
  height: 22px;
  color: var(--metal-2);
}
@keyframes gicell-spin { to { transform: rotate(360deg); } }

/* ═══════════ TESTIMONIALS ═══════════ */
.gicell-home .testimonials {
  background: var(--paper-2);
  padding: 96px 0;
  overflow: hidden;
}
.gicell-home .testimonials__track {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 56px;
  width: max-content;
  margin-left: 50%;
  transform: translateX(-50%);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.3, 1);
}
.gicell-home .review {
  width: 330px;
  background: var(--white);
  border-radius: 12px;
  padding: 30px 28px;
  flex-shrink: 0;
}
.gicell-home .review__stars {
  color: var(--metal);
  font-size: 14px;
  letter-spacing: 0.2em;
}
.gicell-home .review__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin-top: 14px;
}
.gicell-home .review__text {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 10px;
  min-height: 78px;
}
.gicell-home .review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.gicell-home .review__author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.gicell-home .review__author strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.gicell-home .review__author span {
  font-size: 11px;
  color: var(--muted);
}
.gicell-home .testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}
.gicell-home .testimonials__dots span {
  width: 6px;
  height: 6px;
  padding: 5px;
  background-clip: content-box;
  border-radius: 50%;
  background-color: rgba(14, 14, 14, 0.25);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.gicell-home .testimonials__dots span:hover { transform: scale(1.4); }
.gicell-home .testimonials__dots span.is-active { background-color: var(--black); }

/* ═══════════ INSTAGRAM ═══════════ */
.gicell-home .instagram { padding: 10px 0 90px; background: var(--white); }
.gicell-home .instagram__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.gicell-home .instagram__card {
  background: var(--paper-2);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  aspect-ratio: 1 / 1;
}
.gicell-home .instagram__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.gicell-home .instagram__profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gicell-home .instagram__profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.gicell-home .instagram__profile strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.gicell-home .instagram__profile span { font-size: 11px; color: var(--muted); }
.gicell-home .instagram__card .btn { align-self: flex-start; }
.gicell-home .instagram__tile {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.gicell-home .instagram__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gicell-home .instagram__tile:hover img { transform: scale(1.06); }

/* ═══════════ CONTACT STRIP ═══════════ */
.gicell-home .contact {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 64px 0;
  scroll-margin-top: 96px; /* el chrome sticky no tapa el ancla #contacto */
}
.gicell-home .contact__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.gicell-home .contact__eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--metal);
}
.gicell-home .contact__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  color: var(--ink);
  margin: 10px 0 12px;
}
.gicell-home .contact__sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.gicell-home .contact__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
.gicell-home .contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gicell-home .contact__cta .ic { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.gicell-home .contact__cta--primary { background: var(--gold); color: #14110a; }
.gicell-home .contact__cta--primary:hover { background: #b8965a; }
.gicell-home .contact__cta--ghost { border: 1px solid var(--line); color: var(--ink); }
.gicell-home .contact__cta--ghost:hover { border-color: var(--metal); color: var(--metal); }
.gicell-home .contact__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}
.gicell-home .contact__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.gicell-home .contact__social a:hover { border-color: var(--metal); color: var(--metal); }
.gicell-home .contact__social .ic { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.gicell-home .contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
/* Contacto reducido a 2 columnas (email de soporte + ubicación), centrado. */
.gicell-home .contact__grid.contact__grid--compact {
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
  gap: 40px;
}
.gicell-home .contact__grid--compact .contact__col { border-left: none; }
@media (max-width: 640px) {
  .gicell-home .contact__grid.contact__grid--compact { grid-template-columns: minmax(0, 300px); }
}
.gicell-home .contact__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.gicell-home .contact__col + .contact__col { border-left: 1px solid var(--line); }
.gicell-home .contact__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--metal);
  color: var(--metal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gicell-home .contact__icon .ic { width: 20px; height: 20px; stroke-width: 1.3; }
.gicell-home .contact__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
}
.gicell-home .contact__hint { font-size: 11.5px; color: var(--muted); margin-top: 6px; }
.gicell-home .contact__value { font-size: 13px; color: var(--ink); margin-top: 2px; }

.gicell-home .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.gicell-home .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .gicell-home .booking__photo--left { left: 2%; width: 150px; height: 190px; }
  .gicell-home .booking__photo--right { right: 2%; width: 170px; height: 210px; }
  .gicell-footer .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .gicell-home .hero__title { font-size: 46px; }
  .gicell-home .welcome__grid { grid-template-columns: 1fr; gap: 48px; }
  .gicell-home .welcome__col + .welcome__col { border-left: none; }
  .gicell-home .services__grid,
  .gicell-home .compare__grid { grid-template-columns: 1fr; gap: 48px; }
  .gicell-home .stylists__grid,
  .gicell-home .packages__grid { grid-template-columns: 1fr 1fr; }
  .gicell-home .blog__grid { grid-template-columns: 1fr; }
  .gicell-home .instagram__grid { grid-template-columns: 1fr 1fr; }
  .gicell-home .booking__photo { display: none; }
  .gicell-home .contact__grid { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .gicell-home .contact__col:nth-child(3) { border-left: none; }
}

@media (max-width: 600px) {
  .gicell-home .hero__title { font-size: 38px; }
  .gicell-home .hero__cta { flex-direction: column; align-items: flex-start; }
  .gicell-home .stylists__grid,
  .gicell-home .packages__grid,
  .gicell-home .instagram__grid,
  .gicell-home .contact__grid { grid-template-columns: 1fr; }
  .gicell-home .contact__col + .contact__col { border-left: none; }
  .gicell-footer .footer__grid { grid-template-columns: 1fr; }
  .gicell-home .booking__title { font-size: 38px; }
  .gicell-home .section-title { font-size: 32px; }
}

/* ── Course card (loop de cursos) ── */
.gicell-home .courses { padding: 100px 0; background: var(--white); }
.gicell-home .courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.gicell-home .course-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.gicell-home .course-card:hover { box-shadow: 0 14px 40px rgba(14, 14, 14, 0.08); }
.gicell-home .course-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(135deg, #2a2a2e, #14110d); }
.gicell-home .course-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gicell-home .course-card:hover .course-card__media img { transform: scale(1.05); }
.gicell-home .course-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.gicell-home .course-card__cat {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--metal);
}
.gicell-home .course-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 10px 0 18px;
}
.gicell-home .course-card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gicell-home .course-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.gicell-home .course-card__price .woocommerce-Price-amount { font-family: inherit; }
@media (max-width: 900px) { .gicell-home .courses__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gicell-home .courses__grid { grid-template-columns: 1fr; } }
