/* ============================================================
   LEO MARTINEZ PHOTOGRAPHY — 2026
   Palette: Noir / Vermillion / Paper (Analog Print)
   Stack: Cormorant Garamond · Outfit
   ============================================================ */

:root {
  --noir:          #0C0A0B;
  --noir-mid:      #141113;
  --velvet:        #1D191B;
  --paper:         #F4EEE8;
  --paper-dim:     #E2DAD2;
  --vermillion:    #C83518;
  --vermillion-hi: #E04830;
  --silver:        #8A8280;
  --white:         #FFFFFF;
  --ink:           #1A1618;
  --line:          rgba(244, 238, 232, 0.10);
  --line-paper:    rgba(26, 22, 24, 0.11);
  --shadow:        0 32px 80px rgba(12, 10, 11, 0.60);
  --shadow-card:   0 8px 32px rgba(12, 10, 11, 0.40);
  --max:           1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: auto; scroll-padding-top: 100px; }

body {
  margin: 0;
  color: var(--paper);
  background: var(--noir);
  font-family: "Outfit", Arial, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
p { margin: 0; }

/* ── SCROLL PROGRESS ─────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 200;
  background: linear-gradient(90deg, var(--vermillion), var(--vermillion-hi));
  transform-origin: left center; transform: scaleX(0);
  pointer-events: none;
}

/* ── GRAIN ───────────────────────────────────────────────── */
.grain-layer {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 997; pointer-events: none; opacity: 0.052;
  mix-blend-mode: overlay;
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 90;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  width: min(100% - 32px, 1240px);
  margin: 14px auto 0; padding: 10px 16px;
  color: var(--paper);
  border: 1px solid rgba(244,238,232,0.10);
  background: rgba(12,10,11,0.52);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-radius: 999px;
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease,
              transform 360ms cubic-bezier(0.32,0.72,0,1);
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: var(--line-paper);
  background: rgba(244,238,232,0.94);
}

.site-header.hidden {
  transform: translateY(calc(-100% - 20px));
  transition: transform 360ms cubic-bezier(0.32,0.72,0,1),
              background 240ms ease, border-color 240ms ease;
}

/* word-split for manifesto heading */
.word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word { display: inline-block; }

.brand { display: flex; align-items: center; min-width: 130px; }

.brand img {
  width: 128px; height: 40px; object-fit: contain;
  transition: filter 240ms ease;
}

.site-header.is-scrolled .brand img { filter: invert(1); }

.site-nav {
  display: flex; justify-content: center; gap: 22px;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.site-nav a { opacity: 0.68; transition: opacity 160ms; }
.site-nav a:hover { opacity: 1; }

.language-switch { display: inline-flex; align-items: center; gap: 6px; padding-left: 4px; }

.language-switch a,
.language-switch strong {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; min-height: 28px;
  border: 1px solid rgba(244,238,232,0.20);
  border-radius: 999px; font-size: 0.68rem; font-weight: 700;
}

.site-header.is-scrolled .language-switch a,
.site-header.is-scrolled .language-switch strong { border-color: var(--line-paper); }

.language-switch strong { color: var(--noir); background: var(--paper); }
.site-header.is-scrolled .language-switch strong { color: var(--paper); background: var(--ink); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.header-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 11px 22px;
  border: 1px solid transparent; border-radius: 999px;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.07em; text-transform: uppercase; line-height: 1;
  cursor: pointer; will-change: transform;
  transition: transform 200ms cubic-bezier(0.32,0.72,0,1),
              background 200ms ease, color 200ms ease,
              border-color 200ms ease, box-shadow 200ms ease;
}

.header-cta { color: var(--noir); background: var(--vermillion); border-color: var(--vermillion); }
.site-header.is-scrolled .header-cta { color: var(--paper); background: var(--ink); border-color: var(--ink); }

.button.primary { color: var(--noir); background: var(--vermillion); border-color: var(--vermillion); }
.button.primary:hover { background: var(--vermillion-hi); border-color: var(--vermillion-hi); box-shadow: 0 12px 32px rgba(200,53,24,0.36); transform: translateY(-2px); }

.button.secondary { color: var(--paper); border-color: rgba(244,238,232,0.36); background: transparent; }
.button.secondary:hover { background: rgba(244,238,232,0.08); border-color: rgba(244,238,232,0.56); transform: translateY(-2px); }

.button.ghost { color: var(--ink); border-color: var(--line-paper); background: transparent; }
.button.ghost:hover { background: rgba(26,22,24,0.05); transform: translateY(-1px); }

.button.ghost-light { color: var(--paper); border-color: var(--line); background: transparent; }
.button.ghost-light:hover { background: rgba(244,238,232,0.06); transform: translateY(-1px); }

.full { width: 100%; }

/* ── MENU BUTTON ─────────────────────────────────────────── */
.menu-button { display: none; }

/* ── SCROLL TARGETS ──────────────────────────────────────── */
#tiers, #preview, #series, #channels, #collaborations, #contact, #patreon {
  scroll-margin-top: 96px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100dvh;
  display: grid; align-items: end;
  overflow: hidden; isolation: isolate;
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% center;
  z-index: -2; will-change: transform; transform-origin: center top;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(108deg, rgba(12,10,11,0.98) 0%, rgba(12,10,11,0.72) 48%, rgba(12,10,11,0.20) 100%),
    linear-gradient(0deg, rgba(12,10,11,0.94) 0%, rgba(12,10,11,0.04) 52%),
    linear-gradient(180deg, rgba(12,10,11,0.52) 0%, transparent 20%);
}

.hero-content {
  position: relative; z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 0 40px 72px;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px; padding: 7px 14px;
  border: 1px solid rgba(200,53,24,0.36); border-radius: 999px;
  color: var(--vermillion-hi);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}

.hero-label-dot {
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--vermillion);
  animation: dot-blink 2.2s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.25; }
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 600; line-height: 0.92; letter-spacing: -0.02em;
  color: var(--paper); max-width: 820px;
}

