/* ============================================================
   MARIAM AMYRA — Stylesheet (fidèle à la version Weebly)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nav-h: 84px;
  --black: #1a1a1a;
  --dark:  #333333;
  --mid:   #777777;
  --light: #aaaaaa;
  --pale:  #e8e8e8;
  --bg:    #f9f9f9;
  --white: #ffffff;
  --accent:#c8a882;         /* warm gold – Weebly highlight colour */
  --photo-bg: #f4f2ef;      /* fond des œuvres (visionneuse galerie) */
  --collection-title: #626262; /* titres collection (ex. Intuitive Painting) */
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); font-size: 15px; color: var(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }

/* ── Justified text (site content) ── */
.section p,
.section blockquote,
.bio-content p,
.bio-content blockquote,
.contact-info p,
.contact-info .note,
.expo-intro,
.expo-intro p,
.expo-details p,
.expo-press-label,
.gallery-intro-text,
.gallery-intro-text p,
.gallery-intro-text .np-italic,
.gallery-intro-eyebrow,
.artwork-info,
.artwork-meta-line,
.artwork-desc-text,
.home-newsletter h2 {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
a { text-decoration: none; color: inherit; transition: color .25s, opacity .25s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 18px rgba(0,0,0,0.07); }
/* hamburger + language — right column */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-lang a {
  font-family: var(--font-b);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 4px 7px;
  min-width: 2.1em;
  text-align: center;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-lang a:hover {
  color: var(--black);
}
.nav-lang a.active {
  color: var(--black);
  border-bottom-color: var(--black);
}
.nav-toggle { justify-self: end; }

.nav-logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.nav-logo img {
  height: 70px; width: auto; display: block;
}

.nav-links { display: flex; align-items: center; gap: 28px; justify-self: center; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--font-b); font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--dark);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); border-bottom-color: var(--black); }

/* dropdown */
.nav-drop {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  min-width: 190px;
  padding: 10px 0 8px; /* padding-top crée l'espace visuel sans casser le hover */
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.nav-links li:hover .nav-drop { opacity: 1; pointer-events: auto; }
.nav-drop li a {
  display: block; padding: 8px 20px; font-size: .78rem;
  border-bottom: none; letter-spacing: .1em;
}
.nav-drop li a:hover { background: var(--bg); color: var(--black); border-bottom: none; }
html[lang="fr"] .nav-drop {
  min-width: 255px;
}
html[lang="fr"] .nav-drop li a {
  white-space: nowrap;
}

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; overflow-y: auto;
  padding: 30px 30px 60px;
  transform: translateX(-100%); transition: transform .32s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul li { border-bottom: 1px solid var(--pale); }
.mobile-menu ul li a { display: block; font-family: var(--font-h); font-size: 1.3rem; padding: 14px 0; color: var(--black); }
.mobile-sub { padding: 0 0 8px 16px; }
.mobile-sub a { font-family: var(--font-b); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); padding: 7px 0; }

/* ── PAGE HEADER ── */
.page-top {
  padding-top: calc(var(--nav-h) + 50px);
  padding-bottom: 40px;
  text-align: center;
}
.page-top h1 {
  font-family: var(--font-h); font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 400; color: var(--black);
}
.page-top p { color: var(--mid); font-size: .9rem; margin-top: 8px; letter-spacing: .05em; text-align: center; }

/* ── SECTIONS ── */
.section { padding: 70px 40px; }
.section-sm { padding: 50px 40px; }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1260px; margin: 0 auto;
}
.gallery-grid.g2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid.g4 { grid-template-columns: repeat(4, 1fr); }

.gallery-item {
  position: relative; overflow: hidden;
  background: #f0eeec; cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item.landscape { aspect-ratio: 4/3; }
.gallery-item.portrait  { aspect-ratio: 3/4; }
.gallery-item.wide      { aspect-ratio: 3/1; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  transform: translateY(100%); transition: transform .35s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-caption h3 { font-family: var(--font-h); font-size: .95rem; font-weight: 400; font-style: italic; color: #fff; line-height: 1.3; }
.gallery-caption p  { font-size: .7rem; color: rgba(255,255,255,.75); margin-top: 2px; letter-spacing: .06em; }
.gallery-caption .sold-tag { display: inline-block; margin-top: 4px; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.4); padding: 1px 7px; }

/* gallery sub-nav tabs */
.gallery-tabs {
  display: flex; justify-content: center; flex-wrap: wrap;
  border-bottom: 1px solid var(--pale);
  background: var(--white);
  position: sticky; top: var(--nav-h); z-index: 100;
  padding: 0 10px;
}
.gtab {
  font-family: var(--font-b); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--mid);
  padding: 16px 24px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.gtab:hover, .gtab.active { color: var(--black); border-bottom-color: var(--black); }

/* ── HOME PAGE (Weebly layout) ── */
.home-banner {
  position: relative;
  padding-top: var(--nav-h);
  aspect-ratio: 1920 / 730;
  width: 100%;
  max-height: calc(100vh - var(--nav-h));
  overflow: hidden;
  background: var(--photo-bg);
}
.home-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.home-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-carousel-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 0.85s ease-in-out;
  will-change: transform;
}
.home-carousel-slide.active {
  transform: translateX(0);
  z-index: 2;
}
.home-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 860px) {
  .home-banner {
    aspect-ratio: auto;
    min-height: 280px;
    height: 42vw;
    max-height: 360px;
  }
}

