/* ============================================================
   JUAN LUIS BEROR — Portfolio
   Estética: Dark Cinematic / A24
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --ink:        #0A0A08;
  --ink-mid:    #111110;
  --ink-soft:   #1C1C18;
  --red:        #C8110A;
  --red-dim:    #8A0D07;
  --cream:      #E8E0D0;
  --cream-dim:  #A09890;
  --muted:      #4A4A42;

  /* Type */
  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Scale */
  --size-hero:    clamp(5rem, 14vw, 12rem);
  --size-h2:      clamp(2.8rem, 6vw, 6.5rem);
  --size-h3:      clamp(1.4rem, 2.5vw, 2.2rem);
  --size-body:    clamp(0.95rem, 1.1vw, 1.1rem);
  --size-small:   0.8rem;
  --size-label:   0.72rem;

  /* Spacing */
  --gap-section:  clamp(6rem, 14vw, 14rem);
  --gap-inner:    clamp(2rem, 4vw, 4rem);
  --container:    90rem;
  --pad-x:        clamp(1.5rem, 5vw, 6rem);

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  cursor: none;
}

body {
  background-color: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

/* Hide default cursor on all interactive elements */
a, button, [role="button"] {
  cursor: none;
}

::selection {
  background: var(--red);
  color: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--red);
}

img {
  display: block;
  max-width: 100%;
}

/* ── Custom Cursor ────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor__dot {
  width: 8px;
  height: 8px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
}

.cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 224, 208, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.08s var(--ease);
  pointer-events: none;
  z-index: 9998;
}

.cursor--hover .cursor__dot {
  transform: translate(-50%, -50%) scale(2.5);
  background: var(--red);
}

.cursor--hover ~ .cursor__ring {
  transform: translate(-50%, -50%) scale(1.6);
  border-color: rgba(200, 17, 10, 0.4);
}

/* ── Film Grain Overlay ───────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 9990;
}

/* ── Scroll Line ──────────────────────────────────────────── */
.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-dim), var(--red));
  z-index: 9995;
  transition: width 0.08s linear;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Section Base ─────────────────────────────────────────── */
.section {
  padding-top: var(--gap-section);
  padding-bottom: var(--gap-section);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: var(--size-label);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Reveal Animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(2.8rem);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }
.reveal--delay-4 { transition-delay: 0.6s; }

.reveal--slide-left {
  transform: translateX(-3rem);
}
.reveal--slide-left.is-visible {
  transform: translateX(0);
}

.reveal--slide-right {
  transform: translateX(3rem);
}
.reveal--slide-right.is-visible {
  transform: translateX(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem var(--pad-x);
  transition: background 0.5s var(--ease), padding 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 8, 0.94);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(200, 17, 10, 0.12);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cream);
  transition: color 0.3s;
  position: relative;
}

.nav__logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.4s var(--ease);
}

.nav__logo:hover { color: var(--red); }
.nav__logo:hover::after { width: 100%; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: var(--size-small);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.3s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.35s var(--ease);
}

.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 0.6rem 1.5rem !important;
  border: 1px solid rgba(200, 17, 10, 0.5) !important;
  color: var(--cream) !important;
  border-radius: 1px;
  transition: background 0.35s, border-color 0.35s !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.4rem;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

.nav__burger.open span:first-child  { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:last-child   { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 300;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}

.mobile-menu__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.4s var(--ease);
}

.mobile-menu__link:hover {
  color: var(--cream);
}

.mobile-menu__link:hover::after {
  width: 100%;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 75% 50%, rgba(200, 17, 10, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 15% 75%, rgba(200, 17, 10, 0.04) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x);
  padding-top: 12vh;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  font-size: var(--size-label);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--red);
}

.hero__name {
  font-family: var(--font-display);
  font-size: var(--size-hero);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 3rem;
}

.hero__name em {
  display: block;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.4;
  margin-bottom: 4rem;
  max-width: 32ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--size-label);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s, gap 0.3s;
}

.hero__scroll svg {
  width: 1rem;
  height: 1rem;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll:hover {
  color: var(--red);
  gap: 1.2rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__divider {
  width: 1px;
  height: 3rem;
  background: rgba(232, 224, 208, 0.12);
  margin-left: 1rem;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Film reel ticker */
.hero__reel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid rgba(232, 224, 208, 0.06);
  padding: 1.2rem 0;
}

.hero__reel-strip {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: var(--size-label);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__reel-strip .red { color: var(--red); }

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

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
  background: var(--ink-mid);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red) 30%, var(--red) 70%, transparent);
  opacity: 0.25;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem 10rem;
  align-items: start;
}

.about__headline {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 2rem;
}

.about__divider {
  width: 3rem;
  height: 1px;
  background: var(--red);
}

.about__body {
  font-size: var(--size-body);
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about__body:last-child { margin-bottom: 0; }

/* ── WORK ─────────────────────────────────────────────────── */
.work {
  background: var(--ink);
}

.work__header {
  padding: 0 var(--pad-x);
  max-width: var(--container);
  margin: 0 auto var(--gap-inner);
}

.work__headline {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0;
  line-height: 1;
}

/* Project rows */
.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 9rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(232, 224, 208, 0.05);
}

