/* ============================================================
   AMITPRENEUR.COM — REBUILD
   Editorial confidence + DesignJoy energy. One font, extreme
   size contrast, hand-drawn SVG accents, marquees, asymmetry.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg: #F8F6F2;
  --bg-alt: #F4F0E8;
  --dark: #1A1A1A;
  --text: #1A1A1A;
  --text-2: #6B6862;
  --reverse: #FAFAF7;
  --accent: #C9572C;
  --peach: #F2C5A8;
  --green: #8B956D;
  --border: #E8E4DC;

  --serif: 'Source Serif Pro', Georgia, serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --pad-x: 80px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- ACCESSIBILITY ---------- */
/* Visually hidden but available to screen readers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
/* Skip-to-content link — hidden until focused */
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000;
  background: var(--dark); color: var(--reverse);
  font-family: var(--mono); font-size: 12px; letter-spacing: 1px;
  padding: 12px 18px; border-radius: 8px;
  transform: translateY(-150%); transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--accent); outline-offset: 2px; }
/* Visible focus state for keyboard users (does not affect mouse hover) */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
/* Semantic <article> wrapper for case cards — no layout box of its own */
.case-article { display: contents; }

/* ---------- SHARED TYPE ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow--accent { color: var(--accent); }
.center { text-align: center; }
.dot { color: var(--accent); }
.it { font-style: italic; }

/* Big editorial display heading — Source Serif Black */
.display {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 100px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text);
  margin: 32px 0 0;
}
.display--light { color: var(--reverse); }

/* ---------- DECORATIVE SVG ---------- */
.deco { display: block; pointer-events: none; }
.deco--orange { color: var(--accent); }
.deco--cloud  { color: var(--peach); }
.deco--muted  { color: var(--text-2); opacity: 0.5; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 100px;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.1;
}
.btn--pill-dark { background: var(--dark); color: var(--reverse); padding: 12px 24px; font-size: 14px; border-color: var(--dark); }
.btn--pill-dark:hover { background: var(--accent); border-color: var(--accent); }

.btn--primary { background: var(--dark); color: var(--reverse); padding: 20px 36px; font-size: 16px; border-color: var(--dark); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.03); }

.btn--outline { background: transparent; border: 2px solid var(--dark); color: var(--dark); padding: 20px 36px; font-size: 16px; }
.btn--outline:hover { background: var(--dark); color: var(--reverse); }

.btn--light { background: var(--reverse); color: var(--text); padding: 20px 36px; font-size: 16px; border-color: var(--reverse); }
.btn--light:hover { background: var(--accent); color: var(--reverse); border-color: var(--accent); }

.btn--ghost { background: transparent; border: 2px solid rgba(250,250,247,0.3); color: var(--reverse); padding: 20px 36px; font-size: 16px; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--block { display: block; width: 100%; }
.btn--lg { padding: 22px 40px; font-size: 17px; }

/* Orange text links */
.link-orange {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--accent);
  transition: opacity 0.2s;
}
.link-orange:hover { text-decoration: underline; }
.link-orange--lg { font-size: 17px; }

/* ============================================================
   MARQUEES
   ============================================================ */
