/* ============================================================
   alek digital — Portfolio page styles
   Built on the design-system tokens (styles.css).
   Centerpiece: a split header — MARKETING | FOTOGRAFÍA.
   ============================================================ */

@import url('styles.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--text-body);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Language toggle visibility */
.lang-es .en { display: none !important; }
.lang-en .es { display: none !important; }

/* ---- Selection ---- */
::selection { background: var(--yellow-400); color: var(--ink-950); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 2.5rem;
  background: rgba(8,7,6,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--yellow-400);
}
.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo img { width: 34px; height: 34px; }
.nav__logo span {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: 1.15rem; letter-spacing: -0.02em; color: var(--ink-50);
}
.nav__logo span b { color: var(--yellow-400); }
.nav__links { display: flex; gap: 1.7rem; align-items: center; }
.nav__links > a {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow-400); transition: color var(--dur-base) var(--ease-out);
  position: relative; padding: 2px 0;
}
.nav__links > a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--yellow-400); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__links > a:hover { color: #fff; }
.nav__links > a:hover::after { transform: scaleX(1); }
.nav__lang {
  display: flex; gap: 2px; background: rgba(255,255,255,0.08);
  border-radius: var(--radius-pill); padding: 3px; margin-left: 0.4rem;
}
.nav__lang button {
  border: none; cursor: pointer; background: transparent;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  padding: 4px 11px; border-radius: var(--radius-pill);
  color: rgba(245,242,236,0.55); transition: all var(--dur-base) var(--ease-out);
}
.nav__lang button.is-active { background: var(--yellow-400); color: var(--ink-950); }
.nav__phone {
  display: flex; align-items: center; gap: 0.5rem; margin-left: 0.6rem;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--yellow-400);
}
.nav__phone i { width: 15px; height: 15px; color: var(--yellow-400); }

/* ============================================================
   SPLIT HERO  —  MARKETING | FOTOGRAFÍA
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 60px;
}
.hero__side {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5.5rem 3.5rem;
}
/* MARKETING — black side */
.hero__side--mkt { background: var(--ink-950); }
.hero__side--mkt::before {
  content: ''; position: absolute; top: -120px; left: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,0,0.16) 0%, transparent 70%);
  pointer-events: none;
}
/* FOTOGRAFÍA — yellow side */
.hero__side--photo { background: var(--yellow-400); align-items: flex-start; min-height: 86vh; }
.hero__side--photo::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--paper-grain); opacity: 0.06; mix-blend-mode: multiply; pointer-events: none;
}

.hero__eyebrow {
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 500;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.4rem;
}
.hero__side--mkt .hero__eyebrow { color: var(--yellow-400); }
.hero__side--photo .hero__eyebrow { color: var(--ink-950); }
.hero__eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; }

.hero__word {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: clamp(3.2rem, 6.5vw, 6rem); line-height: 0.92;
  letter-spacing: var(--tracking-tight); margin-bottom: 1.3rem;
}
.hero__side--mkt .hero__word { color: var(--ink-50); }
.hero__side--mkt .hero__word b { color: var(--yellow-400); }
.hero__side--photo .hero__word { color: var(--ink-950); }
.hero__word .outline {
  -webkit-text-stroke: 2px currentColor; color: transparent; -webkit-text-fill-color: transparent;
}

.hero__tagline { font-size: 1rem; line-height: var(--leading-normal); max-width: 360px; margin-bottom: 2rem; }
.hero__side--mkt .hero__tagline { color: rgba(245,242,236,0.62); }
.hero__side--photo .hero__tagline { color: rgba(15,14,12,0.7); }

