/* ============================================
   POKE DIGITAL — IMMERSIVE DESIGN TOKENS
   ============================================ */
:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --orange: #E8623D;
  --lavender: #C9C6F7;
  --yellow: #F5DC6E;
  --border-dark: rgba(255, 255, 255, 0.12);
  --text-dim: rgba(255, 255, 255, 0.62);
  --text-dimmer: rgba(255, 255, 255, 0.35);

  --font-display: Arial, Helvetica, 'Helvetica Neue', sans-serif;
  --font-body: Arial, Helvetica, 'Helvetica Neue', sans-serif;

  --nav-height: 76px;
  --container: 1240px;
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; /* GSAP handles smooth scroll */ }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* ============================================
   WEBGL CANVAS — fixed behind everything
   ============================================ */
.webgl-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   FILM GRAIN
   ============================================ */
.grain {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grainShift 1.1s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 25% { transform: translate(-2%,2%); }
  50% { transform: translate(2%,-1%); } 75% { transform: translate(-1%,-2%); }
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.loader-logo { width: 48px; height: 48px; display: block; }
.loader-pct { font-size: 14px; color: var(--text-dim); font-variant-numeric: tabular-nums; }
.loader-bar { width: 120px; height: 2px; background: rgba(255,255,255,0.15); border-radius: 1px; position: relative; overflow: hidden; }
.loader-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: var(--w, 0%); background: var(--orange); transition: width 0.3s var(--ease); }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); }
.cursor-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.cursor-ring {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(232,98,61,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cursor-ring span { font-size: 11px; font-weight: 600; opacity: 0; transition: opacity 0.2s; white-space: nowrap; }
.cursor-ring.is-hover { width: 56px; height: 56px; background: var(--orange); border-color: var(--orange); }
.cursor-ring.is-label { width: 84px; height: 84px; background: var(--orange); border-color: var(--orange); }
.cursor-ring.is-label span { opacity: 1; color: var(--white); }
body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button { cursor: none; }

@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================
   STICKER BADGES
   ============================================ */
.sticker {
  display: inline-block; padding: 8px 16px; border-radius: 4px;
  font-weight: 700; font-size: 13px; transform: rotate(-4deg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.sticker--orange { background: var(--orange); color: var(--white); }
.sticker--lavender { background: var(--lavender); color: #16142B; }
.sticker--yellow { background: var(--yellow); color: #16142B; }

/* ============================================
   SPLIT-TEXT ANIMATION (GSAP-driven)
   ============================================ */
.split-text .word {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  will-change: transform, opacity;
}
.split-text .line { display: block; overflow: hidden; }
.fade-in { opacity: 0; transform: translateY(32px); will-change: transform, opacity; }

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dimmer); margin-bottom: 16px; }
.section-head { max-width: 640px; margin: 0 auto 56px; padding: 0 48px; text-align: center; }
.section-head--left { max-width: var(--container); margin: 0 auto 48px; text-align: left; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; padding: 0 48px; }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 44px); line-height: 1.15; }
.view-all { font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--border-dark); padding-bottom: 2px; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 999px; font-weight: 600; font-size: 15px; white-space: nowrap; position: relative; transition: background 0.3s var(--ease); }
.btn-primary { background: var(--white); color: var(--black); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-small { padding: 11px 22px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }
.arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   NAV
   ============================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-height); display: flex; align-items: center; backdrop-filter: blur(12px); background: rgba(10,10,10,0.6); border-bottom: 1px solid var(--border-dark); }
.nav-inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; margin-left: auto; margin-right: 32px; }
.nav-links a { color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 24px; }
.nav-toggle span { height: 2px; background: var(--white); }

/* ============================================
   SECTIONS — all full dark for WebGL layering
   ============================================ */
.section { position: relative; z-index: 1; padding: 0 48px; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: var(--nav-height); padding-bottom: 80px; }
.hero-inner { max-width: 100%; }
.hero .sticker { margin-bottom: 24px; }
.hero-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(48px, 8vw, 128px); line-height: 0.96; letter-spacing: -0.03em; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 24px; right: 48px; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; color: var(--text-dimmer); letter-spacing: 0.08em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--orange), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* FEATURES */
.features { padding-top: 120px; padding-bottom: 120px; }
.features-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.features-sticker { position: absolute; top: -10px; right: -40px; transform: rotate(6deg); }
.features-badge { margin-top: 40px; transform: rotate(-3deg); }
.features-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4.5vw, 46px); line-height: 1.2; margin-bottom: 20px; }
.features-sub { color: var(--text-dim); font-size: 17px; line-height: 1.6; max-width: 560px; margin: 0 auto; }
.features-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border-dark); border-left: 1px solid var(--border-dark); }
.feature-item { padding: 24px 16px; border-right: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); font-size: 13px; font-weight: 600; color: var(--text-dim); text-align: left; transition: background 0.3s; }
.feature-item:hover { background: rgba(255,255,255,0.04); }
.feature-icon { width: 22px; height: 22px; display: block; margin-bottom: 16px; color: rgba(255,255,255,0.55); }
.feature-item span { display: block; font-size: 12px; color: var(--text-dimmer); margin-bottom: 8px; }

