/* =================================================================
   AURA STUDIO — style.css  (full rewrite)
   Dark-mode Gigantic Media structural clone for an architecture firm
   ================================================================= */

/* ─────────────────── 0. RESET & BASE ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: auto; }

body {
  background: #0A0A0A;
  color: #F5F5F5;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; cursor: none; }
button, input, textarea, select { font: inherit; cursor: none; }
img, svg, video { display: block; max-width: 100%; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 1px solid rgba(245,245,245,0.5); outline-offset: 3px; }


/* ─────────────────── 1. CUSTOM CURSOR ─────────────────────────────────────
   Two INDEPENDENT position:fixed elements.
   GSAP x/y = transform:translate(mouseX, mouseY) from top:0 left:0.
   Centering via negative margin — never via CSS transform (would conflict).
──────────────────────────────────────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  /* Must beat the intro overlay (z-index: 10000) on every single screen */
  z-index: 99999 !important;
  will-change: transform;
}

.cursor-dot {
  width: 8px; height: 8px;
  background: #F5F5F5;
  border-radius: 50%;
  margin-top: -4px; margin-left: -4px;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,245,245,0.55);
  border-radius: 50%;
  margin-top: -19px; margin-left: -19px;
  transition: width .22s ease, height .22s ease,
              margin .22s ease, border-color .22s ease;
}

body.cursor--hover .cursor-ring {
  width: 60px; height: 60px;
  margin-top: -30px; margin-left: -30px;
  border-color: rgba(245,245,245,0.85);
}
body.cursor--hover .cursor-dot {
  width: 4px; height: 4px;
  margin-top: -2px; margin-left: -2px;
}


/* ─────────────────── 2. INTRO OVERLAY ─────────────────── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  overflow: hidden;
}

.intro__canvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

.intro__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vh, 4rem);
  text-align: center;
}

.intro__wordmark {
  display: flex;
  align-items: flex-start;
  gap: 0.08em;
}

.intro__word {
  font-size: clamp(7rem, 19vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.86;
  color: #F5F5F5;
  display: block;
}

.intro__sub {
  font-size: clamp(1rem, 2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5F5F5;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 0.12em;
  opacity: 0.7;
}

.intro__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #F5F5F5;
  color: #0A0A0A;
  border: none;
  padding: 1.1rem 2.6rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: none;
  transition: background .18s, color .18s, transform .18s;
  will-change: transform;
}
.intro__btn:hover {
  background: transparent;
  color: #F5F5F5;
  outline: 1px solid rgba(245,245,245,0.4);
  transform: scale(1.04);
}
.intro__btn-arrow {
  width: 18px; height: 18px;
  transition: transform .2s;
}
.intro__btn:hover .intro__btn-arrow { transform: translateX(3px); }

.intro__footer {
  display: flex;
  gap: 2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.3);
}

/* ─────────────────── 3. NAVIGATION ─────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(1.2rem, 3vw, 3rem);
  border-bottom: 1px solid #222;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .4s ease;
  will-change: transform;
}
.nav.is-hidden { transform: translateY(-100%); }

.nav__burger {
  background: none; border: none;
  display: flex; flex-direction: column;
  gap: 6px; padding: 8px; justify-self: start;
}
.nav__burger-line {
  display: block; width: 26px; height: 1px;
  background: #F5F5F5;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav__burger.is-open .nav__burger-line:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open .nav__burger-line:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

.nav__wordmark {
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.3em;
  justify-self: center;
}
.nav__wordmark-sub {
  font-size: 0.5em; font-weight: 600;
  letter-spacing: 0.2em; opacity: 0.55;
}

.nav__wave {
  background: none; border: none;
  justify-self: end;
  color: #F5F5F5;
  width: 34px; opacity: 0.6;
  transition: opacity .2s;
}
.nav__wave:hover { opacity: 1; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 400;
  background: #0A0A0A;
  padding-top: 64px;
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(.77,0,.18,1);
  border-right: 1px solid #222;
  display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__inner {
  flex: 1; display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 4rem clamp(1.5rem, 4vw, 3rem);
}
.mobile-menu__link {
  display: block;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.1; padding: 0.8rem 0;
  border-bottom: 1px solid #222;
  transition: opacity .2s;
}
.mobile-menu__link:hover { opacity: 0.45; }

.mobile-menu__email {
  font-size: 0.85rem; color: rgba(245,245,245,0.4);
}


/* ─────────────────── 4. UTILITY CLASSES ─────────────────── */
.section-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,245,245,0.38);
  display: inline-block;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 600; letter-spacing: 0.03em;
  transition: background .18s, color .18s, transform .18s;
  border: none;
}
.btn--light {
  background: #F5F5F5; color: #0A0A0A;
  padding: 1rem 2.2rem; border-radius: 999px;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
}
.btn--light svg { width: 16px; height: 16px; transition: transform .2s; }
.btn--light:hover { background: transparent; color: #F5F5F5;
  outline: 1px solid rgba(245,245,245,0.35); transform: scale(1.03); }