h1 em { font-style: italic; }

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 600; line-height: 0.94; letter-spacing: -0.015em;
}

h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.08;
}

.hero-actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 14px; margin-top: 40px;
}

.hero-scroll-indicator {
  position: absolute; bottom: 32px; right: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, var(--vermillion) 0%, transparent 100%);
  animation: line-breathe 2s ease-in-out infinite;
}

@keyframes line-breathe {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.4); opacity: 0.3; }
}

/* ── SECTION INNER / LABEL ───────────────────────────────── */
.section-inner { width: min(100%, var(--max)); margin-inline: auto; padding: 112px 40px; }

.section-label {
  display: inline-flex; margin-bottom: 16px;
  color: var(--vermillion-hi);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* ── MANIFESTO ───────────────────────────────────────────── */
.manifesto { background: var(--noir-mid); border-top: 1px solid var(--line); }

.manifesto .section-inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(40px,7vw,100px); align-items: center;
}

.manifesto h2 { color: var(--paper); }
.manifesto h2 em { font-style: italic; color: rgba(244,238,232,0.46); }

.manifesto-body {
  color: rgba(244,238,232,0.62);
  font-size: clamp(1.0rem,1.7vw,1.2rem); line-height: 1.76; font-weight: 400;
}

/* ── TIERS ───────────────────────────────────────────────── */
.tiers { background: var(--velvet); border-top: 1px solid var(--line); }
.tiers h2 { color: var(--paper); margin-bottom: 12px; }
.tiers .tier-intro { max-width: 560px; color: rgba(244,238,232,0.52); font-size: 1.0rem; line-height: 1.70; margin-bottom: 56px; }

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

/* bilingual feature items */
.tier-features li { flex-direction: column; gap: 2px; }
.tier-features li .en { color: rgba(244,238,232,0.80); font-size: 0.93rem; line-height: 1.50; }
.tier-features li .es { color: rgba(244,238,232,0.44); font-size: 0.82rem; line-height: 1.45; font-style: italic; }
.tier-name-es { display: block; font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(1.2rem,2.2vw,1.8rem); font-weight: 400; color: rgba(244,238,232,0.52); line-height: 1.1; margin-top: 4px; }
.tier-price { margin: 0 0 8px; }
.tier-price .price-en { display: block; color: var(--paper); font-size: 1.05rem; font-weight: 600; line-height: 1.4; }
.tier-price .price-es { display: block; color: rgba(244,238,232,0.44); font-size: 0.85rem; line-height: 1.4; }
.tier-highlight-label { display: block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vermillion); margin-bottom: 6px; }

.tier-card {
  position: relative; padding: 48px 40px;
  border: 1px solid var(--line); border-radius: 3px;
  background: rgba(244,238,232,0.03); overflow: hidden;
  transition: border-color 280ms ease;
}

.tier-card:hover { border-color: rgba(244,238,232,0.18); }

.tier-card.featured { border-color: var(--vermillion); background: rgba(200,53,24,0.05); }

.tier-card.featured::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 0%, rgba(200,53,24,0.20) 0%, transparent 65%);
}

.tier-badge {
  display: inline-flex; margin-bottom: 22px;
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}

.tier-card .tier-badge { border: 1px solid var(--line); color: rgba(244,238,232,0.44); }
.tier-card.featured .tier-badge { color: var(--noir); background: var(--vermillion); border-color: var(--vermillion); }

.tier-name { margin: 0 0 12px; font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(2.4rem,4.5vw,4rem); font-weight: 600; line-height: 0.92; color: var(--paper); }

.tier-tagline { margin: 0 0 32px; color: rgba(244,238,232,0.50); font-size: 1.0rem; line-height: 1.56; font-weight: 400; }

.tier-features { display: grid; gap: 11px; margin: 0 0 36px; padding: 0; list-style: none; }

