/* =========================================================
   Sumhouse — landing styles
   Palette: warm SoCal golden-hour → neon-night on liquid glass
   ========================================================= */

:root {
  --bg:        #0b0809;
  --bg-2:      #140d0f;

  --ink:       #fbf3ec;
  --muted:     rgba(251, 243, 236, 0.62);
  --faint:     rgba(251, 243, 236, 0.40);

  --amber:     #ffb24c;
  --coral:     #ff6a5e;
  --rose:      #ff3d7f;
  --magenta:   #c92ea6;
  --violet:    #8b5cf6;

  --grad:      linear-gradient(100deg, #ffb24c 0%, #ff6a5e 38%, #ff3d7f 70%, #c92ea6 100%);
  --grad-soft: linear-gradient(100deg, #ffb24c, #ff5e8a 55%, #c92ea6);

  --glass-fill:   rgba(255, 255, 255, 0.055);
  --glass-fill-2: rgba(255, 255, 255, 0.09);
  --glass-stroke: rgba(255, 255, 255, 0.12);
  --glass-blur:   22px;

  --radius:    22px;
  --radius-sm: 14px;

  --shadow:    0 30px 80px -30px rgba(0,0,0,0.7);
  --maxw:      1180px;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  --mx: 50%;
  --my: 0px;
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: "ss01" 1, "cv01" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: normal; }

::selection { background: rgba(255,61,127,0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 200;
  background: var(--ink); color: #111; padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* =========================================================
   Background
   ========================================================= */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--bg); }

.bg__mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 50% at 18% 22%, rgba(255,178,76,0.20), transparent 60%),
    radial-gradient(45% 55% at 82% 18%, rgba(255,61,127,0.18), transparent 60%),
    radial-gradient(50% 60% at 70% 85%, rgba(201,46,166,0.16), transparent 60%),
    radial-gradient(55% 60% at 15% 90%, rgba(139,92,246,0.12), transparent 60%);
  filter: blur(10px);
}

.bg__blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55; will-change: transform;
  animation: drift 26s var(--ease) infinite alternate;
}
.bg__blob--1 { width: 46vw; height: 46vw; left: -8vw; top: -10vw;
  background: radial-gradient(circle, rgba(255,178,76,0.55), transparent 70%); }
.bg__blob--2 { width: 50vw; height: 50vw; right: -12vw; top: 6vw;
  background: radial-gradient(circle, rgba(255,61,127,0.42), transparent 70%);
  animation-duration: 32s; animation-delay: -6s; }
.bg__blob--3 { width: 40vw; height: 40vw; left: 30vw; bottom: -16vw;
  background: radial-gradient(circle, rgba(201,46,166,0.40), transparent 70%);
  animation-duration: 38s; animation-delay: -12s; }

@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(6vw,4vw,0) scale(1.15); }
}

.bg__grain {
  position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* cursor spotlight */
.bg__spotlight {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my),
              rgba(255,178,76,0.10), transparent 65%);
  transition: opacity .4s var(--ease);
}

/* =========================================================
   Glass primitive
   ========================================================= */
.glass {
  position: relative;
  background: var(--glass-fill);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border: 1px solid var(--glass-stroke);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.25);
}
/* specular sheen */
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(140deg, rgba(255,255,255,0.16), rgba(255,255,255,0) 36%);
  pointer-events: none; opacity: .8;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .72em 1.25em; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  position: relative; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform .25s var(--ease); }
.btn--lg { padding: .95em 1.6em; font-size: 1rem; }

.btn--primary {
  color: #2a0d14;
  background: var(--grad);
  background-size: 160% 160%;
  box-shadow: 0 12px 30px -8px rgba(255,61,127,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn--primary:hover { transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 18px 40px -10px rgba(255,61,127,0.7); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  color: var(--ink);
  background: var(--glass-fill);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--glass-stroke);
}
.btn--ghost:hover { transform: translateY(-2px); background: var(--glass-fill-2); }

/* =========================================================
   Brand
   ========================================================= */
.brand { display: inline-flex; align-items: center; gap: .6em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--grad); background-size: 150% 150%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 6px 16px -6px rgba(255,61,127,0.7);
  animation: hue 12s linear infinite;
}
.brand__dot { width: 9px; height: 9px; border-radius: 50%; background: #1a0a0f; box-shadow: 0 0 0 2px rgba(255,255,255,.25) inset; }
.brand__name { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }
@keyframes hue { to { filter: hue-rotate(360deg); } }

/* =========================================================
   Nav
   ========================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px clamp(14px, 4vw, 34px); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 10px 12px 10px 18px; border-radius: 999px;
  transition: padding .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled .nav__inner { background: rgba(20,13,15,0.55); }
.nav__links { display: flex; gap: 6px; margin-left: auto; }
.nav__links a { padding: 8px 14px; border-radius: 999px; font-size: .94rem; color: var(--muted); transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--ink); background: var(--glass-fill); }
.nav__cta { margin-left: 4px; }

.nav__burger { display: none; width: 42px; height: 42px; border-radius: 12px; margin-left: auto; flex-direction: column; gap: 5px; align-items: center; justify-content: center; background: var(--glass-fill); border: 1px solid var(--glass-stroke); }
.nav__burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { max-width: var(--maxw); margin: 10px auto 0; border-radius: 24px; padding: 14px; flex-direction: column; gap: 4px; }
.nav__mobile a { padding: 14px 16px; border-radius: 14px; font-size: 1.05rem; color: var(--ink); }
.nav__mobile a:not(.btn):hover { background: var(--glass-fill); }
.nav__mobile .btn { justify-content: center; margin-top: 6px; }

/* =========================================================
   Layout helpers
   ========================================================= */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 11vw, 140px) clamp(18px, 5vw, 40px); }
