:root {
  /* Couleurs */
  --bg:           #f4efe6;
  --bg-hero:      #f1ebde;
  --bg-alt:       #ece3d4;
  --surface:      #fbf8f2;
  --surface-2:    #fffdf9;
  --text:         #2e2925;
  --text-body:    #46403a;
  --text-muted:   #6f675d;
  --label:        #8a7a6c;
  --accent:       #8a2c57;
  --accent-dark:  #5f1f43;
  --accent-light: #f0bcd3;
  --text-on-accent: #f6ece6;
  --footer-bg:    #2a2521;
  --footer-text:  #e8e0d2;
  --footer-muted: #8a7f6c;
  --footer-hover: #c98aa8;
  --gold:         #a89a80;

  /* Typographie */
  --font-heading: 'Spectral', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --font-mono:    'Spline Sans Mono', monospace;

  /* Border-radius asymétriques (signature visuelle) */
  --radius-btn:   22px 4px 22px 4px;
  --radius-badge: 14px 3px 14px 3px;
  --radius-input: 11px 3px 11px 3px;
  --radius-card:  20px 5px 20px 5px;

  /* Ombres */
  --shadow-card:  0 30px 60px -40px rgba(46,41,37,0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
::selection { background: var(--accent); color: #f6f1e8; }

body {
  font-family: var(--font-body);
  color: #3a352f;
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
a, button, .tile { -webkit-tap-highlight-color: transparent; }

/* Textes de lecture justifiés et propres (césure auto) */
.pratique-body p, .page-head p, .faq-a-inner p, .resa-aside .intro {
  text-align: justify; hyphens: auto;
}

.container { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ============ NAVIGATION ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,239,230,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,41,37,0.08);
}
.site-nav {
  max-width: 1240px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px 32px; flex-wrap: wrap;
}
.brand { display: flex; align-items: baseline; gap: 8px; text-decoration: none; }
.brand-saje { font-family: var(--font-heading); font-size: 25px; letter-spacing: 0.5px; color: var(--text); }
.brand-tattoo { font-family: var(--font-heading); font-style: italic; font-size: 25px; color: var(--accent); margin-left: 2px; }

.nav-center { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.nav-link {
  position: relative;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text);
  text-decoration: none; transition: color .2s;
}
.nav-link:hover { color: var(--accent); }
.nav-underline { display: block; height: 1.5px; background: var(--accent); margin-top: 5px; }

.nav-social { display: flex; align-items: center; gap: 18px; }
.nav-social a {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color .2s;
}
.nav-social a:hover { color: var(--accent); }
.nav-dot { width: 3px; height: 3px; border-radius: 50%; background: #c4b49a; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--text); transition: .3s; }

/* ============ COMPOSANTS ============ */
.badge {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
  background: rgba(138,44,87,0.08); border: 1px solid rgba(138,44,87,0.3);
  padding: 9px 18px; border-radius: var(--radius-badge);
}

.btn {
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius-btn); transition: filter .25s, transform .25s, background .25s, color .25s;
}
.btn-primary { background: var(--accent); color: #f6f1e8; border: none; padding: 16px 34px; }
.btn-primary:hover { filter: brightness(0.88); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); padding: 15px 33px; }
.btn-outline:hover { background: var(--accent); color: #f6f1e8; }
.btn-block { width: 100%; padding: 18px 40px; }

/* ============ HERO (ACCUEIL) ============ */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(560px, 90vh, 840px);
  display: flex; align-items: center; justify-content: center;
  padding: 96px 24px; background: var(--bg-hero);
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg:not(.placeholder) { opacity: 0.22; }
.hero-bg.placeholder {
  background: repeating-linear-gradient(45deg,#e7ddc9,#e7ddc9 16px,#efe7d6 16px,#efe7d6 32px);
  display: flex; align-items: center; justify-content: center;
}
.hero-bg.placeholder span {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); background: rgba(244,239,230,0.7); padding: 8px 16px; border-radius: 999px;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(244,239,230,0.55) 0%, rgba(244,239,230,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1240px; width: 100%;
  display: flex; flex-direction: column; gap: 26px;
  align-items: flex-start; text-align: left;
}
.hero h1 {
  margin: 0; font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(42px,7vw,86px); line-height: 1.02; letter-spacing: -0.5px; color: var(--text);
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p {
  margin: 0; max-width: 560px; font-family: var(--font-body); font-weight: 400;
  font-size: clamp(16px,1.7vw,19px); line-height: 1.7; color: #4a443d;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; justify-content: flex-start; }

/* ============ SECTION PRATIQUE ============ */
.pratique {
  max-width: 1240px; margin: 0 auto; padding: clamp(72px,11vw,140px) 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: clamp(40px,6vw,80px); align-items: start;
}
.pratique-aside { position: static; }
.pratique-aside h2 {
  margin: 14px 0 0; font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(34px,4.6vw,58px); line-height: 1.04; color: var(--accent);
}
.pratique-visual {
  margin-top: 36px; border-radius: 6px; overflow: hidden;
  height: clamp(340px, 40vw, 480px);
  background: repeating-linear-gradient(135deg,#e7ddc9,#e7ddc9 13px,#efe7d6 13px,#efe7d6 26px);
  display: flex; align-items: center; justify-content: center;
}
.pratique-visual img { width: 100%; height: 100%; object-fit: cover; }
.pratique-visual .ph {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.pratique-body { display: flex; flex-direction: column; gap: 22px; }
.pratique-body p {
  margin: 0; font-family: var(--font-body); font-weight: 400;
  font-size: clamp(15px,1.5vw,18px); line-height: 1.85; color: var(--text-body);
}
.pratique-body p em { font-style: italic; }
.pratique-body .flash {
  padding: 18px 22px; border-left: 2px solid var(--accent); background: var(--surface);
  font-size: clamp(14px,1.4vw,16px); line-height: 1.75; color: #5c554c; font-style: italic;
}
.pratique-body .accroche {
  font-family: var(--font-heading); font-size: clamp(20px,2.4vw,28px); line-height: 1.4; color: var(--text);
}

/* ============ TEASER PORTFOLIO ============ */
.teaser { background: var(--bg-alt); padding: clamp(64px,9vw,120px) 24px; }
.teaser-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.teaser-head h2 { margin: 12px 0 0; font-family: var(--font-heading); font-weight: 600; font-size: clamp(30px,4vw,48px); color: var(--text); }
.teaser-link {
  font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 4px; white-space: nowrap;
}
.teaser-link:hover { filter: brightness(0.8); }
.teaser-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,220px),1fr)); gap: 16px;
}

/* ============ PORTFOLIO ============ */
.page-head { max-width: 640px; }
.page-head h1 {
  margin: 14px 0 18px; font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(40px,6vw,72px); line-height: 1.02; color: var(--accent);
}
.page-head p {
  margin: 0; font-family: var(--font-body); font-weight: 400;
  font-size: clamp(15px,1.5vw,18px); line-height: 1.7; color: #4a443d;
}
.portfolio-section { max-width: 1240px; margin: 0 auto; padding: clamp(56px,8vw,96px) 24px clamp(80px,11vw,140px); }
.portfolio-section .page-head { margin-bottom: clamp(40px,6vw,72px); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 265px; grid-auto-flow: dense; gap: 16px;
}
@media (max-width: 1000px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
.tile {
  position: relative; margin: 0; border-radius: 6px; overflow: hidden; cursor: pointer;
  background: repeating-linear-gradient(135deg,#ddd0b8,#ddd0b8 13px,#e7ddc9 13px,#e7ddc9 26px);
}
.tile.featured { grid-column: span 2; grid-row: span 2; }
/* Mises en avant en quinconce : une sur deux calée à droite (desktop) */
@media (min-width: 1001px) { .tile.featured.featured-right { grid-column: 3 / span 2; } }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.tile:hover img { transform: scale(1.06); }
.tile .tile-ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #9b8c74;
}
.tile-badge {
  position: absolute; top: 12px; left: 12px; background: var(--accent); color: #f6f1e8;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.tile-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 16px 14px;
  background: linear-gradient(transparent, rgba(46,41,37,0.5));
  display: flex; justify-content: space-between; align-items: flex-end; gap: 10px;
}
.tile-caption .t-title { font-family: var(--font-heading); color: #f6f1e8; font-size: 16px; line-height: 1.2; }
.tile-caption .t-date { font-family: var(--font-body); color: rgba(246,241,232,0.82); font-size: 11px; letter-spacing: 0.06em; white-space: nowrap; }

.cta-block { text-align: center; margin-top: clamp(56px,8vw,88px); }
.cta-block .cta-line {
  margin: 0 0 22px; font-family: var(--font-heading); font-style: italic;
  font-size: clamp(22px,3vw,32px); color: var(--text);
}

/* ============ RÉSERVATION ============ */
.resa-section {
  max-width: 1240px; margin: 0 auto;
  padding: clamp(48px,7vw,88px) 24px clamp(80px,11vw,140px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,330px),1fr));
  gap: clamp(28px,4vw,56px); align-items: start;
}
.resa-aside {
  position: static; align-self: start; overflow: hidden;
  border-radius: 24px 6px 24px 6px;
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #f6ece6; padding: clamp(32px,4vw,48px);
}
.resa-aside .inner { position: relative; }
.resa-aside .badge { color: #f1cdde; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); font-size: 13px; padding: 8px 16px; border-radius: 12px 3px 12px 3px; }
.resa-aside h1 {
  margin: 20px 0 16px; font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(38px,4.8vw,60px); line-height: 1.02; color: #fdf6f1;
}
.resa-aside h1 em { font-style: italic; color: var(--accent-light); }
.resa-aside .intro { margin: 0 0 34px; font-size: clamp(16px,1.6vw,19px); line-height: 1.75; color: rgba(246,236,230,0.88); }
.resa-steps { display: flex; flex-direction: column; gap: 22px; }
.resa-step { display: flex; gap: 16px; align-items: flex-start; }
.resa-step .num { font-family: var(--font-heading); font-style: italic; font-size: 27px; line-height: 1; color: var(--accent-light); flex: none; }
.resa-step .st-title { font-weight: 500; font-size: 16.5px; color: #fdf6f1; }
.resa-step .st-sub { font-size: 14px; color: rgba(246,236,230,0.75); margin-top: 3px; }
.resa-foot {
  margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(246,236,230,0.75);
}
.resa-form-col { min-width: 0; }

/* Carte formulaire */
.form-card {
  display: flex; flex-direction: column; gap: 30px;
  background: var(--surface-2); border: 1px solid rgba(46,41,37,0.08);
  border-radius: var(--radius-card); padding: clamp(26px,4vw,44px); box-shadow: var(--shadow-card);
}
.form-group { display: flex; flex-direction: column; gap: 20px; }
.form-group-head { display: flex; align-items: center; gap: 14px; }
.form-group-head .step-num {
  width: 36px; height: 36px; flex: none; display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #f6f1e8; font-family: var(--font-mono); font-size: 13px; border-radius: var(--radius-input);
}
.form-group-head .step-label { font-family: var(--font-heading); font-weight: 600; font-size: clamp(20px,2.4vw,26px); color: var(--text); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field > span {
  font-family: var(--font-body); font-weight: 500; font-size: 12px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--label);
}
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(46,41,37,0.16); border-radius: var(--radius-input);
  background: #fff; padding: 13px 15px; font-family: var(--font-body); font-size: 16px; color: var(--text);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.field textarea { border-radius: 14px 4px 14px 4px; padding: 15px; resize: vertical; }
.field select { cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(138,44,87,0.12);
}
.form-divider { height: 1px; background: rgba(46,41,37,0.08); }

/* Zone de dépôt fichiers */
.dropzone {
  border: 1.5px dashed rgba(138,44,87,0.4); border-radius: 14px 4px 14px 4px;
  padding: 34px 20px; text-align: center; background: #faf5f0; cursor: pointer;
  transition: border-color .25s, background .25s;
}
.dropzone:hover, .dropzone.dragover { border-color: var(--accent); background: #f6ece4; }
.dropzone .dz-icon {
  width: 46px; height: 46px; border-radius: 13px 3px 13px 3px; background: var(--accent); color: #f6f1e8;
  margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.dropzone .dz-text { font-family: var(--font-body); font-size: 15px; color: #4a443d; }
.dropzone .dz-text u { color: var(--accent); }
.dropzone .dz-hint { font-family: var(--font-mono); font-size: 11px; color: #9c9488; margin-top: 8px; }
.dz-files { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.dz-file { font-family: var(--font-mono); font-size: 12px; color: var(--text-body); display: flex; align-items: center; gap: 8px; }

/* État succès */
.success-card {
  background: var(--surface-2); border: 1px solid rgba(138,44,87,0.2); border-radius: var(--radius-card);
  padding: clamp(36px,6vw,64px); text-align: center; box-shadow: var(--shadow-card);
}
.success-card .check {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 16px 4px 16px 4px;
  background: var(--accent); color: #f6f1e8; display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.success-card .title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(28px,4vw,40px); color: var(--accent); margin-bottom: 12px; }
.success-card p { margin: 0 auto; max-width: 440px; font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: #4a443d; }

.form-error {
  background: rgba(138,44,87,0.07); border: 1px solid rgba(138,44,87,0.3); border-radius: var(--radius-input);
  padding: 14px 18px; font-size: 14px; color: var(--accent-dark);
}
.form-error ul { margin: 6px 0 0; padding-left: 18px; }

/* ============ FAQ ============ */
.faq-section { max-width: 820px; margin: 0 auto; padding: clamp(56px,8vw,96px) 24px clamp(80px,11vw,140px); }
.faq-section .page-head { margin-bottom: clamp(40px,6vw,64px); }
.faq-list { border-top: 1px solid rgba(46,41,37,0.12); }
.faq-item { border-bottom: 1px solid rgba(46,41,37,0.12); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: transparent; border: none; cursor: pointer; padding: 24px 4px; text-align: left;
}
.faq-q .q-text { font-family: var(--font-heading); font-size: clamp(18px,2.4vw,24px); color: var(--text); line-height: 1.3; }
.faq-q .q-chev {
  font-family: var(--font-body); font-weight: 300; font-size: 28px; line-height: 1; color: var(--accent);
  transition: transform .3s ease; flex: none;
}
.faq-item.open .q-chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 4px 28px; }
.faq-a-inner p { margin: 0; max-width: 640px; font-family: var(--font-body); font-size: clamp(15px,1.5vw,17px); line-height: 1.8; color: #4a443d; }

/* Contact FAQ */
.faq-contact {
  margin-top: clamp(56px,8vw,88px); background: var(--bg-alt); border-radius: 8px; padding: clamp(28px,5vw,52px);
}
.faq-contact h2 { margin: 0 0 8px; font-family: var(--font-heading); font-weight: 600; font-size: clamp(26px,3.4vw,40px); color: var(--accent); }
.faq-contact > p { margin: 0 0 28px; font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: #4a443d; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.contact-form input, .contact-form textarea {
  border: none; border-bottom: 1px solid rgba(46,41,37,0.25); background: transparent; padding: 12px 2px;
  font-family: var(--font-body); font-size: 16px; color: var(--text); outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--accent); }
.contact-success {
  background: var(--surface); border: 1px solid rgba(138,44,87,0.25); border-radius: 6px; padding: 32px; text-align: center;
}
.contact-success .title { font-family: var(--font-heading); font-size: 26px; color: var(--accent); margin-bottom: 8px; }
.contact-success p { margin: 0; font-family: var(--font-body); font-size: 15px; color: #4a443d; }

/* ============ FOOTER ============ */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: clamp(56px,8vw,88px) 24px 40px; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 40px; }
.footer-brand { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.footer-saje { font-family: var(--font-heading); font-size: 26px; color: #f6f1e8; }
.footer-tattoo { font-family: var(--font-heading); font-style: italic; font-size: 26px; color: var(--footer-hover); }
.footer-baseline { margin: 0; max-width: 300px; font-family: var(--font-body); font-size: 14px; line-height: 1.7; color: #b3a995; }
.footer-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--footer-muted); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: var(--font-body); font-size: 14px; color: var(--footer-text); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--footer-hover); }
.footer-bottom {
  max-width: 1240px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom span { font-family: var(--font-body); font-size: 12px; color: var(--footer-muted); }

/* ============ RESPONSIVE ============ */
/* Blocs non collants sous 820px (sinon ils glissent sur le texte) */
@media (max-width: 820px) {
  .pratique-aside, .resa-aside { position: static; top: auto; }
}

@media (max-width: 720px) {
  .site-nav { padding: 12px 20px; gap: 8px 16px; justify-content: center; }
  .nav-center {
    order: 2; width: 100%; justify-content: center; gap: 14px 20px; flex-wrap: wrap;
    padding-top: 10px; border-top: 1px solid rgba(46,41,37,0.08);
  }
  .nav-link { font-size: 12.5px; letter-spacing: 0.12em; }
  .brand { margin: 0 auto; }

  /* Hero centré sur mobile (aligné à gauche seulement sur PC) */
  .hero-content { align-items: center; text-align: center; }
  .hero-actions { justify-content: center; }

  /* Footer simplifié et compact */
  .site-footer { padding: 38px 20px 24px; }
  .footer-grid { gap: 24px; text-align: center; }
  .footer-grid > div:nth-child(2) { display: none; } /* colonne Navigation (déjà dans le menu du haut) */
  .footer-brand { justify-content: center; }
  .footer-baseline { max-width: none; margin: 0 auto; font-size: 13px; }
  .footer-label { margin-bottom: 12px; }
  .footer-links { align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; margin-top: 26px; padding-top: 18px; }
}

/* ============ LIGHTBOX ============ */
.lb-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(29,25,22,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease;
  padding: 24px;
}
.lb-overlay.open { opacity: 1; visibility: visible; }
.lb-figure { position: relative; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-img {
  max-width: 92vw; max-height: 82vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  transform: scale(.96); transition: transform .3s ease;
}
.lb-overlay.open .lb-img { transform: scale(1); }
.lb-caption { font-family: var(--font-body); font-size: 14px; color: rgba(246,241,232,0.85); text-align: center; }
.lb-counter { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: rgba(246,241,232,0.6); }
.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 210;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(246,241,232,0.14); border: 1px solid rgba(246,241,232,0.3);
  color: #f6f1e8; font-size: 28px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; backdrop-filter: blur(4px);
  -webkit-tap-highlight-color: transparent; outline: none; -webkit-appearance: none; appearance: none;
}
.lb-btn:hover { background: rgba(246,241,232,0.28); transform: translateY(-50%) scale(1.08); }
.lb-btn:focus-visible { border-color: rgba(246,241,232,0.7); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close {
  position: fixed; top: 22px; right: 26px; z-index: 230;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(29,25,22,0.55); border: 1px solid rgba(246,241,232,0.35);
  color: #f6f1e8; font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
  -webkit-tap-highlight-color: transparent; outline: none; -webkit-appearance: none; appearance: none;
  backdrop-filter: blur(4px);
}
.lb-close:hover { background: rgba(246,241,232,0.24); }
@media (max-width: 820px) {
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 46px; height: 46px; font-size: 24px; background: rgba(29,25,22,0.55); }
}
