/* =====================================================================
   MARKET HUNTERZ — STYLES
   ===================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #000000;
  --bg-light: #f2f2f2;
  --fg: #ffffff;
  --fg-dim: rgba(255,255,255,0.65);
  --fg-dimmer: rgba(255,255,255,0.45);
  --line: rgba(255,255,255,0.12);
  --line-dark: rgba(0,0,0,0.12);
  --lime: #cbff3a;
  --lime-glow: rgba(203,255,58,0.4);
  /* Darker lime used for headings/accents on LIGHT backgrounds (WCAG-readable). */
  --lime-ink: #4d7a0a;
}

html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.display {
  font-family: 'Big Shoulders Display', 'Anton', sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}

.eyebrow {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.lime { color: var(--lime); }
.lime-strong { color: var(--lime); font-weight: 600; }

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
}

/* ========== Cursor ========== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--lime);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(.2,.6,.2,1), height 0.25s cubic-bezier(.2,.6,.2,1), background 0.25s;
  mix-blend-mode: difference;
}
.cursor.is-link { width: 56px; height: 56px; }
@media (hover: none), (pointer: coarse), (max-width: 900px) { .cursor { display: none; } }

/* ========== Nav ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  filter: invert(1);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a { position: relative; color: var(--fg-dim); transition: color 0.25s; }
.nav-links a:hover { color: var(--fg); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--lime);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 11px 22px;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--lime); color: var(--bg); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
  position: relative;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--lime);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { color: var(--fg); }
  .nav-links a::after { display: none; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(60,90,255,0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(140,60,255,0.18), transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}

.hero-orb {
  position: absolute;
  right: -8%;
  top: 8%;
  width: 60%;
  max-width: 820px;
  aspect-ratio: 1;
  z-index: -1;
  will-change: transform;
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero-orb { width: 90%; right: -20%; top: 14%; opacity: 0.7; }
}

.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(64px, 13vw, 232px);
  margin-bottom: 28px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .line:nth-child(2) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.2s; }
.hero-title .dot { color: var(--lime); }

@keyframes rise { to { transform: translateY(0); } }

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--fg-dim);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-sub strong, .hero-sub .lime-strong { color: var(--lime); font-weight: 600; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s cubic-bezier(.2,.7,.2,1) forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: var(--lime); transform: translateY(-2px); }
.btn-primary .arrow { display: inline-block; transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.hero-stat { display: flex; align-items: center; gap: 14px; }
.hero-stat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.85;
}
.hero-stat-num .plus { color: var(--lime); }
.hero-stat-lbl {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50%      { transform: scaleY(1);   transform-origin: top; }
}
@media (max-width: 720px) { .hero-scroll { display: none; } }

/* ========== Marquee ========== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: #050505;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll-x 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track span::after {
  content: '✦';
  color: var(--lime);
  font-size: 0.6em;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== Pitch ========== */
.pitch { padding: 140px 0 100px; position: relative; }
.pitch-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.pitch-heading { font-size: clamp(40px, 5.8vw, 92px); }
.pitch-body { font-size: 17px; color: var(--fg-dim); max-width: 460px; }
.pitch-body strong, .pitch-body .lime-strong { color: var(--lime); font-weight: 600; }
@media (max-width: 900px) {
  .pitch { padding: 90px 0 60px; }
  .pitch-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== Image strip ========== */
.strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 80px;
  height: clamp(320px, 38vw, 540px);
}
.strip-tile { position: relative; overflow: hidden; background: #111; }
.strip-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.9) contrast(1.05);
}
.strip-tile:hover img { transform: scale(1.06); }
.strip-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
  pointer-events: none;
}
@media (max-width: 720px) {
  .strip { grid-template-columns: 1fr; height: auto; gap: 12px; margin-top: 48px; }
  .strip-tile { height: 280px; }
}

/* ========== Selected works ========== */
.works {
  background: var(--bg-light);
  color: #0a0a0a;
  padding: 120px 0;
}
.works-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.works-head-right {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.works-title { font-size: clamp(40px, 6vw, 96px); }
.works-blurb { max-width: 380px; color: rgba(0,0,0,0.6); font-size: 15px; }
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--lime);
  color: #000;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.btn-pill:hover { background: #000; color: var(--lime); transform: translateY(-2px); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.work {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd;
  aspect-ratio: 1.4;
}
.work.lg   { grid-column: span 6; aspect-ratio: 2.2; }
.work.md   { grid-column: span 3; aspect-ratio: 1.6; }
.work.sm   { grid-column: span 2; aspect-ratio: 1.2; }
.work.full { grid-column: span 6; aspect-ratio: 2.6; }
.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter 0.6s;
}
.work::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.78));
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.5s;
}
.work-meta {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 2;
  color: #fff;
  transform: translateY(8px);
  opacity: 0.95;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), opacity 0.5s;
}
.work-meta .cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 6px;
}
.work-meta .title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 1.8vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.work:hover img       { transform: scale(1.08); filter: brightness(0.95); }
.work:hover::after    { opacity: 1; }
.work:hover .work-meta{ transform: translateY(0); }

