/* ═══════════════════════════════════════════════
   GNZ Invitaciones — Plan Exclusiva
   ═══════════════════════════════════════════════ */

/* ── Cover más grande y dramático ── */
.cover-names {
  font-size: clamp(4.2rem, 14vw, 7.5rem) !important;
}

/* Contador en portada */
.cover-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,164,92,.2);
  border-radius: 100px;
  padding: 10px 24px;
}
.cvcd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}
.cvcd-num {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.01em;
}
.cvcd-label {
  font-family: var(--font-b);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}
.cvcd-sep {
  font-family: var(--font-d);
  font-size: 1.4rem;
  color: rgba(201,164,92,.4);
  line-height: 1;
  padding-bottom: 10px;
  align-self: flex-start;
  margin-top: 6px;
}

/* ════ ITINERARIO ════ */
.itinerary {
  background: var(--bg-mid, #1a1426);
  padding: 100px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.itinerary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,164,92,.06) 0%, transparent 60%);
  pointer-events: none;
}

.itin-track {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
  margin: 52px auto 0;
  padding: 0 32px;
  position: relative;
  gap: 0;
}

/* Línea vertical */
.itin-track::before {
  content: '';
  position: absolute;
  left: 64px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-deep) 10%, var(--gold) 50%, var(--gold-deep) 90%, transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.8s cubic-bezier(.4,0,.2,1);
}
.itinerary.itin-on .itin-track::before { transform: scaleY(1); }

/* Cada elemento */
.itin-item {
  display: grid;
  grid-template-columns: 72px 32px 1fr;
  align-items: center;
  gap: 0 16px;
  padding: 18px 0;
  width: 100%;
}

.itin-time {
  font-family: var(--font-b);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .6s ease, transform .6s ease;
}
.itin-node {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-deep);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,164,92,.12);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  justify-self: center;
  transform: scale(0);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.itin-node-last {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,164,92,.18), 0 0 16px rgba(201,164,92,.2);
}
.itin-content {
  text-align: left;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.itin-content h3 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 3px;
  line-height: 1.2;
}
.itin-content p {
  font-size: .78rem;
  color: var(--text-dim);
}

/* Reveal por ítem con stagger */
.itinerary.itin-on .itin-item:nth-child(1) .itin-node,
.itinerary.itin-on .itin-item:nth-child(1) .itin-time,
.itinerary.itin-on .itin-item:nth-child(1) .itin-content { transition-delay: .3s; }
.itinerary.itin-on .itin-item:nth-child(2) .itin-node,
.itinerary.itin-on .itin-item:nth-child(2) .itin-time,
.itinerary.itin-on .itin-item:nth-child(2) .itin-content { transition-delay: .6s; }
.itinerary.itin-on .itin-item:nth-child(3) .itin-node,
.itinerary.itin-on .itin-item:nth-child(3) .itin-time,
.itinerary.itin-on .itin-item:nth-child(3) .itin-content { transition-delay: .9s; }
.itinerary.itin-on .itin-item:nth-child(4) .itin-node,
.itinerary.itin-on .itin-item:nth-child(4) .itin-time,
.itinerary.itin-on .itin-item:nth-child(4) .itin-content { transition-delay: 1.2s; }
.itinerary.itin-on .itin-item:nth-child(5) .itin-node,
.itinerary.itin-on .itin-item:nth-child(5) .itin-time,
.itinerary.itin-on .itin-item:nth-child(5) .itin-content { transition-delay: 1.5s; }
.itinerary.itin-on .itin-item:nth-child(6) .itin-node,
.itinerary.itin-on .itin-item:nth-child(6) .itin-time,
.itinerary.itin-on .itin-item:nth-child(6) .itin-content { transition-delay: 1.8s; }

.itinerary.itin-on .itin-node { transform: scale(1); }
.itinerary.itin-on .itin-time { opacity: 1; transform: translateX(0); }
.itinerary.itin-on .itin-content { opacity: 1; transform: translateX(0); }

