/* ============================================================
   Philippe Verspeek — Photographe Auteur · Archigraphisme
   Feuille de style principale
   ============================================================ */

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

:root {
  --bg: #080808;
  --bg2: #0e0e0e;
  --bg3: #151515;
  --text: #f0ece4;
  --muted: #a09890;
  --border: #2a2a2a;
  --faint: #1e1e1e;
  --gold: #c9a96e;
  --gold2: #e2c48e;
  --goldx: rgba(201, 169, 110, .12);
  --white: #faf7f2;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; }
button { font: inherit; }

img { max-width: 100%; }

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .98), transparent);
}
.logo { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.logo-n { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--white); letter-spacing: .06em; }
.logo-s { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Courier Prime', monospace; font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero { min-height: 100vh; display: grid; grid-template-columns: 55% 45%; }
.hero-l { display: flex; flex-direction: column; justify-content: center; padding: 140px 80px 100px 60px; z-index: 2; }
.hero-tag {
  font-family: 'Courier Prime', monospace; font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 36px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-name {
  font-family: 'Playfair Display', serif; font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 400; line-height: .95; color: var(--white);
}
.hero-name em { font-style: italic; color: var(--gold2); display: block; }
.hero-concept {
  margin-top: 24px; font-family: 'Playfair Display', serif; font-size: clamp(15px, 1.8vw, 20px);
  font-style: italic; color: rgba(201, 169, 110, .55);
}
.hero-desc { margin-top: 24px; font-size: 14px; color: var(--muted); line-height: 1.9; max-width: 370px; }
.hero-btns { margin-top: 44px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn-g {
  font-family: 'Courier Prime', monospace; font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  background: var(--gold); color: var(--bg); padding: 14px 32px; text-decoration: none;
  display: inline-block; transition: background .3s; border: none; cursor: pointer;
}
.btn-g:hover { background: var(--gold2); }
.btn-l {
  font-family: 'Courier Prime', monospace; font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201, 169, 110, .3); padding-bottom: 2px;
}
.hero-r { position: relative; overflow: hidden; }
#hc { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(8, 8, 8, .15) 45%, transparent 100%);
  z-index: 1;
}
.hero-coord {
  position: absolute; bottom: 60px; right: 40px; font-family: 'Courier Prime', monospace;
  font-size: 8px; color: var(--muted); letter-spacing: .16em; writing-mode: vertical-rl; z-index: 2;
}
.scroll-h {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3;
}
.scroll-bar { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: sb 2.4s ease infinite; }
.scroll-lbl { font-family: 'Courier Prime', monospace; font-size: 7px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }

/* ============ MANIFESTO ============ */
.mani { background: var(--gold); padding: 14px 0; overflow: hidden; }
.mani-track { display: flex; width: max-content; animation: mq 40s linear infinite; }
.mani p {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 14px;
  color: var(--bg); white-space: nowrap; padding-right: 3em;
}
@media (prefers-reduced-motion: reduce) {
  .mani-track, .scroll-bar { animation: none; }
}

/* ============ ABOUT ============ */
.about-wrap { background: var(--bg2); }
.about {
  max-width: 1200px; margin: 0 auto; padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start;
}
.about-l { position: sticky; top: 100px; }
.eyebrow {
  font-family: 'Courier Prime', monospace; font-size: 8.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.about-l h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 400; line-height: 1.2; color: var(--white); }
.about-l h2 em { font-style: italic; color: var(--gold2); }
.portrait { margin-top: 36px; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid var(--faint); }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-r h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; color: var(--white); margin-bottom: 14px; margin-top: 32px; }
.about-r h3:first-child { margin-top: 0; }
.about-r h3 em { font-style: italic; color: var(--gold2); }
.about-r p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 12px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.stat { background: var(--bg3); border: 1px solid var(--border); padding: 24px 20px; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--white); line-height: 1; }
.stat-n sup { font-size: 14px; color: var(--gold); }
.stat-l { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ============ GALERIES ============ */
.gal { padding: 100px 0 120px; }
.gal-head {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; flex-wrap: wrap;
}
.gal-title { font-family: 'Playfair Display', serif; font-size: clamp(34px, 4.5vw, 58px); font-weight: 400; line-height: 1; color: var(--white); }
.gal-title em { font-style: italic; color: var(--gold2); }
.gal-sub { font-family: 'Courier Prime', monospace; font-size: 8px; color: var(--muted); letter-spacing: .18em; padding-bottom: 4px; }
.tabs { max-width: 1200px; margin: 0 auto; padding: 0 60px; display: flex; margin-bottom: 36px; border-bottom: 1px solid var(--border); }
.tab {
  font-family: 'Courier Prime', monospace; font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); padding: 12px 24px; cursor: pointer; border: none; background: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .3s, border-color .3s;
}
.tab.on { color: var(--gold); border-bottom-color: var(--gold); }
.panel { display: none; }
.panel.on { display: block; }