/* WORK */
.work { padding-top: 100px; padding-bottom: 100px; }
.work-grid { max-width: var(--container); margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.work-card { cursor: none; }
.work-media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.work-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.work-card:hover .work-media img { transform: scale(1.06); }
.work-media--b img, .work-media--d img { filter: brightness(0.55); }
.work-overlay { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--white); text-transform: uppercase; }
.work-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; }
.work-meta h3 { font-weight: 700; font-size: 18px; }
.work-meta p { color: var(--text-dim); font-size: 13px; }
.work-media--a { background: #1a1a1a; } .work-media--b { background: #111; } .work-media--c { background: #1c1c1c; } .work-media--d { background: #0d0d0d; }

/* STATS */
.stats { padding-top: 90px; padding-bottom: 90px; border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
.stats-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 5.5vw, 64px); line-height: 1; }
.stat-label { margin-top: 12px; font-size: 13px; color: var(--text-dim); }

/* PROCESS */
.process { padding-top: 100px; padding-bottom: 100px; }
.process-inner { max-width: var(--container); margin: 0 auto; }
.process-sub { max-width: 420px; color: var(--text-dim); font-size: 16px; line-height: 1.6; }
.process-list { display: flex; flex-direction: column; }
.process-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid var(--border-dark); transition: padding-left 0.4s var(--ease); }
.process-item:hover { padding-left: 12px; }
.process-item:last-child { border-bottom: 1px solid var(--border-dark); }
.process-num { font-weight: 700; font-size: 15px; color: var(--text-dim); }
.process-item h3 { font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.process-item p { color: var(--text-dim); font-size: 15px; line-height: 1.6; max-width: 560px; }

/* CONTACT */
.contact { padding-top: 100px; padding-bottom: 120px; }
.contact-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-copy h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(32px, 4.5vw, 52px); line-height: 1.1; margin-bottom: 24px; }
.contact-copy p { color: var(--text-dim); font-size: 17px; line-height: 1.6; margin-bottom: 16px; max-width: 420px; }
.contact-note { font-size: 13px !important; color: var(--text-dimmer) !important; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-form { border: 1px solid var(--border-dark); border-radius: 12px; padding: 36px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 13px; color: var(--text-dim); }
.form-row input, .form-row select, .form-row textarea { background: transparent; border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 12px 14px; font-size: 14px; color: var(--white); transition: border-color 0.2s; }
.form-row select option { color: var(--black); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--orange); outline: none; }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-status { font-size: 13px; color: var(--text-dim); min-height: 18px; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: -140px;
  z-index: 9998;
  max-width: 640px;
  margin: 0 auto;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: bottom 0.4s var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible { bottom: 24px; }
.cookie-banner-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; }
.cookie-banner p { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin: 0; flex: 1 1 260px; }
.cookie-banner a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 10px 20px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 1px solid var(--border-dark); }
.cookie-btn-reject { background: transparent; color: var(--text-dim); }
.cookie-btn-reject:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.cookie-btn-accept { background: var(--white); color: var(--black); border-color: var(--white); }
.cookie-btn-accept:hover { opacity: 0.85; }
@media (max-width: 560px) {
  .cookie-banner { left: 12px; right: 12px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* FOOTER */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border-dark); padding: 40px 48px 0; }
.footer-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 32px; }
.footer-logo { height: 34px; width: auto; display: block; }
.footer-links { display: flex; gap: 24px; font-size: 14px; color: var(--text-dim); }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; align-items: center; gap: 20px; font-size: 14px; }
.footer-cta { border: 1px solid var(--border-dark); padding: 8px 16px; border-radius: 999px; }
.footer-bottom { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 20px 0; border-top: 1px solid var(--border-dark); font-size: 12px; color: var(--text-dimmer); }

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.nav-active { color: var(--white) !important; }

/* ============================================
   WORK PAGE
   ============================================ */
.work-hero { min-height: 60vh; display: flex; align-items: flex-end; padding-top: var(--nav-height); padding-bottom: 60px; }
.work-hero-inner { max-width: var(--container); }
.work-hero-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 7vw, 96px); line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 20px; }
.work-hero-sub { color: var(--text-dim); font-size: 18px; max-width: 480px; }

.work-portfolio { padding-top: 40px; padding-bottom: 100px; }
.portfolio-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.portfolio-card { cursor: none; border-radius: var(--radius); overflow: hidden; transition: transform 0.5s var(--ease-out); }
.portfolio-card:hover { transform: translateY(-6px); }
.portfolio-card--wide { grid-column: span 2; }

