/* =========================================================
   ANIMA KARIRI — Design System v4 "CARTOON STUDIO"
   Visual ilustrado, colorido e arredondado para estúdio 2D.
   Mesmos nomes de classe do markup — só estética muda.
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Marca */
  --orange: #FF5A1F;
  --orange-deep: #E84A10;
  --orange-soft: #FFE0CE;

  /* Acentos cartoon */
  --sun:   #FFC931;  --sun-soft:   #FFF1C4;
  --sky:   #2FC4D6;  --sky-soft:   #D4F2F5;
  --berry: #FF5D8F;  --berry-soft: #FFE0EB;
  --mint:  #3FD39B;  --mint-soft:  #D6F6EA;
  --grape: #8569FF;  --grape-soft: #E7E1FF;

  /* Superfícies */
  --paper:   #FFF7EC;
  --paper-2: #FFEFD6;
  --card:    #FFFFFF;
  --ink:     #20160F;
  --ink-2:   #6E5F50;
  --line:    #20160F;

  /* Sombra chunky (cartoon) */
  --shadow:    5px 5px 0 var(--line);
  --shadow-lg: 9px 9px 0 var(--line);
  --shadow-sm: 3px 3px 0 var(--line);

  /* Tipografia */
  --display: 'Fredoka', system-ui, sans-serif;
  --body: 'Nunito', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;

  --nav-h: 78px;
  --radius: 22px;
  --bw: 3px;

  --doodle-star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 4c3 14 12 23 26 26-14 3-23 12-26 26-3-14-12-23-26-26 14-3 23-12 26-26z' fill='%23FFC931' stroke='%2320160F' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E");
  --doodle-ring: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='54'%3E%3Ccircle cx='27' cy='27' r='20' fill='none' stroke='%23FF5D8F' stroke-width='4'/%3E%3C/svg%3E");
  --doodle-squiggle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='28'%3E%3Cpath d='M3 14C12 3 22 25 33 14S55 3 66 14s22 11 21 0' fill='none' stroke='%232FC4D6' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6; font-weight: 600;
  background-image: radial-gradient(rgba(255,90,31,.16) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
}
main { flex: 1; position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; }
strong, b { font-weight: 800; }

.ak-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* ===== Tipos utilitários ===== */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-size: .82rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: var(--ink); background: var(--sun);
  border: var(--bw) solid var(--ink); border-radius: 30px;
  padding: 7px 18px; box-shadow: var(--shadow-sm); transform: rotate(-2deg);
}
.kicker::before { content: '★'; color: var(--orange-deep); display: inline-block; animation: ak-spin 7s linear infinite; }
@keyframes ak-spin { to { transform: rotate(360deg); } }

.h-display { font-family: var(--display); font-weight: 700; line-height: 1.0; letter-spacing: -.5px; color: var(--ink); }

.section-heading {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.05; letter-spacing: -.5px;
  position: relative; display: inline-block; z-index: 1;
}
.section-heading::before {
  content: ''; position: absolute; z-index: -1;
  left: -10px; right: -10px; bottom: .08em; height: .38em;
  background: var(--sun); border-radius: 10px; transform: rotate(-1.4deg);
}
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-2); font-weight: 600; }

