/* =========================================================
   AxessLed — Feuille de style
   ========================================================= */
:root {
  --blue: #1a56ff;
  --cyan: #00d4ff;
  --dark: #0b1020;
  --dark-2: #121935;
  --ink: #11162a;
  --muted: #5b6478;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --border: #e6e9f2;
  --radius: 16px;
  --maxw: 1160px;
  --shadow: 0 18px 50px -20px rgba(16, 22, 60, 0.25);
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: "Space Grotesk", var(--font-sans);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--bg);
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; }
.grad {
  background: linear-gradient(100deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(100deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 10px 30px -10px rgba(26, 86, 255, 0.6);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(26, 86, 255, 0.7); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-small { padding: 10px 18px; font-size: 0.92rem; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.35rem; }
.logo-text strong { color: var(--blue); }
.logo-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 4px 14px -4px rgba(26, 86, 255, 0.7);
}
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a { font-weight: 500; color: var(--ink); transition: color 0.2s; }
.nav-desktop a:hover { color: var(--blue); }
.nav-desktop .btn { color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Mobile menu (slide from right) ---------- */
.nav-mobile {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(80vw, 320px);
  background: var(--dark);
  color: #fff;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 90px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 50px -20px rgba(0, 0, 0, 0.5);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile a.btn { border: none; margin-top: 18px; justify-content: center; }
.close-menu {
  position: absolute;
  top: 22px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 2.2rem; line-height: 1; cursor: pointer;
}
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(8, 12, 30, 0.5);
  backdrop-filter: blur(2px);
  z-index: 60;
  opacity: 0;
  transition: opacity 0.3s;
}
.menu-overlay.show { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  will-change: transform;
}
.blob-1 { width: 460px; height: 460px; background: var(--blue); top: -120px; left: -80px; animation: float1 16s ease-in-out infinite; }
.blob-2 { width: 420px; height: 420px; background: var(--cyan); top: 40px; right: -100px; animation: float2 18s ease-in-out infinite; }
.blob-3 { width: 360px; height: 360px; background: #6aa0ff; bottom: -160px; left: 40%; animation: float3 20s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,40px) scale(1.1); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,60px) scale(1.15); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-50px) scale(1.05); } }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-text h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 8px 0 18px; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 36px; }
.hero-stats { display: flex; gap: 36px; list-style: none; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); }
.hero-stats span { font-size: 0.9rem; color: var(--muted); }
.hero-media img {
  border-radius: 22px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* Sections inclinées */
.section-tilt { background: var(--bg-soft); }
.section-tilt::before,
.section-tilt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 70px;
  background: var(--bg-soft);
  z-index: -0;
}
.section-tilt::before { top: -35px; transform: skewY(-2deg); }
.section-tilt::after { bottom: -35px; transform: skewY(-2deg); }

.section-dark {
  background: var(--dark);
  color: #eaf0ff;
  margin: 70px 0;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}
.section-dark .section-sub { color: #9fb0d8; }
.section-dark .eyebrow { color: var(--cyan); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,86,255,0.12), rgba(0,212,255,0.12));
  color: var(--blue);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* Gallery */
.shot { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow); }
.shot img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s; }
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 18px 16px;
  background: linear-gradient(to top, rgba(8,12,30,0.85), transparent);
  color: #fff; font-size: 0.92rem; font-weight: 500;
}

/* Reviews */
.review {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.stars { color: #ffb800; letter-spacing: 2px; margin-bottom: 14px; }
.review p { color: var(--ink); margin-bottom: 20px; }
.review footer { display: flex; align-items: center; gap: 12px; }
.review footer img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review footer span { display: flex; flex-direction: column; font-size: 0.88rem; color: var(--muted); }
.review footer strong { color: var(--ink); font-size: 0.98rem; }

/* FAQ */
.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 20px;
  margin-bottom: 12px;
  background: var(--bg);
  transition: box-shadow 0.2s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-head);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.5rem; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 18px; }

