/* =========================================================================
   Dr. Bruno Goldani — V3 · zine editorial contemporâneo, multicolor, brutalista
   ========================================================================= */

:root {
  --pool:   #9EE0E0;  /* azul piscina */
  --bubble: #FF69B4;  /* rosa chiclete */
  --neon:   #FFEB3B;  /* amarelo neon */
  --terra:  #B45536;  /* terracota queimado */
  --aqua:   #39C5BB;  /* verde água */
  --lav:    #BBAAE3;  /* lavanda */
  --paper:  #F4F1E6;  /* off-white editorial */
  --ink:    #0D0D0D;  /* preto profundo */
  --ink-soft: #4a4a45;

  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --hand: "Caveat", "Comic Sans MS", cursive;

  --pad-x: clamp(1.15rem, 5vw, 5.5rem);
  --maxw: 1280px;
  --section-y: clamp(5rem, 11vw, 10rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.14rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* grão sutil de zine */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0; }

.display { font-family: var(--display); font-weight: 400; text-transform: uppercase; line-height: 0.9; letter-spacing: 0.003em; margin: 0; }
.hand { font-family: var(--hand); font-weight: 700; text-transform: none; letter-spacing: 0; }

::selection { background: var(--bubble); color: var(--paper); }
:focus-visible { outline: 3px solid var(--bubble); outline-offset: 3px; }

/* marca-texto (highlight de marcador) */
.mark {
  background-image: linear-gradient(transparent 12%, var(--mk, var(--neon)) 12%, var(--mk, var(--neon)) 88%, transparent 88%);
  background-repeat: no-repeat;
  background-size: var(--mw, 100%) 100%;
  padding: 0 0.06em; margin: 0 -0.02em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.mark--neon   { --mk: var(--neon); }
.mark--pool   { --mk: var(--pool); }
.mark--bubble { --mk: var(--bubble); }
.mark--lav    { --mk: var(--lav); }
.mark--aqua   { --mk: var(--aqua); }

/* sublinhado bruto */
.u { position: relative; display: inline-block; }
.u::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -0.11em; height: 0.12em;
  background: currentColor; border-radius: 2px; transform: rotate(-0.6deg);
}

/* doodles */
.ink-line { display: block; width: 13rem; max-width: 60%; height: 0.7rem; color: var(--bubble); margin-top: 0.15rem; }
.doodle { position: absolute; pointer-events: none; }
.doodle--arrow { width: 4.6rem; aspect-ratio: 3 / 2; height: auto; color: var(--terra); transform: scaleX(-1) rotate(6deg); right: clamp(0.5rem, 5vw, 5rem); top: 0.4rem; }
@media (max-width: 760px) { .doodle--arrow, .doodle__label { display: none; } }
.doodle--arrow2 { position: static; width: 6rem; color: var(--ink); transform: scaleX(-1) rotate(12deg); }
.doodle__label { position: absolute; right: -1.5rem; top: -3.4rem; color: var(--terra); font-size: 1.5rem; transform: rotate(-6deg); }
.doodle--spark-1 { width: 2.4rem; color: var(--bubble); top: 8%; right: 8%; }
.doodle--spark-2 { width: 2.6rem; color: var(--neon); top: 12%; left: 6%; }
.hero__sticker svg { width: 1.4rem; height: 1.4rem; display: inline-block; vertical-align: middle; }

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--body); font-weight: 800; font-size: 1rem; letter-spacing: 0.01em; line-height: 1;
  padding: 1.05em 1.6em; border: 2.5px solid var(--ink); background: var(--ink); color: var(--paper);
  text-decoration: none; cursor: pointer; border-radius: 4px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: box-shadow 0.3s var(--ease), background-color 0.2s;
}
.btn:hover { box-shadow: 8px 8px 0 var(--ink); }
.btn--cta { background: var(--bubble); color: var(--ink); }
.btn--ink { background: var(--ink); color: var(--paper); box-shadow: 6px 6px 0 var(--paper); }
.btn--ink:hover { box-shadow: 9px 9px 0 var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); box-shadow: none; }
.btn--lg { font-size: 1.1rem; padding: 1.2em 2em; }
.btn--sm { padding: 0.65em 1.05em; font-size: 0.85rem; box-shadow: 3px 3px 0 var(--ink); }
.btn--sm:hover { box-shadow: 5px 5px 0 var(--ink); }