.home-newsletter {
  padding: 50px 40px 40px;
  background: var(--white);
  border-top: none; border-bottom: none;
}
.home-newsletter .newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.home-newsletter .newsletter-row {
  display: flex;
  align-items: center;
  gap: 28px;
}
.home-newsletter h2 {
  flex: 1;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.02rem; font-weight: 400;
  color: #818181; text-align: justify;
  max-width: none; margin: 0; line-height: 1.48;
}
.home-newsletter .nl-form {
  flex-shrink: 0;
  margin: 0;
  max-width: none;
  align-items: stretch;
}
.home-newsletter .nl-form input[type=email] {
  width: 220px;
  flex: none;
}
.newsletter-archive {
  max-width: 1200px;
  margin: 14px auto 0;
  text-align: right;
  font-size: .78rem;
}
.newsletter-archive a {
  color: var(--mid);
  text-decoration: none;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--pale);
  transition: color .2s, border-color .2s;
}
.newsletter-archive a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ── NEWSLETTER FLIPBOOK MODAL ── */
.nl-flipbook {
  position: fixed; inset: 0; z-index: 4000;
  display: none;
  align-items: center; justify-content: center;
  padding: 8px;
  background: transparent;
  pointer-events: none;
}
.nl-flipbook.open {
  display: flex;
  pointer-events: none;
}
.nl-flipbook-panel {
  height: 96vh;
  max-height: 96vh;
  width: min(98vw, calc((96vh - 64px) * 1.414 + 72px));
  display: flex; flex-direction: column;
  background: var(--white);
  pointer-events: auto;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
  border: 1px solid var(--pale);
}
.nl-flipbook-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--pale);
  flex-shrink: 0;
}
.nl-flipbook-header h2 {
  font-family: var(--font-h);
  font-size: .92rem; font-weight: 400; font-style: italic;
  margin: 0; color: var(--black);
}
.nl-flipbook-toolbar { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nl-flipbook-zoom {
  display: flex; align-items: center; gap: 6px;
}
.nl-flipbook-zoom-btn {
  width: 28px; height: 28px;
  font-family: var(--font-b); font-size: 1rem; line-height: 1;
  background: var(--white); border: 1px solid var(--pale);
  color: var(--black); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.nl-flipbook-zoom-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.nl-flipbook-zoom-btn:disabled { opacity: .35; cursor: default; }
.nl-flipbook-zoom-level {
  min-width: 42px; text-align: center;
  font-family: var(--font-b); font-size: .62rem;
  letter-spacing: .06em; color: var(--mid);
}
.nl-flipbook-download {
  font-family: var(--font-b); font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  border-bottom: 1px solid var(--pale);
  transition: color .2s, border-color .2s;
}
.nl-flipbook-download:hover { color: var(--accent); border-bottom-color: var(--accent); }
.nl-flipbook-close {
  font-size: 1.6rem; line-height: 1;
  background: none; border: none; cursor: pointer;
  color: var(--mid); padding: 0 2px;
  transition: color .2s;
}
.nl-flipbook-close:hover { color: var(--black); }
.nl-flipbook-body {
  position: relative;
  flex: 1;
  min-height: 0;
  padding: 0 36px;
  background: #f0eeeb;
}
.nl-flipbook-stage {
  position: absolute;
  inset: 0;
  padding: 14px;
  overflow: auto;
}
.nl-flipbook-book {
  width: 100%;
  height: 100%;
  position: relative;
  touch-action: none;
}
.nl-flipbook-stage .stf__parent {
  touch-action: none;
}
.nl-flipbook-page {
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.nl-flipbook-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.nl-flipbook-hotspot {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
  border-radius: 2px;
  transition: background .2s, outline-color .2s;
}
.nl-flipbook-hotspot:hover,
.nl-flipbook-hotspot:focus-visible {
  background: rgba(200, 168, 130, .14);
  outline: 1px solid rgba(200, 168, 130, .45);
  outline-offset: -1px;
}
.nl-flipbook-page img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.nl-flipbook-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 52px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--pale);
  color: var(--black);
  font-size: 1.5rem; line-height: 1;
  cursor: pointer; z-index: 2;
  transition: background .2s, border-color .2s;
}
.nl-flipbook-nav:hover { background: #fff; border-color: var(--accent); }
.nl-flipbook-prev { left: 4px; }
.nl-flipbook-next { right: 4px; }
.nl-flipbook-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 6px 14px 8px;
  border-top: 1px solid var(--pale);
  font-family: var(--font-b); font-size: .65rem;
  letter-spacing: .08em; color: var(--mid);
  flex-shrink: 0;
}
.nl-flipbook-hint { opacity: .75; text-align: justify; }

/* ── ARTWORK DETAIL PAGE ── */
.artwork-back-wrap {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px 0;
}
.artwork-back {
  font-family: var(--font-b); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
}
.artwork-back a { color: var(--mid); text-decoration: none; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.artwork-back a:hover { color: var(--black); border-bottom-color: var(--accent); }
.artwork-hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 48px; align-items: start; max-width: 1200px; margin: 0 auto;
}
.artwork-main-btn {
  display: block; width: 100%; padding: 0; border: none; background: var(--white);
  cursor: zoom-in; overflow: hidden;
}
.artwork-main-btn img {
  width: 100%; height: auto; display: block; max-height: 78vh; object-fit: contain; margin: 0 auto;
}
.artwork-info h1 {
  font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic; margin: 0 0 10px;
}
.artwork-meta-line {
  font-family: var(--font-b); font-size: calc(.78rem + 2pt);
  letter-spacing: .04em; color: var(--mid); margin: 0 0 8px; line-height: 1.5;
}
.artwork-meta-line--status {
  font-size: calc(.78rem + 8pt);
  letter-spacing: .06em;
  color: var(--black);
}
.artwork-desc-text {
  font-size: .92rem; line-height: 1.85; color: var(--mid); margin: 14px 0 0;
}
.artwork-desc-text + .artwork-desc-text { margin-top: 10px; }
.artwork-enquire { margin-top: 16px; }
.artwork-details-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 1200px; margin: 0 auto;
}
.artwork-detail-btn {
  padding: 0; border: none; background: var(--white); cursor: zoom-in; overflow: hidden; aspect-ratio: 1;
}
.artwork-detail-btn img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.artwork-detail-btn:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .artwork-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .artwork-details-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .artwork-details-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
}

