/* ============================================================
   ANDRÉ PIZA — PORTFOLIO
   Design system: editorial / swiss / luxury monochrome + purple
   ============================================================ */
/* ===== MOBILE ===== */
@media (max-width: 768px) {

  /* Esconde a foto do Hero */
  .hero__portrait {
    display: none;
  }

  /* Esconde a assinatura do About */
  .about__signature {
    display: none;
  }

}
:root {
  /* Color */
  --bg: #090909;
  --surface: #151515;
  --surface-2: #1c1c1c;
  --white: #ffffff;
  --gray: #ededed;
  --muted: #8f8f96;
  --muted-2: #5c5c62;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #8b5cf6;
  --accent-2: #a855f7;
  --accent-soft: rgba(139, 92, 246, 0.14);

  /* Type */
  --font-display: 'Bebas Neue', 'Anton', sans-serif;
  --font-body: 'Sora', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --gutter: clamp(24px, 5vw, 64px);
  --max: 1440px;
}
input,
textarea,
select {
    font-size: 16px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, p, figure, form { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; color: inherit; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { width: min(80vw, 420px); text-align: center; }
.preloader__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 44px);
  letter-spacing: 0.1em;
  color: var(--white);
  display: block;
  margin-bottom: 24px;
}
.preloader__bar {
  height: 2px; width: 100%;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.preloader__fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s linear;
}
.preloader__count {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor, .cursor-glow {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 9px; height: 9px;
  background: var(--white);
  mix-blend-mode: difference;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}
.cursor-glow {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 62%);
  will-change: transform;
}
.cursor.is-hover {
  width: 52px; height: 52px;
  background: transparent;
  border: 1px solid var(--white);
  mix-blend-mode: normal;
}
.cursor.is-view {
  width: 88px; height: 88px;
  background: var(--accent);
  mix-blend-mode: normal;
}
body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready input {
  cursor: none;
}
@media (hover: none) {
  .cursor, .cursor-glow { display: none; }
  body.cursor-ready { cursor: auto; }
}

/* ---------- Utility type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.accent { color: var(--accent); }
.strike { text-decoration: line-through; text-decoration-color: var(--muted-2); text-decoration-thickness: 2px; opacity: 0.55; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.btn span { position: relative; z-index: 2; }

.btn--primary {
  background: var(--white);
  color: var(--bg);
}
.btn--primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 1;
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover { color: var(--white); box-shadow: 0 12px 40px -8px rgba(139, 92, 246, 0.55); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); background: var(--accent-soft); }

.btn--outline {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--accent); }

.btn--lg { padding: 22px 42px; font-size: 15px; }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__mark {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.03em;
}
.nav__mark-dot { color: var(--accent); }

.nav__links {
  display: flex;
  gap: 40px;
}
.nav__link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray);
  padding-bottom: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav__cta:hover { border-color: var(--accent); background: var(--accent-soft); }

.nav__burger {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  padding: 12px 6px;
  position: relative;
  cursor: pointer;
}
.nav__burger span {
  position: absolute; left: 6px; right: 6px;
  height: 1px; background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.nav__burger span:first-child { top: 16px; }
.nav__burger span:last-child { bottom: 16px; }
.nav__burger.is-open span:first-child { transform: translateY(9.5px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-9.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 480;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gray);
}
.mobile-menu__link--accent { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 140px var(--gutter) 80px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.hero__glow--a {
  width: 500px; height: 500px;
  background: var(--accent);
  top: 10%; right: 5%;
}
.hero__glow--b {
  width: 380px; height: 380px;
  background: var(--accent-2);
  bottom: -5%; left: 30%;
  opacity: 0.2;
}

.hero__inner { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 150px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line--accent { color: var(--accent); }

.hero__foot {
  margin-top: 48px;
  max-width: 520px;
}
.hero__desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__portrait {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 340px);
}
.hero__portrait-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-strong);
}
.hero__portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.hero__portrait-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(139,92,246,0.35) 130%);
  mix-blend-mode: screen;
}
.hero__signature {
  width: 130px;
  margin: 24px 0 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hero__badge {
  position: absolute;
  left: -8%;
  bottom: 14%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  will-change: transform;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--accent);
  line-height: 1;
}
.hero__badge-txt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.4;
}

.hero__tag {
  position: absolute;
  right: -4%;
  top: 8%;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gray);
  background: var(--accent-soft);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 100px;
  padding: 9px 16px;
  backdrop-filter: blur(10px);
  will-change: transform;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  background: var(--surface);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeScroll 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.03em;
  color: var(--muted);
  text-transform: uppercase;
}
.marquee__sep { color: var(--accent) !important; font-size: 18px !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

.hero__scroll {
  position: absolute;
  bottom: 40px; left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line i {
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: clamp(120px, 16vw, 220px) var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.2vw, 68px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--muted);
}
.manifesto__text em {
  font-style: normal;
  color: var(--white);
}
.manifesto__text .accent { color: var(--accent); }

/* ============================================================
   SHARED SECTION PADDING
   ============================================================ */