.btn--light:hover svg { transform: translate(2px,-2px); }

.btn--primary {
  background: #F5F5F5; color: #0A0A0A;
  padding: 1rem 2.4rem; border-radius: 999px;
  font-size: 1rem;
}
.btn--primary svg { width: 16px; height: 16px; transition: transform .2s; }
.btn--primary:hover { background: transparent; color: #F5F5F5;
  outline: 1px solid #F5F5F5; transform: scale(1.03); }
.btn--primary:hover svg { transform: translate(2px,-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245,245,245,0.55);
  border-bottom: 1px solid rgba(245,245,245,0.18);
  padding-bottom: 0.2rem;
  transition: color .18s, border-color .18s;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .18s; }
.link-arrow:hover { color: #F5F5F5; border-color: rgba(245,245,245,0.5); }
.link-arrow:hover svg { transform: translate(2px,-2px); }


/* ─────────────────── 5. HERO ─────────────────── */
/*
  Z-INDEX STACK (lowest → highest):
    1  — .hero__video         (the <video> element itself)
    2  — .hero__video-overlay (rgba dark tint)
    3  — .hero__canvas        (interactive grid, pointer-events:none)
   10  — .hero__title-wrap    (AURA STUDIO text)
   10  — .hero__meta          (tagline + CTA)
   10  — .hero__scroll        (scroll indicator)
*/
.hero {
  position: relative;
  height: 100vh;            /* exact viewport height */
  min-height: 600px;        /* floor for very small screens */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #222;
  padding-top: 64px;        /* clear the fixed nav */
}

/* ── Layer 1: Video ── */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  display: block;
}

/* ── Layer 2: Dark overlay ── */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.6);
  z-index: 2;
}

/* ── Layer 3: Interactive canvas grid (mouse-reactive) ── */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 3;               /* above overlay, still behind text */
  pointer-events: none;
  opacity: 0.55;
  display: block;
}

/* ── Layer 10: All visible content (title + meta) ── */
.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ── AURA STUDIO wordmark ── */
.hero__title-wrap {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  width: 100%;
  /* Flex child, so no absolute positioning needed */
}

/* Each line acts as an overflow:hidden mask for the slide-up */
.hero__title-line {
  display: block;
  overflow: hidden;
  line-height: 0.86;
}

/* The span slides up from yPercent:105 via GSAP */
.hero__title-word {
  display: block;
  font-size: clamp(6rem, 18vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.86;
  color: #F5F5F5;
  will-change: transform;
  transform: translateY(105%); /* CSS fallback; GSAP overrides on init */
}

/* ── Layer 10: Sub-row (tagline + CTA) ── */
.hero__meta {
  position: relative;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: clamp(2rem, 4vw, 5rem);
  gap: 2rem;
  opacity: 0;               /* GSAP reveals after intro exits */
  transform: translateY(20px);
}
.hero__tagline {
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  font-weight: 500; line-height: 1.65;
  color: rgba(245,245,245,0.72);
  margin-bottom: 0.6rem;
}
.hero__sub-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,245,245,0.35);
}
.hero__meta-right {
  display: flex; align-items: flex-end; justify-content: flex-end;
}

