/* ============================================================
   27ABRAZOS — abz_home/home.css
   CSS de las secciones de la home, portado sección a sección del
   prototipo (data/design/reference/home.html). Los componentes
   genéricos (tokens, .btn, .section, .section-head, .pill,
   .eyebrow, .marquee, .product-card, [data-drag-track], .fade-up)
   viven en theme.css del tema abrazos27.
   ============================================================ */

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: calc(100vh - 90px);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  position: relative;
}
.hero-text {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4.5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: var(--bg);
}
.hero-text-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.hero-text-top .meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.7;
}
.hero-text-top .meta strong { color: var(--ink); font-weight: 600; }
.hero-text-top .meta-right { text-align: right; }

.hero h1 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: auto 0;
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero h1 .word > span {
  display: inline-block;
  white-space: nowrap; /* "un abrazo" como en el prototipo (un&nbsp;abrazo) */
  transform: translateY(110%);
  animation: abzRevealUp 1.1s var(--ease-1) forwards;
}
.hero h1 .word.delay-1 > span { animation-delay: 0.15s; }
.hero h1 .word.delay-2 > span { animation-delay: 0.3s; }
@keyframes abzRevealUp {
  to { transform: translateY(0); }
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
  letter-spacing: -0.015em;
  padding-right: 0.04em;
}
.hero h1 .punct { color: var(--turquoise-deep); }

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0;
  animation: abzFadeIn 1s var(--ease-1) 0.7s forwards;
}
@keyframes abzFadeIn { to { opacity: 1; } }
.hero-bottom p {
  max-width: 32ch;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}
.hero-bottom p .it { color: var(--ink); }

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: abzHeroZoom 2s var(--ease-1) forwards;
}
@keyframes abzHeroZoom { to { transform: scale(1); } }
.hero-image .frame-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--bg);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.hero-image .caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.hero-image .caption .swatch {
  width: 7px; height: 7px;
  background: var(--turquoise);
  border-radius: 50%;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { aspect-ratio: 4/5; order: -1; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5.5rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ CATEGORÍAS — INK-FILL HOVER ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.4vw, 1.4rem);
}
.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5.4;
  overflow: hidden;
  background: var(--bg-2);
  cursor: none;
  isolation: isolate;
}
@media (max-width: 880px) { .cat-card { cursor: pointer; } }

.cat-card .img-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.cat-card .img-layer img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-1), filter 0.8s var(--ease-1);
}
.cat-card:hover .img-layer img { transform: scale(1.05); }
/* Scrim inferior para legibilidad del texto */
.cat-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.45) 100%);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-1);
}
.cat-card:hover::after { opacity: 0.25; }

/* "Marea de cristal" que sube al hover */
.cat-card .ink-fill {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.cat-card .ink-fill::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -100%;
  height: 100%;
  background: rgba(62, 181, 168, 0.38);
  backdrop-filter: blur(10px) saturate(1.6);
  -webkit-backdrop-filter: blur(10px) saturate(1.6);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  transition: bottom 0.95s var(--ease-1);
}
.cat-card:hover .ink-fill::before { bottom: 0; }

.cat-card .body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--bg);
  z-index: 4;
  transition: transform 0.6s var(--ease-1);
}
.cat-card:hover .body { transform: translateY(-2px); }
.cat-card .body h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bg);
}
.cat-card .body h3 em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.55em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  font-weight: 400;
}
.cat-card .body .arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid; place-items: center;
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-1);
  flex-shrink: 0;
}
.cat-card:hover .body .arrow {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
  transform: rotate(-45deg);
}
.cat-card .body .arrow svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}
.cat-card .badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--bg);
  color: var(--ink);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 5;
  transition: background 0.4s, color 0.4s;
}
.cat-card:hover .badge { background: var(--ink); color: var(--bg); }

.cat-card .count {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--bg);
  z-index: 5;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  transition: color 0.4s;
}
.cat-card:hover .count { color: var(--bg); text-shadow: none; }

@media (max-width: 720px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4/4.5; }
}