/* ===== Botões ===== */
.btn-ak {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: 1rem; text-decoration: none;
  border: var(--bw) solid var(--ink); border-radius: 40px; padding: 13px 28px;
  background: var(--orange); color: #fff; box-shadow: var(--shadow); cursor: pointer;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, background .2s;
}
.btn-ak:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); background: var(--orange-deep); color:#fff; }
.btn-ak:active { transform: translate(2px,2px) scale(.96); box-shadow: 1px 1px 0 var(--ink); }
.btn-ak.btn-ghost { background: var(--card); color: var(--ink); }
.btn-ak.btn-ghost:hover { background: var(--sun); }
.btn-ak.btn-ink { background: var(--ink); color:#fff; }

/* ===== NAVBAR ===== */
.ak-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center; background: var(--paper); border-bottom: 4px solid var(--ink);
}
.ak-nav .ak-container { display: flex; align-items: center; justify-content: space-between; }
.ak-brand {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.3px;
  text-transform: uppercase; text-decoration: none; color: var(--ink); display:inline-flex; align-items:center; gap:9px;
}
.ak-brand .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border:3px solid var(--ink); display:inline-block; }
.ak-brand span { color: var(--orange); }
.ak-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.ak-links a {
  font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--ink); text-decoration: none;
  padding: 8px 15px; border-radius: 30px; border: 2.5px solid transparent;
  transition: background .18s, border-color .18s, transform .12s;
}
.ak-links a:hover { background: var(--sun); transform: translateY(-1px); }
.ak-links a.active { background: var(--card); border-color: var(--ink); box-shadow: var(--shadow-sm); }
.ak-links .cta-link { background: var(--orange); color: #fff; border: 3px solid var(--ink); box-shadow: var(--shadow-sm); font-weight: 700; padding: 8px 18px; }
.ak-links .cta-link:hover { background: var(--orange-deep); transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.ak-toggler { display: none; background: var(--sun); border: 3px solid var(--ink); color: var(--ink); width: 48px; height: 48px; border-radius: 14px; align-items: center; justify-content: center; cursor: pointer; font-size: 1.3rem; box-shadow: var(--shadow-sm); }
@media (max-width: 991px) {
  .ak-toggler { display: flex; }
  .ak-collapse { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--paper); border-bottom: 4px solid var(--ink); padding: 18px 22px; }
  .ak-collapse.open { display: block; }
  .ak-links { flex-direction: column; align-items: stretch; gap: 8px; }
  .ak-links a { width: 100%; }
}

/* ===== MARQUEE = rolo de filme ===== */
.ak-marquee { position: relative; background: var(--ink); color: var(--paper); border-bottom: 4px solid var(--ink); overflow: hidden; white-space: nowrap; padding: 20px 0; }
.ak-marquee::before, .ak-marquee::after { content: ''; position: absolute; left: 0; right: 0; height: 8px; z-index: 2; background: radial-gradient(circle, var(--paper) 0 2.6px, transparent 3.2px) repeat-x; background-size: 22px 8px; }
.ak-marquee::before { top: 5px; } .ak-marquee::after { bottom: 5px; }
.ak-marquee .track { display: inline-flex; flex-wrap: nowrap; animation: marquee 26s linear infinite; will-change: transform; }
.ak-marquee:hover .track { animation-play-state: paused; }
.ak-marquee span { font-family: var(--display); font-weight: 600; font-size: 1.05rem; letter-spacing: .5px; display: inline-flex; align-items: center; gap: 40px; margin-right: 40px; flex: 0 0 auto; text-transform: uppercase; }
.ak-marquee span::after { content: '✦'; color: var(--orange); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== HERO / SLIDER ===== */
.hero-wrap { position: relative; width: 100%; height: calc(100vh - var(--nav-h)); min-height: 480px; max-height: 760px; overflow: hidden; border-bottom: 4px solid var(--ink); background: var(--paper-2); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 8s ease; }
.hero-slide.active img { transform: scale(1); }
.hero-slide::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(32,22,15,.05), rgba(32,22,15,.45)); }
.hero-fallback { width: 100%; height: 100%; display: flex; flex-direction:column; align-items: center; justify-content: center; text-align:center; background: radial-gradient(circle at 16% 18%, rgba(255,201,49,.55), transparent 40%), radial-gradient(circle at 84% 78%, rgba(47,196,214,.45), transparent 44%), var(--paper-2); padding: 24px; }
.hero-fallback h1 { font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 8vw, 6rem); letter-spacing: -1px; line-height: .98; }
.hero-fallback h1 span { color: var(--orange); }
.hero-fallback p { margin-top: 18px; font-size: 1.2rem; color: var(--ink-2); font-weight: 700; }
.hero-badge { position: absolute; z-index: 6; top: 34px; right: 34px; background: var(--sun); color: var(--ink); border: 3px solid var(--ink); border-radius: 50%; width: 122px; height: 122px; display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--display); font-weight: 700; font-size: .9rem; line-height: 1.05; box-shadow: var(--shadow-lg); transform: rotate(-12deg); animation: bob 3.5s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: rotate(-12deg) translateY(0);} 50%{ transform: rotate(-12deg) translateY(-9px);} }
.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 8; }
.hero-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--paper); border: 3px solid var(--ink); cursor: pointer; transition: all .3s; padding:0; }
.hero-dot.active { background: var(--orange); width: 34px; border-radius: 8px; }
.hero-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 8; background: var(--card); border: 3px solid var(--ink); color: var(--ink); width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow); transition: background .2s, transform .12s; font-size: 1.3rem; }
.hero-nav-btn:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.06); }
.hero-nav-prev { left: 22px; } .hero-nav-next { right: 22px; }