/* ── Layer 10: Scroll indicator ── */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  opacity: 0; /* GSAP reveals */
}
.hero__scroll-mouse {
  width: 22px; height: 34px;
  border: 1px solid rgba(245,245,245,0.22);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero__scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(245,245,245,0.45); border-radius: 2px;
  animation: wheelAnim 1.9s ease infinite;
}
.hero__scroll-label {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,245,245,0.3);
}

@keyframes wheelAnim {
  0%   { transform: translateY(0);   opacity: 1; }
  75%  { transform: translateY(9px); opacity: 0; }
  100% { transform: translateY(0);   opacity: 0; }
}




/* ─────────────────── 7. STATEMENT ─────────────────── */

.statement { border-bottom: 1px solid #222; }

.statement__inner {
  padding: clamp(5rem,12vh,10rem) clamp(1.5rem,4vw,4rem);
}

.statement__top {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #222;
  padding-bottom: 1.5rem;
  margin-bottom: clamp(3rem,6vw,5rem);
}

.statement__headline {
  font-size: clamp(2.2rem, 5vw, 6.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.06;
  color: #F5F5F5;
  max-width: 16ch;
  margin-bottom: clamp(3rem,6vw,5rem);
  /* SplitType lines overflow hidden — set per-line by JS */
}

.statement__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,6rem);
  border-top: 1px solid #222;
  padding-top: clamp(2rem,4vw,3.5rem);
}
.statement__col p {
  font-size: clamp(0.9rem, 1.15vw, 1.1rem);
  line-height: 1.75; color: rgba(245,245,245,0.6);
  margin-bottom: 1.6rem;
}