/* ════ DRESSCODE ════ */
.dresscode {
  background: var(--paper, #f5f1e8);
  padding: 100px 0;
  text-align: center;
}
.dc-note {
  font-size: .9rem;
  color: var(--ink-dim, #6c6173);
  font-style: italic;
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Paleta de colores */
.dc-palette {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.dc-swatch {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c);
  cursor: default;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: transform .3s ease, box-shadow .3s;
}
.dc-swatch:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.dc-swatch span {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-dim, #6c6173);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
}
.dc-swatch:hover span { opacity: 1; }

/* Cards vestimenta */
.dc-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.dc-card {
  background: var(--cream, #faf8f4);
  border: 1px solid rgba(201,164,92,.18);
  border-radius: 18px;
  padding: 32px 28px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .35s ease, box-shadow .35s;
}
.dc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(201,164,92,.1);
}
.dc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,164,92,.1);
  border: 1px solid rgba(201,164,92,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep, #a7822f);
}
.dc-title {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-text, #1d1426);
}
.dc-desc {
  font-size: .78rem;
  color: var(--ink-dim, #6c6173);
}

/* Countdown: menos espacio después del itinerario */
.itinerary + .countdown-section {
  padding-top: 60px;
}

/* ════ GALERÍA EXCLUSIVA — colash 10 fotos ════
   Layout diagonal simétrico:
   [A tall][B    ][C    ]
   [A    ][D    ][E    ]
   [F    ][G    ][H tall]
   [I    ][J    ][H    ]
══════════════════════════════════════════════ */

.ex-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 250px);
  gap: 6px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* Posicionamiento exacto */
.ex-a { grid-column: 1; grid-row: 1 / 3; }   /* grande izq, filas 1-2 */
.ex-b { grid-column: 2; grid-row: 1; }
.ex-c { grid-column: 3; grid-row: 1; }
.ex-d { grid-column: 2; grid-row: 2; }
.ex-e { grid-column: 3; grid-row: 2; }
.ex-f { grid-column: 1; grid-row: 3; }
.ex-g { grid-column: 2; grid-row: 3; }
.ex-h { grid-column: 3; grid-row: 3 / 5; }   /* grande der, filas 3-4 */
.ex-i { grid-column: 1; grid-row: 4; }
.ex-j { grid-column: 2; grid-row: 4; }

/* Estado inicial: cada foto tapada desde su dirección natural */
.ex-a { clip-path: inset(0 100% 0 0) !important; }   /* A entra desde derecha */
.ex-b { clip-path: inset(100% 0 0 0) !important; }   /* B desde abajo */
.ex-c { clip-path: inset(0 0 0 100%) !important; }   /* C desde izquierda */
.ex-d { clip-path: inset(0 0 100% 0) !important; }   /* D desde arriba */
.ex-e { clip-path: inset(0 100% 0 0) !important; }   /* E desde derecha */
.ex-f { clip-path: inset(0 100% 0 0) !important; }   /* F desde derecha */
.ex-g { clip-path: inset(0 0 100% 0) !important; }   /* G desde arriba */
.ex-h { clip-path: inset(0 0 0 100%) !important; }   /* H entra desde izquierda */
.ex-i { clip-path: inset(100% 0 0 0) !important; }   /* I desde abajo */
.ex-j { clip-path: inset(0 0 100% 0) !important; }   /* J desde arriba */

/* Reveal */
.gallery.gallery-on .ex-a,
.gallery.gallery-on .ex-b,
.gallery.gallery-on .ex-c,
.gallery.gallery-on .ex-d,
.gallery.gallery-on .ex-e,
.gallery.gallery-on .ex-f,
.gallery.gallery-on .ex-g,
.gallery.gallery-on .ex-h,
.gallery.gallery-on .ex-i,
.gallery.gallery-on .ex-j { clip-path: inset(0 0 0 0) !important; }

/* Stagger en olas — los grandes primero, luego los pequeños alrededor */
.gallery.gallery-on .ex-a { transition-delay: .05s; }  /* grande izq */
.gallery.gallery-on .ex-h { transition-delay: .12s; }  /* grande der */
.gallery.gallery-on .ex-b { transition-delay: .28s; }
.gallery.gallery-on .ex-c { transition-delay: .36s; }
.gallery.gallery-on .ex-d { transition-delay: .44s; }
.gallery.gallery-on .ex-e { transition-delay: .52s; }
.gallery.gallery-on .ex-f { transition-delay: .36s; }
.gallery.gallery-on .ex-g { transition-delay: .44s; }
.gallery.gallery-on .ex-i { transition-delay: .60s; }
.gallery.gallery-on .ex-j { transition-delay: .68s; }

/* Hover exclusiva */
.ex-gallery-grid .gallery-item:hover {
  box-shadow: 0 0 0 2px var(--gold), 0 0 24px rgba(201,164,92,.3), 0 28px 56px rgba(0,0,0,.6);
  transform: scale(1.022);
  z-index: 5;
}

/* Móvil: colash en 2 columnas con pilares y fotos a ancho completo */
@media (max-width: 620px) {
  .ex-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 155px 155px 200px 155px 155px 200px 155px;
    grid-auto-rows: 155px;
    padding: 0 14px;
    gap: 5px;
  }

  /* Pilar izquierdo arriba — filas 1-2 */
  .ex-a { grid-column: 1 !important; grid-row: 1 / 3 !important; clip-path: inset(0 100% 0 0) !important; }
  .ex-b { grid-column: 2 !important; grid-row: 1 !important;     clip-path: inset(100% 0 0 0) !important; }
  .ex-c { grid-column: 2 !important; grid-row: 2 !important;     clip-path: inset(0 0 100% 0) !important; }

  /* Foto ancho completo — fila 3 */
  .ex-d { grid-column: 1 / 3 !important; grid-row: 3 !important; clip-path: inset(0 100% 0 0) !important; }

  /* Pilar derecho abajo — filas 4-5 */
  .ex-e { grid-column: 1 !important; grid-row: 4 !important;     clip-path: inset(100% 0 0 0) !important; }
  .ex-f { grid-column: 2 !important; grid-row: 4 / 6 !important; clip-path: inset(0 0 0 100%) !important; }
  .ex-g { grid-column: 1 !important; grid-row: 5 !important;     clip-path: inset(0 0 100% 0) !important; }

  /* Foto ancho completo — fila 6 */
  .ex-h { grid-column: 1 / 3 !important; grid-row: 6 !important; clip-path: inset(0 100% 0 0) !important; }

  /* Dos iguales — fila 7 */
  .ex-i { grid-column: 1 !important; grid-row: 7 !important;     clip-path: inset(100% 0 0 0) !important; }
  .ex-j { grid-column: 2 !important; grid-row: 7 !important;     clip-path: inset(0 0 100% 0) !important; }
}

/* ════ PASE DE ENTRADA CON QR ════ */
.entry-pass-wrap {
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.entry-pass-wrap[hidden] { display: none; }

.pass-intro {
  font-size: .82rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.8;
}
.pass-reset-btn {
  background: none;
  border: none;
  color: rgba(201,164,92,.6);
  font-size: .75rem;
  font-family: var(--font-b);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  margin-top: 4px;
  display: block;
  margin: 4px auto 0;
  transition: color .2s;
}
.pass-reset-btn:hover { color: var(--gold); }

/* Tarjeta del pase */
.entry-pass {
  width: 100%;
  background: linear-gradient(160deg, #fdf8f0 0%, #f2e8d5 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0,0,0,.5),
    0 4px 16px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.8);
  position: relative;
}

/* Cabecera */
.pass-head {
  background: linear-gradient(135deg, #1a0d26 0%, #2c1f36 100%);
  padding: 24px 28px 20px;
  text-align: center;
  position: relative;
}
.pass-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,92,.4), transparent);
}
.pass-brand {
  font-family: var(--font-b);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(201,164,92,.6);
  margin-bottom: 8px;
}
.pass-type {
  font-family: var(--font-b);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pass-event {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
}
.pass-date-venue {
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
  margin-bottom: 2px;
}
.pass-venue-name {
  font-size: .68rem;
  color: rgba(201,164,92,.7);
  letter-spacing: .06em;
}

/* Separador estilo boleto */
.pass-tear {
  display: flex;
  align-items: center;
  position: relative;
  height: 0;
}
.pass-notch {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg-deep, #0d0a12);
  top: -10px;
  z-index: 2;
}
.pass-notch-l { left: -10px; }
.pass-notch-r { right: -10px; }
.pass-dash-line {
  width: 100%;
  border-top: 1.5px dashed rgba(201,164,92,.25);
  margin: 0 18px;
}

/* QR */
.pass-qr-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 28px 16px;
  background: linear-gradient(180deg, #f5edd8 0%, #f0e5cc 100%);
}
.pass-qr-img {
  width: 180px; height: 180px;
  border-radius: 10px;
  border: 3px solid rgba(201,164,92,.3);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  display: block;
  background: #f5edd8;
}

/* Datos del invitado */
.pass-guest-info {
  padding: 16px 28px 12px;
  background: #f0e5cc;
  text-align: center;
  border-top: 1px solid rgba(201,164,92,.15);
}
.pass-guest-label {
  font-family: var(--font-b);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(80,50,10,.5);
  margin-bottom: 4px;
}
.pass-guest-name {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 600;
  color: rgba(40,20,5,.85);
  line-height: 1.2;
}
.pass-guest-pax {
  font-size: .72rem;
  color: rgba(80,50,10,.55);
  margin-top: 2px;
  letter-spacing: .06em;
}

/* Pie del pase */
.pass-foot {
  background: linear-gradient(135deg, #1a0d26 0%, #2c1f36 100%);
  padding: 14px 28px;
  text-align: center;
}
.pass-id {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 4px;
}
.pass-scan-hint {
  font-size: .58rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Botones de acción */
.pass-actions-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.pass-action-save, .pass-action-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-family: var(--font-b);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .3s ease, box-shadow .3s;
}
.pass-action-save {
  background: rgba(201,164,92,.14);
  border: 1px solid rgba(201,164,92,.3);
  color: var(--gold-soft);
}
.pass-action-save:hover { transform: translateY(-2px); }
.pass-action-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.25);
}
.pass-action-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }

