/* ══════════════════════════════════════════════════════════
   LION BAMON — Painter of the Invisible
   Design: Dark gallery · Cinematic · Cormorant + Raleway
   ══════════════════════════════════════════════════════════ */

:root {
  --ink:       #0c0b09;
  --ink-md:    #1a1915;
  --ink-lt:    #2c2b27;
  --ash:       #4a4840;
  --dust:      #7a7870;
  --fog:       #b8b5ae;
  --cream:     #f0ece4;
  --parchment: #f7f4ed;
  --gold:      #c9a96e;
  --gold-lt:   #e2c99a;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Raleway', system-ui, sans-serif;

  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-in:  cubic-bezier(.4,0,1,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; z-index: 9999;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s;
  mix-blend-mode: difference;
}
.cursor-trail {
  position: fixed; z-index: 9998;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,.4);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left .12s var(--ease-out), top .12s var(--ease-out), opacity .3s;
}
body:has(.gallery-item:hover) .cursor,
body:has(.workshop-item:hover) .cursor { width: 48px; height: 48px; opacity: .4; }

/* ── GRAIN TEXTURE (CSS only) ── */
.grain {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10%  { transform: translate(-2%,-3%); }
  20%  { transform: translate(3%,2%); }
  30%  { transform: translate(-1%,4%); }
  40%  { transform: translate(4%,-1%); }
  50%  { transform: translate(-3%,3%); }
  60%  { transform: translate(2%,-4%); }
  70%  { transform: translate(-4%,1%); }
  80%  { transform: translate(1%,-2%); }
  90%  { transform: translate(-2%,4%); }
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .30s; }
.delay-3 { transition-delay: .45s; }
.delay-4 { transition-delay: .60s; }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  display: block;
  font-family: var(--sans); font-size: .65rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-lt); }
.section-intro {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--dust); line-height: 1.75; max-width: 560px;
}
.section-header { margin-bottom: 60px; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  transition: background .5s var(--ease), backdrop-filter .5s;
}
#nav.scrolled {
  background: rgba(12,11,9,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav-inner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0;
  transition: padding .3s;
}
#nav.scrolled .nav-inner-row { padding: 18px 0; }

/* Use flex directly on nav */
#nav { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  color: var(--cream); letter-spacing: .12em;
  padding: 28px 0;
  transition: color .3s;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--gold); }
#nav.scrolled .nav-logo { padding: 18px 0; }

.nav-links {
  display: flex; align-items: center; gap: 40px;
  padding: 28px 0;
  transition: padding .3s;
}
#nav.scrolled .nav-links { padding: 18px 0; }
.nav-links li a {
  font-family: var(--sans); font-size: .68rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--fog); transition: color .3s;
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links li a:hover { color: var(--cream); }
.nav-links li a:hover::after { transform: scaleX(1); transform-origin: left; }

.burger {
  display: none; flex-direction: column; gap: 6px; padding: 6px; cursor: none;
}
.burger span {
  display: block; width: 24px; height: 1px;
  background: var(--cream); border-radius: 1px;
  transition: all .3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav ul { text-align: center; }
.mobile-nav li { margin: 24px 0; }
.mobile-nav li a {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--cream); opacity: .7; transition: opacity .2s, color .2s;
}
.mobile-nav li a:hover { opacity: 1; color: var(--gold-lt); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,169,110,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(74,72,64,.3) 0%, transparent 50%),
    var(--ink);
}

.hero-layout {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 120px 40px 80px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
  width: 100%;
}

/* Portrait */
.hero-portrait { position: relative; }
.portrait-frame {
  position: relative; display: inline-block;
  max-width: 440px; width: 100%;
}
.portrait-frame img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  filter: grayscale(15%) contrast(1.05);
}
.portrait-border {
  position: absolute; inset: 20px -20px -20px 20px;
  border: 1px solid rgba(201,169,110,.25);
  pointer-events: none; z-index: -1;
}

/* Hero text */
.hero-text { display: flex; flex-direction: column; gap: 0; }
.hero-eyebrow {
  font-family: var(--sans); font-size: .62rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300; line-height: .95;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero-name em { font-style: italic; color: var(--gold-lt); display: block; }
.hero-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--dust); line-height: 1.5;
  border-left: 1px solid rgba(201,169,110,.3);
  padding-left: 20px; margin-bottom: 32px;
}
.hero-quote {
  margin-bottom: 40px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.hero-quote p {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; line-height: 1.7;
  color: var(--fog); margin-bottom: 10px;
}
.hero-quote cite {
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; padding: 14px 32px;
  font-family: var(--sans); font-size: .68rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; padding: 14px 32px;
  font-family: var(--sans); font-size: .68rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.2); color: var(--fog);
  transition: border-color .3s, color .3s, transform .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: var(--cream); transform: translateY(-1px); }

.hero-scroll {
  position: absolute; bottom: 40px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  writing-mode: vertical-rl; text-orientation: mixed;
  color: var(--ash); transition: color .3s;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll span {
  font-family: var(--sans); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,.5), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; height: 48px; }
  50%  { opacity: 1; height: 64px; }
}