.kicker { display: inline-block; font-size: 1.35rem; color: var(--terra); margin-bottom: 0.6rem; }
.kicker.hand { font-weight: 700; }

.link-strong { font-weight: 800; color: var(--ink); text-decoration: underline; text-decoration-color: var(--bubble); text-decoration-thickness: 3px; text-underline-offset: 3px; }

/* ============================ Header ============================ */
.site-header {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 1.5rem;
  padding: 0.7rem var(--pad-x); background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px); border-bottom: 2.5px solid var(--ink);
}
.brand { text-decoration: none; }
.brand__name { font-family: var(--display); text-transform: uppercase; font-size: 1.35rem; letter-spacing: 0.01em; }
.brand__dot { color: var(--bubble); }
.site-nav { display: flex; gap: clamp(1rem, 2.2vw, 2rem); margin-left: auto; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.site-nav a { text-decoration: none; color: var(--ink); transition: color 0.2s; }
.site-nav a:hover { color: var(--bubble); }
.site-header .btn { flex-shrink: 0; }
@media (max-width: 880px) { .site-nav { display: none; } .site-header .btn--sm { margin-left: auto; } }

/* ============================ Hero ============================ */
.hero {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center; max-width: var(--maxw); margin-inline: auto;
  padding: clamp(3rem, 6vw, 6rem) var(--pad-x) clamp(4rem, 7vw, 7rem);
}
.hero__kicker { display: block; color: var(--terra); margin-bottom: 1rem; }
.hero__kicker .hand { font-size: 1.7rem; }
.hero__title { font-size: clamp(3.6rem, 12vw, 9rem); line-height: 1.1; margin-bottom: 1.6rem; }
.hero__title .mark { line-height: inherit; }
.hero__title .line { display: block; }
.hero__sub { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.32rem); color: var(--ink-soft); max-width: 44ch; margin-bottom: 2.2rem; }
.hero__sub strong { color: var(--ink); font-weight: 800; }
.hero__actions { position: relative; display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
.hero__meta {
  list-style: none; margin: 0; padding: 1.1rem 0 0; border-top: 2.5px solid var(--ink);
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem;
  font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
}
.hero__meta li { display: flex; align-items: center; gap: 0.5rem; }
.hero__meta li:not(:first-child)::before { content: "✸"; color: var(--bubble); margin-right: 0.6rem; margin-left: -0.6rem; }

/* foto: moldura + blobs colados (colagem) */
.hero__media { position: relative; }
.hero__blob { position: absolute; z-index: 0; border-radius: 47% 53% 62% 38% / 58% 45% 55% 42%; }
.hero__blob--a { inset: -8% 6% 10% -10%; background: var(--pool); transform: rotate(-8deg); }
.hero__blob--b { width: 7rem; height: 7rem; right: -1.5rem; top: -1.5rem; background: var(--neon); border-radius: 50%; }
.frame { position: relative; z-index: 1; border: 3px solid var(--ink); background: var(--ink); box-shadow: 10px 10px 0 var(--ink); transform: rotate(1.4deg); }
.duotone { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.duotone img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.hero__media .duotone img { object-position: 50% 0%; transform-origin: 50% 0%; }
.hero__sticker {
  position: absolute; z-index: 2; left: -1rem; bottom: 1.2rem;
  background: var(--neon); color: var(--ink); border: 2.5px solid var(--ink);
  font-size: 1.5rem; padding: 0.3rem 0.8rem; transform: rotate(-4deg); box-shadow: 4px 4px 0 var(--ink);
}
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { max-width: 360px; order: -1; }
}

/* ============================ Marquee ============================ */
.marquee { border-block: 2.5px solid var(--ink); background: var(--ink); color: var(--neon); overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 2.2rem; padding: 0.5rem 0; font-family: var(--display); text-transform: uppercase; font-size: 1.25rem; letter-spacing: 0.02em; animation: scroll 26s linear infinite; will-change: transform; }
.marquee__track.js-marquee { animation: none; }
.marquee__track span { display: inline-flex; align-items: center; gap: 2.2rem; }
.marquee__track span::after { content: "✸"; color: var(--bubble); }
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================ Sections ============================ */
.section { max-width: var(--maxw); margin-inline: auto; padding: var(--section-y) var(--pad-x); }
.section--paper { background: var(--paper); }
.section__head { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); max-width: 24ch; }
.section__title { font-size: clamp(2.6rem, 1.6rem + 5vw, 5.5rem); line-height: 1.08; margin: 0; }