/* ============ GRILLES ============ */
.grid-a { max-width: 1400px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; }
.grid-a .gc:nth-child(1) { grid-column: 1 / 8; aspect-ratio: 16 / 10; }
.grid-a .gc:nth-child(2) { grid-column: 8 / 13; aspect-ratio: 4 / 5; }
.grid-a .gc:nth-child(3) { grid-column: 1 / 5; aspect-ratio: 1; }
.grid-a .gc:nth-child(4) { grid-column: 5 / 9; aspect-ratio: 5 / 4; }
.grid-a .gc:nth-child(5) { grid-column: 9 / 13; aspect-ratio: 3 / 4; }
.grid-m { max-width: 1400px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 10px; }
.grid-m .gc { aspect-ratio: 4 / 5; }

/* ============ CARTE OEUVRE ============ */
.gc { position: relative; overflow: hidden; background: var(--bg3); cursor: pointer; display: block; border: 0; width: 100%; text-align: left; padding: 0; }
.gc img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.gc:hover img, .gc:focus-visible img { transform: scale(1.05); }
.gc-over {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; pointer-events: none;
}
.gc:hover .gc-over, .gc:focus-visible .gc-over { opacity: 1; }
.gc-serie { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .18em; color: var(--gold); margin-bottom: 4px; }
.gc-title { font-family: 'Playfair Display', serif; font-size: 17px; font-style: italic; color: var(--white); line-height: 1.2; }
.gc-zoom {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 8, 8, .55); border: 1px solid rgba(240, 236, 228, .3); border-radius: 50%;
  color: var(--white); opacity: 0; transition: opacity .3s, border-color .3s; pointer-events: none;
}
.gc:hover .gc-zoom, .gc:focus-visible .gc-zoom { opacity: 1; }
.gc-zoom svg { width: 13px; height: 13px; }

