/* ============================================================
   JING & TONIC — ELITE DESIGN UPGRADE
   Grain texture · Kinetic type · Magnetic cursor · Parallax
   ============================================================ */

/* ── View Transitions ──────────────────────────────────────── */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: vt-out 0.25s cubic-bezier(0.4, 0, 1, 1);
}
::view-transition-new(root) {
  animation: vt-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes vt-out { to { opacity: 0; filter: blur(4px); } }
@keyframes vt-in  { from { opacity: 0; filter: blur(4px); } }

/* ── Custom Cursor ─────────────────────────────────────────── */
@media (pointer: fine) {
  * { cursor: none !important; }
  a, button, [role="button"], label, input, textarea, select,
  .portfolio-item, .work-card, .filter-btn {
    cursor: none !important;
  }
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, opacity 0.2s ease;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1),
              height 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              opacity 0.3s ease;
  opacity: 0.6;
  will-change: transform;
}

.cursor-ring.is-hovering {
  width: 64px; height: 64px;
  opacity: 1;
  border-color: var(--color-primary);
  mix-blend-mode: normal;
}

.cursor-ring.is-clicking {
  width: 28px; height: 28px;
  opacity: 0.9;
}

/* ── Grain Texture Overlay ─────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain-shift 0.5s steps(1) infinite;
}

@keyframes grain-shift {
  0%  { background-position: 0 0; }
  10% { background-position: -5% -10%; }
  20% { background-position: -15% 5%; }
  30% { background-position: 7% -25%; }
  40% { background-position: -5% 25%; }
  50% { background-position: -15% 10%; }
  60% { background-position: 15% 0%; }
  70% { background-position: 0% 15%; }
  80% { background-position: 3% 35%; }
  90% { background-position: -10% 10%; }
}

@media (prefers-reduced-motion: reduce) {
  .grain-overlay { animation: none; }
}

/* ── Hero — Full Bleed Cinematic ───────────────────────────── */
.hero-v2 {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

/* Full-bleed photo behind everything */
.hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-v2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
}

/* Vignette + tint — strong enough for legibility */
.hero-v2-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, oklch(0.08 0.02 30 / 0.65) 100%),
    linear-gradient(to right, oklch(0.08 0.02 30 / 0.85) 0%, oklch(0.08 0.02 30 / 0.4) 50%, oklch(0.08 0.02 30 / 0.2) 100%);
}

/* Split layout: left text, right photo stack */
.hero-v2-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-wide);
  padding: calc(var(--space-24) + 80px) clamp(var(--space-5), 5vw, var(--space-20)) var(--space-24);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  min-height: 100dvh;
  margin-inline: auto;
}

.hero-v2-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* Splitting.js headline */
.hero-heading-split {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 0.5rem + 5.5vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: #fff;
  text-shadow: 0 2px 40px oklch(0 0 0 / 0.4);
  white-space: nowrap;
}
.hero-heading-split em {
  font-style: italic;
  color: var(--color-primary);
}

/* Per-character animation via Splitting.js */
.hero-heading-split .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.3em);
  animation: char-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--char-index) * 35ms + 0.3s);
}

@keyframes char-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-heading-split .char {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero-v2-sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 38ch;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
}

.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.4s;
}

.hero-v2-location {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.6s;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero eyebrow */
.hero-v2-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

/* Photo stack — right column */
.hero-v2-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-3);
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s;
}

.hero-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-photo:hover img {
  transform: scale(1.05);
}

.hero-photo--large {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 3/4;
}

.hero-photo--sm {
  grid-column: 2;
  aspect-ratio: 4/5;
}
.hero-photo--top { grid-row: 1; }
.hero-photo--bottom { grid-row: 2; }

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 2s;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

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

/* Parallax hero bg on scroll */
@supports (animation-timeline: scroll()) {
  .hero-v2-bg img {
    animation: hero-parallax linear both;
    animation-timeline: scroll(root);
    animation-range: 0% 100vh;
  }
  @keyframes hero-parallax {
    from { transform: scale(1.08) translateY(0); }
    to   { transform: scale(1.08) translateY(8%); }
  }
}