/* ============ ABRAZOS DRAG CAROUSEL ============ */
.abrazos {
  background: var(--bg-2);
  border-block: 1px solid var(--hairline);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.abrazos-header {
  padding: clamp(3.5rem, 6vw, 6rem) var(--pad-x) clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.abrazos-header h2 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.abrazos-header h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
}
.abrazos-header .intro p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 1rem;
}
.abrazos-header .intro .pill { margin-bottom: 1.2rem; }

.abrazos .abz-abrazos-swiper {
  padding: 4px var(--pad-x) 8px;
}
.abrazos .abz-abrazos-swiper .swiper-slide {
  width: clamp(220px, 22vw, 280px);
  height: auto;
}
.abrazos .abz-abrazos-swiper .card {
  height: 360px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.5s var(--ease-1), color 0.5s var(--ease-1), transform 0.5s var(--ease-1), border-color 0.5s;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.abrazos .abz-abrazos-swiper .card:hover {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--ink);
  transform: translateY(-6px);
}
.abrazos .abz-abrazos-swiper .card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  transition: color 0.4s;
}
.abrazos .abz-abrazos-swiper .card:hover .num { color: var(--ink); }
.abrazos .abz-abrazos-swiper .card .name {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.abrazos .abz-abrazos-swiper .card .desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-bottom: 1rem;
  transition: color 0.4s;
}
.abrazos .abz-abrazos-swiper .card:hover .desc { color: var(--ink-2); }
.abrazos .abz-abrazos-swiper .card .meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.4s;
  display: flex; justify-content: space-between; align-items: center;
}
.abrazos .abz-abrazos-swiper .card:hover .meta { color: var(--ink); }
.abrazos .abz-abrazos-swiper .card .arrow-mini {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease-1);
}
.abrazos .abz-abrazos-swiper .card:hover .arrow-mini { transform: rotate(-45deg); }
.abrazos .abz-abrazos-swiper .card .arrow-mini svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.abrazos .abz-abrazos-swiper .card.special {
  background: var(--turquoise-paper);
  border-color: var(--turquoise);
}
.abrazos .abz-abrazos-swiper .card.special .num { color: var(--turquoise-deep); }
.abrazos .abz-abrazos-swiper .card.special::before {
  content: "✦";
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  color: var(--turquoise);
  font-size: 12px;
}

/* ====== Controles Swiper (prev/next + progreso) ====== */
.abz-swiper-ctrl {
  margin-top: 1.5rem;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.abz-swiper-prev,
.abz-swiper-next {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.3s var(--ease-1), color 0.3s, border-color 0.3s, opacity 0.3s;
}
.abz-swiper-prev:hover,
.abz-swiper-next:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.abz-swiper-prev.swiper-button-disabled,
.abz-swiper-next.swiper-button-disabled { opacity: 0.3; cursor: default; }
.abz-swiper-prev.swiper-button-disabled:hover,
.abz-swiper-next.swiper-button-disabled:hover { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.abz-swiper-progress {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  position: relative;
  overflow: hidden;
}
.abz-swiper-progress-bar {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--turquoise-deep);
  width: 30%;
  transition: width 0.4s var(--ease-1), transform 0.4s var(--ease-1);
  transform-origin: left;
}

@media (max-width: 760px) {
  .abrazos-header { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============ MANIFIESTO ============ */
.manifesto {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
  overflow: hidden;
}
.manifesto .text {
  padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--hairline);
}
.manifesto .eyebrow { margin-bottom: 1.5rem; }
.manifesto blockquote {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.manifesto blockquote em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.manifesto .body-text {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 56ch;
}
.manifesto .body-text p { margin-bottom: 1rem; }
.manifesto .body-text .it { color: var(--turquoise-deep); }
.manifesto .signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--ink-soft);
}
.manifesto .signature .stamp {
  font-weight: 700;
  font-size: 24px;
  color: var(--turquoise-deep);
  letter-spacing: 0.05em;
  line-height: 1;
}
.manifesto .image {
  position: relative;
  background: var(--bg-2);
  min-height: 480px;
}
.manifesto .image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.manifesto .image .floating-card {
  position: absolute;
  bottom: 2rem; left: -3rem;
  background: var(--bg);
  padding: 1.4rem 1.6rem;
  max-width: 280px;
  box-shadow: 0 30px 60px -20px rgba(15, 15, 15, 0.18);
  z-index: 2;
  border: 1px solid var(--hairline);
}
.manifesto .image .floating-card .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.manifesto .image .floating-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
}