.tier-features li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(244,238,232,0.70); font-size: 0.93rem; line-height: 1.56; font-weight: 400;
}

.tier-features li::before {
  content: ""; flex-shrink: 0; width: 4px; height: 4px;
  border-radius: 999px; background: var(--vermillion); margin-top: 8px;
}

/* ── GATEWAY ─────────────────────────────────────────────── */
.gateway { background: var(--noir); border-top: 1px solid var(--line); }

.gateway .section-inner {
  display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: clamp(40px,7vw,96px); align-items: start;
}

.gateway-copy { position: sticky; top: 112px; }
.gateway-copy h2 { color: var(--paper); margin-bottom: 18px; }
.gateway-copy > p { color: rgba(244,238,232,0.60); font-size: 1.0rem; line-height: 1.74; margin-bottom: 28px; }

.access-grid { display: grid; gap: 10px; }

.access-card {
  padding: 26px 28px; border: 1px solid var(--line);
  border-radius: 3px; background: rgba(244,238,232,0.02);
  transition: border-color 260ms ease, background 260ms ease, transform 260ms cubic-bezier(0.32,0.72,0,1);
}

.access-card:hover { border-color: rgba(200,53,24,0.36); background: rgba(200,53,24,0.04); transform: translateX(6px); }

.access-card-num {
  display: block; margin-bottom: 10px; color: var(--vermillion-hi);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}

.access-card h3 { font-size: clamp(1.2rem,2vw,1.7rem); color: var(--paper); margin-bottom: 10px; }
.access-card p { color: rgba(244,238,232,0.54); font-size: 0.92rem; line-height: 1.66; }

/* ── GALLERY — HORIZONTAL SCROLL ─────────────────────────── */
.gallery-section { background: var(--noir-mid); border-top: 1px solid var(--line); }

.gallery-header {
  width: min(100%,var(--max)); margin-inline: auto;
  padding: 80px 40px 48px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}

.gallery-header h2 { color: var(--paper); }

.gallery-header p { max-width: 300px; color: rgba(244,238,232,0.50); font-size: 1.0rem; line-height: 1.66; text-align: right; }

/* Desktop: horizontal scroll */
.gallery-pin-wrap { overflow: hidden; position: relative; }

.gallery-track {
  display: flex; align-items: stretch; gap: 14px;
  padding: 80px 40px 60px; will-change: transform;
}

.gallery-slide { flex-shrink: 0; margin: 0; border-radius: 2px; overflow: hidden; position: relative; }

.gallery-slide:nth-child(1) { width: 36vw; height: calc(80vh - 80px); }
.gallery-slide:nth-child(2) { width: 26vw; height: calc(60vh - 80px); align-self: flex-end; }
.gallery-slide:nth-child(3) { width: 44vw; height: calc(74vh - 80px); }
.gallery-slide:nth-child(4) { width: 28vw; height: calc(52vh - 80px); align-self: flex-end; }
.gallery-slide:nth-child(5) { width: 38vw; height: calc(78vh - 80px); }

.gallery-slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) brightness(0.82);
  will-change: filter; transition: none;
}

.gallery-slide figcaption {
  position: absolute; bottom: 14px; left: 14px;
  padding: 6px 12px; border-radius: 999px;
  color: var(--paper); background: rgba(12,10,11,0.72);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.gallery-slide:hover figcaption { opacity: 1; transform: translateY(0); }

.gallery-cta { width: min(100%,var(--max)); margin-inline: auto; padding: 0 40px 80px; }

/* Mobile: vertical stack */
.gallery-mobile { display: none; flex-direction: column; gap: 8px; padding: 0 18px 72px; }

.gallery-mobile-item { aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; }
.gallery-mobile-item.wide { aspect-ratio: 16/9; }
.gallery-mobile-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) brightness(0.82);
  transition: filter 1.1s cubic-bezier(0.16,1,0.3,1);
}
.gallery-mobile-item.in-view img {
  filter: grayscale(0%) brightness(1);
}

/* ── SERIES ──────────────────────────────────────────────── */
.series { background: var(--noir); border-top: 1px solid var(--line); }
.series .section-inner { padding-bottom: 0; }
.series h2 { color: var(--paper); margin-bottom: 56px; }

.series-grid { display: grid; gap: 0; }

.series-item {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line); overflow: hidden;
}

.series-item:nth-child(even) .series-media { order: 2; }
.series-item:nth-child(even) .series-info  { order: 1; }

.series-media { aspect-ratio: 4/3; overflow: hidden; }

.series-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.86);
  transition: transform 720ms cubic-bezier(0.16,1,0.3,1), filter 720ms ease;
}

.series-item:hover .series-media img { transform: scale(1.04); filter: brightness(1.0); }

.series-info {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(36px,5.5vw,72px);
}

.series-tag {
  display: inline-flex; margin-bottom: 14px;
  color: var(--vermillion-hi); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}