.hero__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.2rem; max-width: 380px; }
.hero__tag {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.hero__side--mkt .hero__tag { border: 1px solid rgba(245,242,236,0.22); color: rgba(245,242,236,0.72); }
.hero__side--photo .hero__tag { border: 1.5px solid var(--ink-950); color: var(--ink-950); }

/* Buttons (page-local, mirror DS Button) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: 0.88rem;
  letter-spacing: 0.01em; padding: 0.8rem 1.7rem; border-radius: var(--radius-md);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.btn--primary { background: var(--yellow-400); color: var(--ink-950); border-color: var(--ink-950); box-shadow: var(--sticker-ink); }
.btn--primary:hover { transform: translate(2px,2px); box-shadow: var(--sticker-ink-sm); background: var(--yellow-500); }
.btn--primary:active { transform: translate(4px,4px); box-shadow: 0 0 0 var(--ink-950); }
.btn--ink { background: var(--ink-950); color: var(--ink-50); border-color: var(--ink-950); box-shadow: var(--sticker-yellow); }
.btn--ink:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--yellow-400); }
.btn--ghost-dark { background: transparent; color: var(--ink-50); border-color: rgba(245,242,236,0.32); }
.btn--ghost-dark:hover { background: var(--ink-50); color: var(--ink-950); border-color: var(--ink-50); }
.btn--ghost-ink { background: transparent; color: var(--ink-950); border-color: var(--ink-950); }
.btn--ghost-ink:hover { background: var(--ink-950); color: var(--yellow-400); }
.btn--accent { background: var(--terracotta-500); color: #fff; border-color: var(--terracotta-500); }
.btn--accent:hover { background: var(--terracotta-600); border-color: var(--terracotta-600); transform: translateY(-1px); }

.hero__cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* Marketing stats row */
.hero__stats { display: flex; gap: 2.2rem; margin-top: 2.6rem; }
.hero__stat .n { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 2.1rem; line-height: 1; color: var(--yellow-400); }
.hero__stat .l { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,242,236,0.5); margin-top: 0.3rem; }

/* Photography / Video side — full-bleed media with overlaid text */
.hero__media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none; box-shadow: none; transform: none; z-index: 0;
  background: var(--ink-950);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; display: none; background: var(--ink-950);
}
.hero__video[src]:not([src=""]) { display: block; }
.hero__media-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0) 26%, rgba(10,9,8,0) 52%, rgba(10,9,8,0.82) 100%);
}
.hero__media-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5.5rem 3.5rem;
}
.hero__side--photo .hero__media-content .hero__eyebrow { color: var(--yellow-400); }
.hero__side--photo .hero__media-content .hero__word { color: var(--ink-50); margin-bottom: 1.1rem; }
.hero__word .amp { color: var(--yellow-400); -webkit-text-stroke: 0; }
.hero__photo-cap {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-50);
}
.hero__photo-cap i { width: 16px; height: 16px; }
.hero__photo-cap b { font-weight: 600; }

/* Center seam medallion bridging the two identities */
.hero__seam {
  position: absolute; top: 0; left: 50%; bottom: 0; width: 0;
  transform: translateX(-50%); z-index: 5;
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.hero__medallion {
  width: 92px; height: 92px; flex: 0 0 92px; border-radius: var(--radius-xl);
  background: var(--ink-950); border: 3px solid var(--yellow-400);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4); pointer-events: auto;
}
.hero__medallion img {
  width: 100%; height: 100%; object-fit: contain; padding: 10px;
  animation: medallion-spin 3s ease-in-out infinite;
}
@keyframes medallion-spin {
  0%, 55% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) { .hero__medallion img { animation: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--yellow-400); border-top: 2px solid var(--ink-950); border-bottom: 2px solid var(--ink-950);
  overflow: hidden; padding: 0.9rem 0; white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 2.5rem; animation: marquee 28s linear infinite; will-change: transform; }
.marquee span {
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.5rem;
  letter-spacing: -0.01em; color: var(--ink-950); display: inline-flex; align-items: center; gap: 2.5rem;
}
.marquee span::after { content: '✦'; color: var(--terracotta-500); font-size: 1.1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { padding: var(--section-y) 2.5rem; }
.inner { max-width: var(--container-lg); margin: 0 auto; }
.kicker {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--terracotta-500); margin-bottom: 0.8rem;
}
.title {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: var(--tracking-tight);
  line-height: 1.06; color: var(--text-strong);
}
.title em { font-style: normal; color: var(--terracotta-500); }
.divider { width: 52px; height: 3px; background: var(--yellow-400); margin: 1.4rem 0; border: 1px solid var(--ink-950); }
.sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: var(--leading-normal); }

