/* ═══════════════════════════════════════════════════════════
   GABRIEL GOLD PORTFOLIO — STYLES
   Dark · Cinematic · Luxury
   ═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --black:      #0A0A0A;
  --black-2:    #111111;
  --black-3:    #1A1A1A;
  --black-4:    #242424;
  --gold:       #D4AF37;
  --gold-light: #E8CC6A;
  --gold-dim:   #9A7C1F;
  --orange:     #FF6B2B;
  --white:      #FFFFFF;
  --off-white:  #F5F0E8;
  --grey:       #6B6B6B;
  --grey-light: #9A9A9A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-impact:  'Bebas Neue', 'Arial Black', sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --gutter: clamp(24px, 5vw, 80px);
  --max-w: 1440px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.label--light { color: var(--gold-light); }

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav__logo-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--gold); }

.nav__cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.25s;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav__back {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__back:hover { color: var(--gold); }

/* ── Hamburger button ───────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile full-screen overlay menu ───────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

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

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 40px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(40px, 12vw, 72px);
  font-weight: 700;
  color: var(--grey-light);
  letter-spacing: 0.02em;
  padding: 10px 24px;
  transition: color 0.25s;
  line-height: 1.1;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
  color: var(--gold);
}

.mobile-menu__cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--black);
  min-height: 44px;
  transition: background 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.mobile-menu__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Cinematic dark gradient bg */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,175,55,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255,107,43,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0D0D0D 0%, #0A0A0A 50%, #111108 100%);
}

/* Film grain texture via SVG filter */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  padding-top: var(--nav-h);
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.hero__location {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.hero__name-line {
  display: block;
}

.hero__name-line--gold {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}

.hero__sublabel {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  margin-top: -0.5rem;
}

.hero__rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
}

.hero__tagline {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  color: var(--off-white);
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 3rem;
  max-width: 480px;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ══════════════════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--black-2);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  animation: ticker 30s linear infinite;
}

.ticker__track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.ticker__dot {
  color: var(--orange) !important;
  font-size: 18px !important;
}

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


/* ══════════════════════════════════════════════════════════
   WORK / SERVICES
   ══════════════════════════════════════════════════════════ */
.work {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.work__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.work__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  max-width: 700px;
}

.work__headline em {
  font-style: italic;
  color: var(--gold);
}

/* Asymmetric editorial grid */
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Card base */
.card {
  position: relative;
  overflow: hidden;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-4px);
}

/* Grid placement — editorial asymmetry */
.card--large  { grid-column: 1 / 7; min-height: 520px; }
.card--medium:nth-of-type(2) { grid-column: 7 / 10; min-height: 520px; }
.card--medium:nth-of-type(3) { grid-column: 10 / 13; min-height: 520px; }
.card--small:nth-of-type(4)  { grid-column: 1 / 5; min-height: 340px; }
.card--small:nth-of-type(5)  { grid-column: 5 / 9; min-height: 340px; }
.card--small:nth-of-type(6)  { grid-column: 9 / 13; min-height: 340px; }

/* Image placeholders */
.card__img {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__img--5 img {
  object-position: center 20% !important;
}

.card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 60%);
  transition: background 0.3s ease;
}

.card:hover .card__img-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 60%);
}

