/* ══ TT5 PARENT RESET — override TT25 defaults ══ */
body {
    background-color: #fdfcfb !important;
    color: #1C1E1C !important;
    font-family: 'Work Sans', sans-serif !important;
    margin: 0 !important;
    padding-inline: 0 !important;
}

/* iOS Safari pinta los <button> con su azul de sistema — heredar el color del contexto */
button { color: inherit; }

/* Remove TT25 default block padding/margins that conflict */
.wp-site-blocks,
.wp-block-template-part,
.entry-content,
.wp-block-post-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* TT25 adds a default top padding to body — neutralize */
.has-global-padding {
    padding-inline: 0 !important;
}


/* ════════════════════════════════════════════════════════
   Ariadna FSE — global.css  v1.0
   Full design system: tokens · nav · hero · cards ·
   projects · about · process · contact · footer · utils
════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --lime:      #F0FDD1;
  --sage:      #D4E1B4;
  --lilac:     #C6AECD;
  --blue:      #84A9D9;
  --blue-pale: #B8CCEA;
  --fuchsia:   #E85D8A;
  --orange:    #E8896A;
  --neutral:   #F5F4F0;
  --white:     #FFFFFF;
  --ink:       #1C1E1C;
  --muted:     #6B6B64;
  --border:    #E2E0DA;
  --bg:        #fdfcfb;
  --dark:      #1C1E1C;
  --r-card:    20px;
  --r-sticky:  14px;
  --r-pill:    100px;
  --shadow:    0 4px 28px rgba(0,0,0,.07);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.10);
  --max-w:     1280px;
  /* ── Type-scale tokens (unificación) ── */
  --fs-lead:    clamp(16px, 1.3vw, 18px);   /* ← frase intro bajo el título */
  --fs-section: clamp(28px, 3.3vw, 44px);   /* ← H2 de sección */
  /* ── Spacing tokens ── */
  --pad-x:        48px;   /* standard section horizontal padding */
  --pad-section:  96px;   /* standard section vertical padding   */
  /* ── Button tokens ── */
  --btn-font:     'Work Sans', sans-serif;
  --btn-size:     12px;
  --btn-weight:   700;
  --btn-spacing:  .08em;
  --btn-pad:      14px 30px;
  --btn-border:   1.5px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Work Sans', sans-serif;
  background: var(--bg); color: var(--ink);
  font-size: 16px; font-weight: 450; line-height: 1.72;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; cursor: none;
  padding-top: 72px;
  display: flex; flex-direction: column; min-height: 100vh;
}
/* Home: hero fills the full viewport — pull it up to cover the body padding */
body.page-home { padding-top: 0 !important; }
/* Footer always sticks to bottom — content above it grows to fill space */
body > .av-footer {
  margin-top: auto;
  flex-shrink: 0;
}
/* The page content wrapper takes all available space */
.av-page-content {
  flex: 1 0 auto;
}
img   { max-width: 100%; display: block; }
ul    { list-style: none; padding: 0; }
a     { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }

h1, h2, h3 { font-family: 'Anybody', cursive; font-weight: 900; letter-spacing: -.025em; line-height: 1.06; }
h4 { font-family: 'Work Sans', sans-serif; font-weight: 700; }

/* ── LAYOUT UTILITIES ── */
.av-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* ════════════════════════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════════════════════════ */
.av-cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--fuchsia); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
.av-cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1.5px solid rgba(198,174,205,.55); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .3s;
}
.av-cursor-ring.big { width: 52px; height: 52px; border-color: var(--fuchsia); opacity: .55; }

/* ════════════════════════════════════════════════════════
   NAVBAR PILL
════════════════════════════════════════════════════════ */
.av-nav-wrap {
  position: fixed; top: 16px;
  left: 50%; transform: translateX(-50%);
  width: calc(100% - 38.4px); max-width: var(--max-w);
  z-index: 900;
  transition: top .35s ease, opacity .35s ease;
}
.av-nav-wrap.hide    { top: -72px; }
.av-nav-wrap.hidden  { opacity: 0; pointer-events: none; }
.av-nav-wrap.scrolled .av-navbar { box-shadow: 0 3.2px 25.6px rgba(28,30,28,.12); }

.av-navbar {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.92); backdrop-filter: blur(11.2px);
  -webkit-backdrop-filter: blur(11.2px);
  border-radius: var(--r-pill); padding: 11.2px 19.2px;
  box-shadow: 0 1.6px 19.2px rgba(28,30,28,.07);
  border: 0.8px solid rgba(28,30,28,.05);
  transition: box-shadow .3s;
}

.av-nav-left { display: flex; align-items: center; gap: 11.2px; }

.av-hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 35.2px; height: 35.2px; background: none; border: none; padding: 0;
  border-radius: 50%; transition: background .2s;
  color: var(--ink);
}
.av-hamburger:hover { background: var(--neutral); }
.av-hamburger img   { width: 17.6px; height: 11.2px; }

.av-nav-name {
  font-family: 'Anybody', cursive; font-weight: 700;
  font-size: 0.76rem; letter-spacing: -0.008em; color: var(--ink);
}
.av-nav-links { display: flex; align-items: center; gap: 25.6px; }
.av-nav-links a {
  font-size: 0.7rem; font-weight: 600; color: var(--ink);
  opacity: .65; transition: opacity .2s;
}
.av-nav-links a:hover,
.av-nav-links a[aria-current="page"] { opacity: 1; }
.av-nav-links .av-nav-cta {
  background: var(--lime); color: var(--ink);
  padding: 9.6px 16px; border-radius: var(--r-pill);
  border: 1.2px solid var(--sage); opacity: 1 !important;
  font-weight: 700; font-size: 0.64rem; letter-spacing: 0.04em; text-transform: uppercase;
  transition: background .2s;
}
.av-nav-links .av-nav-cta:hover { background: var(--sage); }