.marquee { overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__item { white-space: nowrap; }
.trusted__marquee .marquee__track { animation: marquee 40s linear infinite; }
.marquee--services .marquee__track { animation: marquee 30s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trusted__marquee .marquee__item {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--reverse);
  letter-spacing: 0.02em;
}
.trusted__marquee i { font-style: normal; color: var(--accent); padding: 0 20px; }

.marquee--services {
  height: 120px;
  background: var(--dark);
  display: flex;
  align-items: center;
}
.marquee--services .marquee__item {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 48px;
  color: var(--reverse);
  letter-spacing: -0.02em;
}
.marquee--services i { font-style: normal; color: var(--accent); padding: 0 26px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  height: 72px;
  padding: 20px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(248,246,242,0.85);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.nav--scrolled { box-shadow: 0 4px 20px rgba(26,26,26,0.07); }
.nav__logo { font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -0.02em; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links > a:not(.btn) { font-family: var(--serif); font-size: 15px; transition: color 0.2s; }
.nav__links > a:not(.btn):hover { color: var(--accent); }
.nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 28px; height: 28px; background: none; border: none; cursor: pointer; }
.nav__hamburger span { display: block; height: 2px; width: 24px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__close { position: absolute; top: 24px; right: 28px; background: none; border: none; font-size: 44px; line-height: 1; cursor: pointer; }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-menu__links a { font-family: var(--serif); font-weight: 900; font-size: 40px; letter-spacing: -0.02em; }
.mobile-menu__links a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg);
  min-height: 100vh;
  overflow: hidden;
  max-width: 1500px;
  margin: 0 auto;
  padding: 120px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 48px;
  align-items: center;
}

/* ---- LEFT: typographic composition ---- */
.hero__content { position: relative; z-index: 2; }

.hero__tape {
  display: inline-block;
  background: var(--dark); color: var(--reverse);
  padding: 6px 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  transform: rotate(-1.5deg);
  margin-bottom: 48px;
  box-shadow: 0 6px 14px rgba(26,26,26,0.12);
  animation: heroTape .6s ease backwards;
}

.hero__headline { font-family: var(--serif); font-weight: 900; letter-spacing: -0.03em; color: var(--text); margin-bottom: 56px; }
.hl { display: block; }
.hl--1 { font-size: clamp(40px, 6vw, 88px); line-height: 0.95; animation: heroUp .6s ease .1s backwards; }
.hl--2 { font-size: clamp(40px, 6vw, 88px); line-height: 0.95; animation: heroUp .6s ease .2s backwards; }
.hl--2 .it { font-style: italic; }
.hl--3 { font-size: clamp(30px, 5vw, 70px); font-weight: 400; font-style: italic; letter-spacing: -0.02em; line-height: 1.0; margin-top: 6px; animation: heroUp .6s ease .3s backwards; }
.hl--3.muted { color: var(--text-2); }
.hl--4 { position: relative; display: inline-block; font-size: clamp(80px, 10vw, 160px); color: var(--accent); letter-spacing: -0.04em; line-height: 0.9; margin-top: 10px; animation: heroPop .7s cubic-bezier(.2,.8,.2,1) .5s backwards; }
.hl--4 .dot { color: var(--accent); }
.hero__underline { position: absolute; left: 2%; bottom: -0.14em; width: 90%; height: 0.16em; overflow: visible; }
.hero__underline path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: drawIn 1.2s ease 1.55s forwards; }

.hero__sub {
  font-family: var(--serif); font-weight: 400;
  font-size: 20px; color: var(--text-2);
  line-height: 1.55; max-width: 580px; margin-bottom: 48px;
  animation: heroUp .6s ease 1.8s backwards;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; animation: heroUp .6s ease 1.95s backwards; }

.hero__cloud { position: absolute; width: 500px; height: 375px; top: 14%; left: -50px; opacity: 0.35; filter: blur(8px); z-index: 0; animation: cloudPulse 8s ease-in-out infinite; }

/* ---- RIGHT: floating work collage ---- */
.hero__visual { position: relative; z-index: 1; min-height: 640px; }
.hero__collage { position: absolute; top: 0; right: 0; width: 480px; height: 620px; transform-origin: top right; }

.float-slot { position: absolute; }
.float-slot--1 { top: 10px;  left: 140px; width: 330px; z-index: 1; animation: floatY 6s ease-in-out infinite; }
.float-slot--2 { top: 130px; left: 0;     width: 285px; z-index: 2; animation: floatY 7s ease-in-out .8s infinite; }
.float-slot--4 { top: 300px; left: 210px; width: 265px; z-index: 3; animation: floatY 6.8s ease-in-out 2.2s infinite; }
.float-slot--3 { top: 405px; left: 24px;  width: 240px; z-index: 4; animation: floatY 6.5s ease-in-out 1.6s infinite; }
.float-slot:hover { z-index: 50; }

.float-card {
  position: relative; display: block; width: 100%;
  border-radius: 12px; border: 1px solid rgba(26,26,26,0.08);
  box-shadow: 0 30px 60px rgba(26,26,26,0.12), 0 10px 20px rgba(26,26,26,0.08);
  transform: rotate(var(--rot));
  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
  animation: cardSettle .8s ease backwards;
}
.float-card--1 { animation-delay: .4s; }
.float-card--2 { animation-delay: .7s; }
.float-card--4 { animation-delay: 1.0s; }
.float-card--3 { animation-delay: 1.3s; }
.float-card img { display: block; width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; border-radius: 12px; }
/* Dim the others ONLY while a card itself is hovered (not the whole collage box) */
.hero__collage:has(.float-card:hover) .float-card { opacity: .5; }
.hero__collage:has(.float-card:hover) .float-card:hover { opacity: 1; }
.float-card:hover { transform: rotate(0deg) scale(1.05); box-shadow: 0 40px 80px rgba(26,26,26,0.22); }

