/* ── Fold 02 — Caminhos ── */
.fold-two {
  position: relative;
  padding-top: 2.5rem;
}

.fold-two-sep {
  height: 1px;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12) 20%, rgba(180, 156, 120, 0.52) 50%, rgba(15, 23, 42, 0.12) 80%, transparent);
}

/* Marquee */
.fold-marquee {
  overflow: hidden;
  margin: 0 -1.5rem 2.5rem;
  padding: 0.85rem 0;
  border-block: 1px solid rgba(138, 106, 67, 0.08);
  background: rgba(255, 252, 246, 0.32);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
@media (min-width: 640px) {
  .fold-marquee { margin-inline: -2.5rem; }
}
@media (min-width: 1024px) {
  .fold-marquee { margin-inline: -3.5rem; }
}

.fold-marquee-track {
  display: flex;
  width: max-content;
  animation: fold-marquee-right 24s linear infinite;
  will-change: transform;
}

.fold-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #64748b;
  white-space: nowrap;
}
.fold-marquee-item em {
  font-style: normal;
  color: #8a6a43;
}

@keyframes fold-marquee-right {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.fold-two-head {
  max-width: 34rem;
  margin-bottom: 2.5rem;
}

.fold-two-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(138, 106, 67, 0.12);
  background: rgba(255, 252, 246, 0.58);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6f5a3f;
  margin-bottom: 1rem;
}

.fold-two-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #0f172a;
}
.fold-two-title em {
  font-style: italic;
  font-weight: 500;
  color: #334155;
}

.fold-two-lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #64748b;
}

/* Bento grid */
.fold-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
@media (min-width: 768px) {
  .fold-bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 1rem;
  }
}

.fold-card {
  --rx: 0deg;
  --ry: 0deg;
  --ix: 0;
  --iy: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(138, 106, 67, 0.1);
  background: rgba(255, 252, 246, 0.62);
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.55s var(--ease-fluid), box-shadow 0.55s var(--ease-soft), transform 0.55s var(--ease-fluid);
}
@media (min-width: 768px) {
  .fold-card--featured {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 100%;
  }
  .fold-card:not(.fold-card--featured):nth-of-type(2) { grid-column: span 5; }
  .fold-card:not(.fold-card--featured):nth-of-type(3) { grid-column: span 5; }
}

.fold-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(180, 156, 120, 0.14), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.fold-card:hover {
  border-color: rgba(138, 106, 67, 0.32);
  box-shadow: 0 20px 48px -24px rgba(138, 106, 67, 0.34);
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-3px);
}
.fold-card:hover::before { opacity: 1; }

.fold-card-bracket {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: rgba(15, 23, 42, 0.15);
  border-style: solid;
  transition: border-color 0.45s ease;
  z-index: 2;
  pointer-events: none;
}
.fold-card-bracket--tl { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.fold-card-bracket--tr { top: 10px; right: 10px; border-width: 1px 1px 0 0; }
.fold-card-bracket--bl { bottom: 10px; left: 10px; border-width: 0 0 1px 1px; }
.fold-card-bracket--br { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }
.fold-card:hover .fold-card-bracket { border-color: rgba(138, 106, 67, 0.62); }

.fold-card-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(138, 106, 67, 0.1);
  background: rgba(255, 252, 246, 0.72);
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 1rem;
  transition: color 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}
.fold-card:hover .fold-card-num {
  color: #8a6a43;
  border-color: rgba(138, 106, 67, 0.26);
  background: rgba(180, 156, 120, 0.11);
}

.fold-card-visual {
  position: relative;
  z-index: 1;
  border-radius: 0.85rem;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
}
.fold-card--featured .fold-card-visual {
  flex: 1;
  aspect-ratio: auto;
  min-height: 180px;
  margin-bottom: 1.15rem;
}
@media (min-width: 768px) {
  .fold-card--featured .fold-card-visual { min-height: 220px; }
}

.fold-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(calc(var(--ix) * 1px), calc(var(--iy) * 1px), 0) scale(1);
  transition: transform 1.1s var(--ease-fluid), filter 1s var(--ease-soft);
  filter: saturate(0.92) contrast(1.02);
}
.fold-card:hover .fold-card-visual img {
  transform: translate3d(calc(var(--ix) * 1px), calc(var(--iy) * 1px), 0) scale(1.055);
  filter: saturate(1) contrast(1);
}