/* ════════════════════════════════════════════════════════
   FULLSCREEN MENU
════════════════════════════════════════════════════════ */
.av-nav-menu {
  position: fixed; inset: 0; background: var(--dark); z-index: 950;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 10vw;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.av-nav-menu.open { opacity: 1; pointer-events: all; }

.av-menu-top {
  position: absolute; top: 16px;
  left: 50%; transform: translateX(-50%);
  width: calc(100% - 38.4px); max-width: var(--max-w);
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; transition: opacity .4s ease .25s;
}
.av-nav-menu.open .av-menu-top { opacity: 1; }

.av-menu-logo {
  font-family: 'Anybody', cursive; font-weight: 700; font-size: 0.72rem;
  color: rgba(240,253,209,.6); letter-spacing: -0.008em;
  transition: color .2s;
}
.av-menu-logo:hover { color: var(--lime); }

.av-menu-close {
  display: flex; align-items: center; justify-content: center;
  width: 35.2px; height: 35.2px; background: none; border: none;
  border-radius: 50%; transition: background .2s;
  color: rgba(255,255,255,.85);
}
.av-menu-close:hover { background: rgba(255,255,255,.1); }
.av-menu-close img { filter: invert(1); opacity: .7; }

.av-menu-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.av-menu-links li { overflow: hidden; }
.av-menu-links a {
  font-family: 'Anybody', cursive; font-weight: 700;
  font-size: clamp(1.92rem, 6.5vw, 4.16rem);
  color: var(--lime); letter-spacing: -0.024em; line-height: 1.12;
  display: inline-flex; align-items: center; gap: 11.2px;
  opacity: 0; transform: translateY(22.4px);
  transition: opacity .4s ease, transform .4s ease, color .2s;
}
.av-nav-menu.open .av-menu-links a { opacity: 1; transform: translateY(0); }
.av-nav-menu.open .av-menu-links li:nth-child(1) a { transition-delay: .04s; }
.av-nav-menu.open .av-menu-links li:nth-child(2) a { transition-delay: .09s; }
.av-nav-menu.open .av-menu-links li:nth-child(3) a { transition-delay: .14s; }
.av-nav-menu.open .av-menu-links li:nth-child(4) a { transition-delay: .19s; }
.av-menu-links a:hover { color: var(--blue-pale); }

.av-menu-work {
  list-style: none; display: flex; flex-direction: column; gap: 3.2px;
  margin-top: 19.2px; padding-top: 19.2px;
  border-top: 0.8px solid rgba(240,253,209,.12);
}
.av-menu-work a {
  font-family: 'Work Sans', sans-serif; font-weight: 500;
  font-size: clamp(0.68rem, 1.4vw, 0.8rem);
  letter-spacing: 0.008em; line-height: 1.6;
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(9.6px);
  transition: opacity .4s ease, transform .4s ease, color .2s;
}
.av-nav-menu.open .av-menu-work a { opacity: 1; transform: translateY(0); }
.av-nav-menu.open .av-menu-work li:nth-child(1) a { transition-delay: .28s; }
.av-nav-menu.open .av-menu-work li:nth-child(2) a { transition-delay: .33s; }
.av-nav-menu.open .av-menu-work li:nth-child(3) a { transition-delay: .38s; }
.av-menu-work a { color: rgba(240,253,209,.6); }
.av-menu-work a:hover { color: rgba(240,253,209,.9); }

.av-menu-bottom {
  position: absolute; bottom: 38.4px; left: 10vw; right: 10vw;
  display: flex; justify-content: space-between; align-items: flex-end;
  opacity: 0; transition: opacity .4s ease .3s;
}
.av-nav-menu.open .av-menu-bottom { opacity: 1; }
.av-menu-social { display: flex; gap: 16px; }
.av-menu-social a { display: flex; }
.av-menu-social img { width: 16px; height: 16px; filter: invert(1); opacity: .45; transition: opacity .2s; }
.av-menu-social a:hover img { opacity: .9; }

/* ════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
════════════════════════════════════════════════════════ */
.av-lang {
  position: fixed; bottom: 22.4px; right: 22.4px; z-index: 800;
  display: flex; gap: 3.2px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(9.6px);
  border-radius: var(--r-pill); padding: 4px;
  box-shadow: 0 1.6px 16px rgba(0,0,0,.1); border: 0.8px solid var(--border);
}
.av-lang-btn {
  padding: 0 12.8px; border-radius: var(--r-pill); border: none;
  font-family: 'Work Sans', sans-serif;
  font-size: 8.8px; font-weight: 700; letter-spacing: 0.064em;
  color: var(--muted); background: none;
  min-height: 35.2px; display: flex; align-items: center;
  transition: background .2s, color .2s;
}
.av-lang-btn.active { background: var(--ink); color: var(--white); }

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.av-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  /* 130px top = 72px navbar height + 58px breathing room */
  padding: 130px 48px 100px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 8% 0%,   rgba(212,225,180,.45) 0%, transparent 65%),
    radial-gradient(ellipse 60% 45% at 92% 100%, rgba(184,204,234,.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 5%,   rgba(198,174,205,.20) 0%, transparent 55%),
    var(--bg);
}
.av-dl  { position: absolute; pointer-events: none; }
.av-dl1 { top: 37%; left: 5%; width: 90px; border-top: 1px dashed rgba(0,0,0,.1); }
.av-dl2 { bottom: 29%; right: 7%; width: 68px; border-top: 1px dashed rgba(0,0,0,.1); }
.av-mn  { position: absolute; font-size: 9px; color: var(--muted); pointer-events: none; opacity: .35; letter-spacing: .05em; }
.av-mn1 { top: 37%;    left: 5%;   transform: translateX(98px)  translateY(-9px); }
.av-mn2 { bottom: 29%; right: 7%;  transform: translateX(-76px) translateY(-9px); }

.av-hero-c { width: 100%; text-align: center; position: relative; z-index: 2; }

.av-headline {
  font-family: 'Anybody', cursive; font-weight: 700; font-stretch: 112.5%;
  font-size: clamp(36px, 5vw, 64px); line-height: .97; letter-spacing: -.025em;
  color: var(--ink); margin-bottom: 28px;
  opacity: 0; transform: translateY(18px);
  animation: av-up 1s cubic-bezier(.16,1,.3,1) .1s forwards;
}
.av-headline .av-line { display: block; }
.av-headline em { font-style: italic; font-stretch: 75%; color: rgba(28,30,28,.5); }

/* Culture word */
.av-culture-wrap { display: inline-block; position: relative; }
.av-culture-wrap::after {
  content: ''; position: absolute; bottom: 3px; left: 0; right: 0;
  height: 5px; background: var(--lime); border-radius: 3px; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  animation: av-line .65s ease 1s forwards;
}
.av-cv-holder { position: relative; display: inline-block; }
.av-cv-ghost  { visibility: hidden; display: inline-block;
  font-family: 'Anybody', cursive; font-weight: 900; font-stretch: 125%; }
.av-cv {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  opacity: 0; white-space: nowrap; transition: opacity .4s;
}
.av-cv.active { opacity: 1; }
.av-cv-a { font-family: 'Anybody', cursive; font-weight: 700; font-stretch: 112.5%; font-style: italic; }
.av-cv-p { font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; }
.av-cv-s { font-family: 'Anybody', cursive; font-weight: 900; font-stretch: 125%; letter-spacing: .04em; text-transform: uppercase; }

/* Culture tooltip */
.av-culture-tip {
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(3px);
  background: var(--ink); color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
  opacity: 0; pointer-events: none; white-space: nowrap;
  transition: opacity .18s, transform .18s;
}
.av-culture-wrap.show-tip .av-culture-tip {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

.av-subcopy {
  font-size: var(--fs-lead); /* ← unificado (antes: 16px) */
  line-height: 1.78; color: var(--muted);
  max-width: 400px; margin: 0 auto 56px;
  opacity: 0; transform: translateY(12px);
  animation: av-up 1s cubic-bezier(.16,1,.3,1) .45s forwards;
}
.av-cta-group {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(10px);
  animation: av-up 1s cubic-bezier(.16,1,.3,1) .75s forwards;
}
.av-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: av-up .8s ease 1.4s forwards;
}
.av-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--muted), transparent); animation: av-pulse 2.2s ease-in-out infinite; }
.av-scroll-txt  { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; writing-mode: vertical-rl; transform: rotate(180deg); }

/* ── Floating cards ── */
.av-fc {
  position: absolute; border-radius: var(--r-sticky);
  box-shadow: var(--shadow-sm); font-family: 'Work Sans', sans-serif;
  user-select: none; cursor: grab; z-index: 5;
  transition: box-shadow .25s; opacity: 0;
}
.av-fc:hover { box-shadow: var(--shadow-lg); }
.av-fc:active { cursor: grabbing; }
.av-fc-close {
  position: absolute; top: 7px; right: 8px; width: 18px; height: 18px;
  border-radius: 50%; background: rgba(0,0,0,.08); border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s; font-size: 9px; color: rgba(28,30,28,.65);
}
.av-fc:hover .av-fc-close { opacity: 1; }

.av-fc-ticket {
  background: var(--white); border-left: 3px solid var(--fuchsia);
  width: 175px; padding: 13px 15px; top: 16%; right: 7%;
  animation: av-floatA 7s ease-in-out infinite, av-slide .7s ease .5s forwards;
}
.av-fc-ticket .fc-tag-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 5px; }
.av-fc-ticket .fc-lbl        { font-size: 12px; font-weight: 500; line-height: 1.4; }
.av-fc-ticket .fc-meta       { font-size: 10px; color: var(--muted); margin-top: 7px; padding-top: 7px; border-top: 1px dashed rgba(0,0,0,.09); }