/* Mobile hero */
@media (max-width: 1024px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--space-16) + 80px);
    padding-bottom: var(--space-16);
    align-items: start;
    min-height: 100dvh;
  }
  .hero-v2-photos { display: none; }
  .hero-v2-bg::after {
    background:
      linear-gradient(to bottom,
        oklch(0.08 0.02 30 / 0.55) 0%,
        oklch(0.08 0.02 30 / 0.75) 50%,
        oklch(0.08 0.02 30 / 0.92) 100%);
  }
  .hero-heading-split {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    line-height: 1.05;
  }
  .hero-v2-sub { font-size: var(--text-base); max-width: 38ch; }
  .hero-v2-location { font-size: 0.65rem; }
  .hero-v2-actions { gap: var(--space-3); flex-wrap: wrap; }
  .hero-v2-actions .btn { font-size: var(--text-xs); padding: var(--space-3) var(--space-5); }
}

@media (max-width: 480px) {
  .hero-v2-inner {
    padding-top: calc(var(--space-12) + 70px);
  }
  .hero-heading-split { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero-scroll-hint { display: none; }
}

/* ── Hero buttons on dark bg ───────────────────────────────── */
.hero-v2 .btn--primary {
  background: #fff;
  color: #18140F;
}
.hero-v2 .btn--primary:hover {
  background: var(--color-primary);
  color: #fff;
}
.hero-v2 .btn--ghost {
  color: rgba(255,255,255,0.75);
}
.hero-v2 .btn--ghost:hover {
  color: #fff;
}

/* ── Work Grid — Hover Reveal Overlay ──────────────────────── */
.work-card {
  isolation: isolate;
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.12 0.02 30 / 0.85) 0%, transparent 55%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.4s ease, clip-path 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-card-overlay {
  opacity: 1;
  clip-path: inset(0 0 0% 0);
}

.work-card-overlay .work-tag {
  color: #fff;
  font-size: var(--text-base);
}
.work-card-overlay .work-tag-style {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-xs);
}

/* ── Portfolio — Masonry + Lightbox Elite ──────────────────── */

/* Image hover clip-path reveal */
.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.12 0.02 30 / 0.82) 0%, transparent 55%);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.portfolio-item:hover::after {
  clip-path: inset(0 0 0 0);
}

/* Enhanced lightbox */
.lightbox-v2 {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: oklch(0.06 0.01 30 / 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-8);
}
.lightbox-v2.open { display: flex; }
.lightbox-v2-inner {
  position: relative;
  max-width: min(700px, 90vw);
  width: 100%;
  animation: lb-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-v2-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-lg);
}
.lightbox-v2-close {
  position: absolute;
  top: calc(-1 * var(--space-12));
  right: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-v2-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}
.lightbox-v2-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lightbox-v2-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}
.lightbox-v2-tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.4);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* Lightbox nav arrows */
.lightbox-v2-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 1;
}
.lightbox-v2-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-v2-prev { right: calc(100% + var(--space-4)); }
.lightbox-v2-next { left: calc(100% + var(--space-4)); }

@media (max-width: 768px) {
  .lightbox-v2-prev, .lightbox-v2-next { display: none; }
}

/* ── Horizontal Image Strip (Featured Works) ───────────────── */
.strip-section {
  overflow: hidden;
  padding-block: var(--space-8) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface);
}

.strip-track {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6) clamp(var(--space-5), 5vw, var(--space-20));
  padding-bottom: var(--space-8);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}
.strip-track:active { cursor: grabbing; }
.strip-track::-webkit-scrollbar { display: none; }
.strip-track { scrollbar-width: none; }

.strip-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  background: var(--color-surface-offset);
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.strip-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .strip-item { flex: 0 0 240px; }
}

/* ── Section Headings with Accent Line ─────────────────────── */
.heading-accent {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
}
.heading-accent::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* ── About Page Elite Layout ───────────────────────────────── */
.about-hero-fullbleed {
  position: relative;
  height: min(70vh, 600px);
  overflow: hidden;
  margin-top: 60px; /* nav offset */
}
.about-hero-fullbleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-hero-fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--color-bg) 100%);
}

/* ── Studio Page Photo Grid ────────────────────────────────── */
.studio-photo-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: var(--space-3);
}

.studio-photo-mosaic .mosaic-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-offset);
}
.studio-photo-mosaic .mosaic-item.mosaic-tall {
  grid-row: 1 / 3;
}
.studio-photo-mosaic .mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.studio-photo-mosaic .mosaic-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .studio-photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .studio-photo-mosaic .mosaic-item.mosaic-tall { grid-row: auto; }
}