/* Decline state */
.pass-decline {
  text-align: center;
  padding: 24px;
}
.pass-decline[hidden] { display: none; }
.pass-decline-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.pass-decline h3 {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 8px;
}
.pass-decline p { font-size: .88rem; color: var(--text-dim); line-height: 1.6; }

/* ════ RSVP FORM EXCLUSIVA ════ */
.rsvp-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rsvp-field { display: flex; flex-direction: column; gap: 8px; }
.rsvp-label {
  font-family: var(--font-b);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.rsvp-optional { font-weight: 400; letter-spacing: 0; text-transform: none; opacity: .6; }

.rsvp-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: .92rem;
  color: var(--text-light);
  outline: none;
  transition: border-color .25s, background .25s;
  -webkit-appearance: none;
}
.rsvp-input::placeholder { color: rgba(255,255,255,.28); }
.rsvp-input:focus {
  border-color: rgba(201,164,92,.5);
  background: rgba(255,255,255,.09);
}
.rsvp-input.error { border-color: rgba(239,68,68,.5); }
.rsvp-error {
  font-size: .72rem;
  color: rgba(239,68,68,.85);
  display: none;
}
.rsvp-field.has-error .rsvp-error { display: block; }
.rsvp-field.has-error .rsvp-input { border-color: rgba(239,68,68,.5); }