.series-info h3 { color: var(--paper); margin-bottom: 14px; }
.series-info p { color: rgba(244,238,232,0.56); font-size: 0.97rem; line-height: 1.70; max-width: 400px; }

.series-cta { display: flex; justify-content: center; padding: 72px 40px; border-top: 1px solid var(--line); }

/* ── CHANNELS ────────────────────────────────────────────── */
.channels { background: var(--noir-mid); border-top: 1px solid var(--line); }

.channels .section-inner {
  display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr);
  gap: clamp(40px,7vw,96px); align-items: start;
}

.channels h2 { color: var(--paper); }

.channel-list { display: grid; gap: 0; }

.channel-list a {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 16px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  transition: padding-left 200ms ease;
}

.channel-list a:first-child { border-top: 1px solid var(--line); }
.channel-list a:hover { padding-left: 10px; }
.channel-list a:hover .ch-name { color: var(--vermillion-hi); }

.ch-name {
  color: rgba(244,238,232,0.40); font-size: 0.70rem; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  transition: color 200ms ease;
}

.ch-desc { color: var(--paper); font-size: clamp(1.0rem,1.7vw,1.38rem); font-weight: 500; line-height: 1.26; letter-spacing: -0.01em; }

/* ── COLLABORATIONS ──────────────────────────────────────── */
.collaborations { background: var(--velvet); border-top: 1px solid var(--line); }

.collaborations .section-inner {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(40px,7vw,96px); align-items: center;
}

.collab-media { aspect-ratio: 3/4; border-radius: 2px; overflow: hidden; box-shadow: var(--shadow); }
.collab-media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }

.collab-info h2 { color: var(--paper); margin-bottom: 18px; }
.collab-info > p { color: rgba(244,238,232,0.60); font-size: 1.0rem; line-height: 1.74; margin-bottom: 24px; }

.collab-list { display: grid; gap: 0; margin: 0 0 32px; padding: 0; list-style: none; }

.collab-list li {
  display: flex; align-items: flex-start; gap: 14px;
  color: rgba(244,238,232,0.68); font-size: 0.95rem; line-height: 1.60;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  transition: color 200ms ease, padding-left 200ms ease;
}

.collab-list li:last-child { border-bottom: none; }

.collab-list li::before {
  content: ""; flex-shrink: 0; width: 18px; height: 1px;
  background: var(--vermillion); margin-top: 11px;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
  position: relative;
  background: var(--paper);
  border-top: 1px solid rgba(26,22,24,0.08);
  overflow: hidden;
}

/* faint oversized backdrop word for depth */
.about::before {
  content: "EST. 2019";
  position: absolute; top: 6%; right: -2%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 16vw, 16rem); font-weight: 700; font-style: italic;
  color: rgba(26,22,24,0.035); letter-spacing: -0.02em;
  pointer-events: none; user-select: none; z-index: 0; line-height: 1;
}

.about-inner {
  position: relative; z-index: 1;
  width: min(100%, var(--max)); margin-inline: auto;
  padding: clamp(80px,11vw,140px) clamp(24px,5vw,64px);
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(40px,6vw,88px); align-items: center;
}

/* ── VISUAL SIDE ─────────────────────────────────────────── */
.about-visual {
  position: relative;
  perspective: 1400px;
}

/* Outer machined frame (double-bezel) */
.studio-frame {
  position: relative;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(26,22,24,0.06), rgba(26,22,24,0.02));
  border: 1px solid rgba(26,22,24,0.10);
  box-shadow:
    0 2px 4px rgba(12,10,11,0.04),
    0 40px 80px -32px rgba(12,10,11,0.45);
  transform-style: preserve-3d;
  will-change: transform;
}

.studio-reveal-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--velvet);
  /* clip-path reveal — JS scrubs --reveal 0→1; default fully open (no-JS safe) */
  clip-path: inset(0% 0% 0% 0%);
}

/* clip-path is now driven by GSAP directly on .studio-reveal-wrap */

.studio-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

/* continuous breathing zoom once revealed */
.about-visual.visible .studio-img {
  animation: studio-breathe 14s ease-in-out 1.2s infinite;
}

@keyframes studio-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

/* Light sweep — softbox flash */
.studio-light-sweep {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(120deg,
    transparent 0%, rgba(255,255,255,0.16) 46%,
    rgba(255,255,255,0.30) 50%, rgba(255,255,255,0.16) 54%, transparent 100%);
  background-size: 300% 100%; background-position: 200% 0;
  opacity: 0;
}
.about-visual.visible .studio-light-sweep {
  animation: light-sweep 1.1s cubic-bezier(0.4,0,0.2,1) 1.1s 1,
             light-sweep-loop 7s ease-in-out 5s infinite;
}
@keyframes light-sweep {
  0%   { background-position: 200% 0; opacity: 1; }
  100% { background-position: -60% 0; opacity: 0; }
}
@keyframes light-sweep-loop {
  0%, 82%, 100% { background-position: 200% 0; opacity: 0; }
  6%             { opacity: 0.55; }
  55%            { background-position: -60% 0; opacity: 0; }
}