/* ---- ABOUT ---- */
#about { background: var(--color-surface); }
.about { display: grid; grid-template-columns: 0.85fr 1.3fr; gap: 4.5rem; align-items: start; margin-top: 3rem; }
.about__media { position: relative; }
.about__media image-slot { width: 100%; height: auto; aspect-ratio: 4/5; border: 2px solid var(--ink-950); box-shadow: var(--sticker-ink); background: var(--ink-950); }
.about__badge {
  position: absolute; bottom: -22px; right: -18px; background: var(--yellow-400);
  color: var(--ink-950); padding: 1rem 1.25rem; border-radius: var(--radius-md);
  border: 2px solid var(--ink-950); box-shadow: var(--sticker-ink-sm); transform: rotate(2deg);
}
.about__badge strong { display: block; font-family: var(--font-display); font-size: 1.8rem; line-height: 1; }
.about__badge span { font-size: 0.68rem; letter-spacing: 0.06em; font-family: var(--font-mono); }
.about__text p { color: var(--text-body); line-height: var(--leading-relaxed); margin-bottom: 1.2rem; }
.about__text p strong { color: var(--text-strong); font-weight: 600; }
.about__highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 2rem; }
.hl { background: var(--color-bg); padding: 1.1rem 1.2rem; border-radius: var(--radius-md); border: 1px solid var(--border); border-left: 3px solid var(--yellow-500); }
.hl strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-strong); margin-bottom: 0.2rem; }
.hl span { font-size: 0.78rem; color: var(--text-muted); }

/* Certifications strip */
.certs { margin-top: 1.8rem; }
.certs__lbl { display: block; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.7rem; }
.certs__row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cert { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.02em; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--ink-950); color: var(--yellow-400); border: 1.5px solid var(--ink-950); }

/* ---- SERVICES ---- */
#services { background: var(--color-bg); }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.svc {
  position: relative; background: var(--color-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem; overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column; gap: 0.85rem;
}
.svc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--yellow-400); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-base) var(--ease-out); }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc:hover::before { transform: scaleX(1); }
.svc--featured { background: var(--ink-950); border-color: var(--ink-950); box-shadow: var(--sticker-yellow); }
.svc--featured::before { transform: scaleX(1); }
.svc__icon {
  width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--yellow-400);
  border: 2px solid var(--ink-950); display: flex; align-items: center; justify-content: center; color: var(--ink-950);
}
.svc__icon i { width: 24px; height: 24px; }
.svc h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.2rem; letter-spacing: -0.01em; color: var(--text-strong); }
.svc p { font-size: 0.86rem; color: var(--text-muted); line-height: var(--leading-normal); }
.svc__tools { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.tool { font-family: var(--font-mono); font-size: 0.64rem; padding: 3px 9px; background: var(--ink-100); border-radius: var(--radius-pill); color: var(--ink-500); }
.svc--featured h3, .svc--featured p { color: var(--ink-50); }
.svc--featured p { color: rgba(245,242,236,0.62); }
.svc--featured .tool { background: rgba(255,255,255,0.1); color: rgba(245,242,236,0.7); }

/* Process strip */
.process { margin-top: 3.5rem; background: var(--ink-950); border-radius: var(--radius-lg); padding: 2.5rem 2.8rem; border: 2px solid var(--ink-950); }
.process h3 { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--ink-50); font-size: 1.3rem; margin-bottom: 1.8rem; }
.process h3 span::after { content: ''; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.step { position: relative; }
.step:not(:last-child)::after { content: '→'; position: absolute; right: -0.7rem; top: 0.2rem; color: var(--yellow-400); }
.step .num { font-family: var(--font-mono); font-size: 0.64rem; color: var(--yellow-400); letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.step .nm { font-size: 0.82rem; font-weight: 600; color: var(--ink-50); margin-bottom: 0.25rem; }
.step .d { font-size: 0.7rem; color: rgba(245,242,236,0.5); line-height: 1.5; }

/* ---- CASES ---- */
#cases { background: var(--color-surface); }

/* ---- PROJECTS CAROUSEL ---- */
.carousel { margin-top: 3rem; position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.1, 1);
  will-change: transform;
}
.cslide {
  flex: 0 0 100%; min-width: 0;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0;
  border: 2px solid var(--ink-950); background: var(--color-bg);
  box-shadow: var(--sticker-ink);
}
.cslide__media {
  position: relative; background: var(--ink-950); min-height: 420px;
  border-right: 2px solid var(--ink-950);
}
.cslide__media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.cslide__num {
  position: absolute; top: 0.6rem; left: 1rem; z-index: 3; pointer-events: none;
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 4.2rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--yellow-400);
}
.cslide__body {
  padding: 2.8rem 2.6rem; display: flex; flex-direction: column;
  justify-content: center; gap: 0.55rem;
}
.cslide__meta { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--terracotta-500); }
.cslide__title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -0.02em; line-height: 1; color: var(--text-strong); }
.cslide__role { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.cslide__line { font-size: 0.96rem; line-height: var(--leading-normal); color: var(--text-body); margin: 0.5rem 0 0.3rem; max-width: 34ch; }
.cslide__stats { display: flex; gap: 2.4rem; margin: 0.5rem 0 1.4rem; }
.cstat { display: flex; flex-direction: column; }
.cstat b { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.7rem; line-height: 1; color: var(--ink-950); }
.cstat span { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem; }
.cslide__cta { align-self: flex-start; }
.cslide__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }
.extlink {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.03em;
  padding: 0.6rem 0.9rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-pill); color: var(--text-body); background: var(--color-surface);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.extlink i { width: 15px; height: 15px; color: var(--terracotta-500); }