/* ===== SECTIONS (com arte de fundo) ===== */
.section { padding: 92px 0; position: relative; background-image: var(--doodle-star), var(--doodle-squiggle); background-repeat: no-repeat, no-repeat; background-position: 4% 12%, 95% 88%; }
.section.alt { background-color: var(--sky-soft); background-image: var(--doodle-ring), var(--doodle-star); background-position: 92% 16%, 6% 82%; margin: 46px 0; padding: 100px 0; }
.section.alt::before, .section.alt::after { content: ''; position: absolute; left: 0; right: 0; height: 38px; z-index: 1; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='38' viewBox='0 0 1200 38' preserveAspectRatio='none'%3E%3Cpath d='M0 38V18Q150 0 300 18T600 18T900 18T1200 18V38Z' fill='%23D4F2F5'/%3E%3C/svg%3E") repeat-x bottom / 1200px 38px; }
.section.alt::before { top: 0; transform: translateY(-99%); }
.section.alt::after  { bottom: 0; transform: translateY(99%) scaleY(-1); }
.section-head { max-width: 760px; margin-bottom: 52px; position: relative; z-index: 2; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== CARD cartoon ===== */
.toon-card { background: var(--card); border: var(--bw) solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease; }
.toon-card:hover { transform: translate(-3px,-4px) rotate(-1deg); box-shadow: var(--shadow-lg); }

.video-card .ratio-box { position: relative; padding-top: 56.25%; border-bottom: var(--bw) solid var(--ink); }
.video-card .ratio-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card .card-label { padding: 16px 18px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; }

.post-card .thumb { position: relative; padding-top: 60%; overflow: hidden; border-bottom: var(--bw) solid var(--ink); }
.post-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .thumb img { transform: scale(1.07); }
.post-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card .title { font-family: var(--display); font-weight: 700; font-size: 1.22rem; line-height: 1.2; margin-bottom: 10px; }
.post-card .excerpt { font-size: .95rem; color: var(--ink-2); flex: 1; }
.post-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-family: var(--display); font-weight: 700; color: var(--orange-deep); text-decoration: none; transition: gap .2s; }
.post-link:hover { gap: 13px; }
.post-date { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-family: var(--mono); font-size: .72rem; font-weight: 700; color: var(--ink-2); background: var(--sun-soft); border: 2.5px solid var(--ink); border-radius: 30px; padding: 3px 11px; margin-bottom: 12px; }
.post-date i { color: var(--orange); }

.gal-item { position: relative; border: var(--bw) solid var(--ink); border-radius: 18px; overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow-sm); transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s; }
.gal-item:hover { transform: translate(-2px,-3px) rotate(-1.5deg); box-shadow: var(--shadow); }
.gal-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.09); }
.gal-legend { font-family: var(--mono); font-size: .75rem; color: var(--ink-2); text-align: center; margin-top: 9px; font-weight: 700; }

/* ===== PILLARS ===== */
.pillar { text-align: center; padding: 32px 24px; }
.pillar .ic { width: 70px; height: 70px; margin: 0 auto 18px; border: var(--bw) solid var(--ink); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--ink); box-shadow: var(--shadow-sm); transform: rotate(-4deg); }
.pillar:nth-child(1) .ic { background: var(--sun); }
.pillar:nth-child(2) .ic { background: var(--sky); }
.pillar:nth-child(3) .ic { background: var(--berry); color:#fff; }
.pillar:hover .ic { transform: rotate(4deg) scale(1.05); }
.pillar h3 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }
.pillar p { font-size: .95rem; color: var(--ink-2); }

.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--mint-soft); border: var(--bw) solid var(--ink); border-radius: 30px; padding: 9px 18px; font-family: var(--display); font-weight: 700; box-shadow: var(--shadow-sm); }
.pill i { color: var(--orange); }