@media (max-width: 880px) {
  .manifesto { grid-template-columns: 1fr; }
  .manifesto .text { border-right: none; border-bottom: 1px solid var(--hairline); }
  .manifesto .image { aspect-ratio: 4/5; min-height: 0; }
  .manifesto .image .floating-card { left: 1rem; right: 1rem; max-width: none; }
}

/* ============ LO MÁS ABRAZADO (Swiper de .product-card) ============ */
.abz-featured-swiper {
  padding: 4px var(--pad-x) 8px;
}
.abz-featured-swiper .swiper-slide {
  width: clamp(240px, 23vw, 340px);
  height: auto;
}
.abz-featured-swiper .swiper-slide > .product-card,
.abz-featured-swiper .swiper-slide > .js-product { height: 100%; }

/* ============ PIEDRA ESCONDIDA (spread editorial) ============ */
.spread {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) var(--pad-x);
  border-block: 1px solid var(--ink);
}
.spread::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(62, 181, 168, 0.18), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(62, 181, 168, 0.08), transparent 60%);
  pointer-events: none;
}
.spread .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.spread .visual {
  position: relative;
  aspect-ratio: 4/5;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.spread .visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.spread .visual .marker {
  position: absolute;
  z-index: 2;
}
.spread .visual .marker .dot {
  width: 14px; height: 14px;
  background: var(--turquoise);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(62, 181, 168, 0.6);
  animation: abzPulse 2.4s var(--ease-2) infinite;
}
@keyframes abzPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62, 181, 168, 0.6); }
  50%      { box-shadow: 0 0 0 16px rgba(62, 181, 168, 0); }
}
.spread .visual .marker .label {
  position: absolute;
  top: 50%; left: calc(100% + 12px);
  transform: translateY(-50%);
  background: var(--bg);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.spread .visual .marker.m1 { top: 36%; left: 38%; }
.spread .visual .marker.m2 { top: 65%; left: 50%; }
.spread .visual .marker.m2 .label { color: var(--ink); background: var(--turquoise-light); }

.spread .text .eyebrow { color: var(--turquoise-light); margin-bottom: 1.5rem; }
.spread .text h2 {
  font-family: var(--sans);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  color: var(--bg);
}
.spread .text h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--turquoise-light);
  font-weight: 400;
}
.spread .text p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 50ch;
  color: rgba(250, 250, 247, 0.78);
  margin-bottom: 1rem;
}
.spread .text p .it { color: var(--turquoise-light); font-style: italic; font-family: var(--serif); }
.spread .text .red-detail {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 250, 247, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--turquoise-light);
}
.spread .text .red-detail::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--turquoise);
}
.spread .text .btn {
  margin-top: 2.5rem;
  background: var(--bg);
  color: var(--ink);
}
.spread .text .btn::before { background: var(--turquoise); }
.spread .text .btn:hover { color: var(--ink); }

@media (max-width: 880px) {
  .spread .inner { grid-template-columns: 1fr; }
}

