/* =============================================
   2Mphoto — Style Global
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- Variables ---- */
:root {
  --bg:         #0b0d12;
  --bg2:        #0f121a;
  --txt:        #f4f5f7;
  --muted:      rgba(244,245,247,.68);
  --line:       rgba(255,255,255,.11);
  --card:       rgba(255,255,255,.055);
  --card2:      rgba(255,255,255,.10);
  --shadow:     0 22px 60px rgba(0,0,0,.55);
  --r:          18px;
  /* Accent champagne / or chaud */
  --accent:     #c8a97e;
  --accent-dim: rgba(200,169,126,.13);
  --accent-mid: rgba(200,169,126,.28);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Titres en serif élégant */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}
h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
}

a     { color: inherit }
.muted { color: var(--muted) }
.small { font-size: 13px }

/* ---- Layout ---- */
.container  { width: min(1120px, 92vw); margin: 0 auto }
.section    { padding: 96px 0 }
.section--dark { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%) }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0;
  line-height: 1.08;
}
/* Trait accent sous les titres */
.section-head h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  margin-top: 14px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.65;
  font-size: 15.5px;
}

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11,13,18,.75);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0;
}

.brand { display: flex; align-items: baseline; gap: 8px; text-decoration: none }
.brand-mark {
  width: 34px; height: 34px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 900;
  font-size: 12.5px;
  color: var(--accent);
  letter-spacing: .5px;
}
.brand-text {
  font-weight: 700;
  letter-spacing: .2px;
}

/* Navigation principale */
.site-nav { position: relative }
.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 18px;
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: rgba(244,245,247,.80);
  font-weight: 500;
  font-size: 14.5px;
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff }

.nav-toggle {
  display: none;
  width: 44px; height: 40px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  margin: 4px auto;
  background: rgba(244,245,247,.9);
  border-radius: 99px;
}

/* ---- Boutons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(200,169,126,.24);
  background: var(--accent-dim);
  color: var(--txt);
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: scale(1.03);
  background: var(--accent-mid);
  border-color: rgba(200,169,126,.42);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.28);
}
.btn--small { padding: 9px 14px; font-size: 13.5px }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
}
.hero--sm { min-height: 58vh }

.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.08) 48%, rgba(0,0,0,.72)),
    url("../img/hero.jpg") center / cover no-repeat;
}
.hero-inner {
  position: relative;
  padding: 150px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-text {
  margin-right: 14vw;
}

.kicker {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,126,.28);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.01;
  max-width: 840px;
  letter-spacing: -.4px;
}
.lead {
  margin: 0 0 30px;
  max-width: 660px;
  color: rgba(244,245,247,.78);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
}
.hero-cta  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap }
.badge {
  padding: 9px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(244,245,247,.78);
  font-size: 13.5px;
}

/* ---- Grid & Cards ---- */
.grid   { display: grid; gap: 16px }
.grid-4 { grid-template-columns: repeat(4, 1fr) }

.card {
  text-decoration: none;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .26s ease, background .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.card:hover {
  transform: translateY(-7px);
  background: var(--card2);
  border-color: rgba(200,169,126,.22);
  box-shadow: 0 32px 72px rgba(0,0,0,.65);
}
.card .card-img-wrap {
  overflow: hidden;
}
.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.card:hover img { transform: scale(1.06) }
.card-body  { padding: 16px 18px }
.card-body h3 { margin: 0 0 6px; font-size: 16px; font-weight: 700 }
.card-body p  { margin: 0 0 10px; color: var(--muted); font-size: 14px; line-height: 1.55 }
.card-link    { font-weight: 800; font-size: 13.5px; color: var(--accent) }

/* ---- Split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 68vh;
  width: min(1120px, 92vw);
  margin: 0 auto;
  border-radius: var(--r);
  overflow: hidden;
}
/* Fix essentiel : empêche les colonnes de gonfler au-delà de leur 1fr */
.split > * { min-width: 0; }

.split-media {
  position: relative;
  overflow: hidden;
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 25% center;
  display: block;
  transition: transform .9s ease;
}
.split:hover .split-media img { transform: scale(1.03) }
.split-content {
  display: flex; align-items: center;
  overflow: hidden; /* contient les enfants potentiellement larges */
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  padding: 60px 10vw 60px 4vw;
}
/* Le .container ici doit rester dans la colonne, pas s'étaler sur le viewport */
.split-content > .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.split-content h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 38px);
}
.split-content p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 22px;
}
ul.ticks {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex; flex-direction: column; gap: 11px;
}
ul.ticks li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  color: rgba(244,245,247,.85);
  line-height: 1.55;
  font-size: 15px;
}
ul.ticks li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---- Galerie Masonry ---- */
.masonry {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  grid-template-rows: 320px 265px; /* hauteurs définies sur la grille, pas sur les images */
  gap: 16px;
}
.masonry img {
  width: 100%; height: 100%; /* remplit exactement sa cellule, sans débord */
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  display: block;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.masonry img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,.65);
  border-color: rgba(200,169,126,.24);
}