/* ===== Versus ===== */
.versus { max-width: none; }
.versus__grid { display: grid; grid-template-columns: 1fr 1fr; }
.versus__col { padding: clamp(2.2rem, 4.5vw, 4rem); }
.versus__col--bad { background: var(--ink); color: var(--paper); }
.versus__col--good { background: var(--aqua); color: var(--ink); }
.versus__tag { font-size: 1.4rem; font-family: var(--hand); font-weight: 700; }
.versus__col--bad .versus__tag { color: var(--neon); }
.versus__col--good .versus__tag { color: var(--terra); }
.versus__h { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem); line-height: 0.95; margin: 0.8rem 0 1.5rem; }
.versus__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.95rem; font-weight: 500; }
.versus__list li { display: flex; gap: 0.7rem; }
.versus__col--bad .versus__list li { color: #cfcfca; }
.versus__list li::before { content: "→"; font-weight: 800; flex-shrink: 0; }
.versus__col--bad .versus__list li::before { content: "✕"; color: var(--bubble); }
.versus__col--good .versus__list li::before { color: var(--terra); }
@media (max-width: 720px) { .versus__grid { grid-template-columns: 1fr; } }

/* ===== Audience ===== */
.audience__list { list-style: none; margin: 0; padding: 0; border-top: 2.5px solid var(--ink); }
.audience__item { display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 3vw, 3rem); padding: clamp(1.5rem, 2.6vw, 2.4rem) 0; border-bottom: 2.5px solid var(--ink); align-items: start; }
.audience__num { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 0.9; color: var(--ink); display: inline-grid; place-items: center; width: 2.4em; height: 2.4em; border: 2.5px solid var(--ink); border-radius: 50%; }
.audience__item:nth-child(1) .audience__num { background: var(--pool); }
.audience__item:nth-child(2) .audience__num { background: var(--neon); }
.audience__item:nth-child(3) .audience__num { background: var(--lav); }
.audience__item:nth-child(4) .audience__num { background: var(--bubble); }
.audience__body h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.4rem, 1rem + 1.6vw, 2.2rem); line-height: 1; margin: 0.2rem 0 0.5rem; }
.audience__body p { color: var(--ink-soft); max-width: 60ch; }
.audience__note { margin-top: 2.4rem; font-size: 1.1rem; font-weight: 600; }

/* ===== Manifesto (bloco preto) ===== */
.manifesto { background: var(--ink); color: var(--paper); border-block: 2.5px solid var(--ink); }
.manifesto__wrap { position: relative; max-width: var(--maxw); margin-inline: auto; padding: var(--section-y) var(--pad-x); }
.manifesto .kicker { color: var(--neon); }
.manifesto__title { font-size: clamp(2.4rem, 1.4rem + 5vw, 5.5rem); line-height: 1.1; max-width: 16ch; margin: 0 0 2.2rem; }
.manifesto .mark { color: var(--ink); -webkit-text-fill-color: var(--ink); }
.manifesto__text { max-width: 60ch; display: grid; gap: 1.1rem; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.32rem); color: #d8d8d2; }
.manifesto__text strong { color: var(--neon); font-weight: 800; }
.manifesto__pull { margin-top: 2.8rem; font-size: clamp(1.7rem, 1rem + 3.2vw, 3.6rem); color: var(--paper); max-width: 18ch; line-height: 0.95; }
.manifesto__pull .u::after { background: var(--bubble); }
.doodle--spark-3 { width: 2.6rem; color: var(--aqua); top: 9%; right: 7%; }