.work-arrow {
  position: absolute;
  right: 20px; top: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.4s cubic-bezier(.4,1.7,.5,1);
}
.work:hover .work-arrow { transform: scale(1) rotate(0); }

@media (max-width: 900px) {
  .works { padding: 80px 0; }
  .work.md, .work.sm, .work.lg { grid-column: span 6; aspect-ratio: 1.6; }
  .work.full { aspect-ratio: 1.4; }
}

/* ========== Testimonials ========== */
.testi {
  background: var(--bg-light);
  color: #0a0a0a;
  padding: 80px 0 140px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.testi-head {
  text-align: center;
  font-size: clamp(40px, 6.5vw, 96px);
  margin-bottom: 72px;
}
.testi-stage { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 80px; }
.testi-track { position: relative; min-height: 360px; }
.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
  pointer-events: none;
}
.testi-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testi-quote {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 60px);
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin-bottom: 56px;
  position: relative;
}
.testi-mark-l, .testi-mark-r {
  color: var(--lime);
  font-size: 1.5em;
  line-height: 0;
  position: relative;
  top: 0.1em;
}
.testi-mark-l { margin-right: 6px; }
.testi-mark-r { margin-left: 6px; }
.testi-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  flex-wrap: wrap;
}
.testi-meta strong { font-weight: 600; }
.testi-meta span { color: rgba(0,0,0,0.5); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }

.testi-nav {
  position: absolute;
  top: 50%;
  width: 44px; height: 44px;
  margin-top: -22px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.testi-nav:hover { background: #000; color: var(--lime); border-color: #000; }
.testi-prev { left: 0; }
.testi-next { right: 0; }

.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  transition: background 0.25s, transform 0.25s;
}
.testi-dot.active { background: var(--lime); transform: scale(1.3); }

@media (max-width: 720px) {
  .testi { padding: 60px 0 120px; }
  .testi-stage { padding: 0 0; }
  .testi-nav { top: auto; bottom: -90px; margin-top: 0; }
  .testi-prev { left: 30%; }
  .testi-next { right: 30%; }
  .testi-dots { margin-top: 80px; }
}

/* ========== BTS banner ========== */
.bts { position: relative; height: clamp(320px, 32vw, 460px); overflow: hidden; }
.bts img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.bts::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.4));
}

/* ========== FAQ ========== */
.faq { padding: 130px 0; }
.faq-head { font-size: clamp(48px, 7vw, 120px); margin-bottom: 72px; max-width: 700px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
  transition: padding 0.3s;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  user-select: none;
}
.faq-q .plus {
  color: var(--lime);
  font-size: 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(.2,.7,.2,1), padding-top 0.45s;
  color: var(--fg-dim);
  font-size: 15px;
  max-width: 720px;
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  padding-top: 18px;
}
@media (max-width: 720px) { .faq { padding: 90px 0; } }

/* ========== CTA ========== */
.cta { position: relative; padding: 160px 0; overflow: hidden; background: #000; }
.cta-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.32; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4); }
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at center, transparent, rgba(0,0,0,0.85));
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-title { font-size: clamp(56px, 9vw, 156px); margin-bottom: 24px; }
.cta-blurb { color: var(--fg-dim); max-width: 540px; margin: 0 auto 40px; font-size: 16px; }
.cta .btn-pill { font-size: 13px; padding: 18px 32px; }

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 100px auto 0;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.cta-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}
.cta-stat-n {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
}
.cta-stat-n.lime { color: var(--lime); }
.cta-stat-l {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
}
@media (max-width: 720px) {
  .cta { padding: 100px 0; }
  .cta-stats { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; margin-top: 64px; }
}

