@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

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

:root {
  --bg:         #0d0f14;
  --white:      #ffffff;
  --white-60:   rgba(255,255,255,0.6);
  --white-30:   rgba(255,255,255,0.3);
  --white-08:   rgba(255,255,255,0.08);
  --white-04:   rgba(255,255,255,0.04);
  --gold:       #d4a853;
  --gold-dim:   rgba(212,168,83,0.15);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.87, 0, 0.13, 1);
}

html {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Lenis smooth scroll */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body { overflow-x: hidden; min-height: 100vh; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────
   CURSOR
───────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  transition: transform 0.1s var(--ease-out), background 0.3s, width 0.3s, height 0.3s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--white-30);
  transition: transform 0.12s var(--ease-out), width 0.4s var(--ease-out),
              height 0.4s var(--ease-out), border-color 0.3s, background 0.3s;
}

body.cursor-image .cursor-dot  { width: 0; height: 0; opacity: 0; }
body.cursor-image .cursor-ring {
  width: 72px; height: 72px;
  border-color: var(--gold);
  background: transparent;
}

body.cursor-link .cursor-ring {
  width: 48px; height: 48px;
  border-color: var(--white);
  background: var(--white-08);
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.5s var(--ease-out), background 0.5s, backdrop-filter 0.5s,
              border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 18px 48px;
  background: rgba(13,15,20,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--white-08);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-60);
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-email {
  font-size: 0.72rem;
  color: var(--white-30);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-email:hover { color: var(--white-60); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  background: rgba(13,15,20,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--white-08);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
}
.nav-dropdown-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.75rem;
  color: var(--white-60);
  letter-spacing: 0.1em;
}
.nav-dropdown-menu a:hover { color: var(--white); background: var(--white-04); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-overlay a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white-60);
  transition: color 0.2s;
}
.nav-mobile-overlay a:hover { color: var(--white); }

/* ─────────────────────────────────────────────
   PAGE TRANSITION
───────────────────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  overflow: hidden;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.08);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,15,20,0.45);
  transition: background 0.4s;
}

.hero-photo:hover::after { background: rgba(13,15,20,0.2); }
.hero-photo:hover img { transform: scale(1.05); }

.hero-text {
  position: absolute;
  bottom: 12vh;
  left: 48px;
  z-index: 10;
  overflow: hidden;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  transform: translateY(100%);
}

.hero-tagline {
  margin-top: 16px;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-60);
  transform: translateY(30px);
  opacity: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 12vh;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-30);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: var(--white-30);
  overflow: hidden;
  position: relative;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s var(--ease-inout) infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ─────────────────────────────────────────────
   SELECTED WORK
───────────────────────────────────────────── */
.section { padding: 120px 48px; }
.section-sm { padding: 80px 48px; }

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

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

.work-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.work-tile img {
  transition: transform 0.7s var(--ease-out);
}
.work-tile:hover img { transform: scale(1.04); }

.work-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,15,20,0.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.4s;
}
.work-tile:hover .work-tile-overlay { background: rgba(13,15,20,0.55); }

.work-tile-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.work-tile-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 4px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.35s var(--ease-out) 0.05s, opacity 0.35s 0.05s;
}
.work-tile-arrow {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--white-60);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out) 0.1s, opacity 0.4s 0.1s;
}
.work-tile:hover .work-tile-label,
.work-tile:hover .work-tile-title,
.work-tile:hover .work-tile-arrow {
  transform: translateY(0);
  opacity: 1;
}

/* ─────────────────────────────────────────────
   HORIZONTAL PHOTO STRIP
───────────────────────────────────────────── */
.strip-wrap {
  padding: 80px 0;
  overflow: hidden;
  cursor: grab;
}
.strip-wrap:active { cursor: grabbing; }

.strip {
  display: flex;
  gap: 2px;
  width: max-content;
  will-change: transform;
}

.strip-photo {
  position: relative;
  width: 420px;
  height: 560px;
  flex-shrink: 0;
  overflow: hidden;
}
.strip-photo img {
  transition: transform 0.6s var(--ease-out);
}
.strip-photo:hover img { transform: scale(1.03); }

.strip-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(13,15,20,0.85), transparent);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--white-60);
  line-height: 1.5;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.strip-photo:hover .strip-caption {
  transform: translateY(0);
  opacity: 1;
}

/* ─────────────────────────────────────────────
   ABOUT TEASER
───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-text .name-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--white-60);
  margin-bottom: 20px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
  border-bottom: 1px solid var(--white-08);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.about-link:hover { color: var(--white); border-color: var(--gold); }

/* ─────────────────────────────────────────────
   FILM SECTION
───────────────────────────────────────────── */
.film-section {
  position: relative;
  height: 85vh;
  overflow: hidden;
  cursor: pointer;
}