.av-fc-sticky {
  background: var(--lilac); width: 142px; height: 142px; padding: 15px;
  top: 22%; left: 5.5%; transform: rotate(-4deg);
  animation: av-floatB 9s ease-in-out infinite, av-tilt .7s ease .75s forwards;
}
.av-fc-sticky::after { content: ''; position: absolute; top: 0; right: 15px; width: 20px; height: 7px; background: rgba(255,255,255,.45); border-radius: 0 0 4px 4px; }
.av-fc-sticky .fc-sl { font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(28,30,28,.44); }
.av-fc-sticky .fc-st { font-size: 11px; font-weight: 500; color: rgba(28,30,28,.76); line-height: 1.55; margin-top: 9px; }

.av-fc-tag {
  background: var(--sage); border-radius: 10px; width: 152px; padding: 12px 13px;
  bottom: 24%; left: 5%; transform: rotate(2deg);
  animation: av-floatC 8s ease-in-out infinite, av-tilt2 .7s ease .95s forwards;
}
.av-fc-tag .fc-tt { font-family: 'Anybody', cursive; font-weight: 700; font-size: 13px; margin-bottom: 3px; }
.av-fc-tag .fc-ts { font-size: 10px; color: rgba(28,30,28,.55); }

.av-fc-pass {
  background: var(--blue); width: 162px; padding: 13px 15px; border-radius: var(--r-sticky);
  bottom: 20%; right: 6%;
  animation: av-floatA 10s ease-in-out infinite reverse, av-slide .7s ease 1.1s forwards;
}
.av-fc-pass .fc-pf { font-size: 9px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-bottom: 2px; }
.av-fc-pass .fc-pd { font-family: 'Anybody', cursive; font-weight: 800; font-size: 18px; color: var(--white); }
.av-fc-pass .fc-pl { border-top: 1px dashed rgba(255,255,255,.28); margin: 8px 0; }
.av-fc-pass .fc-pm { display: flex; justify-content: space-between; font-size: 9px; color: rgba(255,255,255,.58); font-weight: 500; letter-spacing: .05em; }

/* ════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn-av-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--ink);
  font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 16px 30px; border-radius: var(--r-pill);
  border: 1.5px solid var(--sage); text-decoration: none;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-av-primary:hover { background: var(--sage); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-av-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--muted);
  font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 30px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(0,0,0,.18); text-decoration: none;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-av-ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════
   SERVICE CARDS (flip)
════════════════════════════════════════════════════════ */
.av-cards-section {
  padding: 96px 48px;
  display: flex; align-items: flex-start; justify-content: center; gap: 20px;
  position: relative;
}
.av-cards-section::before {
  content: '— services';
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); opacity: .42;
}
.av-card-col {
  perspective: 900px;
  opacity: 0; transform: translateY(40px);
  transition: opacity .6s ease, transform .6s ease;
}
.av-card-col.in { opacity: 1; transform: translateY(0); }
.av-card-col:nth-child(1) { transition-delay: .08s; }
.av-card-col:nth-child(2) { transition-delay: .22s; }
.av-card-col:nth-child(3) { transition-delay: .38s; }

.av-card-flipper {
  width: 222px; height: 316px; position: relative;
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.4,0,.2,1);
}
.av-card-col.open .av-card-flipper { transform: rotateY(180deg); }

.av-card-face {
  position: absolute; inset: 0; border-radius: var(--r-card);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.av-card-front.c-blue   { background: var(--blue); }
.av-card-front.c-green  { background: var(--sage); }
.av-card-front.c-purple { background: var(--lilac); }

.av-flip-hint {
  position: absolute; top: 18px; right: 18px;
  font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(28,30,28,.3); transition: color .2s;
}
.av-card-flipper:hover .av-flip-hint { color: rgba(28,30,28,.6); }

.av-card-back {
  transform: rotateY(180deg); background: var(--white);
  justify-content: space-between; padding: 24px;
}
.av-card-back.b-blue   { border: 2px solid var(--blue); }
.av-card-back.b-green  { border: 2px solid var(--sage); }
.av-card-back.b-purple { border: 2px solid var(--lilac); }
.av-card-back::before {
  content: ''; position: absolute; top: 20px; right: 20px;
  width: 8px; height: 8px; border-radius: 50%;
}
.av-card-back.b-blue::before   { background: var(--blue); }
.av-card-back.b-green::before  { background: var(--sage); }
.av-card-back.b-purple::before { background: var(--lilac); }

.av-c-num   { font-size: 11px; font-weight: 500; letter-spacing: .06em; color: rgba(28,30,28,.38); display: block; margin-bottom: 7px; }
.av-c-title { font-family: 'Anybody', cursive; font-weight: 700; font-stretch: 87.5%; font-size: 13px; line-height: 1.3; color: var(--ink); text-transform: uppercase; letter-spacing: .01em; display: block; }
.av-c-body  { font-size: 13px; color: rgba(28,30,28,.72); line-height: 1.68; }

.btn-av-explore {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--neutral); color: var(--ink);
  font-family: 'Work Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 9px 16px; border-radius: var(--r-pill);
  border: 1px solid rgba(0,0,0,.09); text-decoration: none; width: fit-content;
  transition: box-shadow .2s, background .2s;
}
.btn-av-explore:hover { background: var(--white); box-shadow: 0 3px 14px rgba(0,0,0,.1); }
.btn-av-explore img   { width: 16px; height: 16px; }