.about, .work, .process, .services, .feedback, .contact {
  padding: clamp(80px, 10vw, 160px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about__visual { position: relative; }
.about__image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
}
.about__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.about__glow {
  position: absolute;
  width: 260px; height: 260px;
  background: var(--accent);
  filter: blur(110px);
  opacity: 0.28;
  bottom: -60px; left: -60px;
  z-index: -1;
  border-radius: 50%;
}

.about__body {
  margin-top: 28px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
  font-weight: 300;
}
.about__body strong { color: var(--white); font-weight: 600; }

.about__stats {
  display: flex;
  gap: 56px;
  margin-top: 48px;
}
.stat { display: flex; flex-direction: column; }
.stat__number {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  display: inline-block;
}
.stat__plus {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
}
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__signature {
  width: 110px;
  margin-top: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ============================================================
   WORK
   ============================================================ */
.work__header { margin-bottom: clamp(40px, 8vw, 90px); }

.project {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(50px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
}
.project:last-of-type { border-bottom: 1px solid var(--line); }
.project--reverse { grid-template-columns: 0.9fr 1.3fr; }
.project--reverse .project__media { order: 2; }
.project--reverse .project__info { order: 1; }

.project__media {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--line);
}
.project__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-soft);
}
.project:hover .project__media img { transform: scale(1.06); }
.project__media--fallback img { display: none; }
.project__media--fallback::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(139,92,246,0.25), transparent 60%),
    linear-gradient(135deg, var(--surface), var(--surface-2));
}
.project__media-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
  pointer-events: none;
}
.project__view {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 3;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(9, 9, 9, 0.55);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  padding: 9px 16px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.project__media:hover .project__view { opacity: 1; transform: translateY(0); }

.project__index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.project__category {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.project__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  margin-top: 14px;
}
.project__desc {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  max-width: 420px;
}
.project__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease), gap 0.4s var(--ease);
}
.project__link:hover { border-color: var(--accent); color: var(--accent); gap: 16px; }
.arrow {
  display: inline-block;
  width: 14px; height: 10px;
  position: relative;
}
.arrow::before, .arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.arrow::before { width: 100%; height: 1px; top: 50%; }
.arrow::after {
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  right: 0; top: 22%;
  transform: rotate(45deg);
  background: none;
}