/* ══════════════════════════════
   BIOGRAPHY
══════════════════════════════ */
.section-bio {
  padding: 120px 0;
  background: var(--ink-md);
  overflow: hidden;
}
.bio-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.bio-img {
  position: relative;
}
.bio-img img {
  width: 100%; max-height: 600px;
  object-fit: cover; object-position: center top;
  filter: grayscale(20%);
}
.bio-img-frame {
  position: absolute; inset: -16px 16px 16px -16px;
  border: 1px solid rgba(201,169,110,.18); z-index: -1;
}
.bio-text { padding-top: 8px; }
.bio-body p {
  font-family: var(--serif); font-size: 1.08rem; line-height: 1.85;
  color: var(--fog); margin-bottom: 20px;
}
.bio-body p strong { color: var(--cream); font-weight: 600; }
.bio-body p em { color: var(--gold-lt); font-style: italic; }
.bio-facts {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact-num {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.fact-label {
  font-family: var(--sans); font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dust);
}

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.section-gallery {
  padding: 120px 0;
  background: var(--ink);
}
.section-gallery .section-intro { margin: 0 auto; text-align: center; }
.section-gallery .section-header { text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 3px;
  margin-top: 60px;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--ink-lt);
  cursor: none;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .7s var(--ease), filter .5s;
  filter: grayscale(10%);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0%); }

.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12,11,9,.55);
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--sans); font-size: .6rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream); border: 1px solid rgba(255,255,255,.5);
  padding: 8px 16px;
}

/* Workshop grid (same style, fewer items) */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 3px;
  margin-top: 60px;
}
.workshop-item {
  position: relative; overflow: hidden;
  background: var(--ink-lt);
  cursor: none;
}
.workshop-item.tall { grid-row: span 2; }
.workshop-item.wide { grid-column: span 2; }
.workshop-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .7s var(--ease), filter .5s;
  filter: grayscale(15%);
}
.workshop-item:hover img { transform: scale(1.06); filter: grayscale(0%); }
.workshop-item:hover .gallery-overlay { opacity: 1; }

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,7,6,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
  backdrop-filter: blur(4px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-img-wrap {
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain;
  transition: opacity .3s;
}
.lb-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 1.4rem; color: var(--fog);
  transition: color .2s, transform .2s;
  cursor: none;
}
.lb-close:hover { color: var(--cream); transform: rotate(90deg); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--fog);
  padding: 16px 20px; cursor: none;
  transition: color .2s;
}
.lb-prev:hover, .lb-next:hover { color: var(--cream); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dust);
}

/* ══════════════════════════════
   INTERLUDE
══════════════════════════════ */
.interlude {
  padding: 100px 40px;
  background: var(--ink-md);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.interlude-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center;
}
.interlude-dash {
  width: 48px; height: 1px; background: var(--gold); opacity: .5;
}
.interlude-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300; line-height: 1.6;
  color: var(--cream); opacity: .85;
}

/* ══════════════════════════════
   WORKSHOP SECTION
══════════════════════════════ */
.section-workshop {
  padding: 120px 0;
  background: var(--ink);
}
.section-workshop .section-header { text-align: center; }
.section-workshop .section-intro { margin: 0 auto; text-align: center; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.section-contact {
  padding: 120px 0;
  background: var(--ink-md);
}
.contact-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start;
}
.contact-left .section-title { margin-bottom: 16px; }
.contact-left > p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; line-height: 1.75;
  color: var(--dust); margin-bottom: 36px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info li {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: .82rem;
  letter-spacing: .03em; color: var(--fog);
}
.contact-info li a { transition: color .2s; }
.contact-info li a:hover { color: var(--gold-lt); }
.ci-icon {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .8rem; color: var(--gold);
}

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-family: var(--sans); font-size: .6rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase; color: var(--dust);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 14px 16px;
  font-family: var(--serif); font-size: 1rem;
  color: var(--cream);
  outline: none;
  transition: border-color .3s, background .3s;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ash); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(201,169,110,.4);
  background: rgba(255,255,255,.06);
}
.form-submit {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans); font-size: .68rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  cursor: none;
  transition: background .3s, color .3s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold); color: var(--ink); }
.submit-arrow { transition: transform .3s; }
.form-submit:hover .submit-arrow { transform: translateX(4px); }
.form-feedback {
  margin-top: 14px;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .1em;
  color: var(--gold); min-height: 20px;
}
.form-feedback.error { color: #c0675e; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
#footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 60px 40px 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand { text-align: center; }
.footer-monogram {
  display: block; font-family: var(--serif); font-size: 2rem; font-weight: 600;
  color: var(--gold); letter-spacing: .1em; line-height: 1;
  margin-bottom: 8px;
}
.footer-brand p { font-family: var(--serif); font-size: 1rem; color: var(--fog); margin-bottom: 2px; }
.footer-brand small {
  font-family: var(--sans); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash);
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dust); transition: color .2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--dust); transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0; text-align: center;
}
.footer-bottom p {
  font-family: var(--sans); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ash);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 48px; }
  .bio-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .workshop-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }

  .hero-layout { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .hero-portrait { order: -1; max-width: 300px; }
  .hero-name { font-size: clamp(3rem, 14vw, 5rem); }

  .bio-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .workshop-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide, .workshop-item.wide { grid-column: span 1; }

  .section-bio { padding: 80px 0; }
  .section-gallery, .section-workshop, .section-contact { padding: 80px 0; }
  .container { padding: 0 24px; }
  .contact-inner { padding: 0 24px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  #footer { padding: 48px 24px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid, .workshop-grid { grid-template-columns: 1fr; }
  .gallery-item.tall, .workshop-item.tall { grid-row: span 1; }
  .bio-facts { gap: 24px; }
}