/* ========== Footer ========== */
.footer { padding: 96px 0 32px; border-top: 1px solid var(--line); background: #050505; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
}
.footer-brand {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 5vw, 72px);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.005em;
}
.footer-blurb { color: var(--fg-dim); max-width: 460px; font-size: 15px; }
.footer-contact { text-align: right; }
.footer-contact .lbl {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 12px;
}
.footer-email {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 52px);
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.25s;
  display: inline-block;
  word-break: break-word;
}
.footer-email:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials, .footer-legal { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-socials a, .footer-legal a {
  color: var(--lime);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.25s;
}
.footer-socials a:hover, .footer-legal a:hover { opacity: 0.7; }
.footer-copy {
  color: var(--fg-dimmer);
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 40px;
}
@media (max-width: 720px) {
  .footer { padding: 64px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-contact { text-align: left; }
}

/* ========== Scroll reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ========== Loader ========== */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader img { width: 80px; filter: invert(1); animation: pulse 1.4s ease-in-out infinite; }
.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lime);
  transform-origin: left;
  animation: load 1.6s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes load  { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* =====================================================================
   SUB-PAGE STYLES (about / services / works / contact)
   ===================================================================== */

/* Force a solid nav background on subpages (no transparent hero overlay underneath) */
.nav-solid {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
}

/* ========== Page hero (used by all subpages) ========== */
.page-hero {
  position: relative;
  height: clamp(380px, 56vh, 620px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.05);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 35%, rgba(0,0,0,0.85) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
  width: 100%;
}
.page-hero-kicker {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  color: var(--lime);
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero-title {
  font-size: clamp(64px, 11vw, 200px);
  line-height: 0.88;
  margin-bottom: 14px;
}
.page-hero-title .line { display: block; overflow: hidden; }
.page-hero-title .line span { display: inline-block; }
.page-hero-title .dot { color: var(--lime); }
.page-hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--fg-dim);
  max-width: 640px;
}
.page-hero-center .page-hero-inner { text-align: center; padding-bottom: 80px; }
.page-hero-center .page-hero-sub   { margin: 0 auto; }

/* ========== ABOUT — intro ========== */
.about-intro {
  background: var(--bg-light);
  color: #0a0a0a;
  padding: 120px 0;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-intro-heading {
  font-size: clamp(40px, 5.6vw, 92px);
  margin-bottom: 32px;
}
.about-intro-body {
  font-size: 17px;
  color: rgba(0,0,0,0.7);
  margin-bottom: 28px;
  max-width: 560px;
}
.about-intro-author {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.4;
}
.about-intro-author strong { font-weight: 700; }
.about-intro-author span   { color: rgba(0,0,0,0.5); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
.about-intro-photo img {
  width: 100%;
  height: clamp(320px, 36vw, 540px);
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .about-intro { padding: 80px 0; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== ABOUT — excellence ========== */
.about-excellence {
  padding: 140px 0 100px;
  background: var(--bg);
}
.about-excellence-head {
  font-size: clamp(40px, 6vw, 96px);
  margin-bottom: 64px;
  max-width: 1100px;
}
.about-excellence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.excellence-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1.05;
  background: #111;
}
.excellence-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.excellence-tile:hover img { transform: scale(1.06); }
.excellence-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.78));
  pointer-events: none;
}
.excellence-tile figcaption {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 1;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.5vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 900px) {
  .about-excellence { padding: 80px 0 60px; }
  .about-excellence-grid { grid-template-columns: 1fr; }
  .excellence-tile { aspect-ratio: 1.4; }
}

/* ========== ABOUT — feature banner ========== */
.about-feature {
  position: relative;
  height: clamp(360px, 52vw, 720px);
  overflow: hidden;
}
.about-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.75));
}
.about-feature-cap-wrap {
  position: absolute;
  inset: auto 0 32px 0;
  text-align: right;
}
.about-feature-caption {
  display: inline-block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.4vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
}

/* ========== ABOUT — trust ========== */
.about-trust {
  padding: 130px 0 100px;
}
.about-trust-head {
  font-size: clamp(40px, 6vw, 96px);
  margin-bottom: 60px;
  max-width: 1000px;
}
.about-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.trust-point {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.trust-point:hover {
  border-color: var(--lime);
  background: rgba(203,255,58,0.03);
  transform: translateY(-3px);
}
.trust-point h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 1.8vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: var(--lime);
}
.trust-point p { color: var(--fg-dim); font-size: 15px; }
@media (max-width: 720px) {
  .about-trust { padding: 80px 0 60px; }
  .about-trust-list { grid-template-columns: 1fr; }
}

/* ========== SERVICES ========== */
.services-section { padding: 130px 0 100px; }
.services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service-category {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 80px;
  align-items: start;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.service-kicker {
  font-size: clamp(28px, 3vw, 48px);
  color: var(--fg-dimmer);
  letter-spacing: 0.02em;
}
.service-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.service-item:last-child { border-bottom: 0; }
.service-item h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 1.6vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  color: var(--lime);
}
.service-item p { color: var(--fg-dim); font-size: 15px; max-width: 760px; }
@media (max-width: 900px) {
  .services-section { padding: 80px 0 60px; }
  .services-list { gap: 56px; }
  .service-category { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; }
  .service-kicker { color: var(--lime); }
}

