/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #f3ead8;
  --ink: #1a1a1a;
  --red: #d1382e;
  --yellow: #ffd23f;
  --pink: #ff4fa8;
  --pink-light: #ffb0c8;
  --mint: #a8d8c9;
  --orange: #ffa15c;
  --tape: #e6d7be;
  --muted-brown: #8a7c63;
  --slot-bg: #e3dccb;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Karla', sans-serif;
  --font-hand: 'Permanent Marker', cursive;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  overflow-x: hidden;
}
body {
  height: 100%;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--pink); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
::selection { background: var(--yellow); }

img { display: block; max-width: 100%; }

/* ===== Image / video placeholder slots ===== */
.img-slot {
  background-color: var(--slot-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-slot .placeholder-label {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
  color: rgba(26, 26, 26, 0.45);
  text-align: center;
  padding: 8px;
}
.img-slot.loaded .placeholder-label { display: none; }

/* ===== Decorative stickers ===== */
.sticker-layer {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .sticker-layer { display: none; }
}

/* Decorações posicionadas com calc(50% - Npx) ou offsets negativos foram
   pensadas pra telas largas — em mobile empurram a página inteira pro
   lado (scroll horizontal). Some junto com os stickers. */
@media (max-width: 900px) {
  .services-heading .hero-deco,
  .work-heading .hero-deco { display: none; }
}

/* ===== Navegação fixa ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: var(--cream);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* Fica escondido enquanto a foto do hero está visível — evita cobrir a
   foto/nome no topo — e desliza pra dentro assim que o hero sai da tela
   (ver observer em js/main.js). */
.site-nav.site-nav--solid {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.site-nav-logo {
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--ink);
}
.site-nav-logo:hover { color: var(--red); }
.site-nav-links { display: flex; gap: 22px; }
.site-nav-links a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 2px;
}
.site-nav-links a:hover { color: var(--red); }
@media (max-width: 640px) {
  .site-nav { padding: 10px 18px; }
  .site-nav-links { gap: 14px; }
  .site-nav-links a { font-size: 11px; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 620px;
  overflow: hidden;
}
.hero .img-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  scale: 1;
  animation: badge-breathe 4s ease-in-out infinite;
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--red) 0deg 9deg, #a82e25 9deg 18deg);
  animation: badge-spin 16s linear infinite;
}
.hero-badge::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.55);
  border: 2px dashed rgba(255,255,255,0.35);
}
.hero-badge span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: 0.5px;
}
.hero-badge span::before {
  content: "★";
  display: block;
  font-size: 11px;
  color: #fff;
  margin-bottom: 2px;
}
@keyframes badge-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes badge-breathe {
  0%, 100% { scale: 1; }
  50% { scale: 1.04; }
}
.hero-deco { position: absolute; pointer-events: none; }
.hero-tape {
  position: absolute;
  top: 250px;
  left: 50px;
  width: 56px;
  height: 20px;
  background: rgba(230,215,190,0.7);
  transform: rotate(-6deg);
}
.hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 0 24px;
}
.hero-caption .role {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.9;
  max-width: 600px;
}
.hero-caption .name {
  font-family: var(--font-display);
  font-size: clamp(48px, 11vw, 150px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Section base ===== */
.section {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.work-grid.reveal.is-visible .work-card,
.testimonials-grid.reveal.is-visible .testimonial-card,
.backstage-grid.reveal.is-visible .backstage-item {
  animation: card-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.work-grid .work-card:nth-child(1) { animation-delay: 0.05s; }
.work-grid .work-card:nth-child(2) { animation-delay: 0.1s; }
.work-grid .work-card:nth-child(3) { animation-delay: 0.15s; }
.work-grid .work-card:nth-child(4) { animation-delay: 0.2s; }
.work-grid .work-card:nth-child(5) { animation-delay: 0.25s; }
.work-grid .work-card:nth-child(6) { animation-delay: 0.3s; }
.work-grid .work-card:nth-child(7) { animation-delay: 0.35s; }
.work-grid .work-card:nth-child(8) { animation-delay: 0.4s; }
.work-grid .work-card:nth-child(9) { animation-delay: 0.45s; }
.work-grid .work-card:nth-child(10) { animation-delay: 0.5s; }
.work-grid .work-card:nth-child(11) { animation-delay: 0.55s; }
.work-grid .work-card:nth-child(12) { animation-delay: 0.6s; }
.work-grid .work-card:nth-child(13) { animation-delay: 0.65s; }
.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0.05s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.15s; }
.testimonials-grid .testimonial-card:nth-child(4) { animation-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(5) { animation-delay: 0.25s; }
.testimonials-grid .testimonial-card:nth-child(6) { animation-delay: 0.3s; }
.testimonials-grid .testimonial-card:nth-child(7) { animation-delay: 0.35s; }
@keyframes card-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Floaty decorations ===== */
.hero-deco,
.sticker-layer,
.doodle-row span,
.work-thumb .sticker,
.bio-sticker-sparkle,
.bio-sticker-camera {
  animation: float-bob 3.6s ease-in-out infinite;
}
.hero-deco:nth-child(even),
.sticker-layer:nth-child(even) { animation-duration: 4.4s; animation-delay: -1.1s; }
.hero-deco:nth-child(3n),
.sticker-layer:nth-child(3n) { animation-duration: 5.2s; animation-delay: -2.3s; }
.doodle-row span:nth-child(even) { animation-duration: 2.8s; animation-delay: -0.6s; }
.doodle-row span:nth-child(3n) { animation-duration: 3.2s; animation-delay: -1.4s; }
@keyframes float-bob {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -7px; rotate: 3deg; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-badge::before,
  .hero-deco,
  .sticker-layer,
  .doodle-row span,
  .work-thumb .sticker,
  .bio-sticker-sparkle,
  .bio-sticker-camera,
  .work-grid.reveal.is-visible .work-card,
  .testimonials-grid.reveal.is-visible .testimonial-card,
  .backstage-grid.reveal.is-visible .backstage-item,
  .wpp-float::before {
    animation: none;
  }
}

/* ===== Bio / "dirigido por" ===== */
.bio {
  padding: 100px 48px 60px;
}
.bio-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.bio-heading .title {
  font-family: var(--font-hand);
  font-size: 56px;
  color: var(--red);
  transform: rotate(-2deg);
}
.bio-heading .star { font-size: 34px; color: var(--yellow); }

.bio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.bio-text-col { display: flex; flex-direction: column; gap: 28px; }
.bio-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.bio-tags span {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.bio-tags span:nth-child(1) { background: var(--yellow); transform: rotate(-2deg); }
.bio-tags span:nth-child(2) { background: var(--pink-light); transform: rotate(2deg); }
.bio-desc {
  font-size: 18px;
  line-height: 1.8;
  max-width: 520px;
}
.bio-ps {
  font-family: var(--font-hand);
  font-size: 16px;
  opacity: 0.75;
  transform: rotate(-1deg);
}
.bio-links { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-outline {
  border: 2px solid var(--red);
  color: #b13026;
  padding: 14px 30px;
  border-radius: 100px;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-outline:hover { color: var(--pink); border-color: var(--pink); transform: translateY(-3px); }
.btn-outline:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

.bio-polaroid-wrap { position: relative; }
.bio-polaroid-tape {
  position: absolute;
  top: -18px; left: 40%;
  width: 70px; height: 26px;
  background: rgba(230,215,190,0.85);
  transform: rotate(-4deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 3;
}
.bio-polaroid {
  background: #fff;
  padding: 16px 16px 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transform: rotate(2deg);
  position: relative;
}
.bio-polaroid .img-slot { width: 100%; aspect-ratio: 4 / 5; }
.bio-sticker-sparkle { position: absolute; top: -30px; right: -10px; font-size: 28px; transform: rotate(15deg); }
.bio-sticker-camera { position: absolute; bottom: -40px; left: -24px; font-size: 24px; }
.bio-note {
  position: absolute; top: -24px; left: -20px;
  background: #fff; padding: 6px 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transform: rotate(-6deg);
  font-family: var(--font-hand); font-size: 13px;
}
/* ===== My Work ===== */
.work-section {
  padding: 60px 48px 40px;
}
.work-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 48px;
  position: relative;
}
.work-heading .title {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 1px;
}
.work-heading .bang { font-family: var(--font-display); font-size: 44px; color: var(--red); }

/* Reels em grade: vários cards por linha em vez de uma pilha vertical. */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  margin-bottom: 24px;
}
.featured {
  margin-bottom: 0;
}
/* Card horizontal ocupa a linha inteira e fica centralizado (fica por último
   na grade, então não abre buraco). */
.featured--wide {
  grid-column: 1 / -1;
}
.featured--wide .featured-player-wrap { max-width: 760px; }
.featured-grid .featured { text-align: center; }
.featured .featured-label {
  font-family: var(--font-hand);
  font-size: 17px;
  margin-bottom: 8px;
  transform: rotate(-1deg);
}
.featured-player-wrap { position: relative; max-width: 340px; margin: 0 auto; }
.featured-player {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  box-shadow: 0 16px 36px rgba(0,0,0,0.2);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.featured-player-wrap:hover .featured-player {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 44px rgba(0,0,0,0.3);
}
@media (hover: none) {
  .featured-player-wrap:hover .featured-player { transform: none; box-shadow: 0 16px 36px rgba(0,0,0,0.2); }
}
.featured-player .img-slot { position: absolute; inset: 0; width: 100%; height: 100%; background-color: #000; }
.featured-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
}
.featured-player--landscape { aspect-ratio: 16 / 9; }
/* Vídeos tocam sozinhos (mudos) ao entrar na tela — este botão só liga/
   desliga o som, não inicia a reprodução. */
.mute-btn {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: none;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}
.mute-btn:hover {
  transform: scale(1.12);
}
.featured-player.unmuted .mute-btn { background: rgba(0,0,0,0.25); }
.tag-sd {
  position: absolute; bottom: -14px; right: 24px;
  background: var(--tape); padding: 8px 10px;
  font-size: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transform: rotate(6deg);
}
.tape-a { position: absolute; top: -16px; left: 20px; width: 64px; height: 22px; background: rgba(230,215,190,0.85); transform: rotate(-5deg); }
.tape-b { position: absolute; top: -16px; right: 60px; width: 50px; height: 20px; background: rgba(255,210,63,0.75); transform: rotate(6deg); }
/* fitas adesivas não cabem nos cards menores da grade; mantém só a etiqueta SD */
.featured-grid .tape-a,
.featured-grid .tape-b { display: none; }
.featured-grid .tag-sd { right: 12px; bottom: -12px; font-size: 9px; padding: 6px 8px; }
.doodle-row {
  display: flex; gap: 24px; justify-content: center;
  margin: 32px 0; font-size: 22px;
}

.mid-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 40px 24px;
  margin: 16px 0 8px;
  background: var(--slot-bg);
  border-radius: 12px;
}
.mid-cta-text {
  font-family: var(--font-hand);
  font-size: 22px;
  color: #b13026;
  max-width: 460px;
  transform: rotate(-1deg);
}

.more-projects { margin-top: 56px; }
.more-projects-label {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--pink);
  margin-bottom: 24px;
  transform: rotate(-1deg);
}
.filter-pills { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.filter-pill {
  padding: 8px 18px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.filter-pill:nth-child(1) { background: var(--pink-light); transform: rotate(-1deg); }
.filter-pill:nth-child(2) { background: var(--mint); transform: rotate(1deg); }
.filter-pill:nth-child(3) { background: var(--yellow); transform: rotate(-1deg); }
.filter-pill:nth-child(4) { background: var(--pink-light); transform: rotate(1deg); }
.filter-pill.active { background: var(--ink); color: var(--cream); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
  background: none;
  padding: 0;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}
.work-card.is-hidden { display: none; }
.work-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s ease;
}
.work-thumb .img-slot {
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-thumb .sticker {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.work-card:hover .work-thumb { box-shadow: 0 16px 30px rgba(0,0,0,0.22); }
.work-card:hover .work-thumb .img-slot { transform: scale(1.08); }
.work-card:hover .work-thumb .sticker { transform: scale(1.3) rotate(-8deg); }
@media (hover: none) {
  .work-card:hover .work-thumb .img-slot { transform: none; }
  .work-card:hover .work-thumb .sticker { transform: none; }
}
.work-card .work-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.5px;
}
.work-card .work-tag {
  font-family: var(--font-hand);
  font-size: 12px;
  opacity: 0.5;
}
.work-card:focus-visible,
.filter-pill:focus-visible,
.mute-btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.more-soon {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--red);
}

/* ===== Bastidores ===== */
.backstage {
  padding: 20px 48px 40px;
}
.backstage-label {
  font-family: var(--font-hand);
  font-size: 30px;
  color: var(--red);
  margin-bottom: 32px;
  transform: rotate(-1deg);
}
.backstage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.backstage-item { position: relative; }
.backstage-photo {
  background: #fff;
  padding: 12px 12px 32px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.backstage-photo .img-slot { width: 100%; aspect-ratio: 1 / 1; }
.backstage-caption {
  font-family: var(--font-hand);
  font-size: 13px;
  opacity: 0.65;
  text-align: center;
  margin-top: 6px;
}

/* ===== Clients ===== */
.clients {
  padding: 60px 48px 20px;
  text-align: center;
}
.clients-label {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  opacity: 0.5;
  margin-bottom: 28px;
}
.clients-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.client-tag {
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--slot-bg);
  font-weight: 700;
  font-size: 14px;
}
.client-tag:nth-child(odd) { transform: rotate(-1deg); }
.client-tag:nth-child(even) { transform: rotate(1deg); }

/* ===== Servicos ===== */
.services {
  padding: 100px 48px;
  position: relative;
}
.services-heading {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
.services-heading .title { font-family: var(--font-display); font-size: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.service-card {
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  position: relative;
}
.service-card:nth-child(1) { background: var(--yellow); transform: rotate(-1deg); }
.service-card:nth-child(2) { background: var(--pink-light); transform: rotate(1deg); }
.service-card:nth-child(3) { background: var(--mint); transform: rotate(-1deg); }
.service-card:nth-child(4) { background: var(--orange); transform: rotate(1deg); }
.service-card .icon { position: absolute; top: 10px; right: 14px; font-size: 16px; }
.service-card .number { font-family: var(--font-display); font-size: 24px; opacity: 0.4; }
.service-card .title { font-family: var(--font-display); font-size: 19px; }
.service-card .desc { font-size: 14px; line-height: 1.6; opacity: 0.8; }

/* ===== Testimonials ===== */
.testimonials {
  padding: 20px 48px 100px;
}
.testimonials-label {
  font-family: var(--font-hand);
  font-size: 30px;
  color: var(--pink);
  margin-bottom: 40px;
  transform: rotate(-1deg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: #fff;
  padding: 32px 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.testimonial-card:nth-child(odd) { transform: rotate(-1deg); }
.testimonial-card:nth-child(even) { transform: rotate(1deg); }
.testimonial-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.16);
}
.testimonial-tape {
  position: absolute; top: -14px; left: 20px;
  width: 50px; height: 18px;
  background: rgba(230,215,190,0.85);
  transform: rotate(-4deg);
}
.testimonial-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.testimonial-author { font-family: var(--font-hand); font-size: 15px; opacity: 0.7; }

/* ===== FAQ ===== */
.faq {
  padding: 20px 48px 60px;
}
.faq-heading {
  position: relative;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.faq-label {
  font-family: var(--font-hand);
  font-size: 30px;
  color: var(--pink);
  transform: rotate(-1deg);
  display: inline-block;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-q:hover { color: var(--pink); }
.faq-q:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.faq-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 16px;
  padding-bottom: 2px;
  transition: transform 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .faq-icon { transition: none; }
}
.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  transition: grid-template-rows 0.25s ease;
}
.faq-a p {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: padding-bottom 0.25s ease;
}
.faq-item[data-open="true"] .faq-a {
  grid-template-rows: 1fr;
}
.faq-item[data-open="true"] .faq-a p {
  padding-bottom: 20px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-a p { transition: none; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-a { transition: none; }
}

/* ===== Floating WhatsApp CTA ===== */
.wpp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-top: 2px;
  font-size: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 40;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wpp-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wpp-float:hover { background: #1ebe58; scale: 1.08; }
.wpp-float:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.wpp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wpp-pulse 2.2s ease-out infinite;
}
@keyframes wpp-pulse {
  0% { opacity: 0.55; scale: 1; }
  100% { opacity: 0; scale: 1.8; }
}
@media (prefers-reduced-motion: reduce) {
  .wpp-float { transition: opacity 0.01ms; }
}

/* ===== Contact ===== */
.contact {
  padding: 120px 48px 90px;
  text-align: center;
  position: relative;
}
.contact-eyebrow {
  font-family: var(--font-hand);
  font-size: 34px;
  color: var(--red);
  margin-bottom: 20px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-red, .btn-yellow {
  font-family: var(--font-display);
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 100px;
  display: inline-block;
  letter-spacing: 1px;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
.btn-red:hover, .btn-yellow:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.btn-red:active, .btn-yellow:active { transform: translateY(-1px) scale(0.98); }
.btn-red { color: var(--cream); background: var(--red); }
.btn-red:hover { color: var(--cream); background: var(--pink); }
.btn-yellow { color: var(--ink); background: var(--yellow); font-size: 20px; padding: 16px 36px; }
.btn-yellow:hover { color: var(--ink); opacity: 0.85; }
.contact-social {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 44px;
}
.footer-note {
  margin-top: 80px;
  font-family: var(--font-hand);
  font-size: 14px;
  color: var(--muted-brown);
  transform: rotate(-1deg);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .backstage-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .bio { padding: 70px 24px 40px; }
  .work-section { padding: 40px 24px 20px; }
  .backstage { padding: 10px 24px 30px; }
  .clients { padding: 40px 24px 10px; }
  .services { padding: 60px 24px; }
  .testimonials { padding: 10px 24px 60px; }
  .faq { padding: 10px 24px 40px; }
  .contact { padding: 80px 24px 60px; }

  .bio-heading .title { font-size: 38px; }
  .work-heading .title { font-size: 40px; }
  .featured-grid { gap: 28px 14px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .backstage-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .bio-grid { gap: 64px; }
}