.project:last-child {
  border-bottom: 1px solid rgba(232, 224, 208, 0.05);
}

.project--right {
  direction: rtl;
}

.project--right > * {
  direction: ltr;
}

.project__visual {
  position: relative;
}

.project__frame {
  width: 100%;
  border-radius: 1px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.project__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.5s var(--ease), transform 0.7s var(--ease);
  filter: saturate(0.7) contrast(1.1);
}

.project__visual:hover .project__frame {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.project__visual:hover .project__frame img {
  opacity: 1;
  transform: scale(1.03);
}

/* Visual placeholders with cinematic aesthetic */
.project__frame--portrait {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1208 0%, #0f0d08 40%, #1e0e0a 100%);
}

.project__frame--wide {
  aspect-ratio: 16/10;
  background: linear-gradient(120deg, #0d1018 0%, #080c0f 50%, #1a1008 100%);
}

.project__frame--cinema {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #140a08 0%, #0a0808 50%, #1a0d08 100%);
}

.project__frame--interview {
  aspect-ratio: 4/3;
  background: linear-gradient(130deg, #0a0c10 0%, #080a0d 50%, #12100a 100%);
}

.project__frame--docu {
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, #100a0a 0%, #0a0808 60%, #14100a 100%);
}

/* Cinematic overlay */
.project__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200,17,10,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(232,224,208,0.04) 0%, transparent 50%);
  z-index: 1;
}

/* Film strip accent */
.project__frame::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0.6;
  z-index: 2;
}

.project__year {
  position: absolute;
  bottom: -1.6rem;
  right: 0;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(232, 224, 208, 0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.project__info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.project__category {
  font-size: var(--size-label);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

.project__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.project__desc {
  font-size: var(--size-body);
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 44ch;
}

.project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.project__tags span {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(232, 224, 208, 0.09);
  border-radius: 0;
  transition: border-color 0.3s, color 0.3s;
}

.project__tags span:hover {
  border-color: rgba(200, 17, 10, 0.5);
  color: var(--cream-dim);
}

/* ── PROCESS ──────────────────────────────────────────────── */
.process {
  background: var(--ink-mid);
  position: relative;
}

.process::after {
  content: 'PROCESO';
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 224, 208, 0.025);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
}

.process__headline {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.process__step {
  padding: 3rem 3rem 3rem 0;
  border-top: 1px solid rgba(232, 224, 208, 0.07);
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  transition: background 0.4s;
}

.process__step:hover {
  background: rgba(200, 17, 10, 0.02);
}

.process__step:nth-child(even) {
  padding: 3rem 0 3rem 3rem;
  border-left: 1px solid rgba(232, 224, 208, 0.07);
}

.process__step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200, 17, 10, 0.18);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
  transition: color 0.4s;
}

.process__step:hover .process__step-num {
  color: rgba(200, 17, 10, 0.4);
}

.process__step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.process__step-body p {
  font-size: var(--size-body);
  color: var(--cream-dim);
  line-height: 1.8;
}

/* ── QUOTE ────────────────────────────────────────────────── */
.quote-section {
  background: var(--ink);
  padding-top: clamp(5rem, 10vw, 12rem);
  padding-bottom: clamp(5rem, 10vw, 12rem);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200, 17, 10, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.25;
  text-align: center;
  max-width: 22em;
  margin: 0 auto;
}

.quote__mark {
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  font-size: 10rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.1;
  font-family: var(--font-display);
  pointer-events: none;
}

.quote__author {
  display: block;
  font-size: var(--size-label);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 2.5rem;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact {
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}

.contact__headline {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.contact__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--cream-dim);
  margin-bottom: 3.5rem;
  max-width: 38ch;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1rem, 2vw, 1.6rem);
  color: var(--cream-dim);
  transition: color 0.3s, gap 0.3s;
  width: fit-content;
}

.contact__link svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.contact__link:hover {
  color: var(--cream);
  gap: 1.5rem;
}

.contact__link:hover svg {
  transform: translateX(5px);
}

.contact__link--primary {
  font-size: clamp(1.2rem, 2.8vw, 2.2rem);
  color: var(--cream);
  position: relative;
  padding-bottom: 0.35rem;
}

.contact__link--primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.6s var(--ease);
}

.contact__link--primary:hover::after {
  width: 100%;
}

.contact__bg-text {
  position: absolute;
  right: -3vw;
  bottom: -6vw;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 26rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 224, 208, 0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(232, 224, 208, 0.06);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.footer__copy,
.footer__location {
  font-size: var(--size-label);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  html, body, a, button, [role="button"] { cursor: auto; }
  .cursor, .cursor__ring { display: none; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .project {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr !important;
  }

  .project--right > * { direction: ltr; }

  .process::after { display: none; }

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

  .process__step:nth-child(even) {
    padding: 3rem 0;
    border-left: none;
  }

  .hero__actions {
    gap: 2rem;
  }

  .hero__divider { display: none; }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero__name { letter-spacing: -0.01em; }

  .contact__link--primary {
    font-size: clamp(0.9rem, 5vw, 1.4rem);
  }

  .quote__mark { display: none; }

  .project__year { font-size: 3.5rem; }

  .hero__stat { display: none; }
}