@media (max-width: 720px) {
  .nl-flipbook { padding: 0; }
  .nl-flipbook-panel { width: 100%; height: 100vh; max-height: 100vh; }
  .nl-flipbook-body { padding: 0 30px; }
  .nl-flipbook-hint { display: none; }
  .nl-flipbook-header h2 { font-size: .82rem; }
}

.btn {
  display: inline-block; font-family: var(--font-b); font-size: .68rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 13px 32px; border: 1.5px solid; cursor: pointer; transition: background .25s, color .25s;
}
.btn-dark { color: var(--black); border-color: var(--black); }
.btn-dark:hover { background: var(--black); color: var(--white); }
.btn-outline { color: var(--mid); border-color: var(--pale); margin-left: 12px; }
.btn-outline:hover { border-color: var(--black); color: var(--black); }

/* ── LATEST PAINTINGS (home) ── */
.latest-title {
  text-align: center; padding: 60px 40px 40px;
}
.latest-title h2 {
  font-family: var(--font-h); font-size: clamp(1.4rem,2.5vw,2rem);
  font-weight: 400; color: var(--black); margin-bottom: 8px;
}
.latest-title p { color: var(--mid); font-size: .85rem; letter-spacing: .06em; text-align: justify; }

.latest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; max-width: 1200px; margin: 0 auto;
}
.latest-item { position: relative; overflow: hidden; aspect-ratio: 4/5; background: #f0eeec; }
.latest-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.latest-item:hover img { transform: scale(1.06); }
.latest-item-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  transform: translateY(100%); transition: transform .35s;
}
.latest-item:hover .latest-item-cap { transform: translateY(0); }
.latest-item-cap h3 { font-family: var(--font-h); font-size: .9rem; font-style: italic; color: #fff; }
.latest-item-cap p  { font-size: .68rem; color: rgba(255,255,255,.7); margin-top: 2px; }

/* ── NEWSLETTER ── */
.newsletter {
  padding: 65px 40px; text-align: center;
  background: var(--bg); border-top: 1px solid var(--pale); border-bottom: 1px solid var(--pale);
}
.newsletter h2 {
  font-family: var(--font-h); font-size: clamp(1rem,2vw,1.4rem);
  font-weight: 400; color: var(--black); max-width: 560px; margin: 0 auto 28px; line-height: 1.5;
}
.nl-form { display: flex; max-width: 440px; margin: 0 auto; }
.nl-form input[type=email] {
  flex: 1; padding: 12px 16px; border: 1px solid var(--pale); border-right: none;
  font-family: var(--font-b); font-size: .88rem; color: var(--dark);
  background: var(--white); outline: none; transition: border-color .2s;
}
.nl-form input[type=email]:focus { border-color: var(--accent); }
.nl-form input::placeholder { color: var(--light); }
.nl-form button {
  padding: 12px 22px; background: var(--black); color: var(--white);
  border: 1px solid var(--black); font-family: var(--font-b); font-size: .68rem;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; transition: background .25s;
}
.nl-form button:hover { background: #333; }
#nl-msg { display: none; margin-top: 14px; font-size: .88rem; color: var(--accent); font-style: italic; }

/* ── SOCIAL STRIP ── */
.social-strip {
  padding: 40px; text-align: center;
  background: var(--white);
}
.social-strip p { font-size: .88rem; color: var(--mid); max-width: 560px; margin: 0 auto 22px; }
.social-icons { display: flex; justify-content: center; gap: 14px; }
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--pale);
  color: var(--mid); transition: background .2s, color .2s, border-color .2s;
}
.social-icons a:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.social-icons svg { width: 15px; height: 15px; }