/* ─────────────────── 8. SERVICES ─────────────────── */
.services { border-bottom: 1px solid #222; }

.services__header {
  display: grid; grid-template-columns: 0.5fr 2fr;
  gap: 2rem; align-items: end;
  padding: clamp(3rem,8vh,6rem) clamp(1.5rem,4vw,4rem);
  border-bottom: 1px solid #222;
}

.services__headline {
  font-size: clamp(3rem, 7vw, 9rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.88;
  color: #F5F5F5;
}

/* Each row: grid with 0.5fr number / 2fr text / 1fr arrow */
.service-row {
  display: grid;
  grid-template-columns: 0.5fr 2fr 1fr;
  gap: 2rem; align-items: center;
  width: 100%;
  padding: clamp(2.2rem,5vh,4.5rem) clamp(1.5rem,4vw,4rem);
  border-bottom: 1px solid #222;
  color: #F5F5F5; text-decoration: none; cursor: none;
  /* 0.1s snap physics — the Gigantic Media signature */
  transition: background .1s ease, color .1s ease;
  will-change: background, color;
}
.service-row:hover {
  background: #F5F5F5;
  color: #0A0A0A;
}

.service-row__num {
  font-size: clamp(0.7rem, 0.9vw, 0.88rem);
  font-weight: 600; letter-spacing: 0.1em;
  opacity: 0.3; font-variant-numeric: tabular-nums;
  align-self: start; padding-top: 0.15em;
  color: currentColor;
}
.service-row__body { display: flex; flex-direction: column; gap: 0.7rem; }

.service-row__title {
  font-size: clamp(1.35rem, 2.6vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.06;
  color: currentColor;
}
.service-row__desc {
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  line-height: 1.72; color: currentColor; opacity: 0.58;
  max-width: 52ch;
}

.service-row__icon {
  display: flex; justify-content: flex-end; align-items: center;
}
.service-row__icon svg {
  width: clamp(38px,5vw,58px);
  height: clamp(38px,5vw,58px);
  color: currentColor;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}
.service-row:hover .service-row__icon svg { transform: rotate(45deg) scale(1.1); }


/* ─────────────────── 9. PROJECTS — Horizontal Scroll ─────────────────── */
.projects-section { border-bottom: 1px solid #222; }

.projects-section__hd {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: end;
  padding: clamp(4rem,10vh,8rem) clamp(1.5rem,4vw,4rem) clamp(2rem,5vh,4rem);
  border-bottom: 1px solid #222;
}
.projects-section__headline {
  font-size: clamp(3rem, 7vw, 9rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.88;
  color: #F5F5F5;
  grid-column: 2; grid-row: 1;
}
.projects-section__hd .section-label { grid-column: 1; grid-row: 1; align-self: start; }
.projects-section__sub {
  grid-column: 2; grid-row: 2;
  font-size: clamp(0.85rem,1.1vw,1rem);
  color: rgba(245,245,245,0.45); line-height: 1.7;
}

/* Pin container */
.projects-pin { position: relative; }

.projects-pin__sticky {
  position: sticky; top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
  display: flex; flex-direction: column;
}

.projects-counter {
  display: flex; align-items: baseline; gap: 0.3rem;
  padding: 1.1rem clamp(1.5rem,4vw,4rem);
  border-bottom: 1px solid #222;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; color: rgba(245,245,245,0.35);
  font-variant-numeric: tabular-nums; flex-shrink: 0;
}
#counterCurrent { color: #F5F5F5; font-size: 0.95rem; }
.projects-counter__sep { opacity: 0.28; }

.projects-track-wrap { flex: 1; overflow: hidden; }

.projects-track {
  display: flex; height: 100%;
  will-change: transform;
}

/* Project card */
.project-card {
  flex-shrink: 0;
  width: min(500px, 84vw);
  height: 100%;
  border-right: 1px solid #222;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.project-card__vis {
  position: relative; flex: 1; overflow: hidden;
}
/* Image wrapper — absolute fill, clips the 130%-wide image */
.card-image-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Image is 130% wide so GSAP can pan up to 30% rightward for parallax.
   The extra width starts flush left and GSAP shifts it during scroll. */
.card-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.7);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              filter  0.8s ease;
  will-change: transform;
}

/* Hover: brighten + subtle scale */
.project-card:hover .card-image {
  transform: scale(1.05);
  filter: brightness(1);
}

.project-card__year {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,245,245,0.38);
}
.project-card__meta {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.8rem 2rem;
  border-top: 1px solid #222;
  background: #0A0A0A; flex-shrink: 0;
}
.project-card__cat {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,245,245,0.3);
}
.project-card__title {
  font-size: clamp(1.2rem, 1.9vw, 1.85rem);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.1; color: #F5F5F5;
}
.project-card__loc {
  font-size: 0.75rem; color: rgba(245,245,245,0.35);
  margin-bottom: 0.6rem;
}
.project-card__cta {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,245,245,0.45);
  border-bottom: 1px solid rgba(245,245,245,0.14);
  padding-bottom: 0.15rem; display: inline-block;
  transition: color .15s, border-color .15s;
}
.project-card:hover .project-card__cta {
  color: #F5F5F5; border-color: rgba(245,245,245,0.5);
}

/* Progress bar */
.projects-progress {
  height: 1px; background: #222; flex-shrink: 0;
}
.projects-progress__fill {
  height: 100%; background: #F5F5F5; width: 0%;
  transition: width .07s linear;
}