.fold-card-visual--horizontes img {
  object-position: center 58%;
  filter: saturate(1.05) contrast(1.02) brightness(0.98);
}
.fold-card:hover .fold-card-visual--horizontes img {
  filter: saturate(1.12) contrast(1.04) brightness(1);
}

.fold-card-visual--pensadores {
  aspect-ratio: 16 / 9;
}
.fold-card-visual--pensadores img {
  object-position: center 42%;
  filter: contrast(1.06) brightness(0.98);
}
.fold-card:hover .fold-card-visual--pensadores img {
  filter: contrast(1.08) brightness(1);
}

.fold-card-visual--essencias img {
  object-position: center 34%;
  filter: saturate(0.96) contrast(1.03) brightness(1.01);
}
.fold-card:hover .fold-card-visual--essencias img {
  filter: saturate(1.04) contrast(1.05) brightness(1.03);
}

.fold-card-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.35) 0%, transparent 55%);
  opacity: 0.7;
  transition: opacity 0.6s ease;
}
.fold-card:hover .fold-card-visual-overlay { opacity: 0.85; }

.fold-card-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.fold-card-meta {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.fold-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.2;
  transition: color 0.4s ease;
}
.fold-card--featured .fold-card-title { font-size: 1.35rem; }
.fold-card:hover .fold-card-title { color: #8a6a43; }

.fold-card-desc {
  margin-top: 0.45rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.fold-card-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  width: fit-content;
  min-height: 2.55rem;
  margin-top: 1rem;
  padding: 0.4rem 0.4rem 0.4rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  box-sizing: border-box;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  transition:
    color 0.5s ease,
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.55s var(--ease-fluid),
    transform 0.55s var(--ease-fluid);
}

.fold-card-arrow > span,
.fold-card-arrow > i {
  position: relative;
  z-index: 1;
}

.fold-card-arrow > span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(0.5px);
}

.fold-card-arrow > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.55s var(--ease-fluid), color 0.45s ease, background 0.45s ease;
}

.fold-card--horizontes .fold-card-arrow {
  color: #fffaf1;
  background: linear-gradient(135deg, #8a6a43, #725736);
  box-shadow: 0 14px 28px -20px rgba(87, 66, 42, 0.72);
}

.fold-card--horizontes .fold-card-arrow > i {
  color: #725736;
  background: rgba(255,250,241,0.9);
  font-size: 0.95rem;
  transform: translateY(-0.5px);
}

.fold-card--horizontes:hover .fold-card-arrow {
  background: linear-gradient(135deg, #7c603e, #5f472b);
  box-shadow: 0 18px 34px -18px rgba(87, 66, 42, 0.8);
  transform: translateY(-2px) translateZ(18px);
}

.fold-card--horizontes:hover .fold-card-arrow > i {
  transform: translateY(-0.5px) translateX(3px);
}

.fold-card--pensadores .fold-card-arrow {
  color: #57422a;
  border-color: rgba(138,106,67,0.24);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.52), rgba(255,252,246,0.24));
}

.fold-card--pensadores .fold-card-arrow > i {
  color: #fffaf1;
  background: #8a6a43;
}

.fold-card--pensadores:hover .fold-card-arrow {
  color: #fffaf1;
  border-color: #57422a;
  background: #57422a;
  transform: translateY(-2px) translateZ(18px);
}

.fold-card--pensadores:hover .fold-card-arrow > i {
  color: #57422a;
  background: #fffaf1;
  transform: rotate(45deg);
}