.sticker {
  position: absolute; font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
  color: var(--reverse); background: var(--accent); padding: 6px 14px; border-radius: 4px;
  box-shadow: 0 4px 8px rgba(26,26,26,0.18); white-space: nowrap;
  animation: popIn .4s ease backwards;
}
.sticker--1 { top: -12px; left: 20px; transform: rotate(-3deg); animation-delay: 1.0s; }
.sticker--2 { top: -12px; right: 16px; transform: rotate(2deg); animation-delay: 1.3s; }
.sticker--4 { top: -12px; right: 16px; transform: rotate(3deg); animation-delay: 1.6s; }
.sticker--3 { top: -12px; left: 16px; transform: rotate(-2deg); animation-delay: 1.9s; }

.hero__connect { position: absolute; width: 64px; height: 64px; top: 252px; left: 150px; transform: rotate(105deg); z-index: 5; opacity: .85; }

.hero__cursor { position: absolute; top: 250px; left: 320px; z-index: 6; display: flex; align-items: flex-start; gap: 1px; animation: floatY 5s ease-in-out .5s infinite; }
.hero__cursor-tag { background: var(--accent); color: var(--reverse); font-family: var(--mono); font-size: 10px; padding: 2px 7px; border-radius: 3px; margin-top: 12px; }

.hero__palette { position: absolute; bottom: 6px; right: 2px; z-index: 5; text-align: right; }
.hero__palette-label { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 2px; color: var(--text-2); margin-bottom: 8px; }
.swatches { display: inline-flex; }
.swatches i { width: 24px; height: 24px; border-radius: 4px; display: inline-block; margin-left: -4px; box-shadow: 0 2px 6px rgba(26,26,26,0.18); }
.swatches i:nth-child(1) { transform: rotate(-6deg); }
.swatches i:nth-child(2) { transform: rotate(3deg); }
.swatches i:nth-child(3) { transform: rotate(-3deg); }

/* ---- hero load + ambient keyframes ---- */
@keyframes heroTape { from { opacity: 0; transform: translateY(-10px) rotate(-1.5deg); } }
@keyframes heroUp   { from { opacity: 0; transform: translateY(20px); } }
@keyframes heroPop  { 0% { opacity: 0; transform: scale(.95); } 60% { opacity: 1; transform: scale(1.02); } 100% { opacity: 1; transform: scale(1); } }
@keyframes drawIn   { to { stroke-dashoffset: 0; } }
@keyframes cardSettle { 0% { opacity: 0; transform: rotate(0deg) scale(.95); } }
@keyframes popIn    { 0% { opacity: 0; transform: scale(0); } 70% { opacity: 1; transform: scale(1.12); } 100% { opacity: 1; } }
@keyframes floatY   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes cloudPulse { 0%, 100% { opacity: .3; } 50% { opacity: .5; } }

/* ---- TRUSTED BY strip ---- */
.trusted { background: var(--dark); padding: 32px var(--pad-x); display: flex; align-items: center; gap: 40px; }
.trusted__label { flex: 0 0 auto; font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--accent); }
.trusted__marquee { flex: 1 1 auto; min-width: 0; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  position: relative;
  background: var(--dark);
  padding: 120px var(--pad-x);
  border-top: 1px solid #2A2A2A; border-bottom: 1px solid #2A2A2A;
  overflow: hidden;
}
.stats__star { position: absolute; width: 60px; height: 60px; top: 60px; right: 80px; opacity: 0.6; }
.stats__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 60% 40%; gap: 64px; align-items: center;
}
.stats__featured .eyebrow { margin-bottom: 24px; }
.stats__big {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(96px, 14vw, 200px);
  color: var(--reverse); letter-spacing: -0.04em; line-height: 0.95;
}
.stats__bigsub { font-family: var(--serif); font-style: italic; font-size: 28px; color: rgba(250,250,247,0.7); margin-top: 16px; }
.stats__bigdesc { font-family: var(--serif); font-size: 17px; color: rgba(250,250,247,0.6); max-width: 480px; line-height: 1.6; margin-top: 32px; }

