/* ═══════════════════════════════════════════════════════════
   DUSK LAB — Portfolio & Magazine Stylesheet
   Eric K'DUAL — Black & White Photography
   Aesthetic: Minimal, editorial, dark — Leica meets Medium
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --bg-deep:       #0a0a0a;
  --bg-primary:    #111111;
  --bg-elevated:   #1a1a1a;
  --bg-card:       #151515;
  --bg-hover:      #222222;
  --border-subtle: #2a2a2a;
  --border-accent: #3a3a3a;

  --text-hero:     #f0f0f0;
  --text-primary:  #d0d0d0;
  --text-secondary:#909090;
  --text-muted:    #606060;
  --text-dim:      #404040;

  --accent-warm:   #c8a050;
  --accent-gold:   #b8944a;
  --accent-silver: #a0a0a0;

  /* Typography */
  --font-display:  'Inter', 'Helvetica Neue', 'Segoe UI', sans-serif;
  --font-body:     'Inter', 'Helvetica Neue', 'Segoe UI', sans-serif;
  --font-mono:     'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-pad:   clamp(60px, 8vw, 120px);
  --content-max:   1200px;
  --content-wide:  1400px;
  --reading-width: 720px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-warm);
  color: #000;
}

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

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


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.4s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 26px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.nav__logo:hover .nav__logo-img {
  opacity: 1;
}

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

.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent-warm);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text-hero);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__lang a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  transition: all 0.3s;
}

.nav__lang a:hover { color: var(--text-secondary); }

.nav__lang a.active {
  color: var(--text-primary);
  background: rgba(200, 160, 80, 0.08);
  border: 1px solid rgba(200, 160, 80, 0.12);
}

.nav__lang .lang-sep {
  color: var(--border-subtle);
  font-size: 0.7rem;
  user-select: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  transition: all 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(5px, -5px);
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-deep);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(200, 160, 80, 0.03) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 100;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-hero);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-warm), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 0.8; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent-warm);
  color: #0a0a0a;
}

.btn--primary:hover {
  background: #d8b060;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 160, 80, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-accent);
}

.btn--outline:hover {
  color: var(--text-hero);
  border-color: var(--accent-warm);
  background: rgba(200, 160, 80, 0.04);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-warm);
  padding: 0;
  letter-spacing: 0.04em;
}

.btn--ghost:hover {
  color: #d8b060;
}


/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--bg-primary);
}

.section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section__inner--narrow {
  max-width: 800px;
}

.section__inner--reading {
  max-width: var(--reading-width);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 100;
  letter-spacing: 0.02em;
  color: var(--text-hero);
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section__cta {
  text-align: center;
  margin-top: 3rem;
}


/* ═══════════════════════════════════════════════════════════
   PORTFOLIO GRID (Homepage)
   ═══════════════════════════════════════════════════════════ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.portfolio-item--wide {
  grid-column: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.15, 1),
              filter 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.04);
  filter: grayscale(100%) contrast(1.1);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-item__overlay {
  opacity: 1;
}

.portfolio-item__title {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0f0f0;
}


/* ═══════════════════════════════════════════════════════════
   GALLERY MASONRY (Portfolio page)
   ═══════════════════════════════════════════════════════════ */

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.15, 1);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #c0c0c0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover figcaption {
  opacity: 1;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
}
.lightbox--open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  cursor: default;
  transition: opacity 0.25s;
  border: 8px solid #ffffff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}
.lightbox__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 200;
  letter-spacing: 0.04em;
  color: #e0e0e0;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
  z-index: 1;
}
.lightbox__close:hover { color: var(--text-hero); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.2s;
  z-index: 1;
  user-select: none;
}
.lightbox__nav:hover { color: var(--text-hero); }
.lightbox__nav--prev { left: 0.5rem; }
.lightbox__nav--next { right: 0.5rem; }
.lightbox__counter {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

@media (max-width: 600px) {
  .lightbox__nav { font-size: 1.8rem; padding: 0.5rem; }
  .lightbox__nav--prev { left: 0.25rem; }
  .lightbox__nav--next { right: 0.25rem; }
  .lightbox__img { max-width: 95vw; max-height: 80vh; }
}


/* ═══════════════════════════════════════════════════════════
   MAGAZINE CARDS (Homepage preview)
   ═══════════════════════════════════════════════════════════ */

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.magazine-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0, 0.15, 1),
              border-color 0.5s ease,
              box-shadow 0.5s ease;
}