/* ── BIO ── */
.bio-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  padding-top: var(--nav-h);
}
.bio-photo { overflow: hidden; }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; min-height: 500px; }
.bio-content { padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; }
.bio-content h1 { font-family: var(--font-h); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 400; color: var(--black); margin-bottom: 24px; }
.bio-content h2 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 400; color: var(--dark); margin: 28px 0 12px; }
.bio-content p  { font-size: .9rem; color: var(--mid); line-height: 1.85; margin-bottom: 14px; }
.bio-content blockquote {
  border-left: 2px solid var(--accent); padding: 10px 20px; margin: 24px 0;
  font-family: var(--font-h); font-size: 1rem; font-style: italic; color: var(--dark); line-height: 1.6;
}

/* ── SHOP ── */
.shop-toolbar {
  max-width: 1260px;
  margin: 0 auto 40px;
}
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  justify-content: center;
}
.shop-filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
}
.shop-filter span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
}
.shop-filter select {
  padding: 10px 14px;
  border: 1px solid var(--pale);
  background: var(--white);
  font-family: var(--font-b);
  font-size: .88rem;
  color: var(--dark);
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.shop-filter select:focus { border-color: var(--accent); }
.shop-no-results {
  text-align: center;
  color: var(--mid);
  font-size: .92rem;
  padding: 40px 20px;
}
.shop-category { margin-bottom: 70px; }
.shop-category:last-child { margin-bottom: 0; }
.shop-category-first { margin-top: 0; }
.shop-category-title {
  font-family: var(--font-h); font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400; color: var(--black); text-align: center; margin-bottom: 36px;
}
.shop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; max-width: 1260px; margin: 0 auto;
}
.shop-card { display: flex; flex-direction: column; }
.shop-card-img {
  position: relative; overflow: hidden;
  background: #f0eeec; aspect-ratio: 3/4; cursor: pointer;
}
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.shop-card:hover .shop-card-img img { transform: scale(1.04); }
.sold-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.42);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: opacity .4s ease;
}
.sold-overlay span {
  font-family: var(--font-b); font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #fff; border: 1.5px solid rgba(255,255,255,.6);
  padding: 7px 20px;
}
.shop-card--sold:hover .sold-overlay { opacity: 0; }
.shop-card--sold .shop-card-img { cursor: zoom-in; }
.shop-card-info { padding: 16px 0 10px; flex: 1; display: flex; flex-direction: column; }
.shop-card-info h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 400; font-style: italic; color: var(--black); margin-bottom: 4px; }
.shop-card-info .meta { font-size: .73rem; color: var(--mid); letter-spacing: .04em; margin-bottom: 12px; }
.shop-card-actions {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; align-self: flex-start;
}
.shop-btn {
  display: inline-block;
  font-family: var(--font-b); font-size: .63rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--black); border: 1px solid var(--black);
  padding: 8px 20px; transition: background .2s, color .2s;
}
.shop-btn:hover { background: var(--black); color: var(--white); }