/* ════════════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════════════ */
.av-about-section {
  padding: 96px 48px; max-width: 820px; margin: 0 auto; text-align: center;
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease; position: relative;
}
.av-about-section.in { opacity: 1; transform: translateY(0); }
.av-about-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 1px; background: rgba(0,0,0,.1); }
.av-about-hl  { font-family: 'Anybody', cursive; font-weight: 600; font-stretch: 100%; font-size: clamp(20px, 2.8vw, 32px); line-height: 1.35; color: var(--ink); margin-bottom: 40px; letter-spacing: -.012em; }
.av-about-sub { max-width: 480px; margin: 0 auto; }
.av-about-sub h3 { font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.av-about-sub p  { font-size: 16px; color: rgba(28,30,28,.7); line-height: 1.78; margin-bottom: 24px; }
.av-pillars { display: flex; justify-content: center; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
.av-pillar  { display: flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: var(--r-pill); border: 1px solid rgba(0,0,0,.07); background: var(--white); font-size: 11px; font-weight: 600; color: rgba(28,30,28,.65); letter-spacing: .015em; }
.av-pillar-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════
   CTA BLOCK
════════════════════════════════════════════════════════ */
.av-cta-block  { background: var(--neutral); border-radius: 24px; padding: 96px 48px; text-align: center; }
.av-cta-h2     { font-family: 'Anybody', cursive; font-size: clamp(30px, 4vw, 50px); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }
.av-cta-btns   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════
   EDITORIAL SEPARATOR
════════════════════════════════════════════════════════ */
.av-sep { display: flex; align-items: center; gap: 24px; padding: 72px 48px; max-width: var(--max-w); margin: 0 auto; }
.av-sep-line { flex: 1; height: 1px; background: var(--border); }
.av-sep-mark { font-size: 11px; letter-spacing: .18em; color: var(--muted); }

/* ════════════════════════════════════════════════════════
   PROJECTS PAGE
════════════════════════════════════════════════════════ */
.av-projects-hero {
  padding: 120px 48px 80px; max-width: var(--max-w); margin: 0 auto;
}
.av-projects-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; display: block; }
.av-projects-title   { font-family: 'Anybody', cursive; font-size: clamp(42px, 7vw, 80px); font-weight: 900; letter-spacing: -.03em; line-height: .97; color: var(--ink); margin-bottom: 28px; }
.av-projects-sub     { font-size: var(--fs-lead); /* ← unificado (antes: 18px) */ color: var(--muted); max-width: 520px; line-height: 1.65; }

/* Vertical entry cards */
.av-verticals-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  padding: 0 48px 48px; max-width: var(--max-w); margin: 0 auto;
}
.av-vertical-card {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 20px; padding: 32px 28px; border-radius: 20px;
  text-decoration: none; color: var(--ink);
  transition: transform .25s, box-shadow .25s;
  min-height: 200px; position: relative; overflow: hidden;
}
.av-vertical-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.av-vertical-card--strategy   { background: var(--lime);   border: 1.5px solid var(--sage); }
.av-vertical-card--content    { background: var(--blue-pale); border: 1.5px solid var(--blue); }
.av-vertical-card--experience { background: var(--lilac);  border: 1.5px solid #b09ab8; }
.av-vc-num  { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: rgba(17,17,17,.4); }
.av-vc-body { flex: 1; }
.av-vc-title { font-family: 'Anybody', cursive; font-size: clamp(18px,2vw,24px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 8px; }
.av-vc-sub  { font-size: 13px; line-height: 1.6; color: rgba(17,17,17,.6); max-width: 240px; }
.av-vc-arrow { font-size: 20px; transition: transform .2s; align-self: flex-end; }
.av-vertical-card:hover .av-vc-arrow { transform: translateX(5px); }

@media (max-width: 768px) {
  .av-verticals-row { grid-template-columns: 1fr; padding: 0 24px 40px; }
}

/* Process strip (dentro de projects) */
.av-process-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.av-process-step {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px 24px; background: var(--white);
  border-radius: 20px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
/* Numeración plana, sin círculo (anula el .av-ps-num circular de global.css) */
.av-process-strip .av-ps-num {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.av-ps-title {
  font-family: 'Anybody', cursive; font-size: 18px;
  font-weight: 800; letter-spacing: -.015em; margin-bottom: 6px;
}
.av-ps-desc { font-size: 13px; line-height: 1.65; color: var(--muted); }

@media (max-width: 900px) {
  .av-process-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 540px) {
  .av-process-strip { grid-template-columns: 1fr; }
}

/* Filter bar */
.av-filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 40px 48px; max-width: var(--max-w); margin: 0 auto;
}
.av-filter-btn {
  padding: 13px 22px; border-radius: var(--r-pill);
  border: 1.5px solid var(--border); background: var(--white);
  font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  transition: background .2s, border-color .2s, color .2s;
}
.av-filter-btn:hover, .av-filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* Project cards grid */
.av-projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 0 48px 80px; max-width: var(--max-w); margin: 0 auto;
}
.av-project-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .3s;
}
.av-project-card.in { opacity: 1; transform: translateY(0); }
.av-project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.av-project-thumb {
  aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, var(--sage), var(--blue-pale));
  position: relative;
}
.av-project-thumb img    { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.av-project-card:hover .av-project-thumb img { transform: scale(1.04); }
.av-project-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(28,30,28,.28); }

.av-project-body   { padding: 24px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.av-project-meta   { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.av-project-status { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px 5px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.av-project-status.completed { background: var(--neutral); border: 1.5px solid var(--orange); color: var(--orange); }
.av-project-status.ongoing   { background: var(--neutral); border: 1.5px solid #C8F542; color: #6A9500; }
.av-project-status.draft     { background: var(--neutral); border: 1.5px solid var(--blue-pale); color: #6A8AA8; }
.av-project-status img { width: 7px; height: 7px; }
.av-project-cat   { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--neutral); border: 1px solid var(--border); padding: 4px 10px; border-radius: var(--r-pill); color: var(--muted); }
.av-project-title { font-family: 'Anybody', cursive; font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 10px; }
.av-project-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.av-project-footer{ display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); }
.av-project-year  { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--muted); }
.av-project-arrow { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); transition: background .2s, border-color .2s; }
.av-project-card:hover .av-project-arrow { background: var(--lime); border-color: var(--sage); }
.av-project-arrow img { width: 18px; height: 18px; }

/* ════════════════════════════════════════════════════════
   CASE STUDY / SERVICE PAGE
════════════════════════════════════════════════════════ */
.av-cs-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 48px 96px; }
.av-cs-header { padding-top: 100px; padding-bottom: 64px; }

.av-cs-back { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 48px; transition: gap .2s, color .2s; }
.av-cs-back:hover { color: var(--ink); gap: 14px; }
.av-cs-back img   { width: 20px; height: 14px; }