.ministat { display: flex; align-items: baseline; gap: 24px; padding: 32px 0; border-bottom: 1px solid rgba(250,250,247,0.1); }
.ministat:last-child { border-bottom: none; }
.ministat__num { font-family: var(--serif); font-weight: 900; font-size: 64px; color: var(--reverse); min-width: 140px; line-height: 1; letter-spacing: -0.03em; }
.ministat__body .eyebrow { display: block; margin-bottom: 8px; font-size: 10px; letter-spacing: 2px; }
.ministat__body p { font-family: var(--serif); font-size: 14px; color: rgba(250,250,247,0.6); line-height: 1.5; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { position: relative; background: var(--bg); padding: 160px var(--pad-x); overflow: hidden; }
.about__cloud { position: absolute; width: 600px; height: 450px; top: 80px; right: -80px; opacity: 0.3; filter: blur(4px); z-index: 0; }
.about__inner { position: relative; z-index: 1; max-width: 1300px; margin: 0 auto; }
.about__inner > .eyebrow { margin-bottom: 32px; }
.about .display { font-size: clamp(48px, 7vw, 100px); }

.about__cols { display: grid; grid-template-columns: 45% 55%; gap: 80px; margin-top: 80px; }
.about__photo {
  position: relative; aspect-ratio: 4/5; background: var(--border);
  border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.about__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__photostar { position: absolute; z-index: 2; width: 48px; height: 48px; top: 20px; right: 20px; }

.about__right p { font-family: var(--serif); font-size: 19px; color: var(--text); line-height: 1.6; margin-bottom: 28px; }

.pullquote { border-left: 4px solid var(--accent); padding: 8px 0 8px 32px; margin: 48px 0; }
.pullquote p { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--text); line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 16px; }
.pullquote cite { font-family: var(--mono); font-style: normal; font-size: 11px; color: var(--text-2); letter-spacing: 2px; text-transform: uppercase; }

.about__connect { margin-top: 48px; }
.about__connect .eyebrow { margin-bottom: 20px; }
.about__social { display: flex; flex-wrap: wrap; gap: 36px; }
.about__social a { position: relative; display: inline-flex; align-items: baseline; gap: 4px; font-family: var(--serif); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.about__social a:hover { color: var(--accent); }
.mini-arrow { width: 14px; height: 14px; transform: rotate(20deg); align-self: center; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services__content { padding: 120px var(--pad-x); max-width: 1300px; margin: 0 auto; }
.services__content > .eyebrow { margin-bottom: 32px; }
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 64px; }

.svc-card {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 56px 48px;
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 16px 32px rgba(26,26,26,0.08); }
.svc-card__star { position: absolute; width: 44px; height: 44px; top: 28px; right: 32px; }
.svc-card__ring { position: absolute; width: 64px; height: 36px; top: 32px; right: 32px; }
.svc-card .eyebrow { margin-bottom: 32px; }
.svc-card__title { font-family: var(--serif); font-weight: 900; font-size: 36px; letter-spacing: -0.02em; }
.svc-card__sub { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--accent); margin: 6px 0 24px; }
.svc-card__desc { font-family: var(--serif); font-size: 16px; color: var(--text-2); line-height: 1.6; margin-bottom: 40px; }
.svc-card__list { margin-bottom: 40px; }
.svc-card__list li { display: flex; align-items: baseline; gap: 12px; font-family: var(--serif); font-size: 16px; color: var(--text); padding: 8px 0; }
.svc-card__list .arr { color: var(--accent); }
.svc-card .btn { margin-top: auto; }

/* ============================================================
   WORK
   ============================================================ */
.work { background: var(--bg); padding: 160px var(--pad-x); }
.work__inner { max-width: 1400px; margin: 0 auto; }
.work__inner > .eyebrow { margin-bottom: 32px; }
.work .display { font-size: clamp(48px, 8vw, 110px); margin-bottom: 80px; }

.visual {
  aspect-ratio: 16/10; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
}
.visual span { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--text-2); }

/* Featured */
.feat {
  display: grid; grid-template-columns: 45% 55%; gap: 56px; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 60px; transition: all 0.3s ease;
}
.feat:hover { border-color: var(--dark); transform: translateY(-4px); box-shadow: 0 18px 36px rgba(26,26,26,0.08); }
.feat__left .eyebrow { margin-bottom: 16px; }
.feat__rev { font-family: var(--serif); font-weight: 900; font-size: 64px; color: var(--accent); line-height: 1; }
.feat__revsub { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--text-2); margin-bottom: 32px; }
.feat__name { font-family: var(--serif); font-weight: 900; font-size: 48px; letter-spacing: -0.02em; margin-bottom: 8px; }
.feat__cat { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--text-2); margin-bottom: 24px; }
.feat__desc { font-family: var(--serif); font-size: 17px; color: var(--text); line-height: 1.7; margin-bottom: 40px; }