/* ── CONTACT ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; max-width: 1080px; margin: 0 auto; align-items: start;
}
.contact-info h2 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 400; color: var(--black); margin-bottom: 18px; }
.contact-info p  { font-size: .9rem; color: var(--mid); line-height: 1.85; margin-bottom: 14px; }
.contact-info .note {
  font-size: .82rem; font-style: italic; color: var(--light);
  border-left: 2px solid var(--pale); padding-left: 14px; margin-top: 20px; line-height: 1.75;
}

form.cf { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); }
.fg input, .fg textarea, .fg select {
  padding: 11px 14px; border: 1px solid var(--pale); background: var(--white);
  font-family: var(--font-b); font-size: .88rem; color: var(--dark); outline: none;
  transition: border-color .2s; resize: none; -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--accent); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--light); }
.fg textarea { min-height: 140px; }
.form-submit { text-align: right; }
.form-submit button {
  padding: 12px 40px; background: var(--black); color: var(--white);
  border: 1px solid var(--black); font-family: var(--font-b); font-size: .7rem;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; transition: background .25s;
}
.form-submit button:hover { background: #333; }
#cf-msg { display: none; font-size: .85rem; color: var(--accent); font-style: italic; margin-top: 8px; }

/* ── EXHIBITIONS ── */
.expos-list { max-width: 820px; margin: 0 auto; }
.expo-item {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 28px; padding: 32px 0;
  border-bottom: 1px solid var(--pale); align-items: center;
}
.expo-item:first-child { border-top: 1px solid var(--pale); }
.expo-date { text-align: center; padding: 14px 10px; border: 1px solid var(--pale); }
.expo-date .year { font-family: var(--font-h); font-size: 1.3rem; color: var(--black); display: block; }
.expo-date .month { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--light); display: block; margin-top: 2px; }
.expo-details h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 500; color: var(--black); margin-bottom: 5px; }
.expo-details .loc { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.expo-details p { font-size: .88rem; color: var(--mid); line-height: 1.7; }
.expo-links { list-style: none; padding: 0; margin: 0; }
.expo-links li + li { margin-top: 14px; }
.expo-links a {
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 500;
  color: var(--black); text-decoration: none;
  border-bottom: 1px solid var(--pale);
  transition: color .2s, border-color .2s;
}
.expo-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.expo-back { margin-bottom: 12px; }
.expo-back a {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color .2s;
}
.expo-back a:hover { color: var(--accent); }
.expo-gallery {
  column-count: 2;
  column-gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.expo-media {
  display: block;
  break-inside: avoid;
  margin-bottom: 14px;
  transition: opacity .25s;
}
a.expo-media:hover { opacity: .88; }
.expo-media img {
  display: block; width: 100%; height: auto;
}
.expo-videos--spaced { margin-top: 48px; }
.expo-section-videos {
  background: var(--bg);
  border-top: 1px solid var(--pale);
  padding-top: 64px;
  padding-bottom: 64px;
  margin-top: 16px;
}
.expo-section-videos .expo-videos { margin-bottom: 0; }
.expo-section-videos .expo-videos + .expo-videos { margin-top: 24px; }
.expo-section-videos .expo-videos--compact {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.expo-intro {
  max-width: 880px; margin: 0 auto 36px;
  font-size: .92rem; color: var(--mid); line-height: 1.75;
  text-align: justify;
}
.expo-intro--justify { text-align: justify; }
.expo-intro h2 {
  font-family: var(--font-h); font-size: 1rem; font-weight: 500;
  color: var(--black); margin: 22px 0 6px;
}
.expo-intro a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--pale); }
.expo-intro a:hover { border-bottom-color: var(--accent); }
.expo-press-label {
  max-width: 880px; margin: 0 auto 16px;
  font-family: var(--font-h); font-size: 1.05rem; font-style: italic;
  color: var(--black);
}
.expo-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto 28px;
}
.expo-video {
  background: #111;
  overflow: hidden;
}
.expo-video--wide { grid-column: 1 / -1; }
.expo-video iframe,
.expo-video video {
  display: block;
  width: 100%;
  border: none;
  vertical-align: top;
}
.expo-video--yt iframe { aspect-ratio: 16 / 9; height: auto; }
.expo-video--ig iframe { min-height: 560px; }
.expo-video video { height: auto; background: #000; }
.expo-videos--compact {
  grid-template-columns: 1fr;
  max-width: 420px;
}
.expo-videos--compact .expo-video video {
  max-height: min(55vh, 520px);
  object-fit: contain;
  margin: 0 auto;
}
.expo-videos--equal {
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 880px;
}
.expo-video--frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  overflow: hidden;
}
.expo-video--frame video,
.expo-video--frame iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  display: block;
}
.expo-yt-facade {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  position: relative;
  background: #000;
}
.expo-yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
  transition: opacity .25s;
}
.expo-yt-facade:hover img { opacity: 1; }
.expo-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 50px;
  background: rgba(204, 0, 0, .92);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  transition: background .2s, transform .2s;
}
.expo-yt-facade:hover .expo-yt-play {
  background: #e62117;
  transform: translate(-50%, -50%) scale(1.05);
}
.expo-yt-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}
.expo-tag { display: inline-block; margin-top: 8px; padding: 3px 10px; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border: 1px solid; }
.expo-tag.upcoming { color: var(--accent); border-color: var(--accent); }
.expo-tag.past { color: var(--light); border-color: var(--pale); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-img-wrap { position: relative; max-width: 85vw; max-height: 88vh; }
.lb-img-wrap img { max-width: 75vw; max-height: 85vh; object-fit: contain; display: block; }
.lb-info { position: absolute; bottom: -52px; left: 0; right: 0; text-align: center; }
.lb-info h3 { font-family: var(--font-h); font-size: .95rem; font-style: italic; color: rgba(255,255,255,.9); }
.lb-info p  { font-size: .7rem; color: rgba(255,255,255,.55); margin-top: 2px; }
.lb-close {
  position: fixed; top: 18px; right: 22px; font-size: 1.8rem; line-height: 1;
  color: rgba(255,255,255,.7); background: none; border: none; cursor: pointer; transition: color .2s;
}
.lb-close:hover { color: #fff; }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: none; color: rgba(255,255,255,.7);
  font-size: 2rem; padding: 14px 10px; cursor: pointer; transition: background .2s;
}
.lb-nav:hover { background: rgba(255,255,255,.16); }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--photo-bg);
  color: var(--collection-title);
  padding: 36px 40px 14px;
  text-align: center;
}
.footer-quote {
  max-width: 1200px; margin: 0 auto 28px;
}
.footer-quote blockquote {
  font-family: var(--font-h);
  font-size: clamp(0.72rem, 1.05vw, 1.05rem);
  font-style: italic; color: var(--collection-title);
  line-height: 1.4;
  white-space: nowrap;
  margin: 0 auto;
  text-align: center;
}
.footer-quote cite {
  display: block; margin-top: 14px;
  font-family: var(--font-b);
  font-size: .68rem; font-style: normal;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--collection-title);
}
@media (max-width: 1100px) {
  .footer-quote blockquote {
    white-space: normal;
    font-size: clamp(0.85rem, 2.2vw, 1.1rem);
    max-width: 760px;
  }
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: .68rem; letter-spacing: .04em;
}
.footer-copy { justify-self: start; }
.footer-email {
  justify-self: end;
  font-size: calc(.68rem + 5pt);
}
.footer-bottom a {
  color: var(--collection-title);
  transition: color .2s, opacity .2s;
}
.footer-bottom a:hover { opacity: .75; }
.footer-social.social-icons {
  justify-self: center;
  gap: 12px;
}
.footer-social.social-icons a {
  width: 46px; height: 46px;
  border-color: var(--collection-title);
  color: var(--collection-title);
}
.footer-social.social-icons a:hover {
  background: var(--collection-title); color: var(--white); border-color: var(--collection-title);
}
.footer-social.social-icons svg { width: 18px; height: 18px; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.divider { width: 38px; height: 1.5px; background: var(--accent); margin: 16px auto; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── CAROUSEL ── */
.carousel-wrap {
  position: relative; overflow: hidden;
  max-width: 100%; padding: 0;
}
.carousel-track {
  display: flex; transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform; align-items: stretch;
}
.carousel-slide {
  flex: 0 0 calc(33.333% - 4px);
  margin-right: 6px; cursor: pointer; position: relative;
  overflow: hidden; background: #f0eeec;
}
.carousel-slide:last-child { margin-right: 0; }
.carousel-slide img {
  width: 100%; height: 440px; object-fit: cover;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.carousel-slide:hover img { transform: scale(1.04); }
.carousel-slide .gallery-caption {
  transform: translateY(100%); transition: transform .35s ease;
}
.carousel-slide:hover .gallery-caption { transform: translateY(0); }

/* arrows */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.92); border: 1px solid rgba(0,0,0,.1);
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  font-size: 1.3rem; color: var(--dark);
  box-shadow: 0 2px 14px rgba(0,0,0,.1);
  transition: background .2s, color .2s;
}
.carousel-btn:hover { background: var(--black); color: var(--white); }
.carousel-btn.carousel-prev { left: 14px; }
.carousel-btn.carousel-next { right: 14px; }
.carousel-btn:disabled { opacity: .3; pointer-events: none; }

/* dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 7px;
  padding: 20px 0 10px;
}
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pale); border: none; cursor: pointer;
  transition: background .2s, transform .2s; padding: 0;
}
.carousel-dot.active { background: var(--black); transform: scale(1.3); }

/* counter */
.carousel-counter {
  text-align: center; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mid); padding-bottom: 16px;
}