.av-cs-meta-row    { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.av-status-label   { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px 7px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.av-status-label img { width: 7px; height: 7px; }
.av-status-label.completed { background: var(--neutral); border: 1.5px solid var(--orange); color: var(--orange); }
.av-status-label.ongoing   { background: var(--neutral); border: 1.5px solid #C8F542; color: #6A9500; }
.av-status-label.draft     { background: var(--neutral); border: 1.5px solid var(--blue-pale); color: #6A8AA8; }

.av-cat-tag { display: inline-flex; padding: 6px 14px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--white); border: 1px solid var(--border); color: var(--muted); }

.av-cs-title    { font-family: 'Anybody', cursive; font-size: clamp(36px, 6vw, 72px); font-weight: 900; line-height: 1.0; letter-spacing: -.03em; margin-bottom: 18px; }
.av-cs-subtitle { font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.65; margin-bottom: 40px; }

.av-cs-info-row   { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.av-cs-info-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.av-cs-info-val   { font-size: 13px; font-weight: 500; }

.av-cs-hero-img   { width: 100%; border-radius: 24px; overflow: hidden; margin-bottom: 64px; aspect-ratio: 16/7; background: linear-gradient(135deg, var(--sage), var(--blue-pale), var(--lilac)); }
.av-cs-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.av-cs-two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }

.av-cs-content h2   { font-family: 'Anybody', cursive; font-size: clamp(22px, 3vw, 38px); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; margin: 0 0 16px; }
.av-cs-content h3   { font-family: 'Anybody', cursive; font-size: clamp(18px, 2vw, 26px); font-weight: 700; margin: 32px 0 12px; }
.av-cs-content p    { font-size: 16px; line-height: 1.82; margin-bottom: 24px; max-width: 68ch; }
.av-cs-content figure { border-radius: 20px; overflow: hidden; margin: 32px 0; }
.av-cs-content figure img { width: 100%; display: block; }
.av-cs-content figcaption { font-size: 11px; color: var(--muted); padding: 8px 0 0; }
.av-cs-content blockquote { font-family: 'Anybody', cursive; font-size: clamp(18px, 2.2vw, 26px); font-weight: 600; line-height: 1.3; letter-spacing: -.02em; padding: 24px 32px; border-left: 3px solid #C8F542; background: var(--neutral); border-radius: 0 14px 14px 0; margin: 28px 0; font-style: italic; }

.av-metrics      { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--border); }
.av-metric-num   { font-family: 'Anybody', cursive; font-size: clamp(36px, 5vw, 52px); font-weight: 900; letter-spacing: -.04em; line-height: 1; color: var(--orange); margin-bottom: 6px; }
.av-metric-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.av-side-card       { background: var(--white); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-sm); position: sticky; top: 96px; }
.av-side-card-title { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.av-side-item       { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.av-side-item:last-of-type { border-bottom: none; }
.av-side-key        { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }
.av-side-val        { font-size: 13px; font-weight: 500; text-align: right; }

.av-tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.av-tag      { padding: 6px 14px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; letter-spacing: .06em; background: var(--neutral); border: 1px solid var(--border); color: var(--muted); }
.av-tag.lime   { background: var(--lime);   border-color: var(--sage);      color: #5A7A00; }
.av-tag.lilac  { background: #EDE7F0;       border-color: var(--lilac);     color: #7B5F8A; }
.av-tag.blue   { background: #E4EDF8;       border-color: var(--blue-pale); color: #4A6E99; }
.av-tag.orange { background: #FAE8E0;       border-color: var(--orange);    color: #C05A35; }

.av-next-project    { background: var(--white); border-radius: 24px; padding: 64px 72px; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 32px; text-decoration: none; color: var(--ink); transition: transform .2s, box-shadow .2s; margin-top: 80px; }
.av-next-project:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.av-next-eyebrow    { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block; }
.av-next-title      { font-family: 'Anybody', cursive; font-size: clamp(20px, 3vw, 34px); font-weight: 800; letter-spacing: -.025em; }
.av-next-arrow      { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, border-color .2s; }
.av-next-project:hover .av-next-arrow { background: var(--lime); border-color: var(--sage); }
.av-next-arrow img  { width: 18px; height: 18px; }

/* ════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════ */
.av-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; padding: 100px 48px; gap: 80px; align-items: start; max-width: var(--max-w); margin: 0 auto; }
.av-contact-left { display: flex; flex-direction: column; gap: 20px; }
.av-contact-h1   { font-family: 'Anybody', cursive; font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
.av-contact-sub  { font-size: var(--fs-lead); /* ← unificado (antes: 1.05rem) */ color: var(--muted); line-height: 1.65; max-width: 360px; }

.av-contact-form label   { display: block; font-size: .85rem; font-weight: 700; margin-top: 18px; margin-bottom: 4px; }
.av-contact-form input,
.av-contact-form textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--r-pill); font-family: 'Work Sans', sans-serif; font-size: .95rem; background: var(--white); color: var(--ink); outline: none; transition: border-color .2s; resize: none; }
.av-contact-form textarea { border-radius: 18px; min-height: 130px; }
.av-contact-form input:focus, .av-contact-form textarea:focus { border-color: var(--blue); }
.av-contact-form .av-err  { border-color: var(--fuchsia) !important; }

.av-submit-btn {
  margin-top: 24px; width: 100%; padding: 14px 30px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--blue); color: var(--white);
  font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: var(--r-pill);
  box-shadow: 0 6px 18px rgba(132,169,217,.4);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.av-submit-btn:hover   { background: #6a90c2; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(132,169,217,.5); }
.av-submit-btn:disabled{ opacity: .6; cursor: not-allowed; }
.av-submit-btn img     { width: 22px; height: 22px; filter: invert(1); }

#avFormOk { display: none; text-align: center; padding: 60px 0; }
#avFormOk h3 { font-family: 'Anybody', cursive; font-size: 1.8rem; margin-bottom: 12px; }
#avFormOk p  { color: var(--muted); }

/* ════════════════════════════════════════════════════════
   INSIGHT SECTION (with parallax notes)
════════════════════════════════════════════════════════ */
.av-insight-section   { background: var(--white); border-radius: 24px; padding: 100px 72px; position: relative; overflow: hidden; min-height: 520px; }
.av-insight-main      { max-width: 50%; display: flex; flex-direction: column; gap: 22px; position: relative; z-index: 2; }
.av-insight-eyebrow   { font-size: 11px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.av-insight-h2        { font-family: 'Anybody', cursive; font-size: clamp(28px, 3vw, 42px); font-weight: 800; line-height: 1.12; letter-spacing: -.025em; }
.av-insight-body      { font-size: 16px; line-height: 1.78; margin-bottom: 24px; max-width: 68ch; }

.av-float-note        { position: absolute; border-radius: var(--r-sticky); padding: 18px 20px; box-shadow: var(--shadow-sm); max-width: 195px; will-change: transform; z-index: 3; }
.av-float-note--lilac { background: var(--lilac); top: 72px;  right: 7%; }
.av-float-note--lime  { background: var(--lime);  top: 240px; right: 23%; }
.av-float-note--blue  { background: var(--blue-pale); top: 370px; right: 5%; }
.av-float-note .fn-title { font-size: 13px; font-weight: 700; line-height: 1.4; margin-bottom: 5px; }
.av-float-note .fn-sub   { font-size: 11px; opacity: .55; }

/* ════════════════════════════════════════════════════════
   PROCESS PAGE
════════════════════════════════════════════════════════ */
.av-process-map { background: var(--white); border-radius: 32px; padding: 80px 64px 96px; position: relative; overflow: hidden; }
.av-process-map::before { content: ''; position: absolute; inset: 0; border-radius: 32px; background: radial-gradient(circle at 15% 85%, rgba(198,174,205,.08) 0%, transparent 50%), radial-gradient(circle at 85% 15%, rgba(184,204,234,.1) 0%, transparent 50%); pointer-events: none; }
.av-process-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 2; }
.av-process-header h2 { font-family: 'Anybody', cursive; font-size: clamp(38px, 5vw, 62px); font-weight: 900; letter-spacing: -.025em; margin-bottom: 14px; }
.av-process-header p  { font-size: 15px; color: var(--muted); max-width: 480px; margin: 0 auto; }
.av-process-svg  { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.av-steps-grid   { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 900px; margin: 0 auto; }
.av-step-node    { padding: 24px 20px; }
.av-step-node:nth-child(2) { padding-top: 120px; padding-left: 48px; }
.av-step-node:nth-child(3) { padding-right: 48px; justify-content: flex-end; }
.av-step-node:nth-child(4) { padding-top: 160px; padding-left: 48px; }
.av-step-card    { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-sm); max-width: 280px; opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease, box-shadow .3s; }
.av-step-card.in { opacity: 1; transform: translateY(0); }
.av-step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.av-step-badge   { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.av-step-name    { font-family: 'Anybody', cursive; font-size: 18px; font-weight: 800; letter-spacing: -.015em; }
.av-step-title   { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.av-step-desc    { font-size: 13px; line-height: 1.72; color: #555; margin-bottom: 8px; }
.av-step-tag     { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 16px; display: block; }

/* ════════════════════════════════════════════════════════
   PRINCIPLES (about / process)
════════════════════════════════════════════════════════ */
.av-principles-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.av-principle-card { background: var(--white); border-radius: 20px; padding: 36px 32px; box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.av-principle-card.in { opacity: 1; transform: translateY(0); }
.av-principle-num   { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .1em; margin-bottom: 14px; }
.av-principle-title { font-family: 'Anybody', cursive; font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.2; }
.av-principle-body  { font-size: 13.5px; line-height: 1.78; color: #555; margin-top: 8px; }

/* ════════════════════════════════════════════════════════
   POST HEADER (insights)
════════════════════════════════════════════════════════ */
.av-post-header   { background: var(--white); border-radius: 24px; padding: 80px 72px 0; max-width: 820px; }
.av-post-cat-tag  { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: inline-block; background: var(--neutral); padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 20px; }
.av-post-title    { font-family: 'Anybody', cursive; font-size: clamp(36px, 5vw, 60px); font-weight: 900; line-height: 1.04; letter-spacing: -.025em; margin-bottom: 28px; }
.av-post-date     { font-size: 12px; color: var(--muted); letter-spacing: .06em; display: block; margin-bottom: 48px; }
.av-post-divider  { height: 1px; background: var(--border); border: none; }
.av-post-spacer   { height: 56px; }

/* Full-width image */
.av-full-img { border-radius: 24px; overflow: hidden; }
.av-full-img img { width: 100%; display: block; }
.av-full-img figcaption { background: var(--white); padding: 20px 40px 28px; text-align: center; font-size: 12px; color: var(--muted); font-style: italic; }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.av-footer { background: var(--dark); color: var(--lime); padding: 56px 48px 90px; width: 100%; }
.av-footer-inner { max-width: var(--max-w); margin: 0 auto; }
.av-footer-grid  { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(240,253,209,.12); align-items: start; }

.av-footer-name    { font-family: 'Anybody', cursive; font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px; color: var(--lime); }
.av-footer-tagline { font-size: .95rem; font-weight: 300; line-height: 1.5; color: rgba(240,253,209,.7); margin-bottom: 20px; max-width: 280px; }
.av-footer-form    { display: flex; flex-direction: column; gap: 10px; }
.av-footer-form input {
  width: 100%; padding: 11px 16px; border-radius: var(--r-pill);
  background: transparent; border: 1px solid rgba(240,253,209,.2);
  font-family: 'Work Sans', sans-serif; font-size: .8rem; font-weight: 300;
  color: var(--lime); outline: none; transition: border-color .2s;
}
.av-footer-form input::placeholder { color: var(--lime); opacity: .35; }
.av-footer-form input:focus { border-color: #9CC5F9; }
.av-footer-form button { width: 100%; padding: 11px 16px; border-radius: var(--r-pill); background: #9CC5F9; color: var(--dark); font-family: 'Work Sans', sans-serif; font-size: .8rem; font-weight: 700; border: none; transition: opacity .2s, transform .15s; margin-top: 4px; }
.av-footer-form button:hover { opacity: .85; transform: translateY(-1px); }

.av-footer-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #9CC5F9; margin-bottom: 16px; }
.av-footer-col ul li { margin-bottom: 10px; }
.av-footer-col ul li a { font-size: .85rem; font-weight: 300; color: var(--lime); opacity: .65; transition: opacity .2s, color .2s; }
.av-footer-col ul li a:hover { opacity: 1; color: #9CC5F9; }
.av-footer-social-link { display: flex; align-items: center; gap: 8px; }
.av-footer-social-link img { filter: invert(1); opacity: .5; }

.av-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; flex-wrap: wrap; gap: 8px; }
.av-footer-copy   { font-size: .72rem; font-weight: 300; color: rgba(240,253,209,.3); letter-spacing: .03em; }
.av-footer-copy span { color: rgba(156,197,249,.55); }
.av-footer-dot    { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: #9CC5F9; margin: 0 8px; vertical-align: middle; opacity: .4; }
.av-footer-legal  { display: flex; align-items: center; }
.av-footer-legal a { font-size: .72rem; font-weight: 400; color: rgba(240,253,209,.3); letter-spacing: .03em; text-decoration: none; transition: color .2s; }
.av-footer-legal a:hover { color: rgba(240,253,209,.65); }

/* ════════════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════════════ */
.av-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.av-reveal.in { opacity: 1; transform: translateY(0); }

/* Staggered delays */
.av-reveal:nth-child(2) { transition-delay: .12s; }
.av-reveal:nth-child(3) { transition-delay: .24s; }
.av-reveal:nth-child(4) { transition-delay: .36s; }

/* ════════════════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════════════════ */
@keyframes av-up     { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes av-slide  { to{opacity:1} }
@keyframes av-tilt   { to{opacity:1;transform:rotate(-4deg)} }
@keyframes av-tilt2  { to{opacity:1;transform:rotate(2deg)} }
@keyframes av-line   { to{transform:scaleX(1)} }
@keyframes av-pulse  { 0%,100%{opacity:.2} 50%{opacity:.7} }
@keyframes av-floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes av-floatB { 0%,100%{transform:rotate(-4deg) translateY(0)} 50%{transform:rotate(-2.5deg) translateY(-7px)} }
@keyframes av-floatC { 0%,100%{transform:rotate(2deg) translateY(0)} 50%{transform:rotate(3deg) translateY(-6px)} }

/* ════════════════════════════════════════════════════════
   WP BLOCK EDITOR COMPATIBILITY
════════════════════════════════════════════════════════ */
.wp-block-post-content { all: unset; display: block; }
.entry-content         { all: unset; display: block; }
.wp-block-image figcaption { font-size: 12px; color: var(--muted); font-style: italic; text-align: center; margin-top: 12px; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .av-projects-grid   { grid-template-columns: 1fr 1fr; }
  .av-footer-grid     { grid-template-columns: 1fr 1fr; }
  .av-footer-contact  { grid-column: 1 / -1; }
  .av-principles-strip{ grid-template-columns: 1fr; }
  .av-steps-grid      { grid-template-columns: 1fr; }
  .av-step-node:nth-child(n) { padding: 16px 0 !important; }
  .av-cs-two-col      { grid-template-columns: 1fr; }
  .av-side-card       { position: static; }
  .av-cards-section   { padding: 48px 32px; }
  .av-insight-section { padding: 72px 48px; }
  .av-insight-main    { max-width: 60%; }
}
@media (max-width: 768px) {
  body    { cursor: auto; }
  .av-cursor, .av-cursor-ring { display: none; }
  .av-hero  { padding: 60px 24px 80px; }
  .av-fc    { display: none; }
  .av-cards-section { flex-direction: column; align-items: center; padding: 72px 24px 80px; }
  .av-about-section { padding: 72px 24px 96px; }
  .av-nav-links     { display: none; }
  .av-nav-wrap      { width: calc(100% - 24px); top: 12px; }
  .av-lang          { bottom: 16px; right: 16px; }
  .av-projects-hero { padding: 80px 24px 48px; }
  .av-filter-bar    { padding: 28px 24px; }
  .av-projects-grid { grid-template-columns: 1fr; padding: 0 24px 80px; }
  .av-contact-wrap  { grid-template-columns: 1fr; padding: 72px 24px 80px; gap: 48px; }
  .av-cs-wrap       { padding: 0 24px 80px; }
  .av-cs-header     { padding-top: 72px; }
  .av-next-project  { padding: 48px 28px; flex-direction: column; align-items: flex-start; }
  .av-footer        { padding: 56px 24px 28px; }
  .av-footer-grid   { grid-template-columns: 1fr; gap: 40px; }
  .av-insight-main  { max-width: 100%; }
  .av-insight-section { padding: 72px 28px; }
  .av-process-map   { padding: 64px 24px 72px; }
  .av-cta-block     { padding: 80px 24px; }
  .av-sep           { padding: 52px 24px; }
  .av-404-wrap      { padding: 60px 24px 80px; }
  /* Tipografía mobile: cuerpo de texto sube a 16px */
  .av-insight-body,
  .av-cs-content p,
  .av-cs-content ul li,
  .av-cs-content ol li,
  .av-prose p,
  .av-prose li,
  .av-single-content p,
  .av-single-content ul li,
  .av-about-sub p   { font-size: 16px; }
  /* Labels interactivos: mínimo 12px en táctil */
  .av-lang-btn,
  .av-projects-eyebrow,
  .av-insight-eyebrow,
  .av-cs-back,
  .av-cs-info-label,
  .av-post-cat-tag  { font-size: 12px; }
}
@media (max-width: 480px) {
  .av-cta-btns      { flex-direction: column; align-items: center; }
  .av-cs-info-row   { flex-direction: column; gap: 20px; }
  .av-wrap          { padding: 0 20px; }
  .av-cards-section { padding: 40px 20px; }
  .av-insight-section { padding: 52px 20px; border-radius: 16px; }
  .av-next-project  { padding: 36px 20px; border-radius: 16px; }
  .av-cta-block     { padding: 60px 20px; border-radius: 16px; }
  .av-library-header { flex-direction: column; gap: 16px; padding: 40px 20px; }
  .av-card-flipper  { width: 180px; }
  /* Texto de cuerpo: 17px en pantallas muy pequeñas para mayor legibilidad */
  .av-insight-body,
  .av-cs-content p,
  .av-cs-content ul li,
  .av-cs-content ol li,
  .av-prose p,
  .av-prose li,
  .av-single-content p,
  .av-single-content ul li,
  .av-about-sub p   { font-size: 17px; line-height: 1.75; }
  /* Metadatos pequeños: mínimo absoluto 12px */
  .av-post-date,
  .av-project-year,
  .av-sep-mark,
  .av-metric-label  { font-size: 12px; letter-spacing: .06em; }
}

/* ════════════════════════════════════════════════════════
   IMPROVEMENTS v1.1 — additional styles
════════════════════════════════════════════════════════ */

/* ── INSIGHTS LIBRARY HEADER ── */
.av-library-header {
  padding: 56px 48px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.av-library-title {
  font-family: 'Anybody', cursive; font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.06;
}

/* ── POST CONTENT TYPOGRAPHY ── */
.av-cs-content h2 { margin-top: 52px; }
.av-cs-content h3 { margin-top: 36px; }
.av-cs-content ul, .av-cs-content ol { padding-left: 22px; margin-bottom: 20px; }
.av-cs-content ul li, .av-cs-content ol li { font-size: 16px; line-height: 1.78; margin-bottom: 8px; }
.av-cs-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.av-cs-content a:hover { color: var(--ink); }
.av-cs-content hr { border: none; height: 1px; background: var(--border); margin: 40px 0; }

/* ── PAGINATION ── */
.av-pagination { display: flex; justify-content: center; gap: 8px; padding-top: 48px; flex-wrap: wrap; }
.av-pagination a, .av-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 14px;
  border-radius: var(--r-pill); border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--muted); background: var(--white);
  transition: background .2s, border-color .2s, color .2s;
}
.av-pagination a:hover { border-color: var(--ink); color: var(--ink); }
.av-pagination .current { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ── SERVICE HERO BADGE ACCENT ── */
.av-svc-hero-badge { display: inline-flex; padding: 8px 18px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* ── FOOTER SOCIAL LINKS ── */
.av-footer-social-link {
  display: flex; align-items: center; gap: 9px;
  font-size: .85rem; font-weight: 300; color: var(--lime); opacity: .65;
  transition: opacity .2s, color .2s; text-decoration: none;
}
.av-footer-social-link:hover { opacity: 1; color: #9CC5F9; }
.av-footer-social-link img { filter: invert(1); opacity: .5; width: 16px; height: 16px; }
.av-footer-social-link:hover img { opacity: .9; }

/* ── ABOUT — sticky archetype card ── */
.av-archetype-card {
  background: var(--dark); border-radius: 24px; padding: 48px 40px;
  color: var(--lime); position: sticky; top: 96px;
}

/* ── CONTACT INFO STRIP ── */
.av-contact-info-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; opacity: .6;
  transition: opacity .2s; text-decoration: none; color: var(--ink);
}
.av-contact-info-link:hover { opacity: 1; }

/* ── HERO: mobile floating cards hidden by default already ── */
/* ── 404 PAGE ── */
.av-404-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: calc(100vh - 72px); text-align: center;
  padding: 80px 48px 120px;
  gap: 28px;
}
.av-404-num {
  font-family: 'Anybody', cursive;
  font-size: clamp(140px, 24vw, 280px);
  font-weight: 900; letter-spacing: -.05em; line-height: .9;
  color: var(--border); display: block;
}
.av-404-title {
  font-family: 'Anybody', cursive;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; letter-spacing: -.025em;
  color: var(--ink);
}
.av-404-sub {
  font-size: 17px; color: var(--muted);
  max-width: 420px; line-height: 1.75;
}

/* ── PRINT ── */
@media print {
  .av-cursor, .av-cursor-ring, .av-nav-wrap, .av-nav-menu, .av-lang, .av-footer { display: none !important; }
  body { background: white; color: black; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ── PROSE — contenido introducido manualmente en el editor ── */
.av-prose p  { font-size: 16px; line-height: 1.88; margin-bottom: 24px; color: rgba(28,30,28,.78); }
.av-prose p:last-child { margin-bottom: 0; }
.av-prose h2 { font-family: 'Anybody', cursive; font-size: clamp(22px,3vw,34px); font-weight: 800; letter-spacing: -.025em; margin: 40px 0 14px; }
.av-prose h3 { font-family: 'Anybody', cursive; font-size: clamp(18px,2.2vw,26px); font-weight: 700; margin: 32px 0 12px; }
.av-prose ul, .av-prose ol { padding-left: 22px; margin-bottom: 20px; }
.av-prose ul { list-style: disc; }
.av-prose ol { list-style: decimal; }
.av-prose li { font-size: 16px; line-height: 1.78; margin-bottom: 8px; color: rgba(28,30,28,.82); }
.av-prose blockquote { font-family: 'Anybody', cursive; font-size: clamp(16px,2vw,22px); font-weight: 600; font-style: italic; line-height: 1.35; letter-spacing: -.018em; padding: 24px 32px; border-left: 3px solid var(--lime); background: var(--neutral); border-radius: 0 14px 14px 0; margin: 28px 0; }
.av-prose a { color: var(--blue); text-underline-offset: 3px; text-decoration: underline; }
.av-prose strong { font-weight: 700; }
.av-prose em { font-style: italic; }

/* ── SINGLE POST / INSIGHTS SINGLE ── */
.av-single-wrap { max-width: 820px; margin: 0 auto; padding: 0 48px 96px; }
.av-single-hero { padding-top: 80px; margin-bottom: 0; }
.av-single-content {
  background: var(--white); border-radius: 0 0 24px 24px;
  padding: 56px 72px 80px;
}
.av-single-content p  { font-size: 16px; line-height: 1.88; margin-bottom: 28px; color: rgba(28,30,28,.82); }
.av-single-content h2 { font-family: 'Anybody', cursive; font-size: clamp(22px,3vw,34px); font-weight: 800; letter-spacing: -.025em; margin: 44px 0 14px; }
.av-single-content h3 { font-family: 'Anybody', cursive; font-size: clamp(18px,2.2vw,26px); font-weight: 700; margin: 32px 0 12px; }
.av-single-content blockquote {
  font-family: 'Anybody', cursive; font-size: clamp(17px, 2vw, 23px);
  font-weight: 600; font-style: italic; line-height: 1.35; letter-spacing: -.018em;
  padding: 24px 32px; border-left: 3px solid var(--lime);
  background: var(--neutral); border-radius: 0 14px 14px 0; margin: 28px 0;
}
.av-single-content ul { padding-left: 20px; margin-bottom: 20px; }
.av-single-content ul li { font-size: 16px; line-height: 1.78; margin-bottom: 8px; color: rgba(28,30,28,.82); }
.av-single-content a  { color: var(--blue); text-underline-offset: 3px; }
.av-single-content figure { border-radius: 20px; overflow: hidden; margin: 32px 0; }
.av-single-content figure img { width: 100%; display: block; }
.av-single-content figcaption { font-size: 11px; color: var(--muted); padding: 8px 0 0; text-align: center; font-style: italic; }

@media (max-width: 768px) {
  .av-single-content { padding: 40px 28px 64px; }
  .av-404-num { font-size: clamp(80px,18vw,160px); }
}

/* ── WordPress admin bar compensation ── */
.admin-bar body { padding-top: calc(72px + 32px); }
.admin-bar .av-nav-wrap { top: calc(20px + 32px); }

/* ════════════════════════════════════════════════════════
   FSE BLOCK THEME RESETS
   Prevent WordPress block wrappers from adding
   unwanted margin/padding/max-width to our custom design
════════════════════════════════════════════════════════ */

.wp-site-blocks { padding: 0 !important; margin: 0 !important; background: transparent !important; }
.wp-block-group.av-page-content { padding: 0 !important; margin: 0 !important; background: transparent !important; }
.wp-block-post-content { padding: 0 !important; margin: 0 !important; all: unset; display: block; background: transparent !important; }
.wp-block-group:not([class*="av-"]) { background: transparent !important; }
.is-layout-flow, .is-layout-constrained { background: transparent !important; }

header.wp-block-template-part,
footer.wp-block-template-part { display: block; padding: 0 !important; margin: 0 !important; }

header.wp-block-template-part > .wp-block-group,
footer.wp-block-template-part > .wp-block-group {
  padding: 0 !important; margin: 0 !important;
}

body.wp-block-post { padding-top: 72px !important; }

.wp-block-post-content > * { max-width: none !important; }
.is-layout-constrained > * { max-width: none !important; }
.is-layout-flow > * { max-width: none !important; }

.wp-block-html { margin: 0 !important; }

/* ════════════════════════════════════════════════════════
   v1.3 FIXES
════════════════════════════════════════════════════════ */

:root { --av-muted: var(--muted); }

@media (max-width: 1024px) {
  .av-insights-grid,
  .page-insights .av-project-card ~ .av-project-card ~ .av-project-card { grid-column: auto; }
}
@media (max-width: 768px) {
  .page-insights [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  .page-insights [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

.admin-bar body { padding-top: calc(72px + 32px) !important; }
.admin-bar .av-nav-wrap { top: calc(20px + 32px) !important; }

#avFooterOk { display: none; }

.av-step-card.in:nth-child(1) { transition-delay: .05s; }
.av-step-card.in:nth-child(2) { transition-delay: .15s; }
.av-step-card.in:nth-child(3) { transition-delay: .25s; }
.av-step-card.in:nth-child(4) { transition-delay: .35s; }

@media (max-width: 1024px) and (min-width: 769px) {
  .page-insights [style*="repeat(3,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE — v1.3 centred layout
════════════════════════════════════════════════════════ */

.av-about-section-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px 0;
}

.av-about-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 48px 80px;
  text-align: center;
  animation: av-hero-up .9s cubic-bezier(.16,1,.3,1) .1s both;
}
@keyframes av-hero-up {
  from { transform: translateY(20px); }
  to   { transform: translateY(0); }
}
.av-about-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 20px;
}
.av-about-h1,
body.page-about .av-about-h1 {
  font-family: 'Anybody', cursive;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: 36px;
  text-align: center;
  color: var(--ink, #1C1E1C) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.av-about-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 36px;
}
.av-about-chip {
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid; font-size: 12px;
  font-weight: 600; letter-spacing: .04em;
}
.av-about-bio {
  font-size: 16px; line-height: 1.82;
  color: rgba(28,30,28,.72);
  max-width: 560px; margin: 0 auto 40px;
}
.av-about-bio p { margin-bottom: 16px; }
.av-about-bio p:last-child { margin-bottom: 0; }
.av-about-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

.av-archetype-full {
  background: #1C1E1C; border-radius: 24px;
  padding: 56px 64px; color: #F0FDD1;
  text-align: center;
}
.av-archetype-label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(240,253,209,.4);
  margin-bottom: 16px;
}
.av-archetype-title {
  font-family: 'Anybody', cursive;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.1; margin-bottom: 20px; color: #F0FDD1;
}
.av-archetype-body {
  font-size: 15px; line-height: 1.78;
  color: rgba(240,253,209,.65);
  max-width: 520px; margin: 0 auto 32px;
}
.av-archetype-pillars {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 20px;
  margin-bottom: 28px;
}
.av-archetype-pillar {
  display: flex; align-items: center; gap: 8px;
}
.av-archetype-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.av-archetype-pillar span {
  font-size: 13px; font-weight: 600;
  color: rgba(240,253,209,.8);
}
.av-archetype-quote {
  font-size: 12px; font-style: italic;
  color: rgba(240,253,209,.35);
  font-family: 'Work Sans', sans-serif;
}

/* Section headings */
.av-about-section-h2 {
  font-family: 'Anybody', cursive;
  font-size: var(--fs-section); /* ← unificado (antes: clamp(26px, 3.5vw, 42px)) */
  font-weight: 800; letter-spacing: -.025em;
  text-align: center; margin-bottom: 56px;
  color: var(--ink);
}

/* Timeline */
.av-timeline {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid #E2E0DA;
  padding-left: 40px;
  max-width: 560px;
  margin: 0 auto;
}
.av-timeline-item {
  position: relative; padding: 0 0 40px;
}
.av-timeline-item:last-child { padding-bottom: 0; }
.av-timeline-dot {
  position: absolute; left: -49px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #F5F4F0; border: 2px solid #E2E0DA;
  display: flex; align-items: center; justify-content: center;
}
.av-timeline-dot-inner {
  width: 6px; height: 6px; border-radius: 50%; background: #C6AECD;
}
.av-timeline-dot--active { background: var(--ink) !important; border-color: var(--ink) !important; }
.av-timeline-dot--active .av-timeline-dot-inner { background: var(--lime) !important; }
.av-timeline-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px; flex-wrap: wrap;
}
.av-timeline-year {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  color: var(--muted); text-transform: uppercase;
}
.av-timeline-type {
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 100px;
}
.av-timeline-type--education {
  background: #EDE7F0; color: #7B5F8A; border: 1px solid #C6AECD;
}
.av-timeline-type--work {
  background: #F0FDD1; color: #5A7A00; border: 1px solid #D4E1B4;
}
.av-timeline-title {
  font-family: 'Anybody', cursive; font-size: 18px;
  font-weight: 700; letter-spacing: -.015em; margin-bottom: 3px;
}
.av-timeline-place {
  font-size: 12px; font-weight: 600; color: var(--muted);
  margin-bottom: 6px; letter-spacing: .02em;
}
.av-timeline-desc {
  font-size: 14px; color: var(--muted); line-height: 1.65;
}

/* Skills grid */
.av-skills-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.av-skill-card {
  border: 1px solid; border-radius: 16px;
  padding: 20px 22px; text-align: center;
}
.av-skill-card p {
  font-size: 14px; font-weight: 700; line-height: 1.3;
}

/* Process strip */
.av-process-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.av-process-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.av-process-step {
  background: var(--white); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.av-process-step-num {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  color: var(--muted); text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.av-process-step-title {
  font-family: 'Anybody', cursive; font-size: 18px;
  font-weight: 800; letter-spacing: -.015em; margin-bottom: 6px;
}
.av-process-step-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* Tools grid */
.av-tools-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.av-tool-card {
  border: 1px solid; border-radius: 16px;
  padding: 20px 18px; display: flex;
  flex-direction: column; align-items: center;
  gap: 10px; text-align: center;
}
.av-tool-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
}
.av-tool-card span {
  font-size: 12px; font-weight: 600; line-height: 1.3;
}

/* About responsive */
@media (max-width: 900px) {
  .av-process-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .av-about-hero         { padding: 72px 24px 56px; }
  .av-about-section-wrap { padding: 56px 24px 0; }
  .av-archetype-full     { padding: 40px 28px; }
  .av-skills-grid        { grid-template-columns: repeat(2, 1fr); }
  .av-tools-grid         { grid-template-columns: repeat(2, 1fr); }
  .av-timeline           { max-width: 100%; margin: 0 auto; }
  .av-about-section-h2   { margin-bottom: 36px; }
  .av-process-strip      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .av-skills-grid   { grid-template-columns: 1fr; }
  .av-tools-grid    { grid-template-columns: repeat(2, 1fr); }
  .av-process-strip { grid-template-columns: 1fr; }
  .av-about-ctas    { flex-direction: column; align-items: center; }
}

/* ── Reduced-motion fallback: never leave hero stuck at opacity 0 ── */
@media (prefers-reduced-motion: reduce) {
  .av-about-hero { animation: none !important; opacity: 1 !important; }
}