.fold-card--essencias .fold-card-arrow {
  color: #fffaf1;
  background: linear-gradient(135deg, #8a6a43, #725736);
  box-shadow: 0 14px 28px -20px rgba(87, 66, 42, 0.72);
  border-color: transparent;
}

.fold-card--essencias .fold-card-arrow > i {
  color: #725736;
  background: rgba(255,250,241,0.9);
  font-size: 0.95rem;
  transform: translateY(-0.5px);
}

.fold-card--essencias:hover .fold-card-arrow {
  background: linear-gradient(135deg, #7c603e, #5f472b);
  box-shadow: 0 18px 34px -18px rgba(87, 66, 42, 0.8);
  transform: translateY(-2px) translateZ(18px);
}

.fold-card--essencias:hover .fold-card-arrow > i {
  transform: translateY(-0.5px) translateX(3px);
}


/* Two-door immersive editorial composition */
.fold-two-head--duo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(19rem, 0.62fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 5.5rem);
  max-width: none;
  margin-bottom: clamp(2.6rem, 6vw, 4.5rem);
  padding: 0 0 1.8rem;
}

.fold-two-head--duo::before {
  content: '02';
  position: absolute;
  right: 0;
  bottom: -0.2em;
  color: rgba(138,106,67,0.045);
  font-size: clamp(6rem, 13vw, 11rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.fold-two-head--duo::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(138,106,67,0.35), rgba(138,106,67,0.07) 62%, transparent);
}

.fold-two-head--duo .fold-two-badge,
.fold-two-head--duo .fold-two-title {
  grid-column: 1;
}

.fold-two-head--duo .fold-two-badge {
  width: fit-content;
  margin-bottom: -1.2rem;
}

.fold-two-head--duo .fold-two-title {
  max-width: 10ch;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.91;
}

.fold-two-head--duo .fold-two-lead {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 29rem;
  margin: 0 0 0.3rem auto;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(138,106,67,0.22);
}

.fold-bento--duo {
  position: relative;
  isolation: isolate;
}

@media (min-width: 768px) {
  .fold-bento--duo {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-auto-rows: auto;
    align-items: stretch;
    gap: clamp(1.1rem, 2.6vw, 1.8rem);
  }

  .fold-bento--duo::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    bottom: 2.2rem;
    left: 50%;
    width: 1px;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(138,106,67,0.2) 24%, rgba(138,106,67,0.2) 76%, transparent);
  }

  .fold-bento--duo::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border: 1px solid rgba(138,106,67,0.18);
    border-radius: 50%;
    color: #8a6a43;
    background: #f4ecdf;
    font-size: 0.65rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 7px rgba(244,236,223,0.7);
  }

  .fold-bento--duo .fold-card,
  .fold-bento--duo .fold-card:not(.fold-card--featured):nth-of-type(2) {
    grid-column: auto;
    height: 100%;
    min-height: 0;
  }
}

.fold-bento--duo .fold-card {
  min-width: 0;
  border-radius: 1.75rem;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.68) inset,
    0 30px 70px -48px rgba(63,48,34,0.65);
}

.fold-bento--duo .fold-card-num {
  position: absolute;
  top: 1.65rem;
  left: 1.65rem;
  z-index: 5;
  margin: 0;
  border-color: rgba(255,255,255,0.58);
  background: rgba(255,250,241,0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px -18px rgba(63,48,34,0.72);
}

.fold-bento--duo .fold-card--horizontes,
.fold-bento--duo .fold-card--essencias {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.7rem;
  padding: 0.9rem 0.9rem 1rem;
}

.fold-bento--duo .fold-card--horizontes {
  background:
    radial-gradient(circle at 88% 7%, rgba(138,106,67,0.13), transparent 20rem),
    linear-gradient(155deg, rgba(255,252,246,0.9), rgba(244,235,219,0.7));
}

.fold-bento--duo .fold-card--essencias {
  background:
    radial-gradient(circle at 12% 8%, rgba(184,138,5,0.12), transparent 18rem),
    linear-gradient(155deg, rgba(255,252,246,0.9), rgba(244,235,219,0.7));
}

.fold-bento--duo .fold-card--horizontes::after,
.fold-bento--duo .fold-card--essencias::after {
  content: none;
}

.fold-bento--duo .fold-card--horizontes .fold-card-visual,
.fold-bento--duo .fold-card--essencias .fold-card-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: auto;
  height: clamp(12.5rem, 18vw, 15.5rem);
  min-height: 0;
  margin: 0;
  box-shadow: 0 18px 36px -28px rgba(63,48,34,0.55);
}

.fold-bento--duo .fold-card--horizontes .fold-card-visual {
  border-radius: 1.15rem 1.15rem 2.75rem 1.15rem;
}

.fold-bento--duo .fold-card--essencias .fold-card-visual {
  border-radius: 1.15rem 1.15rem 1.15rem 2.75rem;
}

.fold-bento--duo .fold-card--horizontes .fold-card-visual-overlay {
  background:
    linear-gradient(180deg, rgba(15,23,42,0.08), transparent 38%),
    linear-gradient(0deg, rgba(34,28,20,0.28), transparent 48%);
}