/* Image grain */
.studio-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.10; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain-shift 0.6s steps(2) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0,0); } 50% { transform: translate(-6px,4px); } 100% { transform: translate(4px,-5px); }
}

/* Vignette */
.studio-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 38%, rgba(12,10,11,0.42) 100%);
}

/* ── VIEWFINDER OVERLAY ──────────────────────────────────── */
.viewfinder { position: absolute; inset: 0; z-index: 4; pointer-events: none; }

.vf-corner {
  position: absolute; width: 26px; height: 26px;
  border: 2px solid rgba(244,238,232,0.85);
  opacity: 0; transition: opacity 0.5s ease;
}
.vf-corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.vf-corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.vf-corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.vf-corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.about-visual.visible .vf-corner { opacity: 1; transition-delay: 1.3s; }

/* center focus reticle */
.vf-reticle {
  position: absolute; top: 50%; left: 50%; width: 56px; height: 56px;
  transform: translate(-50%,-50%) scale(0.6); opacity: 0;
  border: 1px solid rgba(244,238,232,0.55); border-radius: 2px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vf-reticle::before, .vf-reticle::after {
  content: ""; position: absolute; background: var(--vermillion-hi);
}
.vf-reticle::before { top: 50%; left: -8px; right: -8px; height: 1px; transform: translateY(-50%); }
.vf-reticle::after  { left: 50%; top: -8px; bottom: -8px; width: 1px; transform: translateX(-50%); }
.about-visual.visible .vf-reticle {
  opacity: 1; transform: translate(-50%,-50%) scale(1);
  transition-delay: 1.5s;
  animation: reticle-pulse 3s ease-in-out 2s infinite;
}
@keyframes reticle-pulse {
  0%,100% { opacity: 0.85; } 50% { opacity: 0.4; }
}

/* REC indicator top-right */
.vf-rec {
  position: absolute; top: 18px; right: 50px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  color: rgba(244,238,232,0.9); opacity: 0;
  transition: opacity 0.5s ease 1.6s;
}
.vf-rec i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--vermillion-hi);
  animation: rec-blink 1.4s steps(1) infinite;
}
@keyframes rec-blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0.15; } }
.about-visual.visible .vf-rec { opacity: 1; }

/* AE·L lock label bottom-right */
.vf-ae {
  position: absolute; bottom: 18px; right: 16px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em;
  color: rgba(244,238,232,0.6); opacity: 0;
  transition: opacity 0.5s ease 1.7s;
}
.about-visual.visible .vf-ae { opacity: 1; }

/* Studio tag bottom-left */
.studio-tag {
  position: absolute; bottom: 16px; left: 50px; z-index: 5;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(12,10,11,0.66);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: rgba(244,238,232,0.82);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease 1.8s, transform 0.5s ease 1.8s;
}
.about-visual.visible .studio-tag { opacity: 1; transform: translateY(0); }

/* ── EXIF metadata strip ─────────────────────────────────── */
.studio-exif {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: 14px; border: 1px solid rgba(26,22,24,0.12);
  border-radius: 4px; overflow: hidden;
}
.studio-exif span {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 14px; border-right: 1px solid rgba(26,22,24,0.12);
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(26,22,24,0.40);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.studio-exif span:last-child { border-right: 0; }
.studio-exif span b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem; font-weight: 700; letter-spacing: 0;
  text-transform: none; color: var(--vermillion);
}
.about-visual.visible .studio-exif span { opacity: 1; transform: translateY(0); }
.about-visual.visible .studio-exif span:nth-child(1) { transition-delay: 1.9s; }
.about-visual.visible .studio-exif span:nth-child(2) { transition-delay: 2.0s; }
.about-visual.visible .studio-exif span:nth-child(3) { transition-delay: 2.1s; }
.about-visual.visible .studio-exif span:nth-child(4) { transition-delay: 2.2s; }

/* ── TEXT SIDE ───────────────────────────────────────────── */
.about-text { display: flex; flex-direction: column; gap: 26px; }

.about-text .section-label { color: var(--vermillion); display: flex; align-items: center; gap: 8px; }
.about-text .section-label i { font-style: normal; color: rgba(26,22,24,0.30); font-weight: 700; }

.about-text h2 { color: var(--ink); margin: 0; }

/* line-by-line overflow clip — GSAP animates yPercent on .line > span */
.about-text h2 .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.about-text h2 .line > span { display: block; }
.about-text h2 em { font-style: italic; color: var(--vermillion); }

.about-body {
  color: rgba(26,22,24,0.62); font-size: clamp(1.0rem,1.6vw,1.22rem);
  line-height: 1.78; font-weight: 400; margin: 0;
}