/* ===== Approach (bloco lavanda) ===== */
.approach { background: var(--lav); color: var(--ink); }
.approach__wrap { position: relative; max-width: var(--maxw); margin-inline: auto; padding: var(--section-y) var(--pad-x); }
.approach__quote { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.2rem, 1.2rem + 4.5vw, 5rem); line-height: 1.08; max-width: 17ch; margin: 0 0 clamp(2.6rem, 5vw, 4rem); }
.approach__answer { display: block; margin-top: 0.2em; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(0.9rem, 1.6vw, 1.4rem); }
.pillar { padding: clamp(1.5rem, 2.4vw, 2rem); border: 2.5px solid var(--ink); border-radius: 6px; color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.pillar--pool { background: var(--pool); }
.pillar--neon { background: var(--neon); }
.pillar--bubble { background: var(--bubble); }
.pillar--aqua { background: var(--aqua); }
.pillar__num { font-family: var(--display); font-size: 1.3rem; }
.pillar h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.4rem; line-height: 1; margin: 0.6rem 0 0.5rem; }
.pillar p { font-size: 0.96rem; font-weight: 500; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.2rem, 5vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__blob { position: absolute; inset: 8% -8% -8% 8%; background: var(--terra); border-radius: 52% 48% 40% 60% / 45% 55% 45% 55%; z-index: 0; transform: rotate(6deg); }
.about__media .frame { transform: rotate(-2deg); }
.about__media .duotone img { aspect-ratio: 4/5; }
.about__tape { position: absolute; z-index: 2; right: -0.8rem; top: 1.2rem; background: var(--pool); color: var(--ink); border: 2.5px solid var(--ink); font-size: 1.4rem; padding: 0.2rem 0.8rem; transform: rotate(5deg); box-shadow: 3px 3px 0 var(--ink); }
.about__copy p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 58ch; }
.about__copy p:first-of-type { margin-top: 1.4rem; }
.about__copy strong { color: var(--ink); font-weight: 800; }
.about__sign { font-family: var(--display); text-transform: uppercase; color: var(--ink) !important; font-size: 1.5rem; margin-top: 1.6rem !important; }
.about .kicker { color: var(--terra); }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } .about__media { max-width: 360px; } }