@media (max-width: 860px) {
  .carousel-slide { flex: 0 0 calc(50% - 3px); }
  .carousel-slide img { height: 320px; }
}
@media (max-width: 580px) {
  .carousel-slide { flex: 0 0 calc(100% - 0px); margin-right: 6px; }
  .carousel-slide img { height: 72vw; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
}

/* ── GALLERY INTRO (split: photo + text) ── */
.gallery-intro-outer {
  display: flex; justify-content: center;
  padding: 60px 40px;
  background: var(--white);
}
.gallery-intro-inner {
  max-width: 1100px; width: 100%;
}
/*
  Grid: 2 cols (photo | text), 2 rows
  Row 1 col 1 = empty   | Row 1 col 2 = eyebrow
  Row 2 col 1 = photo   | Row 2 col 2 = h2 + content
*/
.gallery-intro {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: auto auto;
  column-gap: 52px;
}
/* eyebrow: column 2, row 1 */
.gallery-intro-eyebrow {
  grid-column: 2; grid-row: 1;
  font-family: var(--font-b); font-size: .63rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent); padding-bottom: 18px;
}
/* photo: column 1, spans both rows */
.gallery-intro-photo {
  grid-column: 1; grid-row: 1 / 3;
  display: flex; align-items: flex-start;
}
.gallery-intro-photo img {
  height: 660px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: top left;
  display: block;
}
/* text: column 2, row 2 */
.gallery-intro-text {
  grid-column: 2; grid-row: 2;
  display: flex; flex-direction: column;
}
.gallery-intro-text h2 {
  font-family: var(--font-h); font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 400; font-style: italic; color: var(--black);
  margin-bottom: 10px; line-height: 1.2;
}
.gallery-intro-text p {
  font-size: .92rem; color: var(--mid); line-height: 1.9;
  margin-bottom: 14px;
}
.gallery-intro-divider {
  width: 36px; height: 1.5px; background: var(--accent); margin: 8px 0 24px;
}
/* italic closing line inside text column */
.gallery-intro-text .np-italic {
  font-style: italic;
  font-family: 'Lato', sans-serif !important;
  font-size: 18px !important;
  color: var(--dark);
  margin-top: 6px;
}