.about-prose p { font-size: 1.1rem; color: var(--ink-2); margin-bottom: 1.3rem; }
.about-prose strong { color: var(--ink); }
.about-prose .first { font-size: 1.35rem; color: var(--ink); font-weight: 700; }

.social-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.social-big { display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 18px; font-size: 1.5rem; background: var(--card); border: var(--bw) solid var(--ink); color: var(--ink); text-decoration: none; box-shadow: var(--shadow-sm); transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s, background .2s, color .2s; }
.social-big:hover { transform: translate(-3px,-3px) rotate(-6deg); box-shadow: var(--shadow); }
.social-big.ig:hover { background: #E4405F; color: #fff; }
.social-big.yt:hover { background: #FF0000; color: #fff; }
.social-big.fb:hover { background: #1877F2; color: #fff; }
.social-big.wa:hover { background: #25D366; color: #fff; }

/* ===== PAGE HEADER ===== */
.page-header { background: var(--sun-soft); border-bottom: 4px solid var(--ink); padding: 74px 0 60px; text-align: center; position: relative; overflow: hidden; background-image: var(--doodle-star), var(--doodle-ring), var(--doodle-squiggle); background-repeat: no-repeat; background-position: 8% 26%, 90% 30%, 82% 80%; }
.page-header .ghost { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--display); font-weight: 700; white-space: nowrap; pointer-events: none; font-size: clamp(6rem, 22vw, 18rem); color: rgba(32,22,15,.05); letter-spacing: -2px; }
.page-header .page-title { position: relative; font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem,6vw,4.4rem); letter-spacing: -1px; }

/* ===== POST ARTICLE ===== */
.post-hero { width: 100%; max-height: 460px; overflow: hidden; border-bottom: 4px solid var(--ink); }
.post-hero img { width: 100%; height: 460px; object-fit: cover; }
.article-title { font-family: var(--display); font-weight: 700; font-size: clamp(2rem,4.5vw,3.1rem); line-height: 1.1; letter-spacing: -.5px; margin-bottom: 16px; }
.article-content { font-size: 1.12rem; line-height: 1.85; color: #3a2f25; font-weight: 600; }
.article-content p { margin-bottom: 1.4rem; }
.sidebar-heading { font-family: var(--display); font-weight: 700; font-size: 1.2rem; margin-bottom: 18px; padding-left: 14px; border-left: 6px solid var(--orange); }
.rec-card { display: flex; gap: 14px; align-items: center; text-decoration: none; margin-bottom: 14px; padding: 12px; }
.rec-card img { width: 92px; min-width: 92px; height: 70px; object-fit: cover; border: 2.5px solid var(--ink); border-radius: 12px; }
.rec-card .rt { font-family: var(--display); font-weight: 700; font-size: .98rem; line-height: 1.25; color: var(--ink); }
.rec-card .rl { font-family: var(--mono); font-size: .72rem; color: var(--orange-deep); font-weight: 700; }
.cta-box { background: var(--orange); color: #fff; border: var(--bw) solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; text-align: center; margin-top: 24px; }
.cta-box h3 { font-family: var(--display); font-weight: 700; margin-bottom: 8px; font-size: 1.35rem; }
.cta-box p { font-size: .95rem; opacity: .95; margin-bottom: 16px; }

/* ===== CONTATO ===== */
.info-item { display: flex; align-items: center; gap: 14px; padding: 18px; margin-bottom: 16px; }
.info-item .ic { width: 52px; min-width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; background: var(--orange); color: #fff; border: var(--bw) solid var(--ink); transform: rotate(-4deg); }
.info-item .lbl { font-family: var(--mono); font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-2); font-weight: 700; }
.info-item .val { font-family: var(--display); font-weight: 700; }
.form-card { padding: 36px; }
.form-label-ak { font-family: var(--display); font-weight: 700; font-size: .95rem; margin-bottom: 7px; display: block; }
.form-input { width: 100%; background: var(--paper); border: var(--bw) solid var(--ink); border-radius: 14px; padding: 13px 16px; font-family: var(--body); font-weight: 600; font-size: 1rem; color: var(--ink); outline: none; transition: box-shadow .15s, border-color .15s; }
.form-input:focus { box-shadow: var(--shadow-sm); border-color: var(--orange); }
.form-input::placeholder { color: #b7a995; }
textarea.form-input { resize: vertical; min-height: 140px; }
.alert-ak { display: flex; align-items: center; gap: 10px; padding: 15px 18px; border: var(--bw) solid var(--ink); border-radius: 14px; margin-bottom: 20px; font-weight: 700; box-shadow: var(--shadow-sm); }
.alert-ok { background: var(--mint-soft); }
.alert-err { background: var(--berry-soft); }

/* ===== PAGINATION ===== */
.ak-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 54px; flex-wrap: wrap; }
.page-btn { width: 50px; height: 50px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: var(--card); border: var(--bw) solid var(--ink); box-shadow: var(--shadow-sm); font-family: var(--display); font-weight: 700; text-decoration: none; color: var(--ink); transition: transform .15s cubic-bezier(.34,1.56,.64,1), background .2s; }
.page-btn:hover { transform: translate(-2px,-2px) rotate(-4deg); background: var(--sun); }
.page-btn.active { background: var(--orange); color: #fff; }

/* ===== EMPTY ===== */
.empty-state { text-align: center; padding: 80px 0; }
.empty-state i { font-size: 3.4rem; color: var(--orange); }
.empty-state p { color: var(--ink-2); margin-top: 12px; font-family: var(--display); font-weight: 700; }

/* ===== FOOTER ===== */
.ak-footer { position: relative; background: var(--ink); color: var(--paper); padding: 70px 0 32px; text-align: center; }
.ak-footer::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 20px; transform: translateY(-100%); background: radial-gradient(circle at 13px 20px, var(--ink) 13px, transparent 14px); background-size: 26px 20px; background-repeat: repeat-x; }
.footer-brand { font-family: var(--display); font-weight: 700; font-size: 2rem; letter-spacing: -.3px; }
.footer-brand span { color: var(--orange); }
.footer-tagline { color: #d7c8b4; font-size: .98rem; margin-top: 8px; font-weight: 700; }
.footer-social { display: flex; gap: 12px; justify-content: center; margin: 28px 0; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 15px; background: transparent; border: 3px solid var(--paper); color: var(--paper); font-size: 1.25rem; text-decoration: none; transition: transform .18s cubic-bezier(.34,1.56,.64,1), background .2s, color .2s; }
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-4px) rotate(-6deg); }
.footer-copy { color: #9b8c79; font-size: .82rem; margin-top: 18px; font-weight: 700; }
.footer-copy a { color: #d7c8b4; }

/* ===== FLOAT BUTTONS ===== */
.wpp-float { position: fixed; bottom: 24px; right: 24px; z-index: 9997; width: 64px; height: 64px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; text-decoration: none; border: 3px solid var(--ink); box-shadow: var(--shadow-lg); animation: wpp-pulse 2.6s infinite; }
@keyframes wpp-pulse { 0%,100%{ box-shadow: var(--shadow-lg);} 50%{ box-shadow: 9px 9px 0 var(--ink), 0 0 0 9px rgba(37,211,102,.25); } }
.back-top { position: fixed; bottom: 100px; right: 29px; z-index: 9996; width: 50px; height: 50px; border-radius: 15px; background: var(--orange); color: #fff; border: 3px solid var(--ink); box-shadow: var(--shadow-sm); display: none; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; font-size: 1.2rem; }
.back-top.visible { display: flex; }
.back-top:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); color:#fff; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(32,22,15,.93); align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 88vh; border: 4px solid var(--paper); border-radius: 12px; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: var(--card); border: 3px solid var(--ink); color: var(--ink); width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; box-shadow: var(--shadow-sm); transition: background .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--orange); color: #fff; }
.lb-close { top: 22px; right: 22px; } .lb-prev { left: 22px; } .lb-next { right: 22px; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s cubic-bezier(.34,1.56,.64,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge, .wpp-float, .ak-marquee .track, .kicker::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== GRID helpers ===== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2-1 { grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.grid-1-2 { grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
@media (max-width: 991px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { width: 96px; height: 96px; font-size: .74rem; top: 18px; right: 18px; }
  .section { padding: 64px 0; }
}
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; } .mt-5 { margin-top: 3rem; }