.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: transparent; background: var(--grad-soft); -webkit-background-clip: text; background-clip: text;
  margin-bottom: 14px;
}
.section__title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; letter-spacing: -0.03em; line-height: 1.04;
  font-size: clamp(2rem, 5.2vw, 3.4rem); }
.section__title em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .06em; }
.section__lead { margin-top: 18px; color: var(--muted); font-size: 1.1rem; max-width: 56ch; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(120px, 17vw, 190px) clamp(18px, 5vw, 40px) clamp(40px, 7vw, 80px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 8px 16px; border-radius: 999px; font-size: .85rem; color: var(--muted);
  background: var(--glass-fill); border: 1px solid var(--glass-stroke);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,106,94,0.22); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(255,106,94,0); } }

.hero__title {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; letter-spacing: -0.035em; line-height: 0.98;
  font-size: clamp(2.7rem, 8vw, 5.4rem); margin: 22px 0 0;
}
.hero__title .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__title em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.hero__sub { margin-top: 24px; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.18rem); max-width: 54ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; color: var(--muted); font-size: .92rem; }
.hero__trust strong { color: var(--ink); }
.hero__faces { display: flex; }
.hero__faces img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(20,13,15,0.9); margin-left: -12px; box-shadow: 0 4px 12px rgba(0,0,0,.4); }
.hero__faces img:first-child { margin-left: 0; }

/* hero feed */
.hero__feed { position: relative; min-height: 460px; perspective: 1200px; }
.feed-card {
  position: absolute; width: min(58%, 268px); border-radius: 26px; overflow: hidden;
  background: var(--glass-fill); border: 1px solid var(--glass-stroke);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.25);
  transform-style: preserve-3d;
}
.feed-card__img { aspect-ratio: 4/5; overflow: hidden; }
.feed-card__img img { width: 100%; height: 100%; object-fit: cover; }
.feed-card__bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); background: rgba(12,8,9,0.35); }
.feed-card__heart { width: 16px; height: 16px; flex: none;
  background: var(--grad); -webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.6-10-9.3C.4 8.6 2 5 5.3 5c2 0 3.3 1.1 4.7 3 1.4-1.9 2.7-3 4.7-3C18 5 19.6 8.6 22 11.7 19.5 16.4 12 21 12 21z'/%3E%3C/svg%3E");
          mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.6-10-9.3C.4 8.6 2 5 5.3 5c2 0 3.3 1.1 4.7 3 1.4-1.9 2.7-3 4.7-3C18 5 19.6 8.6 22 11.7 19.5 16.4 12 21 12 21z'/%3E%3C/svg%3E"); }
.feed-card__count { font-weight: 600; font-size: .85rem; }
.feed-card__tag { margin-left: auto; font-size: .78rem; color: var(--muted); }

.feed-card:nth-child(1) { top: 2%;  right: 4%;  z-index: 3; }
.feed-card:nth-child(2) { top: 30%; left: 0;    z-index: 2; width: min(52%, 230px); }
.feed-card:nth-child(3) { bottom: 0; right: 12%; z-index: 1; width: min(48%, 210px); }

.stat-bubble {
  position: absolute; z-index: 5; border-radius: 18px; padding: 12px 16px;
  display: flex; flex-direction: column; line-height: 1.1; text-align: left;
}
.stat-bubble__num { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.25rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-bubble__label { font-size: .72rem; color: var(--muted); }
.stat-bubble { top: 16%; left: -2%; }
.stat-bubble--2 { top: auto; bottom: 14%; left: auto; right: -2%; }

.float { animation: float 6s ease-in-out infinite; animation-delay: calc(var(--i, 0) * -2s); }
@keyframes float { 50% { transform: translateY(-14px); } }

/* =========================================================
   Marquee
   ========================================================= */
.marquee-wrap { padding: 18px 0 6px; border-block: 1px solid rgba(255,255,255,0.07); }
.marquee-label { text-align: center; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); padding-bottom: 18px; }
.marquee__track { display: inline-flex; align-items: center; gap: 22px; white-space: nowrap; width: max-content;
  animation: scroll 42s linear infinite; }
.marquee__track:hover { animation-play-state: paused; }
.marquee__track span { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--ink); opacity: .82; }
.marquee__track .dot { color: var(--rose); opacity: .9; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================
   Stats
   ========================================================= */
.stats { max-width: var(--maxw); margin: 0 auto; padding: clamp(50px, 8vw, 90px) clamp(18px, 5vw, 40px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 4vw, 50px); text-align: center; }
.stat__num { display: block; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { display: block; margin-top: 10px; color: var(--muted); font-size: .95rem; }

/* =========================================================
   Service cards
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.card { padding: 28px; border-radius: var(--radius); transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s; }
.card:hover { background: var(--glass-fill-2); border-color: rgba(255,255,255,0.2); }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, rgba(255,178,76,0.18), rgba(255,61,127,0.16)); border: 1px solid var(--glass-stroke); }
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: url(#g-stroke); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
/* fallback stroke colour if gradient ref unavailable */
.card__icon svg { stroke: var(--amber); }
.card h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: -0.01em; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }

/* =========================================================
   Work / case studies
   ========================================================= */
.work { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 24px); }
.case { border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease); }
.case:hover { transform: translateY(-6px); }
.case__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.case:hover .case__media img { transform: scale(1.06); }
.case__badge { position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 12px; border-radius: 999px; font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: #2a0d14; background: var(--grad); box-shadow: 0 6px 16px -6px rgba(255,61,127,0.7); }
.case__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case__body h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.4rem; letter-spacing: -0.01em; }
.case__body p { color: var(--muted); font-size: .96rem; flex: 1; }
.case__metrics { display: flex; gap: 26px; margin-top: 8px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.09); }
.case__metrics strong { display: block; font-family: "Bricolage Grotesque", sans-serif; font-size: 1.45rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case__metrics span { font-size: .78rem; color: var(--muted); }

/* =========================================================
   Approach
   ========================================================= */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 26px); counter-reset: step; }