/* Gallery intro typography (all collection pages) */
.gallery-intro-text h2 {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  color: var(--collection-title);
}
.gallery-intro-text p,
.gallery-intro-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}
.gallery-intro-eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Intro compacte : eyebrow + titre + texte sans espace (Intuitive, Landscapes, Flows) */
.gallery-intro-stacked {
  grid-template-rows: auto;
  align-items: start;
}
.gallery-intro-stacked .gallery-intro-photo {
  grid-column: 1;
  grid-row: 1;
}
.gallery-intro-stacked .gallery-intro-text {
  grid-column: 2;
  grid-row: 1;
}
.gallery-intro-stacked .gallery-intro-eyebrow {
  grid-column: auto;
  grid-row: auto;
  padding-bottom: 0;
  margin-bottom: 18px;
}
.gallery-intro-stacked .gallery-intro-text h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.gallery-intro-stacked .gallery-intro-divider {
  margin: 6px 0 12px;
}

/* ── SINGLE IMAGE VIEWER + THUMBNAILS ── */
.sv-wrap {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

/* main stage */
.sv-stage {
  position: relative; width: 100%; overflow: hidden;
  background: var(--photo-bg);
}
.sv-stage-track {
  display: flex; transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.sv-stage-slide {
  flex: 0 0 100%; display: flex; justify-content: center; align-items: center;
  min-height: 500px; padding: 20px;
}
.sv-stage-slide img {
  max-width: 100%; max-height: 68vh;
  object-fit: contain; display: block;
  box-shadow: 0 8px 48px rgba(0,0,0,.12);
}
.sv-stage-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.88); border: 1px solid rgba(0,0,0,.1);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--dark); cursor: pointer; z-index: 5;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.sv-stage-btn:hover { background: var(--black); color: var(--white); }
.sv-stage-btn.sv-prev { left: 14px; }
.sv-stage-btn.sv-next { right: 14px; }
.sv-stage-btn:disabled { opacity: .25; pointer-events: none; }