/* ============ LIGHTBOX (visionneuse) ============ */
.lb { position: fixed; inset: 0; z-index: 500; background: rgba(0, 0, 0, .96); display: none; align-items: center; justify-content: center; }
.lb.on { display: flex; }
.lb-wrap { display: grid; grid-template-columns: 1fr 400px; width: 94vw; max-width: 1280px; height: 88vh; transition: grid-template-columns .35s ease; }
.lb-img { position: relative; overflow: hidden; background: #111; cursor: zoom-in; }
.lb-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lb-zoom-hint {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); background: rgba(8, 8, 8, .6); border: 1px solid var(--border);
  padding: 8px 14px; pointer-events: none; opacity: 0; transition: opacity .3s;
  white-space: nowrap;
}
.lb-img:hover .lb-zoom-hint { opacity: 1; }
.lb-arr {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px;
  background: rgba(201, 169, 110, .15); border: 1px solid rgba(201, 169, 110, .3); color: var(--gold);
  font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .3s; z-index: 2;
}
.lb-arr:hover { background: rgba(201, 169, 110, .3); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-panel { background: var(--bg2); border-left: 1px solid var(--border); padding: 44px 36px; display: flex; flex-direction: column; overflow-y: auto; }
.lb-close {
  align-self: flex-end; font-family: 'Courier Prime', monospace; font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); background: none; border: 1px solid var(--border); padding: 7px 14px; cursor: pointer;
  margin-bottom: 36px; transition: color .3s, border-color .3s;
}
.lb-close:hover { color: var(--gold); border-color: var(--gold); }
.lb-serie { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.lb-title { font-family: 'Playfair Display', serif; font-size: 26px; font-style: italic; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.lb-hr { height: 1px; background: var(--border); margin-bottom: 20px; }
.lb-desc { font-size: 13.5px; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.lb-fmt-title { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.lb-fmts { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.lb-fmt {
  display: flex; justify-content: space-between; align-items: center; padding: 11px 14px;
  border: 1px solid var(--border); cursor: pointer; transition: border-color .3s, background .3s; background: none; color: inherit; width: 100%; text-align: left;
}
.lb-fmt:hover, .lb-fmt.on { border-color: var(--gold); background: var(--goldx); }
.lb-fmt-n { font-family: 'Courier Prime', monospace; font-size: 9px; color: var(--text); }
.lb-fmt-p { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold2); }
.lb-sups { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 24px; }
.lb-sup { padding: 11px; border: 1px solid var(--border); text-align: center; cursor: pointer; transition: border-color .3s, background .3s; background: none; color: inherit; }
.lb-sup:hover, .lb-sup.on { border-color: var(--gold); background: var(--goldx); }
.lb-sup-n { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); display: block; margin-bottom: 3px; }
.lb-sup-s { font-size: 11px; color: var(--muted); }
.lb-cmd {
  background: var(--gold); color: var(--bg); border: none; font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: .24em; text-transform: uppercase; padding: 16px 28px; cursor: pointer;
  width: 100%; margin-bottom: 12px; transition: background .3s;
}
.lb-cmd:hover { background: var(--gold2); }
.lb-ed { font-family: 'Courier Prime', monospace; font-size: 8px; color: var(--muted); text-align: center; }

/* Mode plein écran (agrandissement pur) */
.lb-wrap.zoomed { grid-template-columns: 1fr 0px; }
.lb-wrap.zoomed .lb-panel { opacity: 0; pointer-events: none; padding: 0; overflow: hidden; }
.lb-wrap.zoomed .lb-img { cursor: zoom-out; }
.lb-wrap.zoomed .lb-zoom-hint { display: none; }

/* ============ MODAL COMMANDE ============ */
.mod { position: fixed; inset: 0; z-index: 600; background: rgba(0, 0, 0, .95); display: none; align-items: center; justify-content: center; padding: 20px; }
.mod.on { display: flex; }
.mod-box { background: var(--bg2); border: 1px solid var(--border); width: 90vw; max-width: 580px; max-height: 90vh; overflow-y: auto; padding: 44px; position: relative; }
.mod-close {
  position: absolute; top: 20px; right: 20px; font-family: 'Courier Prime', monospace; font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); background: none; border: 1px solid var(--border);
  padding: 6px 12px; cursor: pointer; transition: color .3s, border-color .3s;
}
.mod-close:hover { color: var(--gold); border-color: var(--gold); }
.mod-ey { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.mod-title { font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; color: var(--white); margin-bottom: 6px; }
.mod-sum { background: var(--bg3); border: 1px solid var(--border); padding: 14px 18px; margin: 20px 0; font-size: 13px; color: var(--muted); line-height: 1.8; }
.mod-sum strong { color: var(--gold2); }
.ff { border-bottom: 1px solid var(--border); padding: 16px 0; }
.ff label { display: block; font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.ff input, .ff textarea, .ff select { width: 100%; background: transparent; border: none; outline: none; font-family: 'Raleway', sans-serif; font-size: 15px; color: var(--text); resize: none; }
.ff textarea { min-height: 80px; }
.ff input::placeholder, .ff textarea::placeholder { color: rgba(94, 90, 85, .4); }
.ff select option { background: var(--bg2); }
.mod-send {
  margin-top: 28px; background: var(--gold); color: var(--bg); border: none; font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase; padding: 16px 36px; cursor: pointer; width: 100%; transition: background .3s;
}
.mod-send:hover { background: var(--gold2); }
.mod-note { font-family: 'Courier Prime', monospace; font-size: 8px; color: var(--muted); text-align: center; margin-top: 12px; }
.mod-error { font-size: 12px; color: var(--gold2); margin-top: 10px; display: none; }
.mod-error.on { display: block; }

/* ============ TIRAGES ============ */
.tir-wrap { background: var(--bg2); padding: 100px 60px; }
.tir { max-width: 1200px; margin: 0 auto; }
.tir h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.8vw, 50px); color: var(--white); margin-bottom: 14px; }
.tir h2 em { font-style: italic; color: var(--gold2); }
.tir p { font-size: 14px; color: var(--muted); max-width: 560px; margin-bottom: 48px; }
.tir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.tir-card { background: var(--bg3); border: 1px solid var(--border); padding: 32px 36px; }
.tir-icon { font-size: 26px; margin-bottom: 18px; }
.tir-name { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--white); margin-bottom: 3px; }
.tir-sub { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.tir-desc { font-size: 13.5px; color: var(--muted); line-height: 1.8; }
.fmt-row { display: flex; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
.fmt-tag { font-family: 'Courier Prime', monospace; font-size: 9px; color: var(--gold); border: 1px solid rgba(201, 169, 110, .28); padding: 9px 18px; background: var(--goldx); }

/* ============ EXPOSITIONS ============ */
.expo-wrap { padding: 100px 60px; }
.expo { max-width: 1200px; margin: 0 auto; }
.expo h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.8vw, 50px); color: var(--white); margin-bottom: 48px; }
.expo h2 em { font-style: italic; color: var(--gold2); }
.expo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.expo-card { background: var(--bg2); border: 1px solid var(--border); padding: 32px 36px; position: relative; }
.expo-yr { font-family: 'Courier Prime', monospace; font-size: 26px; font-weight: 700; color: rgba(201, 169, 110, .09); position: absolute; top: 18px; right: 24px; }
.expo-name { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); margin-bottom: 7px; }
.expo-name em { font-style: italic; }
.expo-loc { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.expo-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }
.partner-row { margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.partner-lbl { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.partner-link {
  font-family: 'Playfair Display', serif; font-size: 13px; font-style: italic; color: var(--muted);
  border: 1px solid var(--border); padding: 7px 18px; text-decoration: none; transition: border-color .3s, color .3s;
}
.partner-link:hover { border-color: rgba(201, 169, 110, .4); color: var(--gold); }

/* ============ ZONES ============ */
.zones {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 52px 60px; display: flex; gap: 60px; align-items: center; flex-wrap: wrap;
}
.zones-lbl { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.zones-list { display: flex; gap: 28px; flex-wrap: wrap; }
.zone { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.zone::before { content: '\25E6'; color: var(--gold); font-size: 10px; }

/* ============ CONTACT ============ */
.ct-wrap { padding: 120px 60px; }
.ct { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.ct-l h2 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4.5vw, 62px); line-height: 1.05; color: var(--white); margin-bottom: 24px; }
.ct-l h2 em { font-style: italic; color: var(--gold2); }
.ct-l p { font-size: 14px; color: var(--muted); line-height: 1.9; max-width: 340px; }
.ct-info { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.cinfo { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--muted); }
.cinfo a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201, 169, 110, .25); padding-bottom: 1px; }
.ct-f { display: flex; flex-direction: column; }
.ct-send {
  margin-top: 36px; background: var(--gold); border: none; color: var(--bg); font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase; padding: 18px 40px; cursor: pointer; width: fit-content; transition: background .3s;
}
.ct-send:hover { background: var(--gold2); }
.ct-status { font-size: 12px; color: var(--gold2); margin-top: 14px; display: none; }
.ct-status.on { display: block; }

/* ============ FOOTER ============ */
footer { border-top: 1px solid var(--border); padding: 32px 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.foot-logo { font-family: 'Playfair Display', serif; font-size: 13px; font-style: italic; color: var(--muted); }
.foot-logo span { color: var(--gold); font-style: normal; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { font-family: 'Courier Prime', monospace; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .3s; }
.foot-links a:hover { color: var(--gold); }
.foot-copy { font-family: 'Courier Prime', monospace; font-size: 8px; color: var(--muted); }

@keyframes sb { 0%, 100% { opacity: .2; } 50% { opacity: 1; } }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav { padding: 18px 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-r { display: none; }
  .hero-l { padding: 110px 20px 80px; }
  .about { grid-template-columns: 1fr; gap: 36px; padding: 80px 20px; }
  .about-l { position: static; }
  .gal, .tir-wrap, .expo-wrap, .ct-wrap { padding: 80px 20px; }
  .gal-head, .tabs { padding: 0 20px; }
  .grid-a, .grid-m { padding: 0 20px; grid-template-columns: 1fr; }
  .grid-a .gc { grid-column: 1 !important; aspect-ratio: 4 / 3 !important; }
  .grid-m { grid-template-columns: 1fr; }
  .tir-grid, .expo-grid, .ct { grid-template-columns: 1fr; gap: 32px; }
  .zones { padding: 36px 20px; gap: 24px; }
  footer { flex-direction: column; text-align: center; padding: 24px 20px; }
  .lb-wrap, .lb-wrap.zoomed { grid-template-columns: 1fr; height: auto; max-height: 88vh; }
  .lb-panel { max-height: 45vh; }
  .lb-wrap.zoomed .lb-panel { max-height: 0; }
}