.about-facts {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; list-style: none; margin: 8px 0 0; padding: 0;
  border: 1px solid rgba(26,22,24,0.12); border-radius: 4px; overflow: hidden;
}

.about-facts li {
  display: flex; flex-direction: column; gap: 5px;
  padding: 18px 16px; border-right: 1px solid rgba(26,22,24,0.12);
}
.about-facts li:last-child { border-right: none; }

.about-facts strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700;
  color: var(--vermillion); line-height: 1;
  font-variant-numeric: tabular-nums;
}

.about-facts span {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(26,22,24,0.44);
}

/* ── PATREON FINAL CTA ───────────────────────────────────── */
.patreon-cta {
  position: relative; overflow: hidden;
  background: var(--noir);
  padding: clamp(80px,12vw,140px) clamp(24px,5vw,64px);
  text-align: center; isolation: isolate;
}

.patreon-cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(200,53,24,0.14) 0%, transparent 70%);
  z-index: 0;
}

.patreon-cta-inner {
  position: relative; z-index: 1;
  max-width: 780px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}

.patreon-cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem,6vw,5.2rem);
  font-weight: 600; line-height: 1.10;
  color: var(--paper); margin: 0;
}

.patreon-cta h2 em {
  font-style: italic; color: var(--vermillion);
}

.patreon-cta p {
  font-size: clamp(1.0rem,1.6vw,1.18rem);
  color: rgba(244,238,232,0.52); max-width: 540px;
  line-height: 1.72;
}

.patreon-cta-actions {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

.patreon-cta-btn {
  font-size: 0.9rem; padding: 16px 40px;
  box-shadow: 0 0 0 0 rgba(200,53,24,0);
  animation: cta-pulse 2.4s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,53,24,0.48); }
  50%       { box-shadow: 0 0 0 18px rgba(200,53,24,0); }
}

.patreon-cta-note {
  font-size: 0.72rem; color: rgba(244,238,232,0.30);
  letter-spacing: 0.05em;
}

.patreon-cta-tiers {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}

.patreon-tier-pill {
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(244,238,232,0.14);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(244,238,232,0.44);
  text-transform: uppercase;
}

.patreon-tier-pill.featured {
  border-color: var(--vermillion);
  color: var(--vermillion);
  background: rgba(200,53,24,0.08);
}

/* ── TRUST ───────────────────────────────────────────────── */
.trust { background: var(--paper-dim); border-top: 1px solid rgba(26,22,24,0.10); }
.trust h2 { color: var(--ink); margin-bottom: 48px; }

.trust-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(26,22,24,0.10);
  border: 1px solid rgba(26,22,24,0.10); border-radius: 3px; overflow: hidden;
}

.trust-grid article {
  padding: 30px 26px; background: var(--paper);
  transition: background 240ms ease;
}

.trust-grid article:hover { background: var(--paper-dim); }

.trust-grid h3 { font-size: 1.52rem; color: var(--ink); margin-bottom: 10px; }
.trust-grid p { color: rgba(26,22,24,0.60); font-size: 0.88rem; line-height: 1.66; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--paper); border-top: 1px solid rgba(26,22,24,0.10); }

.faq .section-inner {
  display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr);
  gap: clamp(40px,7vw,96px); align-items: start;
}

.faq h2 { color: var(--ink); }
.faq .section-label { color: var(--vermillion); }

.faq-list { display: grid; gap: 7px; }

.faq-list details {
  border: 1px solid rgba(26,22,24,0.11); border-radius: 3px;
  background: var(--paper); overflow: hidden; transition: box-shadow 220ms ease;
}

.faq-list details[open] { box-shadow: 0 4px 24px rgba(26,22,24,0.08); }

.faq-list summary {
  cursor: pointer; padding: 20px 22px; color: var(--ink);
  font-weight: 600; font-size: 0.96rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+"; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 999px;
  background: rgba(26,22,24,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 400; color: var(--vermillion); line-height: 1;
  transition: transform 240ms ease;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { padding: 0 22px 18px; color: rgba(26,22,24,0.60); font-size: 0.93rem; line-height: 1.72; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--noir); border-top: 1px solid var(--line); }

.contact .section-inner {
  display: grid; grid-template-columns: minmax(0,0.95fr) minmax(0,1.05fr);
  gap: clamp(40px,7vw,96px); align-items: start;
}

.contact-copy h2 { color: var(--paper); margin-bottom: 16px; }
.contact-copy .section-label { color: var(--vermillion-hi); }
.contact-copy > p { color: rgba(244,238,232,0.60); font-size: 1.0rem; line-height: 1.74; margin-bottom: 24px; }

.contact-links { display: grid; gap: 7px; }
.contact-links a { color: var(--vermillion-hi); font-weight: 600; font-size: 0.93rem; transition: color 180ms ease; }
.contact-links a:hover { color: var(--paper); }

.lead-form {
  display: grid; gap: 12px; padding: 30px;
  border: 1px solid var(--line); border-radius: 3px;
  background: rgba(244,238,232,0.03);
}

.lead-form label {
  display: grid; gap: 6px;
  color: rgba(244,238,232,0.52); font-size: 0.66rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}

.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; border: 1px solid rgba(244,238,232,0.12); border-radius: 3px;
  padding: 13px 15px; color: var(--paper); background: rgba(12,10,11,0.60);
  outline: none; font-size: 0.93rem; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: var(--vermillion);
  box-shadow: 0 0 0 3px rgba(200,53,24,0.14);
}