/* ─────────────────── 10. PROOF ─────────────────── */
.proof { border-bottom: 1px solid #222; }

.proof__hd {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: end;
  padding: clamp(4rem,10vh,8rem) clamp(1.5rem,4vw,4rem) clamp(2rem,5vh,4rem);
  border-bottom: 1px solid #222;
}
.proof__hd .section-label { grid-column: 1; align-self: start; }
.proof__headline {
  font-size: clamp(2.2rem, 5vw, 6rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.95;
  color: #F5F5F5; grid-column: 2;
}

.proof__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.proof__item {
  padding: clamp(2.5rem,6vh,5rem) clamp(1.5rem,3vw,3rem);
  border-right: 1px solid #222;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.proof__item:last-child { border-right: none; }

.proof__num {
  font-size: clamp(2.8rem,5.5vw,6.5rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  color: #F5F5F5; font-variant-numeric: tabular-nums;
  display: flex; align-items: flex-start; gap: 0.1em;
}
.proof__num sup {
  font-size: 0.38em; margin-top: 0.25em;
  color: rgba(245,245,245,0.45); font-weight: 700;
}

.proof__item strong {
  font-size: clamp(0.8rem,1vw,0.95rem); font-weight: 700;
  color: #F5F5F5; display: block;
}
.proof__item p {
  font-size: clamp(0.75rem,0.88vw,0.85rem);
  color: rgba(245,245,245,0.38); line-height: 1.6;
}


/* ─────────────────── 11. CONTACT CTA ─────────────────── */
.contact-cta { border-bottom: 1px solid #222; }

.contact-cta__inner {
  display: grid; grid-template-columns: 1fr 1.15fr;
  min-height: 80vh;
}

.contact-cta__left {
  padding: clamp(5rem,12vh,10rem) clamp(1.5rem,4vw,4rem);
  border-right: 1px solid #222;
  display: flex; flex-direction: column; gap: 2rem;
}
.contact-cta__headline {
  font-size: clamp(3.5rem, 8.5vw, 10.5rem);
  font-weight: 900; letter-spacing: -0.045em; line-height: 0.9;
  color: #F5F5F5;
}
.contact-cta__headline em {
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}
.contact-cta__email {
  display: inline-block; margin-top: auto;
  font-size: clamp(0.85rem,1.2vw,1.1rem); font-weight: 500;
  color: rgba(245,245,245,0.45);
  border-bottom: 1px solid rgba(245,245,245,0.14);
  padding-bottom: 0.3rem;
  transition: color .18s, border-color .18s;
}
.contact-cta__email:hover { color: #F5F5F5; border-color: rgba(245,245,245,0.5); }

.contact-cta__right {
  padding: clamp(5rem,12vh,10rem) clamp(2rem,4vw,4rem);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.6rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field--full { grid-column: 1/-1; }

.form-field label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,245,245,0.3);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid #333;
  padding: 0.75rem 0; font-size: 0.92rem;
  color: #F5F5F5; outline: none;
  -webkit-appearance: none; appearance: none;
  border-radius: 0; resize: none;
  transition: border-color .2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245,245,245,0.18); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(245,245,245,0.55); }
.form-field select option { background: #111; color: #F5F5F5; }

.form-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

.form-legal {
  font-size: 0.72rem; color: rgba(245,245,245,0.28);
}
.form-legal a {
  text-decoration: underline;
  text-decoration-color: rgba(245,245,245,0.18);
  transition: color .15s;
}
.form-legal a:hover { color: rgba(245,245,245,0.65); }

.form-success {
  display: none;
  font-size: 0.88rem; color: rgba(245,245,245,0.65);
  border-left: 2px solid rgba(245,245,245,0.25);
  padding-left: 1rem; line-height: 1.6;
}
.form-success.is-visible { display: block; }


/* ─────────────────── 12. FOOTER ─────────────────── */
.footer { border-top: 1px solid #222; overflow: hidden; }

.footer__inner {
  padding: 0 clamp(1.5rem,4vw,4rem);
}

.footer__top {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #222;
}

.footer__wordmark {
  font-size: clamp(0.82rem,1.2vw,1.1rem);
  font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase;
}

.footer__nav {
  display: flex; gap: clamp(1.2rem,2.5vw,2.5rem); justify-content: center;
}
.footer__nav a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(245,245,245,0.45); transition: color .15s;
}
.footer__nav a:hover { color: #F5F5F5; }

.footer__social {
  display: flex; gap: 1.8rem; justify-content: flex-end;
}
.footer__social a {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,245,245,0.3); transition: color .15s;
}
.footer__social a:hover { color: #F5F5F5; }

/* Enormous ghost wordmark at the bottom */
.footer__big {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14vw;
  line-height: 1;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,245,245,0.055);
  padding: 1.5rem 0;
  user-select: none;
}

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid #222;
}
.footer__bottom > span {
  font-size: 0.72rem; color: rgba(245,245,245,0.22);
}
.footer__legal { display: flex; gap: 1.8rem; }
.footer__legal a {
  font-size: 0.72rem; color: rgba(245,245,245,0.22);
  transition: color .15s;
}
.footer__legal a:hover { color: rgba(245,245,245,0.6); }


/* ─────────────────── 13. SCROLL REVEAL STATE ─────────────────── */
/* js-reveal elements start invisible; GSAP animates them in */
.js-reveal {
  opacity: 0;
  transform: translateY(48px);
}


/* ─────────────────── 14. RESPONSIVE — TABLET ─────────────────── */
@media (max-width: 1024px) {
  .statement__body { grid-template-columns: 1fr; }

  .proof__grid { grid-template-columns: 1fr 1fr; }
  .proof__item:nth-child(2) { border-right: none; }
  .proof__item:nth-child(3) { border-right: 1px solid #222; }

  .contact-cta__inner { grid-template-columns: 1fr; }
  .contact-cta__left { border-right: none; border-bottom: 1px solid #222; }

  .projects-section__headline { grid-column: 1/-1; grid-row: 2; }
  .projects-section__hd .section-label { grid-row: 1; }
  .projects-section__sub { grid-column: 1/-1; grid-row: 3; }

  .proof__hd { grid-template-columns: 1fr; }
  .proof__headline { grid-column: 1; }
}

/* ─────────────────── 15. RESPONSIVE — MOBILE ─────────────────── */
@media (max-width: 768px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__wordmark { justify-self: center; }

  .hero__meta { grid-template-columns: 1fr; }
  .hero__meta-right { justify-content: flex-start; }

  .statement__top { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

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

  .service-row {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: clamp(1.4rem,4vh,2.8rem) 1.2rem;
  }
  .service-row__desc { display: none; }
  .service-row__title { font-size: clamp(1.1rem,4.2vw,1.8rem); }

  .proof__grid { grid-template-columns: 1fr 1fr; }
  .proof__item { padding: 2rem 1.2rem; }
  .proof__item:nth-child(2n) { border-right: none; }
  .proof__item:nth-child(3)  { border-right: 1px solid #222; }

  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; text-align: center; gap: 1.2rem; }
  .footer__nav { flex-wrap: wrap; justify-content: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .intro__word { font-size: clamp(5rem,22vw,8rem); }
  .hero__title-word { font-size: clamp(4.5rem,22vw,9rem); }
  .service-row { grid-template-columns: 1fr auto; }
  .service-row__num { display: none; }
}

/* ─────────────────── 16. REDUCED MOTION ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  .marquee__inner, .marquee__inner--rev { animation: none; }
  .hero__scroll-wheel { animation: none; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


/* =================================================================
   DRAWER — right-slide panel for Projects & Services
   Z-index sits between nav (500) and cursor (99999).
   GSAP handles all translate animation via x: '100%' / x: '0%'.
   ================================================================= */

/* ── Dim overlay ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(0, 0, 0, 0);        /* starts transparent */
  pointer-events: none;                 /* invisible = not interactive */
  will-change: background;
}
.drawer-overlay.is-active {
  pointer-events: all;                  /* becomes clickable when open */
}

/* ── Drawer panel ── */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(680px, 100vw);
  height: 100%;
  z-index: 900;
  background: #0F0F0F;
  border-left: 1px solid #222;
  transform: translateX(100%);          /* hidden off-screen by default */
  overflow: hidden;                     /* clip content during animation */
  display: flex;
  flex-direction: column;
  will-change: transform;
}

/* ── Top bar: label + close button ── */
.drawer__bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid #222;
  background: #0F0F0F;
}

.drawer__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.3);
}

/* The giant X close button */
.drawer__close {
  background: none;
  border: none;
  color: #F5F5F5;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .15s, transform .22s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}
.drawer__close svg {
  width: 28px; height: 28px;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1);
}
.drawer__close:hover {
  background: rgba(245,245,245,0.08);
  transform: scale(1.1);
}
.drawer__close:hover svg { transform: rotate(90deg); }

/* ── Scrollable body ── */
.drawer__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
  -webkit-overflow-scrolling: touch;
}

/* ── Image hero strip ── */
/* ── Image header strip ── */
.drawer-image-container {
  width: 100%;
  height: 35vh;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 2rem;
  background: #111;           /* shown while image loads */
}
/* Gradient scrim over the bottom of the image */
.drawer-image-container::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,15,15,0)   55%,
    rgba(15,15,15,0.9) 100%);
  pointer-events: none;
}
.drawer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;                  /* JS fades in after src is set */
  transition: opacity 0.4s ease;
}
.drawer-image.is-loaded {
  opacity: 1;
}