.extlink:hover { border-color: var(--ink-950); color: var(--ink-950); box-shadow: var(--sticker-ink-sm); transform: translate(-1px,-1px); }

/* Carousel controls */
.carousel__bar { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.8rem; }
.carousel__arrow {
  width: 50px; height: 50px; flex: 0 0 auto; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-950); color: var(--ink-50); border: 2px solid var(--ink-950);
  border-radius: var(--radius-md); box-shadow: var(--sticker-yellow);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.carousel__arrow:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--yellow-400); }
.carousel__arrow:active { transform: translate(4px,4px); box-shadow: 0 0 0 var(--yellow-400); }
.carousel__arrow i { width: 20px; height: 20px; }
.carousel__count { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--text-strong); }
.carousel__count .carousel__sep, .carousel__count .carousel__total { color: var(--text-muted); }
.carousel__dots { display: flex; gap: 0.55rem; flex: 1; }
.carousel__dot {
  width: 30px; height: 5px; border: none; padding: 0; cursor: pointer; border-radius: 2px;
  background: var(--ink-200); transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.carousel__dot.is-active { background: var(--yellow-500); transform: scaleY(1.6); }

/* ---- PROOF (dark) ---- */
#proof { background: var(--ink-950); }
#proof .kicker { color: var(--yellow-400); }
#proof .title { color: var(--ink-50); }
#proof .title em { color: var(--yellow-400); }
#proof .sub { color: rgba(245,242,236,0.55); }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 3rem; }
.metric { background: rgba(255,253,249,0.05); border: 1px solid rgba(255,253,249,0.1); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem; text-align: center; transition: all var(--dur-base) var(--ease-out); }
.metric:hover { background: rgba(255,253,249,0.08); transform: translateY(-3px); border-color: rgba(255,255,0,0.3); }
.metric .big { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 2.6rem; color: var(--yellow-400); line-height: 1; margin-bottom: 0.4rem; }
.metric .d { font-size: 0.78rem; color: rgba(245,242,236,0.5); line-height: 1.5; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.tm { background: rgba(255,253,249,0.05); border: 1px solid rgba(255,253,249,0.1); border-radius: var(--radius-lg); padding: 1.7rem; }
.tm__q { font-size: 0.88rem; color: rgba(245,242,236,0.72); line-height: var(--leading-relaxed); font-style: italic; margin-bottom: 1.2rem; }
.tm__a { display: flex; align-items: center; gap: 0.75rem; }
.tm__av { width: 40px; height: 40px; border-radius: 50%; background: var(--yellow-400); color: var(--ink-950); border: 2px solid var(--yellow-400); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.tm__nm { font-weight: 600; font-size: 0.82rem; color: var(--ink-50); }
.tm__role { font-size: 0.72rem; color: rgba(245,242,236,0.45); }

/* ---- PRICING ---- */
#pricing { background: var(--color-bg); }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; align-items: start; }
.price { background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all var(--dur-base) var(--ease-out); }
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price--featured { border: 2px solid var(--ink-950); box-shadow: var(--sticker-ink); }
.price--featured:hover { transform: translate(2px,2px) translateY(-4px); box-shadow: var(--sticker-ink-sm); }
.price__head { padding: 1.7rem 1.7rem 1.5rem; border-bottom: 1px solid var(--border); }
.price--featured .price__head { background: var(--yellow-400); border-bottom: 2px solid var(--ink-950); }
.price__badge { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta-500); margin-bottom: 0.5rem; }
.price--featured .price__badge { color: var(--ink-950); }
.price__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.4rem; color: var(--text-strong); }
.price__tag { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; }
.price--featured .price__tag { color: var(--ink-800); }
.price__amt { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 2.3rem; color: var(--ink-950); margin-top: 0.8rem; line-height: 1; }
.price__amt sub { font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: var(--text-muted); vertical-align: baseline; }
.price--featured .price__amt sub { color: var(--ink-800); }
.price__body { padding: 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 1.4rem; }
.price__feats { list-style: none; display: flex; flex-direction: column; }
.price__feats li { font-size: 0.85rem; color: var(--text-body); padding: 0.5rem 0; border-bottom: 1px solid var(--border-muted); display: flex; align-items: flex-start; gap: 0.5rem; }
.price__feats li:last-child { border-bottom: none; }
.price__feats li::before { content: '✓'; color: var(--mint-500); font-weight: 700; flex-shrink: 0; }
.price__body .btn { width: 100%; }
.price__note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 2rem; }