.lead-form select { color: var(--paper); }
.lead-form textarea { resize: vertical; }

.checkbox-row { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.checkbox-row input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--vermillion); text-transform: none; letter-spacing: 0; }
.checkbox-row span { color: rgba(244,238,232,0.50); font-size: 0.78rem; line-height: 1.56; text-transform: none; letter-spacing: 0; font-weight: 400; }

.hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2 + 40px));
  background: var(--noir-mid); border-top: 1px solid var(--line);
}

.site-footer img { width: 112px; height: 36px; object-fit: contain; }
.site-footer p { margin-top: 6px; color: rgba(244,238,232,0.32); font-size: 0.78rem; }

.site-footer nav {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 0.70rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(244,238,232,0.46);
}

.site-footer nav a { transition: color 180ms ease; }
.site-footer nav a:hover { color: var(--paper); }

.footer-credit {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  text-align: right;
}

.footer-credit p {
  margin-top: 0;
  font-style: italic;
  font-size: 0.74rem;
  color: rgba(244,238,232,0.28);
}

.footer-credit a {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--vermillion);
  transition: color 180ms ease, opacity 180ms ease;
  opacity: 0.72;
}

.footer-credit a:hover { color: var(--vermillion-hi); opacity: 1; }
.footer-credit a strong { font-weight: 700; }

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: none; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 20px; border-radius: 999px;
  color: var(--white); background: #1a7a45;
  box-shadow: 0 16px 44px rgba(12,10,11,0.44);
  font-weight: 700; font-size: 0.74rem; letter-spacing: 0.07em; text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: wa-pulse 2.6s ease-out infinite;
}

.floating-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(12,10,11,0.52); }

@keyframes wa-pulse {
  0%   { box-shadow: 0 16px 44px rgba(12,10,11,0.44), 0 0 0 0 rgba(26,122,69,0.50); }
  70%  { box-shadow: 0 16px 44px rgba(12,10,11,0.44), 0 0 0 12px rgba(26,122,69,0.00); }
  100% { box-shadow: 0 16px 44px rgba(12,10,11,0.44), 0 0 0 0 rgba(26,122,69,0.00); }
}