/* caption below stage */
.sv-caption {
  text-align: center; padding: 20px 20px 10px;
  min-height: 60px;
}
.sv-caption h3 {
  font-family: var(--font-h); font-size: 1.15rem; font-style: italic;
  font-weight: 400; color: var(--black); margin-bottom: 4px;
}
.sv-caption p { font-size: .78rem; color: var(--mid); letter-spacing: .05em; }
.sv-caption .sold-tag { margin-top: 6px; }

/* thumbnail strip */
.sv-thumbs-outer {
  width: 100%; overflow: hidden; position: relative;
  padding: 16px 50px; border-top: 1px solid var(--pale);
  background: var(--white);
}
.sv-thumbs-track {
  display: flex; gap: 8px;
  transition: transform .35s ease; width: max-content;
}
.sv-thumb {
  flex: 0 0 78px; height: 78px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color .2s, opacity .2s;
  opacity: .55;
}
.sv-thumb:hover { opacity: .85; }
.sv-thumb.active { border-color: var(--black); opacity: 1; }
.sv-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sv-thumb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--white); border: 1px solid var(--pale);
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--dark); cursor: pointer; z-index: 5;
  transition: background .2s;
}
.sv-thumb-btn:hover { background: var(--black); color: var(--white); }
.sv-thumb-prev { left: 6px; }
.sv-thumb-next { right: 6px; }
.sv-thumb-btn:disabled { opacity: .2; pointer-events: none; }

@media (max-width: 860px) {
  .gallery-intro-outer { padding: 40px 20px; }
  .gallery-intro { grid-template-columns: 1fr; }
  .gallery-intro-eyebrow { grid-column: 1; grid-row: 1; }
  .gallery-intro-photo { grid-column: 1; grid-row: 3; }
  .gallery-intro-text  { grid-column: 1; grid-row: 2; }
  .gallery-intro-photo img { height: 260px; width: auto; }
  .gallery-intro-footer { grid-template-columns: 1fr; }
  .gallery-intro-footer p { grid-column: 1; }
  .sv-stage-slide { min-height: 300px; padding: 10px; }
  .sv-stage-slide img { max-height: 55vw; }
  .sv-thumb { flex: 0 0 60px; height: 60px; }
  .sv-thumbs-outer { padding: 12px 42px; }
}
@media (max-width: 580px) {
  .gallery-intro-text h2 { font-size: 1.4rem; }
  .sv-thumb { flex: 0 0 50px; height: 50px; }
  .sv-stage-slide img { max-height: 70vw; }
}

/* ─────── RESPONSIVE ─────── */
@media (max-width: 1024px) {
  .bio-content { padding: 50px 40px; }
  .contact-layout { gap: 50px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .home-banner { min-height: 587px; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-photo img { min-height: 320px; max-height: 50vh; }
  .bio-content { padding: 40px 30px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .shop-filters { justify-content: stretch; }
  .shop-filter { min-width: 0; flex: 1 1 200px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.g4 { grid-template-columns: repeat(2, 1fr); }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
  .home-newsletter .newsletter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .home-newsletter .nl-form { width: 100%; }
  .home-newsletter .nl-form input[type=email] { width: auto; flex: 1; }
}
@media (max-width: 580px) {
  :root { --nav-h: 62px; }
  .site-nav { padding: 0 20px; }
  .section { padding: 50px 20px; }
  .section-sm { padding: 36px 20px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 4px; }
  .gallery-grid.g2 { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .nl-form input[type=email] { border-right: 1px solid var(--pale); border-bottom: none; }
  .site-footer { padding: 12px 16px; }
  .footer-bottom {
    grid-template-columns: auto auto auto;
    gap: 10px;
    font-size: .58rem;
  }
  .footer-email { font-size: calc(.58rem + 5pt); }
  .footer-social.social-icons a { width: 38px; height: 38px; }
  .footer-social.social-icons svg { width: 15px; height: 15px; }
  .expo-item { grid-template-columns: 1fr; gap: 12px; }
  .expo-gallery { column-count: 1; max-width: 520px; }
  .expo-videos { grid-template-columns: 1fr; max-width: 520px; }
  .expo-section-videos { padding-top: 48px; padding-bottom: 48px; margin-top: 8px; }
  .expo-video--ig iframe { min-height: 480px; }
}