/* ---- CONTACT ---- */
#contact { background: var(--color-surface); }
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4.5rem; margin-top: 3rem; }
.contact__info h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.4rem; color: var(--text-strong); margin-bottom: 1rem; }
.contact__info p { font-size: 0.9rem; color: var(--text-muted); line-height: var(--leading-relaxed); margin-bottom: 1.8rem; }
.contact__links { display: flex; flex-direction: column; gap: 0.7rem; }
.clink { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; font-weight: 500; padding: 0.8rem 1rem; background: var(--color-bg); border-radius: var(--radius-md); border: 1px solid var(--border); transition: all var(--dur-base) var(--ease-out); color: var(--text-strong); }
.clink i { width: 18px; height: 18px; color: var(--terracotta-500); }
.clink:hover { border-color: var(--ink-950); transform: translateX(4px); box-shadow: var(--sticker-ink-sm); }
.contact__box { background: var(--ink-950); border-radius: var(--radius-lg); padding: 2.8rem; display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem; position: relative; overflow: hidden; }
.contact__box::before { content: ''; position: absolute; bottom: -100px; right: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,0,0.14), transparent 70%); }
.contact__box h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.9rem; color: var(--ink-50); line-height: 1.15; position: relative; }
.contact__box h3 em { font-style: normal; color: var(--yellow-400); }
.contact__box p { font-size: 0.88rem; color: rgba(245,242,236,0.6); line-height: var(--leading-normal); position: relative; }
.contact__box .meta { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(245,242,236,0.45); position: relative; }

/* ---- FOOTER ---- */
.footer { background: var(--ink-950); padding: 3.5rem 2.5rem 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__big { max-width: var(--container-lg); margin: 0 auto 2.5rem; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink-50); }
.footer__big b { color: var(--yellow-400); }
.footer__bar { max-width: var(--container-lg); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__logo { display: flex; align-items: center; gap: 0.6rem; }
.footer__logo img { width: 30px; height: 30px; }
.footer__logo span { font-family: var(--font-display); font-weight: 700; color: var(--ink-50); }
.footer__logo span b { color: var(--yellow-400); }
.footer__copy { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(245,242,236,0.35); }
.footer__social { display: flex; gap: 0.8rem; }
.footer__social a { width: 36px; height: 36px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; color: rgba(245,242,236,0.6); transition: all var(--dur-base) var(--ease-out); }
.footer__social a i { width: 17px; height: 17px; }
.footer__social a:hover { background: var(--yellow-400); color: var(--ink-950); border-color: var(--yellow-400); }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__phone { display: none; }
  .nav__links { gap: 1rem; }
  .hero { grid-template-columns: 1fr; }
  .hero__seam { display: none; }
  .hero__side { padding: 4rem 2rem; }
  .about, .contact { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge { right: 12px; }
  .services { grid-template-columns: 1fr 1fr; }
  .cslide { grid-template-columns: 1fr; }
  .cslide__media { min-height: 280px; border-right: none; border-bottom: 2px solid var(--ink-950); }
  .cslide__body { padding: 2rem 1.6rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .testimonials, .pricing { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav { padding: 0.75rem 1.2rem; }
  .nav__links > a { display: none; }
  section { padding: 4rem 1.2rem; }
  .hero__side { padding: 3rem 1.5rem; }
  .services { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: 1.2rem; align-items: flex-start; }
}