.rsvp-textarea { resize: vertical; min-height: 88px; }

/* Checkboxes de dieta */
.rsvp-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rsvp-check {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
.rsvp-check input[type="checkbox"] { display: none; }
.rsvp-check span {
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255,255,255,.04);
  transition: all .2s;
  user-select: none;
}
.rsvp-check input:checked + span {
  background: rgba(201,164,92,.16);
  border-color: rgba(201,164,92,.4);
  color: var(--gold-soft);
}
.rsvp-check:hover span { border-color: rgba(255,255,255,.25); color: var(--text-light); }

.rsvp-actions { display: flex; flex-direction: column; gap: 12px; }

/* Estado de éxito */
.rsvp-success {
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
}
.rsvp-success[hidden] { display: none; }
.rsvp-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #4ade80;
  margin: 0 auto 20px;
  animation: successPop .5s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.rsvp-success h3 {
  font-family: var(--font-d);
  font-size: 1.6rem; font-style: italic;
  color: var(--text-light); margin-bottom: 8px;
}
.rsvp-success p { font-size: .88rem; color: var(--text-dim); }

/* ════ FOOTER GNZ CTA ════ */
.footer-gnz {
  margin-top: 28px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.footer-gnz-divider {
  display: flex; align-items: center; gap: 10px; width: 160px;
}
.footer-gnz-divider span { flex:1; height:1px; background: rgba(201,164,92,.2); }
.footer-gnz-label {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-faint);
}
.footer-gnz-btn {
  display: inline-flex; align-items: center;
  transition: opacity .25s, transform .25s;
}
.footer-gnz-btn:hover { opacity: .8; transform: scale(1.04); }
.footer-gnz-logo { height: 32px; width: auto; object-fit: contain; border-radius: 8px; }
.footer-gnz-wordmark {
  font-family: var(--font-d); font-style: italic;
  font-size: 1.2rem; font-weight: 600;
  color: var(--gold-soft);
}
.footer-gnz-sub {
  font-size: .68rem; color: var(--text-faint);
  letter-spacing: .08em;
}

/* ── Responsive ── */
@media (max-width: 540px) {
  .itin-track { padding: 0 16px; }
  .itin-track::before { left: 52px; }
  .itin-item { grid-template-columns: 56px 28px 1fr; gap: 0 10px; }
  .dc-swatch { width: 52px; height: 52px; }
}