.magazine-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 160, 80, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.magazine-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.magazine-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.7s cubic-bezier(0.25, 0, 0.15, 1),
              filter 0.7s ease;
}

.magazine-card:hover .magazine-card__img img {
  transform: scale(1.06);
  filter: grayscale(60%);
}

.magazine-card__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none;
}

.magazine-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.magazine-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.5rem;
}

.magazine-card__body h3 {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--text-hero);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.magazine-card:hover .magazine-card__body h3 {
  color: #fff;
}

.magazine-card__body p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.magazine-card__meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}


/* ═══════════════════════════════════════════════════════════
   QUOTE BAND
   ═══════════════════════════════════════════════════════════ */

.band {
  padding: var(--section-pad) 2rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.band__inner {
  max-width: 800px;
  margin: 0 auto;
}

.band blockquote p {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 100;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-hero);
  margin-bottom: 1rem;
}

.band blockquote cite {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.band blockquote cite::before {
  content: '\2014\00a0';
}


/* ═══════════════════════════════════════════════════════════
   SUBSTACK CTA BAND
   ═══════════════════════════════════════════════════════════ */

.band--substack {
  background: var(--bg-primary);
}

.band--substack h3 {
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-hero);
  margin-bottom: 0.5rem;
}

.band--substack p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT BLOCK (Homepage)
   ═══════════════════════════════════════════════════════════ */

.about-block__text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.about-block__text .btn--ghost {
  margin-top: 0.5rem;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT CONTENT (About page)
   ═══════════════════════════════════════════════════════════ */

.about-content {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-primary);
}

.about-content__lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-hero);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.about-content h2 {
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-hero);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.02em;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-content ul {
  margin: 0.5rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.about-content li {
  margin-bottom: 0.4rem;
}

.about-content li::marker {
  color: var(--accent-gold);
}

.about-content a {
  color: var(--accent-warm);
  border-bottom: 1px solid rgba(200, 160, 80, 0.25);
  transition: border-color 0.3s;
}

.about-content a:hover {
  border-bottom-color: var(--accent-warm);
}


/* ═══════════════════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════════════════ */

.page-header {
  padding: 8rem 2rem 3rem;
  text-align: center;
}

.page-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.page-header__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1rem;
}

.page-header__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 100;
  letter-spacing: -0.01em;
  color: var(--text-hero);
  margin-bottom: 1rem;
}

.page-header__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-hero);
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--accent-warm);
  transition: color 0.3s;
}

.contact-card a:hover {
  color: #d8b060;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT INFO
   ═══════════════════════════════════════════════════════════ */

.contact-info {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
}

.contact-email {
  text-align: center;
  margin-top: 2.5rem;
}

.contact-email p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-email__link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 200;
  letter-spacing: 0.02em;
  color: var(--accent-warm);
  transition: color 0.3s;
}

.contact-email__link:hover {
  color: #d8b060;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 2rem 2rem;
  background: var(--bg-deep);
}

.footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
}

.footer__brand img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 280px;
}

.footer__nav {
  display: flex;
  gap: 3rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-dim);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--accent-warm);
}

.footer__bottom {
  max-width: var(--content-max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0, 0.15, 1),
              transform 0.8s cubic-bezier(0.25, 0, 0.15, 1);
}

.reveal--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; }


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

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-item--wide {
    grid-column: span 1;
  }

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

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

@media (max-width: 768px) {
  .nav {
    padding: 0 1.25rem;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__lang {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

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

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

  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 2rem;
  }

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

  .page-header {
    padding: 7rem 1.25rem 2.5rem;
  }

  .section__inner {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 85vh;
  }
}


/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */

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

  .portfolio-item img,
  .gallery-item img,
  .magazine-card,
  .magazine-card__img img {
    transition: none;
  }

  .hero__scroll-indicator span {
    animation: none;
  }
}