/* ---------- Contact form ---------- */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.contact-form.fade-out { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 0.9rem; font-weight: 500; margin-bottom: 7px; color: #cdd8f5; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 13px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #8b97bd; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255,255,255,0.1);
}
.field select option { color: #11162a; }
.field.invalid input, .field.invalid textarea { border-color: #ff5d6c; }

/* Honeypot — invisible aux humains */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-foot { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.form-note { color: #9fb0d8; font-size: 0.85rem; }
.form-feedback { margin-top: 16px; font-size: 0.95rem; min-height: 1.2em; }
.form-feedback.error { color: #ff8a94; }
.form-feedback.ok { color: var(--cyan); }

.form-success {
  text-align: center;
  padding: 30px 20px;
  animation: fadeIn 0.6s ease;
}
.success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-size: 2rem;
}
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: #9fb0d8; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-2); color: #cdd8f5; padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #9fb0d8; max-width: 320px; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #8b97bd;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-desktop { display: none; }
  .burger { display: flex; }
  .section { padding: 70px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-dark { clip-path: polygon(0 1.5%, 100% 0, 100% 98.5%, 0 100%); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

/* ---------- Pages produit (Intérieur / Extérieur) ---------- */
:root {
  --interieur-green: #22c55e;
  --interieur-green-dim: #16a34a;
  --exterieur-amber: #f5a524;
  --exterieur-amber-dim: #d48912;
  --videri-gold: #c9a86a;
  --page-accent: var(--blue);
}

.page-interieur { --page-accent: var(--interieur-green); }
.page-exterieur { --page-accent: var(--exterieur-amber); }
.page-videri { --page-accent: var(--videri-gold); }

.page-product .nav-desktop a.nav-active,
.page-videri .nav-desktop a.nav-active {
  color: var(--page-accent);
  font-weight: 600;
}

.page-intro {
  background: #000;
  color: #e8e8e8;
  padding: 56px 0 72px;
}

.page-intro-inner {
  max-width: 820px;
}

.page-intro-label {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--page-accent);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.page-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #c8c8c8;
}

.page-intro-cta { margin-top: 36px; }

.page-exterieur .btn {
  background: linear-gradient(100deg, #d48912, var(--exterieur-amber));
  box-shadow: 0 10px 30px -10px rgba(244, 165, 36, 0.45);
}

.media-slider {
  background: #000;
}

.media-slider-viewport {
  width: 100%;
  height: min(72vh, 720px);
  overflow: hidden;
}

.media-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.8s ease;
  will-change: transform;
}

.media-slider-slide {
  min-width: 100%;
  height: 100%;
}

.media-slider-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .media-slider-viewport { height: 52vh; }
  .media-slider-slide video { object-fit: contain; background: #000; }
}

.product-gallery-section { padding-top: 72px; }

.section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.gallery-filter {
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.gallery-filter:hover {
  border-color: var(--page-accent);
  color: var(--page-accent);
}

.gallery-filter.is-active {
  background: var(--page-accent);
  border-color: var(--page-accent);
  color: #041108;
}

.gallery-status {
  font-size: 0.88rem;
  color: var(--muted);
  min-height: 1.4em;
  margin-bottom: 20px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.gallery-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -24px rgba(0, 0, 0, 0.45);
}

.gallery-tile img,
.gallery-tile-video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #111;
}

.gallery-tile-video {
  position: relative;
}

.gallery-tile-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.gallery-tile-caption {
  padding: 12px 14px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #d0d8ea;
  background: var(--dark-2);
  min-height: 3.2em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-body {
  width: min(960px, 100%);
  max-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-body img,
.lightbox-body video {
  max-width: 100%;
  max-height: min(78vh, 720px);
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-caption {
  color: #b8c4dc;
  font-size: 0.95rem;
  text-align: center;
  max-width: 720px;
}

/* ---------- Page Videri — luxe noir & or ---------- */
.page-videri {
  background: #070707;
  color: #ece8e1;
}

.page-videri .site-header {
  background: rgba(7, 7, 7, 0.86);
  border-bottom: 1px solid rgba(201, 168, 106, 0.18);
  backdrop-filter: blur(16px);
}

.page-videri .logo-text,
.page-videri .nav-desktop a {
  color: #f4f0e8;
}

.page-videri .logo-text strong { color: var(--videri-gold); }
.page-videri .logo-mark {
  background: linear-gradient(135deg, #e8d5a3, var(--videri-gold));
  box-shadow: 0 4px 14px -4px rgba(201, 168, 106, 0.55);
}
.page-videri .burger span { background: #f4f0e8; }

.page-videri .btn,
.page-videri .videri-btn {
  background: linear-gradient(100deg, #b8924a, var(--videri-gold));
  color: #1a1408;
  box-shadow: 0 10px 30px -12px rgba(201, 168, 106, 0.55);
}

.page-videri .gallery-filter {
  background: transparent;
  border-color: rgba(201, 168, 106, 0.35);
  color: #d8d2c6;
}
.page-videri .gallery-filter.is-active {
  background: var(--videri-gold);
  border-color: var(--videri-gold);
  color: #1a1408;
}

.page-videri .gallery-status,
.page-videri .section-sub { color: #9a9488; }
.page-videri .eyebrow { color: var(--videri-gold); letter-spacing: 0.28em; }
.page-videri .section-head h2,
.page-videri .videri-gallery-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: #f7f3ea;
}

.page-videri .site-footer {
  background: #0c0c0c;
  color: #cfc8ba;
  border-top: 1px solid rgba(201, 168, 106, 0.12);
}
.page-videri .footer-brand p { color: #8f887c; }
.page-videri .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.06);
  color: #7a7468;
}

.videri-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.videri-hero-slider {
  position: absolute;
  inset: 0;
}

.videri-hero-slider .media-slider-viewport {
  height: 100%;
}

.videri-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.28) 48%, rgba(7, 7, 7, 0.12) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 55%);
}

.videri-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 88px;
  max-width: 760px;
}

.videri-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--videri-gold);
  margin-bottom: 18px;
}

.videri-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.2rem, 12vw, 8rem);
  font-weight: 600;
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.03em;
}

.videri-latin {
  margin: 10px 0 22px;
  color: var(--videri-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
}

.videri-lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #d8d2c6;
  max-width: 520px;
  margin-bottom: 32px;
}

.videri-editorial {
  padding: 96px 0 40px;
  border-top: 1px solid rgba(201, 168, 106, 0.12);
}

.videri-editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.videri-editorial h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  color: #f7f3ea;
}

.videri-editorial-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #bdb6aa;
  font-size: 1.05rem;
  line-height: 1.8;
}

.videri-pillars { padding: 24px 0 80px; }

.videri-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.videri-pillar-grid article {
  padding: 32px 28px;
  border: 1px solid rgba(201, 168, 106, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.videri-pillar-grid h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--videri-gold);
  margin-bottom: 12px;
}

.videri-pillar-grid p {
  color: #b7b0a4;
  font-size: 0.98rem;
  line-height: 1.7;
}

.videri-gallery-section {
  background: #070707;
  padding-top: 40px;
}

.page-videri .gallery-tile {
  border-radius: 2px;
  box-shadow: none;
  background: #111;
}

.page-videri .gallery-tile-caption {
  background: #0d0d0d;
  color: #cfc8ba;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
}

.page-videri .lightbox {
  background: rgba(0, 0, 0, 0.96);
}

.page-videri .lightbox-caption {
  color: var(--videri-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
}

@media (max-width: 960px) {
  .videri-editorial-grid,
  .videri-pillar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .videri-hero { min-height: 78vh; }
  .videri-hero-copy { padding-bottom: 56px; }
}