/* ---- Steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 20px 18px;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.step:hover {
  transform: translateY(-4px);
  background: var(--card2);
  border-color: rgba(200,169,126,.18);
}
.step-n {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,126,.28);
  font-weight: 900;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 6px; font-size: 15px; font-weight: 700 }
.step p  { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px }

/* ---- Pricing ---- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 24px 22px;
  transition: transform .22s ease;
}
.price-card:hover { transform: translateY(-4px) }
.price-card--featured {
  background: rgba(200,169,126,.07);
  border-color: rgba(200,169,126,.26);
  box-shadow: 0 0 0 1px rgba(200,169,126,.10), var(--shadow);
}
.pill {
  position: absolute; top: 14px; right: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b0d12;
  font-weight: 800; font-size: 12px;
  letter-spacing: .2px;
}
.price-card h3 { margin: 0 0 12px; font-size: 18px; font-weight: 700 }
.price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card ul {
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
  color: rgba(244,245,247,.84);
}
.price-card li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px; line-height: 1.5;
}
.price-card li::before {
  content: "–";
  position: absolute; left: 0;
  color: var(--accent);
}

/* ---- Contact ---- */
.contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}
.form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 26px;
}
.form label {
  display: block;
  font-weight: 600; font-size: 14px;
  margin-bottom: 12px;
  color: rgba(244,245,247,.88);
}
.form input,
.form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  color: var(--txt);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  outline: none;
  resize: vertical;
  transition: border-color .2s ease;
}
.form input:focus,
.form textarea:focus { border-color: rgba(200,169,126,.45) }
.form-submit-row { display: flex; align-items: center; gap: 14px; margin-top: 4px; flex-wrap: wrap }
.form-status      { font-size: 13.5px; color: var(--muted) }
.form-status.success { color: #7ecba1 }
.form-status.error   { color: #e07c7c }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }

.contact-side { display: flex; flex-direction: column; gap: 14px }
.contact-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 20px;
}
.contact-box h3 { margin: 0 0 8px; font-size: 15px; font-weight: 700 }
.contact-box p  { margin: 0; line-height: 1.65; font-size: 14px; color: var(--muted) }
.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-links a {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .15s ease;
}
.social-links a:hover { opacity: .75 }

/* ---- Footer ---- */
.footer {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

/* =============================================
   Animations Scroll (Intersection Observer)
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .70s ease, transform .70s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: .10s }
.reveal-d2 { transition-delay: .20s }
.reveal-d3 { transition-delay: .30s }
.reveal-d4 { transition-delay: .40s }

/* =============================================
   Lightbox
   ============================================= */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lb-img {
  max-width: min(90vw, 1300px);
  max-height: 84vh;
  border-radius: 16px;
  box-shadow: 0 32px 90px rgba(0,0,0,.85);
  object-fit: contain;
  user-select: none;
}
.lb-close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.45);
  color: var(--txt);
  font-size: 18px; cursor: pointer;
  display: grid; place-items: center;
  backdrop-filter: blur(10px);
  transition: background .18s;
}
.lb-close:hover { background: rgba(0,0,0,.65) }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.38);
  color: var(--txt);
  font-size: 26px; cursor: pointer;
  display: grid; place-items: center;
  backdrop-filter: blur(10px);
  transition: background .18s, transform .18s;
}
.lb-prev { left: 18px }
.lb-next { right: 18px }
.lb-prev:hover { background: rgba(0,0,0,.60); transform: translateY(-50%) scale(1.08) }
.lb-next:hover { background: rgba(0,0,0,.60); transform: translateY(-50%) scale(1.08) }
.lb-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  font-size: 13px; color: rgba(244,245,247,.78);
  white-space: nowrap;
}

/* =============================================
   Viewer Galerie (pages/viewer.html)
   ============================================= */