/* ── RESPONSIVE 900px ────────────────────────────────────── */
@media (max-width: 1100px) {
  .tier-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 900px) {
  /* WhatsApp */
  .floating-whatsapp { display: inline-flex; bottom: 24px; right: 20px; }

  /* ── Header ── */
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between; gap: 12px;
    width: calc(100% - 24px); margin-top: 12px;
  }

  .menu-button {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; width: 44px; height: 44px;
    border: 0; border-radius: 999px; background: rgba(244,238,232,0.12); cursor: pointer;
  }
  .site-header.is-scrolled .menu-button { background: rgba(26,22,24,0.08); }
  .menu-button span {
    width: 20px; height: 1.5px; background: currentColor;
    border-radius: 2px; transform-origin: center;
    transition: transform 320ms cubic-bezier(0.32,0.72,0,1), opacity 200ms ease;
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

  .site-nav {
    position: fixed; inset: 0; display: none;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px; color: var(--paper);
    background: rgba(12,10,11,0.97); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
    font-size: clamp(1.6rem,6vw,2.2rem); font-weight: 500; letter-spacing: 0.04em; z-index: 89;
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav .language-switch { margin-top: 16px; font-size: 1rem; }
  .header-cta { display: none; }

  /* ── Hero ── */
  .hero-content { padding: 0 24px 72px; }
  .hero-scroll-indicator { right: 24px; bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .button { width: 100%; justify-content: center; }

  /* ── Sections ── */
  .section-inner { padding: 80px 24px; }

  /* ── Manifesto ── */
  .manifesto .section-inner { grid-template-columns: 1fr; gap: 32px; }

  /* ── Tiers ── */
  .tier-grid { grid-template-columns: 1fr; gap: 14px; }
  .tier-features li { flex-direction: column; }
  .tier-card { padding: 40px 32px; }

  /* ── Gateway ── */
  .gateway .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .gateway-copy { position: static; }

  /* ── Gallery ── */
  .gallery-pin-wrap { display: none; }
  .gallery-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 6px;
    padding: 0 18px 72px;
  }
  /* Editorial masonry: first image spans 2 cols (hero), rest alternate */
  .gallery-mobile-item:nth-child(1) {
    grid-column: 1 / -1;
    aspect-ratio: 3/2;
  }
  .gallery-mobile-item:nth-child(2) { aspect-ratio: 3/4; }
  .gallery-mobile-item:nth-child(3) { aspect-ratio: 3/4; }
  .gallery-mobile-item:nth-child(4) {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }
  .gallery-mobile-item:nth-child(5) { aspect-ratio: 4/5; }
  .gallery-mobile-item { border-radius: 3px; }
  .gallery-header { flex-direction: column; align-items: flex-start; padding: 72px 24px 40px; gap: 16px; }
  .gallery-header p { text-align: left; max-width: 100%; }
  .gallery-cta { padding: 0 24px 72px; }
  .gallery-cta .button { width: 100%; justify-content: center; }

  /* ── Series ── */
  .series-item { grid-template-columns: 1fr; }
  .series-item:nth-child(even) .series-media { order: 0; }
  .series-item:nth-child(even) .series-info  { order: 0; }

  /* ── Channels / FAQ / Contact / Collab ── */
  .channels .section-inner,
  .faq .section-inner,
  .contact .section-inner,
  .collaborations .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .collab-media { aspect-ratio: 3/2; }

  /* ── About ── */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: clamp(64px,10vw,100px);
  }
  .about-visual { order: -1; }

  /* Image bleeds full-width on mobile — maximum visual impact */
  .studio-reveal-wrap { aspect-ratio: 4/5; border-radius: 0; }
  .studio-frame { border-radius: 0; }

  /* EXIF: 2×2 grid on mobile (4 tight columns are unreadable) */
  .studio-exif {
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
    border-left: 0; border-right: 0;
  }
  .studio-exif span:nth-child(1),
  .studio-exif span:nth-child(2) { border-bottom: 1px solid rgba(26,22,24,0.12); }
  .studio-exif span:nth-child(2),
  .studio-exif span:nth-child(4) { border-right: 0; }
  .studio-exif span { padding: 14px 16px; font-size: 0.6rem; }
  .studio-exif span b { font-size: 1.1rem; }

  /* About text gets side padding (no extra horizontal) */
  .about-text { padding: 40px 24px 0; margin: 0; }
  .about-facts { grid-template-columns: repeat(3,1fr); }
  .about-facts li { padding: 16px 12px; }
  .about::before { font-size: clamp(5rem,22vw,10rem); top: 0; left: 0; }

  /* Viewfinder repositioned for portrait */
  .vf-rec { right: 50px; }
  .studio-tag { left: 50px; font-size: 0.58rem; }

  /* ── Trust ── */
  .trust-grid { grid-template-columns: 1fr 1fr; }

  /* ── Patreon CTA ── */
  .patreon-cta-inner { padding: 80px 24px; }
  .patreon-cta h2 { font-size: clamp(2.4rem,8vw,3.6rem); }
  .patreon-cta-btn { width: 100%; font-size: 1rem; padding: 18px 32px; }
  .patreon-cta-tiers { gap: 8px; }

  /* ── Footer ── */
  .site-footer {
    flex-direction: column; align-items: flex-start; gap: 24px;
    padding: 36px 24px;
  }
  .footer-credit { align-items: flex-start; text-align: left; }
}

/* ── RESPONSIVE 480px ────────────────────────────────────── */
@media (max-width: 480px) {
  /* Typography */
  h1 { font-size: clamp(3.2rem, 13vw, 5rem); line-height: 0.90; }
  h2 { font-size: clamp(2.6rem, 9vw, 3.8rem); }

  /* Tighter side padding */
  .hero-content { padding: 0 20px 64px; }
  .section-inner { padding: 72px 20px; }
  .gallery-header { padding: 64px 20px 36px; }
  .gallery-mobile { padding: 0 14px 64px; gap: 5px; }
  .gallery-cta { padding: 0 20px 64px; }
  .about-text { padding: 36px 20px 0; }

  /* Single-column trust on tiny screens */
  .trust-grid { grid-template-columns: 1fr; }

  /* Tier cards */
  .tier-card { padding: 36px 24px; }
  .lead-form { padding: 24px 20px; }

  /* Channel links */
  .channel-list a { grid-template-columns: 1fr; gap: 4px; }

  /* Series info */
  .series-info { padding: 32px 20px; }

  /* EXIF even tighter */
  .studio-exif span { padding: 12px 12px; }

  /* CTA full-width actions */
  .hero-actions .button { min-height: 52px; font-size: 0.82rem; }
  .patreon-cta-btn { min-height: 56px; }

  /* WhatsApp stays clear of home indicator */
  .floating-whatsapp { bottom: 28px; right: 16px; padding: 12px 18px; font-size: 0.7rem; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp { animation: none; }
  .hero-label-dot { animation: none; }
  .hero-scroll-line { animation: none; }
  .hero-bg, .collab-media img { will-change: auto; }
  .gallery-slide img { filter: none; }
}