.work__footer {
  margin-top: clamp(50px, 8vw, 90px);
  display: flex;
  justify-content: center;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__header { margin-bottom: 60px; }

.process__pin {
  position: relative;
  padding: 8px 0 40px;
}
.process__track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter);
  will-change: transform;
}
.process__step {
  flex: 0 0 clamp(260px, 32vw, 420px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 30px 44px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.process__step:hover { background: var(--surface-2); border-color: rgba(139, 92, 246, 0.35); transform: translateY(-6px); }
.process__num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 24px;
  letter-spacing: 0.02em;
}
.process__step p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

@media (max-width: 780px) {
  .process__pin {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 16px;
  }
  .process__track { transform: none !important; }
  .process__step { scroll-snap-align: start; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__header { margin-bottom: 50px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: 44px 34px;
  position: relative;
  transition: background 0.45s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(139,92,246,0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.service-card:hover { background: var(--surface); }
.service-card:hover::before { opacity: 1; }
.service-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.service-card p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  padding: clamp(140px, 18vw, 260px) var(--gutter);
  display: flex;
  justify-content: center;
}
.quote__text {
  max-width: 980px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(30px, 5.4vw, 64px);
  line-height: 1.2;
  text-transform: uppercase;
}
.quote__text .accent { color: var(--accent); }

/* ============================================================
   FEEDBACK / NAIPE
   ============================================================ */
.feedback__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(50px, 6vw, 80px);
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.feedback__inner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: var(--accent);
  filter: blur(140px);
  opacity: 0.14;
  top: -100px; right: -100px;
  border-radius: 50%;
}
.feedback__desc {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 36px;
}
.feedback__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.feedback__logo {
  width: 88px;
  opacity: 0.92;
}
.feedback__form { width: 100%; }
.feedback__form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.feedback__row {
  display: flex;
  gap: 12px;
}
.feedback__row input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 16px 22px;
  color: var(--white);
  font-size: 14px;
  transition: border-color 0.3s var(--ease);
}
.feedback__row input:focus {
  outline: none;
  border-color: var(--accent);
}
.feedback__row button {
  background: var(--white);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.feedback__row button:hover { background: var(--accent); color: var(--white); }
.feedback__note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--accent);
  min-height: 18px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(120px, 14vw, 200px);
  padding-bottom: clamp(120px, 14vw, 200px);
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.contact__glow {
  position: absolute;
  width: 700px; height: 700px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.16;
  filter: blur(60px);
}
.contact .eyebrow { text-align: center; }
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 108px);
  line-height: 1;
  text-transform: uppercase;
  max-width: 900px;
}
.contact__desc {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  max-width: 460px;
}
.contact__cta {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 10px 10px 10px 32px;
  background: var(--surface);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.contact__cta:hover { border-color: rgba(139, 92, 246, 0.5); background: var(--surface-2); }
.contact__cta-label {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--white);
  font-weight: 500;
}
.contact__cta-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.contact__cta-circle svg { width: 22px; height: 22px; }
.contact__cta:hover .contact__cta-circle { transform: rotate(45deg); }

.contact__actions {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px var(--gutter);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__mark {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 0.02em;
  transition: color 0.4s var(--ease);
}
.footer__mark span { color: var(--accent); }
.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  font-size: 12px;
  color: var(--muted-2);
}

/* ============================================================
   REVEAL ANIMATION BASE STATES (JS toggles .is-visible)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-magnetic] { will-change: transform; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }

  .hero { grid-template-columns: 1fr; padding-top: 120px; row-gap: 48px; }
  .hero__portrait { justify-self: start; margin-top: 0; width: 220px; }
  .hero__signature { margin: 24px auto 0 0; }
  .hero__badge { left: 0; bottom: -10%; padding: 12px 16px; gap: 10px; }
  .hero__badge-num { font-size: 26px; }
  .hero__tag { right: 0; top: -6%; font-size: 11px; padding: 7px 12px; }

  .about__inner { grid-template-columns: 1fr; }
  .about__visual { max-width: 360px; }

  .project, .project--reverse {
    grid-template-columns: 1fr;
  }
  .project--reverse .project__media,
  .project--reverse .project__info { order: initial; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .feedback__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }

  .about, .work, .process, .services, .feedback, .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .nav__inner { padding: 0 var(--gutter); }
  .nav__mark { font-size: 20px; }

  .hero { padding-top: 100px; padding-bottom: 56px; }
  .hero__title { font-size: clamp(42px, 13vw, 90px); }
  .hero__desc { font-size: 15.5px; }
  .hero__portrait { width: 160px; }
  .hero__signature { width: 100px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }
  .hero__tag { display: none; }

  .manifesto { padding-top: 80px; padding-bottom: 80px; }
  .manifesto__text { font-size: clamp(26px, 7.5vw, 40px); }

  .section-title { font-size: clamp(34px, 10vw, 52px); }

  .about__stats { gap: 28px; flex-wrap: wrap; }
  .stat__number { font-size: 44px; }

  .project { padding: 40px 0; }
  .project__title { font-size: clamp(28px, 9vw, 40px); }
  .project__desc { max-width: 100%; }

  .process__step { padding: 32px 24px 36px; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 26px; }

  .quote { padding: 90px var(--gutter); }
  .quote__text { font-size: clamp(24px, 8vw, 36px); }

  .feedback__inner { padding: 32px 24px; }
  .feedback__row { flex-direction: column; }
  .feedback__row input,
  .feedback__row button { width: 100%; }

  .contact__title { font-size: clamp(36px, 11vw, 60px); }
  .contact__cta { flex-direction: column; padding: 24px; gap: 16px; width: 100%; }
  .contact__actions { flex-direction: column; width: 100%; }
  .contact__actions .btn { width: 100%; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__links { gap: 20px 28px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: clamp(36px, 13vw, 72px); }
  .stat__number { font-size: 38px; }
}