.step { position: relative; padding: 28px 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--glass-fill), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.08); }
.step__no { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.05rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.25rem; margin: 14px 0 8px; }
.step p { color: var(--muted); font-size: .95rem; }
.step::before { content: ""; position: absolute; left: 22px; right: 22px; top: 0; height: 2px; background: var(--grad); opacity: .5; border-radius: 2px; }

/* =========================================================
   CTA / contact
   ========================================================= */
.cta-section { padding-bottom: clamp(80px, 12vw, 150px); }
.cta { border-radius: 32px; padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.cta__title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  font-size: clamp(1.9rem, 4vw, 2.9rem); }
.cta__title em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta__copy p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.cta__list { list-style: none; padding: 0; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.cta__list li { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: .96rem; }
.cta__list li::before { content: ""; width: 18px; height: 18px; flex: none; border-radius: 50%; background: var(--grad);
  -webkit-mask: center/12px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask: center/12px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }

.cta__form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .82rem; color: var(--muted); padding-left: 4px; }
.field input, .field textarea {
  font: inherit; color: var(--ink); padding: 13px 16px; border-radius: 14px; resize: vertical;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-stroke);
  transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose); background: rgba(255,255,255,0.07); }
.cta__form .btn { justify-content: center; margin-top: 4px; }
.form-note { font-size: .9rem; min-height: 1.2em; color: var(--amber); }
.form-note.ok { color: #7ce0a6; }

/* =========================================================
   Footer
   ========================================================= */
.footer { padding: 0 clamp(14px, 4vw, 34px) 28px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; border-radius: 28px; padding: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 30px; align-items: start; }
.footer__brand p { color: var(--muted); margin-top: 14px; max-width: 32ch; font-size: .95rem; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { color: var(--muted); width: fit-content; transition: color .2s; }
.footer__nav a:hover { color: var(--ink); }
.footer__meta { display: flex; flex-direction: column; gap: 8px; }
.footer__email { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 1.1rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; width: fit-content; }
.footer__meta p { color: var(--muted); font-size: .9rem; }
.footer__copy { color: var(--faint) !important; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero__feed { min-height: 380px; margin-top: 10px; order: 2; }
  .cards, .work, .steps { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .cta { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cards, .work, .steps, .stats__grid { grid-template-columns: 1fr; }
  .hero__feed { min-height: 340px; }
  .feed-card:nth-child(1) { width: 56%; }
  .feed-card:nth-child(2) { width: 50%; }
  .feed-card:nth-child(3) { width: 46%; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .float { animation: none; }
  .marquee__track { animation: none; transform: translateX(0); }
  .bg__spotlight { display: none; }
}