.fold-bento--duo .fold-card--essencias .fold-card-visual-overlay {
  opacity: 0.75;
  background:
    linear-gradient(180deg, rgba(22,26,20,0.08), transparent 38%),
    linear-gradient(0deg, rgba(34,28,20,0.28), transparent 48%);
}

.fold-bento--duo .fold-card--horizontes .fold-card-body,
.fold-bento--duo .fold-card--essencias .fold-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.fold-bento--duo .fold-card--horizontes .fold-card-meta,
.fold-bento--duo .fold-card--essencias .fold-card-meta {
  margin: 0;
  letter-spacing: 0.18em;
}

.fold-bento--duo .fold-card--horizontes .fold-card-meta {
  color: rgba(87,66,42,0.58);
}

.fold-bento--duo .fold-card--essencias .fold-card-meta {
  color: rgba(122,93,24,0.62);
}

.fold-bento--duo .fold-card--horizontes .fold-card-title,
.fold-bento--duo .fold-card--essencias .fold-card-title {
  display: block;
  max-width: 28ch;
  margin: 0;
  color: #1f2937;
  font-family: inherit;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}

.fold-bento--duo .fold-card--horizontes .fold-card-title-lead,
.fold-bento--duo .fold-card--horizontes .fold-card-title-accent,
.fold-bento--duo .fold-card--essencias .fold-card-title-lead,
.fold-bento--duo .fold-card--essencias .fold-card-title-accent {
  display: inline;
  color: inherit;
  font: inherit;
  font-style: normal;
  letter-spacing: inherit;
  line-height: inherit;
}

.fold-bento--duo .fold-card--horizontes .fold-card-title-lead::after,
.fold-bento--duo .fold-card--essencias .fold-card-title-lead::after {
  content: ' ';
}

.fold-bento--duo .fold-card--horizontes .fold-card-title-accent,
.fold-bento--duo .fold-card--essencias .fold-card-title-accent {
  width: auto;
  padding: 0;
  border-top: 0;
}

.fold-bento--duo .fold-card--horizontes .fold-card-desc,
.fold-bento--duo .fold-card--essencias .fold-card-desc {
  max-width: 34rem;
  margin: 0;
  color: #667085;
  font-size: 0.86rem;
  line-height: 1.5;
}

.fold-bento--duo .fold-card--horizontes .fold-card-arrow,
.fold-bento--duo .fold-card--essencias .fold-card-arrow {
  min-width: 13.25rem;
  margin-top: 0.55rem;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .fold-two-head--duo {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fold-two-head--duo::before {
    font-size: 7rem;
  }

  .fold-two-head--duo .fold-two-badge,
  .fold-two-head--duo .fold-two-title,
  .fold-two-head--duo .fold-two-lead {
    grid-column: 1;
    grid-row: auto;
  }

  .fold-two-head--duo .fold-two-badge {
    margin-bottom: 1rem;
  }

  .fold-two-head--duo .fold-two-lead {
    margin: 1.2rem 0 0;
    padding-left: 1rem;
  }

  .fold-bento--duo {
    gap: 1rem;
  }

  .fold-bento--duo .fold-card--horizontes .fold-card-visual,
  .fold-bento--duo .fold-card--essencias .fold-card-visual {
    height: 13.5rem;
  }

  .fold-bento--duo .fold-card--horizontes .fold-card-title,
  .fold-bento--duo .fold-card--essencias .fold-card-title {
    max-width: none;
  }
}

.fold-card.is-drifting .fold-card-num {
  animation: fold-num-breathe 3.6s ease-in-out infinite;
}

/* Deep CTA block */
.fold-deep {
  position: relative;
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.45)),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(180, 156, 120, 0.12), transparent);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
@media (min-width: 768px) {
  .fold-deep {
    padding: 2.25rem 2.5rem;
  }
}

.fold-deep-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black, transparent);
  pointer-events: none;
}

.fold-deep-quote {
  position: relative;
  z-index: 1;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: #334155;
  max-width: 32rem;
}
.fold-deep-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 10px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
}