.work__row { display: grid; gap: 32px; margin-top: 32px; }
.work__row--2 { grid-template-columns: 1fr 1fr; }
.work__row--3 { grid-template-columns: repeat(3, 1fr); }

.case {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  transition: all 0.3s ease;
}
.case:hover { border-color: var(--dark); transform: translateY(-4px); box-shadow: 0 14px 28px rgba(26,26,26,0.08); }
.case--md { padding: 40px; }
.case--sm { padding: 28px; }
.case .eyebrow { margin-bottom: 12px; }
.case__rev { font-family: var(--serif); font-weight: 900; font-size: 40px; color: var(--accent); line-height: 1; }
.case__rev--sm { font-size: 34px; }
.case__revsub { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--text-2); margin-bottom: 20px; }
.case__name { font-family: var(--serif); font-weight: 900; font-size: 28px; letter-spacing: -0.01em; margin-bottom: 4px; }
.case__name--sm { font-size: 24px; }
.case__cat { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--text-2); margin-bottom: 20px; }
.case--md .visual { margin-bottom: 24px; }
.case--md .case__cat { margin-bottom: 24px; }
.case__desc { font-family: var(--serif); font-size: 15px; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; }
.case .link-orange { margin-top: auto; }

.work__footer { margin-top: 80px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.work__squiggle { width: 200px; height: 16px; margin-bottom: 24px; }
.work__more { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--text-2); margin-bottom: 16px; }
.work__specific { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--text-2); margin-bottom: 24px; }
.work__cta { background: var(--dark); color: var(--reverse); padding: 16px 32px; border-radius: 100px; font-family: var(--serif); font-weight: 500; font-size: 15px; border-color: var(--dark); }
.work__cta:hover { background: var(--accent); border-color: var(--accent); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--dark); padding: 160px var(--pad-x); }
.testi__inner { max-width: 1300px; margin: 0 auto; }
.testi__inner > .eyebrow { margin-bottom: 32px; }
.testi .display { font-size: clamp(44px, 7vw, 100px); margin-bottom: 80px; }

.testi-feat { border-left: 4px solid var(--accent); padding: 8px 0 8px 56px; margin-bottom: 80px; }
.testi-feat__mark { font-family: var(--serif); font-style: italic; font-size: 64px; color: var(--accent); line-height: 0.8; }
.testi-feat__quote { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3.2vw, 36px); color: var(--reverse); line-height: 1.4; letter-spacing: -0.01em; max-width: 1000px; margin-top: 12px; }
.testi-feat__person { display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.testi-feat__name { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--reverse); }
.testi-feat__role { font-family: var(--mono); font-size: 11px; color: rgba(250,250,247,0.5); letter-spacing: 2px; margin-top: 4px; }

.avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--accent); color: var(--reverse); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 900; font-size: 18px; flex-shrink: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.avatar--lg { width: 64px; height: 64px; font-size: 22px; }

.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { display: flex; flex-direction: column; min-height: 280px; padding: 32px 28px; background: rgba(250,250,247,0.04); border: 1px solid rgba(250,250,247,0.1); border-radius: 12px; }
.testi-card__mark { font-family: var(--serif); font-style: italic; font-size: 36px; color: var(--accent); line-height: 0.6; margin-bottom: 16px; }
.testi-card__quote { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--reverse); line-height: 1.5; margin-bottom: 32px; }
.testi-card__person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-card__name { font-family: var(--serif); font-weight: 500; font-size: 15px; color: var(--reverse); }
.testi-card__role { font-family: var(--mono); font-size: 10px; color: rgba(250,250,247,0.5); letter-spacing: 1px; margin-top: 3px; }