/* ============ HOLD-TO-HUG ============ */
.hold-section {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 9rem) var(--pad-x);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hold-section::before, .hold-section::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--turquoise-paper);
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
}
.hold-section::before { top: -200px; left: -200px; }
.hold-section::after { bottom: -200px; right: -200px; }
.hold-section > * { position: relative; z-index: 1; }
.hold-section .pill { margin-bottom: 1.5rem; }
.hold-section h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}
.hold-section h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
}
.hold-section p {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

.hold-btn {
  position: relative;
  width: 220px; height: 220px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--ink);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s var(--ease-1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  display: block;
}
.hold-btn:hover { transform: scale(1.02); }
.hold-btn:active { transform: scale(0.98); }
.hold-btn .ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed var(--hairline-strong);
  pointer-events: none;
}
.hold-btn .progress {
  position: absolute;
  inset: 0;
  background: var(--turquoise);
  clip-path: polygon(50% 50%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  opacity: 0;
  transition: opacity 0.2s, clip-path 0.05s linear;
}
.hold-btn.holding .progress { opacity: 1; }
.hold-btn.complete .progress { opacity: 1; clip-path: circle(120% at 50% 50%); transition: clip-path 0.6s var(--ease-1); }
.hold-btn .label {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  z-index: 2;
  transition: color 0.4s, transform 0.4s;
  text-align: center;
  line-height: 1.2;
  padding: 0 2rem;
}
.hold-btn .label .small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 6px;
}
.hold-btn.holding .label { color: var(--ink); }
.hold-btn.complete .label { color: var(--bg); }
.hold-btn.complete .label .small { color: rgba(250, 250, 247, 0.85); }

.hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.heart {
  position: fixed;
  width: 14px; height: 14px;
  background: var(--turquoise);
  transform-origin: center;
  border-radius: 0;
  opacity: 0;
  z-index: 9999;
  pointer-events: none;
  clip-path: path('M 7 12 C 4 9, 0 7, 0 4 C 0 1.5, 1.5 0, 3.5 0 C 5 0, 6 1, 7 2.5 C 8 1, 9 0, 10.5 0 C 12.5 0, 14 1.5, 14 4 C 14 7, 10 9, 7 12 Z');
}
@keyframes abzHeartFly {
  0% { opacity: 0; transform: translate(0, 0) scale(0.4) rotate(0deg); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(1.3) rotate(var(--rot)); }
}
.hold-status {
  margin-top: 2rem;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  min-height: 24px;
  transition: color 0.4s;
}
.hold-status.done { color: var(--turquoise-deep); font-weight: 500; }
.hold-status .it { font-family: var(--serif); font-style: italic; }

/* ============ PERSONALIZA ============ */
.personalize {
  background: var(--turquoise-paper);
  padding: clamp(4rem, 7vw, 7rem) var(--pad-x);
  text-align: center;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.personalize .number {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 0.8;
  color: var(--turquoise);
  margin-bottom: -0.1em;
  opacity: 0.55;
  font-weight: 400;
}
.personalize .pill { margin-bottom: 1.2rem; background: var(--bg); border-color: var(--turquoise); }
.personalize .pill .dot { background: var(--turquoise-deep); }
.personalize h2 {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}
.personalize h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
}
.personalize p {
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
}
.personalize-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 2.6rem;
  margin: 2.5rem 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--ink-soft);
}
.personalize-features div { display: flex; align-items: center; gap: 10px; }
.personalize-features .dot {
  width: 5px; height: 5px;
  background: var(--turquoise-deep);
  border-radius: 50%;
}

/* ============ INSTAGRAM ============ */
.insta { padding: clamp(3rem, 6vw, 6rem) var(--pad-x); }
.insta-head { text-align: center; margin-bottom: 3rem; }
.insta-head .eyebrow { margin-bottom: 1rem; }
.insta-head h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}
.insta-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 400;
}
.insta-head a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.insta-head a:hover { color: var(--turquoise-deep); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.insta-grid .tile {
  aspect-ratio: 1;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
  display: block;
  cursor: none;
}
@media (max-width: 880px) { .insta-grid .tile { cursor: pointer; } }
.insta-grid .tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-1);
}
.insta-grid .tile:hover img { transform: scale(1.08); }
.insta-grid .tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0);
  transition: background 0.4s;
}
.insta-grid .tile:hover::after { background: rgba(62, 181, 168, 0.25); }
.insta-grid .tile .ig-icon {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.insta-grid .tile:hover .ig-icon { opacity: 1; }
.insta-grid .tile .ig-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
@media (max-width: 880px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