/* ── Image Trail Cursor Effect ─────────────────────────────── */
.trail-img {
  position: fixed;
  width: 120px;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  pointer-events: none;
  z-index: 9990;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85) rotate(-3deg);
  transition: opacity 0.3s ease;
  will-change: transform, opacity;
}

.trail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trail-img.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-2deg);
}

/* ── Marquee — Enhanced ────────────────────────────────────── */
.marquee-wrap-v2 {
  overflow: hidden;
  padding-block: var(--space-5);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface);
  position: relative;
}

.marquee-track-v2 {
  display: flex;
  gap: var(--space-10);
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  will-change: transform;
}
.marquee-track-v2 span[aria-hidden] {
  color: var(--color-primary);
  opacity: 0.6;
}

/* ── Float elements — decorative ──────────────────────────── */
.deco-line {
  display: block;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  margin-inline: auto;
  opacity: 0.5;
}

/* ── Stats / Credentials Row ───────────────────────────────── */
.stat-row {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ── Work card — hover overlay positioning fix ─────────────── */
.work-card-img {
  position: relative;
}

/* Image reveal on hover for work cards (clip-path) */
.work-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  z-index: 2;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(to top, oklch(0.12 0.02 30 / 0.85) 0%, oklch(0.12 0.02 30 / 0.1) 60%, transparent 100%);
}

.work-card:hover .work-card-overlay {
  clip-path: inset(0 0 0 0);
}

.work-card-overlay .work-tag {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.work-card-overlay .work-tag-style {
  color: rgba(255,255,255,0.65);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Fix work-card-info to be inside overlay only */
.work-card-info {
  display: none; /* Replaced by overlay */
}

/* ── Portfolio counter ─────────────────────────────────────── */
.portfolio-count {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-5);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — WORLD CLASS ANIMATION SUITE
   1. Ink-reveal entry wipe (clip-path)
   2. Ken Burns slow-drift on bg image
   3. Floating photo stack parallax (JS-driven)
   4. Ambient grain pulse
   5. Scroll-triggered fade-out on hero text
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Ink-reveal: hero bursts in from center outward ───────── */
@keyframes ink-reveal {
  0%   { clip-path: circle(0% at 35% 55%); opacity: 1; }
  100% { clip-path: circle(150% at 35% 55%); opacity: 1; }
}

.hero-v2-inner {
  animation: ink-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── 2. Ken Burns — slow drift + very subtle zoom ────────────── */
@keyframes ken-burns {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  25%  { transform: scale(1.05) translate(-0.8%, 0.5%); }
  50%  { transform: scale(1.08) translate(-1.2%, 1%); }
  75%  { transform: scale(1.05) translate(-0.5%, 1.5%); }
  100% { transform: scale(1.0) translate(0%, 2%); }
}

/* Override existing parallax scroll animation with Ken Burns */
.hero-v2-bg img {
  animation: ken-burns 22s ease-in-out infinite alternate !important;
  will-change: transform;
}

/* ── 3. Hero photo stack — will be driven by JS parallax ─────── */
.hero-photo--large {
  transition: transform 0.1s linear;
  will-change: transform;
}
.hero-photo--sm {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* ── 4. Ambient vignette pulse (very subtle breathing) ───────── */
@keyframes vignette-breathe {
  0%, 100% { opacity: 0.9; }
  50%       { opacity: 1.0; }
}
.hero-v2-bg::after {
  animation: vignette-breathe 8s ease-in-out infinite;
}

/* ── 5. Hero content fades on scroll (parallax feel) ────────── */
@supports (animation-timeline: scroll()) {
  .hero-v2-text {
    animation: hero-text-exit linear both;
    animation-timeline: scroll(root);
    animation-range: 0vh 55vh;
  }
  @keyframes hero-text-exit {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-40px); }
  }
}

/* ── Prefers reduced motion: strip all fancy animations ─────── */
@media (prefers-reduced-motion: reduce) {
  .hero-v2-inner { animation: none; clip-path: none; }
  .hero-v2-bg img { animation: none !important; }
  .hero-v2-text { animation: none; opacity: 1; }
  .hero-photo--large, .hero-photo--sm { transition: none; }
}

/* ── Editorial photo tilt — static base rotations ───────────── */
.hero-photo--large {
  transform-origin: center center;
}
.hero-photo--top {
  transform: rotate(2.5deg);
  transform-origin: center bottom;
}
.hero-photo--bottom {
  transform: rotate(-1.8deg);
  transform-origin: center top;
}
/* JS parallax overrides these — base tilt baked into JS offsets */