/* ===== Steps (blocos de cor) ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); list-style: none; margin: 0; padding: 0; }
.step { padding: clamp(1.6rem, 2.6vw, 2.4rem); border: 2.5px solid var(--ink); border-radius: 6px; box-shadow: 6px 6px 0 var(--ink); color: var(--ink); }
.step--pool { background: var(--pool); }
.step--neon { background: var(--neon); }
.step--bubble { background: var(--bubble); }
.step__num { font-family: var(--display); font-size: 2.6rem; line-height: 1; }
.step h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.4rem; line-height: 1; margin: 0.7rem 0 0.5rem; }
.step p { font-weight: 500; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.faq__head { position: sticky; top: 5.5rem; }
.faq__list { border-top: 2.5px solid var(--ink); }
.faq__item { border-bottom: 2.5px solid var(--ink); }
.faq__item summary { list-style: none; cursor: pointer; position: relative; font-family: var(--display); text-transform: uppercase; font-size: clamp(1.15rem, 1rem + 0.7vw, 1.6rem); line-height: 1.05; padding: 1.3rem 2.6rem 1.3rem 0; transition: color 0.2s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--display); color: var(--bubble); font-size: 1.9rem; transition: transform 0.35s var(--ease); }
.faq__item[open] summary::after { content: "–"; }
.faq__item summary:hover { color: var(--bubble); }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq__item[open] .faq__body { grid-template-rows: 1fr; }
.faq__body > p { overflow: hidden; color: var(--ink-soft); max-width: 62ch; }
.faq__item[open] .faq__body > p { padding-bottom: 1.4rem; }
@media (max-width: 760px) { .faq { grid-template-columns: 1fr; } .faq__head { position: static; } }

/* ===== CTA (bloco rosa) ===== */
.cta { background: var(--bubble); color: var(--ink); border-block: 2.5px solid var(--ink); }
.cta__inner { position: relative; max-width: var(--maxw); margin-inline: auto; padding: clamp(4.5rem, 9vw, 8rem) var(--pad-x); }
.cta .kicker { color: var(--terra); }
.cta__title { font-size: clamp(3rem, 1.6rem + 7vw, 8rem); line-height: 1.06; margin: 1rem 0; }
.cta__lead { color: var(--ink); font-weight: 600; font-size: 1.2rem; max-width: 44ch; margin-bottom: 2.2rem; }
.cta__btnwrap { display: flex; align-items: center; gap: 1rem; }
.cta__note { margin-top: 1.6rem; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #cfcfca; padding: clamp(2.5rem, 5vw, 3.5rem) var(--pad-x); }
.footer__top { max-width: var(--maxw); margin: 0 auto 1.8rem; display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: space-between; }
.footer__brand .brand__name { color: var(--paper); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.footer__brand .brand__dot { color: var(--bubble); }
.footer__brand p { font-size: 0.95rem; margin-top: 0.3rem; }
.footer__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }
.site-footer .btn--cta { box-shadow: 4px 4px 0 var(--paper); }
.site-footer .btn--cta:hover { box-shadow: 6px 6px 0 var(--paper); }
.btn--ig { background: var(--pool); color: var(--ink); gap: 0.5em; box-shadow: 4px 4px 0 var(--paper); }
.btn--ig:hover { box-shadow: 6px 6px 0 var(--paper); }
.btn--ig svg { flex-shrink: 0; }
.footer__disclaimer { max-width: var(--maxw); margin: 0 auto; font-size: 0.85rem; line-height: 1.55; padding-top: 1.6rem; border-top: 1px solid #333; }
.footer__disclaimer strong { color: var(--neon); }
.footer__legal { max-width: var(--maxw); margin: 1.2rem auto 0; font-size: 0.8rem; color: #7a7a75; }

/* ===== Floating WhatsApp ===== */
.wa-float { position: fixed; right: clamp(1rem, 3vw, 1.8rem); bottom: clamp(1rem, 3vw, 1.8rem); z-index: 60; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.2rem 0.85rem 1rem; background: var(--bubble); color: var(--ink); border: 2.5px solid var(--ink); font-family: var(--display); text-transform: uppercase; font-size: 1rem; letter-spacing: 0.02em; text-decoration: none; box-shadow: 4px 4px 0 var(--ink); opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { box-shadow: 6px 6px 0 var(--ink); }
@media (max-width: 480px) { .wa-float span { display: none; } .wa-float { padding: 0.85rem; } }

/* ===== Figuras à la Haring ===== */
.haring { position: absolute; pointer-events: none; z-index: 3; }
.haring--mani { width: clamp(4rem, 9vw, 7rem); color: var(--neon); bottom: 7%; right: 7%; transform: rotate(7deg); }
.haring--approach { width: clamp(5.5rem, 12vw, 9rem); color: var(--ink); top: clamp(2rem, 5vw, 4rem); right: clamp(1rem, 6vw, 5rem); transform: rotate(-4deg); }
@media (max-width: 820px) { .haring--approach { width: 5rem; top: 0.5rem; right: 1rem; opacity: 0.9; } }
.cta__inner .haring--cta-heart { width: clamp(3.4rem, 7vw, 5.5rem); color: var(--ink); top: 9%; right: 7%; }
@media (max-width: 760px) { .cta__inner .haring--cta-heart { top: 4%; right: 4%; width: 3rem; } }

.haring-band { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; overflow: hidden; padding: 1.3rem var(--pad-x); background: var(--aqua); border-block: 2.5px solid var(--ink); }
.hb-fig { width: clamp(2.2rem, 7vw, 4.4rem); color: var(--c); flex: 0 0 auto; }
.hb-fig:nth-child(even) { transform: rotate(-12deg) scaleX(-1); }
.hb-fig:nth-child(odd) { transform: rotate(9deg); }
@media (max-width: 600px) { .hb-fig:nth-child(n+7) { display: none; } }

/* ===== Reveal (GSAP) ===== */
html.has-anim [data-reveal] { opacity: 0; }
@media (prefers-reduced-motion: reduce) { html.has-anim [data-reveal] { opacity: 1; } }