.film-section video,
.film-section .film-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,15,20,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.film-section:hover .film-overlay { background: rgba(13,15,20,0.25); }

.film-play {
  width: 72px;
  height: 72px;
  border: 1px solid var(--white-30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.film-section:hover .film-play {
  border-color: var(--white);
  transform: scale(1.08);
}
.film-play svg { fill: var(--white); width: 20px; }

.film-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}
.film-subtitle {
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-60);
}

/* Video lightbox */
.film-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13,15,20,0.96);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.film-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.film-lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
}
.film-lightbox-close {
  position: absolute;
  top: 32px; right: 32px;
  font-size: 1.4rem;
  color: var(--white-60);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.film-lightbox-close:hover { color: var(--white); }

/* ─────────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────────── */
.newsletter {
  padding: 120px 48px;
  text-align: center;
  border-top: 1px solid var(--white-08);
}

.newsletter h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.newsletter p {
  color: var(--white-60);
  font-size: 0.9rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: var(--white);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter-input:focus {
  background: var(--white-08);
  border-color: var(--white-30);
}
.newsletter-input::placeholder { color: var(--white-30); }

.newsletter-btn {
  padding: 14px 24px;
  background: var(--gold);
  border: none;
  border-radius: 0 4px 4px 0;
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.newsletter-btn:hover { opacity: 0.85; }

/* ─────────────────────────────────────────────
   CONTACT CTA
───────────────────────────────────────────── */
.contact-cta {
  padding: 120px 48px 160px;
  border-top: 1px solid var(--white-08);
}

.contact-cta-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 40px;
  max-width: 700px;
}

.contact-email-link {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--white-60);
  position: relative;
  transition: color 0.2s;
}
.contact-email-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.contact-email-link:hover { color: var(--white); }
.contact-email-link:hover::after { width: 100%; }

.contact-socials {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.contact-social {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-30);
  transition: color 0.2s;
}
.contact-social:hover { color: var(--white-60); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--white-08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--white-30);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white-60); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--white-30);
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────
   WORK PAGE GALLERY
───────────────────────────────────────────── */
.work-page-hero {
  height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.work-page-hero-bg {
  position: absolute;
  inset: 0;
}
.work-page-hero-bg img {
  transform: scale(1.05);
}
.work-page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,15,20,0.9) 0%, rgba(13,15,20,0.3) 60%, transparent 100%);
}
.work-page-hero-text { position: relative; z-index: 1; }
.work-page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.work-page-hero-sub {
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-60);
}

.masonry-grid {
  columns: 2;
  column-gap: 2px;
  padding: 2px 0;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease-out);
}
.masonry-item:hover img { transform: scale(1.03); }

.masonry-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(13,15,20,0.8), transparent);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--white-60);
  line-height: 1.5;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.masonry-item:hover .masonry-caption { transform: translateY(0); opacity: 1; }

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.about-page { padding: 180px 48px 120px; max-width: 900px; margin: 0 auto; }

.about-page h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 80px;
}

.about-page .body-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--white-60);
  margin-bottom: 28px;
}

.about-page .body-text strong {
  color: var(--white);
  font-weight: 400;
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 56px 0;
}

.about-vision-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.about-vision {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--white);
  font-style: italic;
}

.about-photo-full {
  margin: 80px -48px;
  aspect-ratio: 16/7;
  overflow: hidden;
  position: relative;
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 180px 48px 120px;
}

.contact-page h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 48px;
}

.contact-page .contact-email-link {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS BASE
───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
}

[data-reveal-left] {
  opacity: 0;
  transform: translateX(-32px);
}

[data-reveal-scale] {
  opacity: 0;
  transform: scale(0.97);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 16px 24px; }
  .nav-links, .nav-email { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-overlay { display: flex; }

  .hero { grid-template-columns: repeat(2, 1fr); }
  .hero-text { left: 24px; bottom: 10vh; }
  .hero-scroll-hint { right: 24px; }

  .section { padding: 80px 24px; }
  .section-sm { padding: 60px 24px; }
  .newsletter { padding: 80px 24px; }
  .contact-cta { padding: 80px 24px 120px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 20px; text-align: center; }

  .work-grid { grid-template-columns: 1fr; }
  .work-tile { aspect-ratio: 4/3; }
  .work-tile-label, .work-tile-title, .work-tile-arrow { opacity: 1; transform: none; }
  .work-tile-overlay { background: rgba(13,15,20,0.4); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { aspect-ratio: 4/3; }

  .strip-photo { width: 280px; height: 380px; }

  .masonry-grid { columns: 1; }

  .about-page { padding: 120px 24px 80px; }
  .about-photo-full { margin: 60px -24px; }

  .contact-page { padding: 120px 24px 80px; }

  .work-page-hero { padding: 40px 24px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--white-08); border-radius: 4px; }
  .newsletter-btn { border-radius: 4px; }
}