/* Video testimonials */
.testi__videohead { display: block; margin: 80px 0 40px; }
.testi__videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }
.video-tile { display: flex; flex-direction: column; padding: 24px; background: rgba(250,250,247,0.04); border: 1px solid rgba(250,250,247,0.1); border-radius: 12px; }
.video-embed { max-width: 240px; width: 100%; margin: 0 auto; border-radius: 8px; overflow: hidden; background: #2A2A2A; }
.video-embed wistia-player { display: block; width: 100%; border-radius: 8px; }
.video-tile__person { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.avatar--sm { width: 40px; height: 40px; font-size: 16px; }
.video-tile__name { font-family: var(--serif); font-weight: 500; font-size: 16px; color: var(--reverse); }
.video-tile__role { font-family: var(--mono); font-size: 10px; color: rgba(250,250,247,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

.testi__footer { margin-top: 64px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.testi__squiggle { width: 160px; height: 16px; margin-bottom: 24px; }
.testi__note { font-family: var(--serif); font-style: italic; font-size: 18px; color: rgba(250,250,247,0.5); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news { position: relative; background: var(--bg-alt); padding: 160px var(--pad-x); overflow: hidden; }
.news__cloud { position: absolute; width: 620px; height: 465px; top: 60px; left: 50%; transform: translateX(-50%); opacity: 0.4; filter: blur(6px); z-index: 0; }
.news__star { position: absolute; width: 80px; height: 80px; top: 70px; right: 90px; }
.news__inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; text-align: center; }
.news .eyebrow { margin-bottom: 32px; }
.news .display { font-size: clamp(42px, 7vw, 96px); line-height: 1; margin-bottom: 32px; }
.news__sub { font-family: var(--serif); font-size: 22px; color: var(--text-2); max-width: 700px; margin: 0 auto 64px; line-height: 1.5; }

.news__form { display: flex; max-width: 540px; margin: 0 auto; }
.news__input { flex: 1; min-width: 0; background: #fff; border: 2px solid var(--border); padding: 18px 24px; border-radius: 100px 0 0 100px; font-family: var(--serif); font-size: 17px; color: var(--text); outline: none; }
.news__input:focus { border-color: var(--dark); }
.news__submit { background: var(--dark); color: var(--reverse); padding: 18px 32px; border: 2px solid var(--dark); border-radius: 0 100px 100px 0; font-family: var(--serif); font-weight: 500; font-size: 15px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.news__submit:hover { background: var(--accent); border-color: var(--accent); }
.news__success { font-family: var(--serif); font-size: 19px; color: var(--text); padding: 16px 0; }
.hp-field { display: none !important; }
.news__error { display: none; font-family: var(--serif); font-size: 15px; color: var(--accent); margin-top: 14px; }
.news__error.is-visible { display: block; }
.news__submit:disabled { opacity: 0.6; cursor: default; }

.news__arrowwrap { position: relative; display: inline-block; margin-top: 24px; }
.news__arrow { position: absolute; width: 48px; height: 48px; left: -64px; top: -28px; transform: rotate(150deg); }
.news__count { font-family: var(--mono); font-size: 11px; color: var(--text-2); letter-spacing: 1px; }

.news__creds { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-top: 48px; }
.news__creds span { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--text-2); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { position: relative; background: var(--dark); padding: 200px var(--pad-x); min-height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; }
.cta__star { position: absolute; opacity: 0.3; }
.cta__star--1 { width: 56px; height: 56px; top: 80px; left: 10%; transform: rotate(-12deg); }
.cta__star--2 { width: 72px; height: 72px; bottom: 100px; right: 12%; transform: rotate(18deg); }
.cta__star--3 { width: 40px; height: 40px; top: 40%; right: 18%; }
.cta__inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta .eyebrow { margin-bottom: 48px; }
.cta__headline { font-family: var(--serif); font-weight: 900; font-size: clamp(48px, 8vw, 120px); color: var(--reverse); letter-spacing: -0.03em; line-height: 0.95; margin-bottom: 24px; }
.circled { position: relative; display: inline-block; font-style: italic; color: var(--accent); }
.cta__ring { position: absolute; width: 150%; height: 150%; left: -25%; top: -25%; color: var(--accent); }
.cta__arrow { width: 64px; height: 64px; margin: 8px 0 32px; transform: rotate(8deg); }
.cta__sub { font-family: var(--serif); font-size: 22px; color: rgba(250,250,247,0.7); max-width: 640px; margin: 0 auto 64px; line-height: 1.5; }
.cta__row { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); border-top: 1px solid rgba(250,250,247,0.1); padding: 100px var(--pad-x) 50px; }
.footer__inner { max-width: 1400px; margin: 0 auto; }
.footer__top { display: flex; justify-content: space-between; gap: 80px; flex-wrap: wrap; }
.footer__brand { flex: 0 0 40%; }
.footer__logo { position: relative; display: inline-block; font-family: var(--serif); font-size: 28px; color: var(--reverse); }
.footer__star { position: absolute; width: 28px; height: 28px; top: -14px; right: -32px; }
.footer__tagline { font-family: var(--serif); font-style: italic; font-size: 16px; color: rgba(250,250,247,0.6); margin-top: 16px; }
.footer__cols { display: flex; gap: 80px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; }
.footer__col .eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 16px; }
.footer__col a { font-family: var(--serif); font-size: 14px; color: var(--reverse); padding: 6px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { margin-top: 84px; padding-top: 32px; border-top: 1px solid rgba(250,250,247,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom span { font-family: var(--mono); font-size: 10px; color: rgba(250,250,247,0.4); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1023px) {
  :root { --pad-x: 40px; }
  .stats__inner { grid-template-columns: 1fr; gap: 56px; }
  .stats__star { right: 40px; }
  .about__cols { grid-template-columns: 1fr; gap: 48px; }
  .work__row--3 { grid-template-columns: 1fr 1fr; }
  .testi__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .testi__videos { grid-template-columns: 1fr 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .marquee--services .marquee__item { font-size: 38px; }

  /* hero stacks */
  .hero { grid-template-columns: 1fr; gap: 24px; min-height: auto; padding-top: 130px; }
  .hero__sub { max-width: none; }
  .hero__visual { min-height: 560px; }
  .hero__collage { left: 50%; right: auto; transform: translateX(-50%) scale(.84); transform-origin: top center; }
  .trusted { gap: 28px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 767px) {
  :root { --pad-x: 24px; }
  .nav { padding: 16px 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 108px 24px 40px; gap: 16px; }
  .hero__tape { margin-bottom: 32px; }
  .hl--4 { font-size: clamp(64px, 18vw, 80px); }
  .hero__sub { font-size: 18px; margin-bottom: 36px; }
  .hero__cta .btn { flex: 1; min-width: 100%; }
  .hero__cloud { width: 300px; height: 225px; }
  .hero__visual { min-height: 430px; }
  .hero__collage { transform: translateX(-50%) scale(.62); }
  .trusted { flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px 24px; }
  .trusted__marquee { width: 100%; }

  .stats { padding: 72px 24px; }
  .ministat { flex-direction: column; gap: 8px; }
  .ministat__num { font-size: 56px; min-width: 0; }

  .about { padding: 80px 24px; }
  .pullquote p { font-size: 24px; }
  .about__right p { font-size: 17px; }

  .services__content { padding: 72px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .svc-card { padding: 40px 28px; }
  .marquee--services { height: 88px; }
  .marquee--services .marquee__item { font-size: 30px; }

  .work { padding: 80px 24px; }
  .feat { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .feat__right { order: -1; }
  .work__row--2, .work__row--3 { grid-template-columns: 1fr; }

  .testi { padding: 80px 24px; }
  .testi-feat { padding-left: 28px; }
  .testi-feat__person { flex-wrap: wrap; }
  .testi__videos { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .testi__videohead { margin-top: 56px; }

  .news { padding: 80px 24px; }
  .news__sub { font-size: 18px; }
  .news__form { flex-direction: column; gap: 12px; }
  .news__input { border-radius: 100px; text-align: center; }
  .news__submit { border-radius: 100px; }
  .news__arrow { display: none; }
  .news__creds { flex-direction: column; gap: 12px; }
  .news__star { width: 56px; height: 56px; right: 28px; }

  .cta { padding: 120px 24px; }
  .cta__sub { font-size: 18px; }
  .cta__row .btn { flex: 1; min-width: 100%; }

  .footer { padding: 60px 24px 32px; }
  .footer__top { flex-direction: column; gap: 48px; }
  .footer__cols { gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@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; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none !important; }
  /* hero: show final composed state instantly, no draw-in / float */
  .hero__tape, .hl--1, .hl--2, .hl--3, .hl--4, .hero__sub, .hero__cta,
  .float-slot, .float-card, .sticker, .hero__cursor, .hero__cloud {
    animation: none !important; opacity: 1 !important;
  }
  .hero__underline path { animation: none !important; stroke-dashoffset: 0 !important; }
}