/* ========== WORKS PAGE — gallery ========== */
.works-gallery { padding: 110px 0 60px; }
.works-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
  margin-bottom: 56px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.gallery-tile:hover img { transform: scale(1.06); }
/* Asymmetric arrangement to match the design */
.gallery-tile-0 { grid-column: span 3; grid-row: span 2; }
.gallery-tile-1 { grid-column: span 3; grid-row: span 1; }
.gallery-tile-2 { grid-column: span 2; grid-row: span 1; }
.gallery-tile-3 { grid-column: span 4; grid-row: span 2; }
.gallery-tile-4 { grid-column: span 2; grid-row: span 1; }
.gallery-tile-5 { grid-column: span 6; grid-row: span 2; }
.works-gallery-head {
  font-size: clamp(40px, 6vw, 96px);
  max-width: 1100px;
  margin-top: 64px;
}
@media (max-width: 900px) {
  .works-gallery { padding: 80px 0 40px; }
  .works-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-tile-0, .gallery-tile-1, .gallery-tile-2,
  .gallery-tile-3, .gallery-tile-4, .gallery-tile-5 {
    grid-column: span 1; grid-row: span 1;
  }
}

/* ========== WORKS PAGE — mid CTA ========== */
.works-midcta { padding: 120px 0; }
.works-midcta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.works-midcta-head {
  font-size: clamp(40px, 5.4vw, 84px);
  flex: 1 1 540px;
  max-width: 900px;
}

/* ========== WORKS PAGE — quote ========== */
.works-quote {
  padding: 80px 0 140px;
  background: var(--bg-light);
  color: #0a0a0a;
}
.works-quote-body {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 60px);
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: -0.005em;
  max-width: 1100px;
  margin-bottom: 32px;
}
.works-quote-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.works-quote-meta strong { font-weight: 700; }
.works-quote-meta span   { color: rgba(0,0,0,0.5); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }

/* ========== CONTACT ========== */
.contact-section {
  background: var(--bg-light);
  color: #0a0a0a;
  padding: 110px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-form-heading {
  font-size: clamp(40px, 5.4vw, 80px);
  margin-bottom: 40px;
  line-height: 0.92;
}
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border-radius: 50%;
  color: #000;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 4px;
}
.contact-info-value {
  font-weight: 600;
  font-size: 15px;
  color: #0a0a0a;
  transition: color 0.25s;
}
.contact-info-value:hover { color: #000; text-decoration: underline; }

.contact-form {
  display: grid;
  gap: 20px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-field label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 4px;
  background: #fff;
  color: #0a0a0a;
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(203,255,58,0.25);
}
.contact-form-submit {
  margin-top: 8px;
  padding: 16px 28px;
  background: #000;
  color: #fff;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.contact-form-submit:hover { background: var(--lime); color: #000; transform: translateY(-2px); }

@media (max-width: 900px) {
  .contact-section { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* =====================================================================
   LIGHT-BACKGROUND LIME OVERRIDES
   Lime #cbff3a is designed for the black brand background.
   On light sections it fails contrast, so swap to a deeper lime ink.
   ===================================================================== */

/* Any .lime / .lime-strong / .lime accent inside a light-background section */
.works .lime,         .works .lime-strong,
.testi .lime,         .testi .lime-strong,
.about-intro .lime,   .about-intro .lime-strong,
.works-quote .lime,   .works-quote .lime-strong,
.contact-section .lime, .contact-section .lime-strong {
  color: var(--lime-ink);
}

/* Decorative quote marks in testimonials (home page) */
.testi .testi-mark-l,
.testi .testi-mark-r,
.works-quote .testi-mark-l,
.works-quote .testi-mark-r {
  color: var(--lime-ink);
}

/* Animated dot in the hero title is fine (dark hero); but the same .dot class
   appears in page-hero titles which are dark too, so no override needed there.
   The .dot inside the works-quote / contact-form-heading (light bg) needs help: */
.about-intro .display .dot,
.contact-section .display .dot,
.works-quote .dot {
  color: var(--lime-ink);
}

/* Contact form: lime focus ring stays bright (still visible on white input).
   But the heading lime accent + the lime info icons inherit from --lime which
   is fine as a SOLID FILL behind black text. Just text-on-light needs the swap. */

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