/* ── Content padding wrapper ── */
.drawer__meta,
.drawer__title,
.drawer__desc,
.drawer__tags,
.drawer__divider,
.drawer__cta-row {
  padding-left:  clamp(1.5rem, 4vw, 2.5rem);
  padding-right: clamp(1.5rem, 4vw, 2.5rem);
}

/* ── Meta row ── */
.drawer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 0.6rem;
}
.drawer__cat {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,245,245,0.35);
}
.drawer__year {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(245,245,245,0.25);
}

/* ── Title ── */
.drawer__title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.93;
  color: #F5F5F5;
  padding-top: 0.5rem;
  padding-bottom: 1.6rem;
}

/* ── Description ── */
.drawer__desc {
  font-size: clamp(0.88rem, 1.15vw, 1.05rem);
  line-height: 1.78;
  color: rgba(245,245,245,0.52);
  padding-bottom: 2rem;
}

/* ── Tags ── */
.drawer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 2.5rem;
}
.drawer__tag {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1px solid #333;
  border-radius: 999px;
  color: rgba(245,245,245,0.4);
  white-space: nowrap;
}

/* ── Divider ── */
.drawer__divider {
  height: 1px;
  background: #222;
  margin-bottom: 2.5rem;
}

/* ── CTA ── */
.drawer__cta-row {
  padding-bottom: 3rem;
}
.drawer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #F5F5F5;
  color: #0A0A0A;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.04em;
  transition: background .18s, color .18s, transform .18s;
  text-decoration: none;
}
.drawer__cta svg { width: 15px; height: 15px; transition: transform .18s; }
.drawer__cta:hover {
  background: transparent; color: #F5F5F5;
  outline: 1px solid rgba(245,245,245,0.35);
  transform: scale(1.03);
}
.drawer__cta:hover svg { transform: translate(2px,-2px); }

/* ── Responsive: full-width on small screens ── */
@media (max-width: 540px) {
  .drawer { width: 100vw; border-left: none; }
}


/* =================================================================
   TOUCH / MOBILE — hide custom cursor, restore native pointer
   (pointer: coarse) targets all touch screens regardless of size.
   ================================================================= */
@media (pointer: coarse) {
  /* Hide the two cursor elements completely */
  .cursor-dot,
  .cursor-ring,
  .custom-cursor,
  #cursor,
  #cursorDot,
  #cursorRing,
  .cursor-follower {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Restore system cursor everywhere */
  *,
  body,
  a,
  button,
  input,
  textarea,
  select,
  [role="button"],
  .service-row,
  .project-card,
  .intro__btn,
  .drawer__close {
    cursor: auto !important;
  }
}