/* Placeholder colors — simulate moody film stills */
.card__img--1 { background: linear-gradient(135deg, #1a1008 0%, #2a1f05 30%, #0D0D0D 100%); }
.card__img--2 { background: linear-gradient(135deg, #080D10 0%, #0f1820 50%, #0A0A0A 100%); }
.card__img--3 { background: linear-gradient(135deg, #100A08 0%, #200D05 50%, #0A0A0A 100%); }
.card__img--4 { background: linear-gradient(135deg, #080810 0%, #0D0D20 50%, #0A0A0A 100%); }
.card__img--5 { background: linear-gradient(135deg, #0A0D08 0%, #121A0D 50%, #0A0A0A 100%); }
.card__img--6 { background: linear-gradient(135deg, #0A0A14 0%, #12101E 50%, #0A0A0A 100%); }

/* Decorative pseudo-element — golden slash */
.card__img::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 2px;
  background: var(--gold);
  transform-origin: left center;
  transition: width 0.3s ease;
}
.card:hover .card__img::after { width: 60px; }

.card__body {
  padding: 24px;
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.card__index {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.card__desc {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: letter-spacing 0.25s;
}
.card:hover .card__link { letter-spacing: 0.18em; }


/* ══════════════════════════════════════════════════════════
   COMMERCIALS
   ══════════════════════════════════════════════════════════ */
.commercials {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.commercials__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.commercials__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  max-width: 700px;
}

.commercials__headline em {
  font-style: italic;
  color: var(--gold);
}

/* ── Individual project ─────────────────────────────────── */
.project {
  padding: clamp(48px, 6vw, 72px) 0;
}

.project__meta {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 28px;
}

.project__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  opacity: 0.35;
  flex-shrink: 0;
  min-width: 80px;
}

.project__info {
  padding-top: 8px;
}

.project__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.project__roles {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.project__desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--grey-light);
  line-height: 1.85;
  max-width: 820px;
  margin-bottom: 40px;
}

/* ── Video grids ────────────────────────────────────────── */
.project__videos {
  display: grid;
  gap: 16px;
}

.project__videos--3col {
  grid-template-columns: repeat(3, 1fr);
}

.project__videos--2col {
  grid-template-columns: repeat(2, 1fr);
}

/* 16:9 responsive iframe wrapper */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.video-wrap:hover {
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-3px);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Gold accent divider between projects ───────────────── */
.project__divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(212,175,55,0.15) 40%, transparent 100%);
  margin: 0;
}

/* Responsive: stack 3-col to 1-col, 2-col to 1-col on mobile */
@media (max-width: 768px) {
  .project__videos--3col {
    grid-template-columns: 1fr;
  }
  .project__videos--2col {
    grid-template-columns: 1fr;
  }
  .project__meta {
    flex-direction: column;
    gap: 12px;
  }
  .project__num {
    font-size: clamp(36px, 8vw, 56px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .project__videos--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 700px;
  margin-top: var(--section-pad);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.about__portrait {
  position: relative;
  overflow: hidden;
  background: var(--black-3);
}

.about__portrait-img {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 30%, rgba(212,175,55,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #1a1208 0%, #0D0D0D 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.about__portrait-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Gold accent border decoration */
.about__portrait-accent {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
}

.about__content {
  padding: clamp(48px, 8vw, 100px) clamp(32px, 6vw, 80px);
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 2rem;
}

.about__headline em {
  font-style: italic;
  color: var(--gold);
}

.about__rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
}

.about__bio {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about__bio em {
  font-style: italic;
  color: var(--off-white);
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about__stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}


/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact {
  position: relative;
  padding: var(--section-pad) var(--gutter);
  background: var(--black-2);
  border-top: 1px solid rgba(212,175,55,0.15);
  overflow: hidden;
  text-align: center;
}

.contact__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Large gold glow */
.contact::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact__headline em {
  font-style: italic;
  color: var(--gold);
}

.contact__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--grey-light);
  margin-bottom: 2.5rem;
}

.contact__email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 3rem;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.contact__email:hover { color: var(--white); }

.contact__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact__social {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--grey-light);
  transition: all 0.25s;
}

.contact__social-link svg {
  width: 18px;
  height: 18px;
}

.contact__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}


/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px var(--gutter);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
}

.footer__copy {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.05em;
}

.footer__location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* ── Large Tablet (1024px) ──────────────────────────────── */
@media (max-width: 1024px) {
  .work__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }
  .card--large  { grid-column: 1 / 7; min-height: 400px; }
  .card--medium:nth-of-type(2) { grid-column: 1 / 4; min-height: 380px; }
  .card--medium:nth-of-type(3) { grid-column: 4 / 7; min-height: 380px; }
  .card--small:nth-of-type(4)  { grid-column: 1 / 3; min-height: 300px; }
  .card--small:nth-of-type(5)  { grid-column: 3 / 5; min-height: 300px; }
  .card--small:nth-of-type(6)  { grid-column: 5 / 7; min-height: 300px; }

  .about { grid-template-columns: 1fr; }
  .about__portrait { min-height: 400px; }
}

/* ── Tablet / Mobile (768px) ────────────────────────────── */
@media (max-width: 768px) {
  /* Nav: show hamburger, hide desktop links + CTA */
  .nav__hamburger { display: flex; }
  .nav__links { display: none; }
  .nav__cta { display: none; }

  /* Hero */
  .hero__name { font-size: clamp(52px, 14vw, 88px); }
  .hero__tagline { max-width: 100%; }

  /* Work grid: single column */
  .work__grid { grid-template-columns: 1fr; gap: 12px; }
  .card--large,
  .card--medium:nth-of-type(2),
  .card--medium:nth-of-type(3),
  .card--small:nth-of-type(4),
  .card--small:nth-of-type(5),
  .card--small:nth-of-type(6) {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  /* Buttons: full width */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* About stats: 2×2 grid */
  .about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
  }

  /* Contact: email wraps on small screens */
  .contact__email { font-size: clamp(16px, 4vw, 22px); word-break: break-all; }
  .contact__actions { flex-direction: column; align-items: stretch; }

  /* Footer */
  .footer__inner { flex-direction: column; text-align: center; gap: 12px; }

  /* Scroll indicator: hide on mobile to save space */
  .hero__scroll-indicator { display: none; }
}

/* ── Small Mobile (480px) ───────────────────────────────── */
@media (max-width: 480px) {
  /* Hero: tighter on very small phones */
  .hero__name { font-size: clamp(44px, 15vw, 72px); }

  /* About stats: single column */
  .about__stats {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS (JS-driven via .reveal class)
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