.fold-deep-btn {
  --btn-rx: 0deg;
  --btn-ry: 0deg;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #3f3022;
  color: #f8fafc;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transform: perspective(700px) rotateX(var(--btn-rx)) rotateY(var(--btn-ry)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 10px 0 -6px rgba(63, 48, 34, 0.48),
    0 18px 34px -18px rgba(63, 48, 34, 0.62);
  transition: transform 0.5s var(--ease-fluid), box-shadow 0.5s var(--ease-soft), background 0.5s var(--ease-soft);
}
.fold-deep-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  background: radial-gradient(220px circle at var(--gx, 50%) var(--gy, 50%), rgba(180, 156, 120, 0.55), transparent 65%);
  z-index: -1;
}
.fold-deep-btn::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 32%, rgba(255,255,255,0.08));
  opacity: 0.55;
  pointer-events: none;
  transform: translateZ(1px);
}
.fold-deep-btn:hover {
  transform: perspective(700px) rotateX(var(--btn-rx)) rotateY(var(--btn-ry)) translateY(-3px) translateZ(10px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 14px 0 -7px rgba(63, 48, 34, 0.42),
    0 24px 48px -20px rgba(63, 48, 34, 0.7);
}
.fold-deep-btn:hover::before { opacity: 1; }

.fold-deep-btn > span {
  position: relative;
  z-index: 2;
}

.fold-deep-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateZ(12px);
  transition: transform 0.55s var(--ease-fluid), background 0.45s ease, box-shadow 0.45s ease;
}
.fold-deep-btn:hover .fold-deep-btn-icon {
  transform: translate(3px, -2px) translateZ(22px) rotate(-10deg);
  background: rgba(180, 156, 120, 0.38);
  box-shadow: 0 8px 18px -10px rgba(255, 255, 255, 0.42);
}

/* Instagram presence */
.ig-presence {
  padding: 2.75rem 0 0.25rem;
}

.ig-presence-line {
  height: 1px;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), rgba(180, 156, 120, 0.45), rgba(15, 23, 42, 0.1), transparent);
}

.ig-presence-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(180, 156, 120, 0.16), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 241, 0.42));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 28px 56px -28px rgba(87, 66, 42, 0.28);
  backdrop-filter: blur(12px);
}

.ig-presence-orb {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  top: -4rem;
  right: -3rem;
  background: radial-gradient(circle, rgba(180, 156, 120, 0.28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  animation: ig-orb-drift 10s ease-in-out infinite;
}

@keyframes ig-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 10px) scale(1.08); }
}

.ig-presence-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8a6a43;
}

.ig-presence-title {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}

.ig-presence-lead {
  max-width: 28rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #64748b;
}

.ig-presence-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.65rem;
  padding: 0.7rem 0.75rem 0.7rem 0.85rem;
  border-radius: 9999px;
  color: #fffaf1;
  background: linear-gradient(135deg, #8a6a43, #725736);
  box-shadow: 0 14px 28px -18px rgba(87, 66, 42, 0.75);
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, background 0.45s ease;
}

.ig-presence-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #7c603e, #5f472b);
  box-shadow: 0 18px 34px -16px rgba(87, 66, 42, 0.85);
}

.ig-presence-link:focus-visible {
  outline: 2px solid #8a6a43;
  outline-offset: 3px;
}

.ig-presence-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.18);
  color: #fffaf1;
}

.ig-presence-handle {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ig-presence-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.92);
  color: #725736;
  font-size: 0.95rem;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ig-presence-link:hover .ig-presence-arrow {
  transform: translateX(3px);
}

/* Creative credit */
.creator-credit {
  padding: 3rem 0 0.5rem;
}

.creator-credit-line {
  height: 1px;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), rgba(180, 156, 120, 0.42), rgba(15, 23, 42, 0.1), transparent);
}

.creator-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  gap: 0.45rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.32)),
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(180, 156, 120, 0.12), transparent);
  color: #0f172a;
  text-align: center;
  backdrop-filter: blur(10px);
}

.creator-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(320px circle at var(--gx, 50%) var(--gy, 50%), rgba(180, 156, 120, 0.18), transparent 62%);
  transition: opacity 0.5s ease;
}

.creator-card:hover::before {
  opacity: 1;
}

.creator-kicker {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #94a3b8;
}

.creator-name {
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.creator-note {
  max-width: 34rem;
  margin: 0 auto;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

/* Scroll reveal — visible by default, GSAP enhances */
.fold-reveal { will-change: transform, opacity; }

@keyframes fold-num-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .fold-marquee-track { animation-duration: 32s; }
  .fold-card, .fold-card-visual img, .fold-card-arrow { transition: none !important; }
  .fold-card:hover { transform: none; }
}