.viewer-stage {
  width: 100%;
  min-height: calc(100vh - 62px);
  display: grid;
  place-items: center;
  padding: 20px 0;
  background: var(--bg);
}
.viewer {
  position: relative;
  width: min(1100px, 92vw);
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--r) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
}
.v-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .55s ease, transform 1.6s ease;
  will-change: opacity, transform;
}
.v-img.is-active { opacity: 1; transform: scale(1) }
.viewer::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.06) 45%, rgba(0,0,0,.52));
  pointer-events: none; z-index: 1;
}
/* Topbar du viewer */
.v-topbar {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; z-index: 10;
}
.v-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 999px;
  background: rgba(11,13,18,.62);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: rgba(244,245,247,.92);
  font-weight: 700; font-size: 15px;
}
.v-chip span { color: var(--muted); font-weight: 500; font-size: 13px }
/* Flèches navigation */
.v-arrows {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px; z-index: 10;
  pointer-events: none;
}
.v-arrows button {
  pointer-events: auto;
  width: 46px; height: 46px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.32);
  color: var(--txt); cursor: pointer;
  display: grid; place-items: center;
  font-size: 24px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.v-arrows button:hover {
  transform: scale(1.10);
  background: rgba(0,0,0,.52);
  border-color: rgba(255,255,255,.30);
}
/* Hint swipe */
.v-hint {
  position: absolute; bottom: 90px; left: 16px;
  z-index: 10;
  color: rgba(244,245,247,.68);
  font-size: 12px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  padding: 7px 12px; border-radius: 999px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: opacity .6s ease;
}
.v-hint.is-hidden { opacity: 0; pointer-events: none }
/* Miniatures */
.v-thumbs {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  z-index: 10;
  display: flex; gap: 10px;
  overflow-x: auto; overflow-y: hidden;
  padding: 10px;
  border-radius: var(--r);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  scrollbar-width: thin;
}
.v-thumbs::-webkit-scrollbar { height: 3px }
.v-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.22); border-radius: 999px }
.v-thumb {
  flex: 0 0 auto;
  width: 90px; height: 56px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  cursor: pointer; opacity: .60;
  transition: transform .16s ease, opacity .16s ease, border-color .16s ease;
}
.v-thumb:hover { transform: scale(1.07); opacity: .88 }
.v-thumb.is-active { opacity: 1; border-color: var(--accent) }
.v-thumb img { width: 100%; height: 100%; object-fit: cover; display: block }

/* =============================================
   Responsive
   ============================================= */

/* Tablet */
@media (max-width: 980px) {
  .section    { padding: 72px 0 }
  .grid-4     { grid-template-columns: 1fr 1fr }
  .steps      { grid-template-columns: 1fr 1fr }
  .pricing    { grid-template-columns: 1fr }
  .split      { grid-template-columns: 1fr }
  .split-media { height: 52vh }
  .split-media img { object-position: center top }
  .split-content { padding: 50px 28px }
  .contact    { grid-template-columns: 1fr }
  .row        { grid-template-columns: 1fr 1fr }
}

/* Mobile Nav */
@media (max-width: 720px) {
  .nav-toggle { display: inline-block }
  .nav-links {
    position: absolute; right: 0; top: 54px;
    flex-direction: column; align-items: stretch;
    background: rgba(11,13,18,.96);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 12px;
    width: min(320px, 88vw);
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex }
  .nav-links a { padding: 11px 12px; border-radius: 12px; font-size: 15px }
  .nav-links a:hover { background: rgba(255,255,255,.06) }
  /* Viewer */
  .viewer-stage { min-height: calc(100vh - 58px); padding: 12px 0 }
  .v-arrows button { width: 42px; height: 42px; font-size: 20px }
  .v-thumb   { width: 78px; height: 50px }
  .v-chip    { font-size: 13px; padding: 8px 12px }
}

/* Small mobile */
@media (max-width: 640px) {
  .section    { padding: 56px 0 }
  .grid-4     { grid-template-columns: 1fr }
  .steps      { grid-template-columns: 1fr }
  .masonry {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .masonry img { height: 280px }
  .row        { grid-template-columns: 1fr }
  .hero-inner { padding: 64px 0 72px }
  .hero h1    { font-size: clamp(36px, 8.5vw, 48px) }
  .lead       { font-size: 16px }
  .hero-badges { gap: 8px }
  .badge      { font-size: 13px; padding: 8px 12px }
  .lb-prev    { left: 10px }
  .lb-next    { right: 10px }
}