.portfolio-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.portfolio-card--wide .portfolio-media { aspect-ratio: 21/9; }
.portfolio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.portfolio-card:hover .portfolio-media img { transform: scale(1.06); }
.portfolio-overlay { position: absolute; bottom: 16px; left: 16px; display: flex; gap: 8px; flex-wrap: wrap; opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }
.portfolio-tag { background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 600; color: var(--white); }

.portfolio-info { padding: 20px 4px; }
.portfolio-info h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 6px; }
.portfolio-info p { color: var(--text-dim); font-size: 14px; }

.work-cta { padding-top: 60px; padding-bottom: 100px; text-align: center; }
.work-cta-inner { max-width: 640px; margin: 0 auto; }
.work-cta h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 4vw, 48px); line-height: 1.15; margin-bottom: 32px; }

/* ============================================
   CASE STUDY PANEL (overlay detail view)
   ============================================ */
.case-panel { position: fixed; inset: 0; z-index: 200; background: var(--black); overflow-y: auto; transform: translateY(100%); transition: transform 0.55s var(--ease-out); pointer-events: none; }
.case-panel.is-open { transform: translateY(0); pointer-events: all; }
.case-close { position: fixed; top: 24px; right: 48px; z-index: 210; font-size: 14px; font-weight: 600; color: var(--white); border: 1px solid var(--border-dark); padding: 10px 20px; border-radius: 999px; background: rgba(10,10,10,0.8); backdrop-filter: blur(8px); }
.case-hero { width: 100%; aspect-ratio: 21/9; overflow: hidden; }
.case-hero img { width: 100%; height: 100%; object-fit: cover; }
.case-body { max-width: 760px; margin: 0 auto; padding: 60px 48px 100px; }
.case-header { margin-bottom: 48px; }
.case-header h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(32px, 5vw, 56px); line-height: 1.1; margin-bottom: 16px; }
.case-meta { display: flex; gap: 20px; font-size: 14px; color: var(--text-dim); }
.case-section { margin-bottom: 36px; }
.case-section h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange); margin-bottom: 12px; }
.case-section p { color: var(--text-dim); font-size: 17px; line-height: 1.7; }
.case-cta { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border-dark); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero { min-height: 70vh; display: flex; align-items: flex-end; padding-top: var(--nav-height); padding-bottom: 80px; }
.about-hero-inner { max-width: 900px; }
.about-hero-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(36px, 6vw, 80px); line-height: 1.04; letter-spacing: -0.02em; margin-bottom: 28px; }
.about-hero-sub { color: var(--text-dim); font-size: 20px; line-height: 1.6; max-width: 560px; }

.about-manifesto { padding-top: 100px; padding-bottom: 100px; border-top: 1px solid var(--border-dark); }
.manifesto-inner { max-width: 820px; margin: 0 auto; }
.manifesto-headline { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.5vw, 40px); line-height: 1.3; margin-bottom: 8px; }
.manifesto-headline--accent { color: var(--orange); margin-bottom: 48px; }
.manifesto-body p { color: var(--text-dim); font-size: 18px; line-height: 1.7; margin-bottom: 20px; }
.manifesto-closing { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border-dark); font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 32px); line-height: 1.35; }
.manifesto-closing p { margin-bottom: 4px; }

.about-values { padding-top: 100px; padding-bottom: 100px; }
.values-inner { max-width: var(--container); margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); }
.value-card { background: var(--black); padding: 44px 36px; transition: background 0.3s; }
.value-card:hover { background: rgba(255,255,255,0.03); }
.value-num { font-size: 12px; color: var(--text-dimmer); display: block; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 12px; }
.value-card p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }

.about-location { padding-top: 100px; padding-bottom: 100px; text-align: center; }
.location-inner { max-width: 760px; margin: 0 auto; }
.location-inner .sticker { margin-bottom: 28px; }
.location-inner h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 44px); line-height: 1.2; }

.about-cta { padding-top: 60px; padding-bottom: 120px; text-align: center; border-top: 1px solid var(--border-dark); }
.about-cta-inner { max-width: 700px; margin: 0 auto; }
.about-cta h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 4.5vw, 48px); line-height: 1.15; margin-bottom: 32px; }
.about-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-item { grid-template-columns: 1fr; gap: 8px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--wide { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .case-body { padding: 40px 24px 80px; }
  .case-close { right: 24px; }
}
@media (max-width: 720px) {
  .section { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .btn-small { display: none; }
  .nav.is-open .nav-links { display: flex; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--black); border-bottom: 1px solid var(--border-dark); padding: 24px; gap: 20px; margin: 0; }
  .cursor-dot, .cursor-ring { display: none; }
  body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button { cursor: auto; }
  .features-sticker { display: none; }
  .nav-inner { padding: 0 24px; }
  .footer { padding-left: 24px; padding-right: 24px; }
}

/* WHATSAPP FLOAT */
.wa-float{position:fixed;bottom:28px;right:28px;z-index:300;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.35);transition:transform .25s}.wa-float:hover{transform:scale(1.1)}
