/*
Theme Name: Galeyrand Child
Theme URI: https://www.francois-galeyrand.fr
Description: Theme enfant de Galeyrand - Refonte v2 - Domaine Francois Galeyrand
Author: Mutin(R)y Production
Author URI: https://www.mutinry.com
Template: galeyrand-theme
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: galeyrand-child
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES — Override parent
   ========================================================================== */

:root {
  --noir: #1A1A1A;
  --creme: #F5F1E8;
  --dore: #C9A227;
  --dore-dim: rgba(201, 162, 39, 0.15);
  --dore-border: rgba(201, 162, 39, 0.35);
  --bordeaux: #722F37;
  --bordeaux-light: #8B3A44;
  --text: #555;
  --text-light: rgba(255, 255, 255, 0.75);
  --text-dim: rgba(255, 255, 255, 0.5);
  --white-glass: rgba(255, 255, 255, 0.04);
  --white-border: rgba(255, 255, 255, 0.1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  --section-pad: 60px 20px;
  --container: 1300px;
  --header-h: 70px;
  --ease: 0.3s ease;
  --ease-slow: 0.5s ease;
}

@media (min-width: 768px) {
  :root { --section-pad: 80px 40px; }
}

@media (min-width: 1024px) {
  :root { --section-pad: 100px 60px; }
}

/* ==========================================================================
   BOX SIZING RESET
   ========================================================================== */

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

/* ==========================================================================
   GLOBAL LINK RESET — jamais de bleu
   ========================================================================== */

a {
  color: var(--dore);
  transition: color var(--ease);
}

a:hover {
  color: var(--bordeaux);
}

/* ==========================================================================
   HEADER OVERRIDES
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: transparent;
  transition: all 0.4s ease;
}

@media (min-width: 768px) {
  .site-header { padding: 15px 60px; }
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.site-logo img {
  height: 40px;
  width: auto;
  transition: all 0.4s ease;
}

.site-header.scrolled .site-logo img { height: 32px; }

.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  transition: color var(--ease);
}

.site-header.scrolled .site-logo .logo-text {
  color: var(--noir);
}

/* Main nav container */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Nav links */
.nav-links {
  display: none;
  gap: 30px;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: white;
  transition: color var(--ease);
  font-weight: 400;
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dore);
  transition: width var(--ease);
}

.nav-links a:hover::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--noir); }
.nav-links a:hover { color: var(--dore); }

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  margin-left: 15px;
}

.lang-switch a {
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  transition: all var(--ease);
  text-decoration: none;
}

.lang-switch a.active {
  background: var(--dore);
  border-color: var(--dore);
  color: var(--noir);
}

.site-header.scrolled .lang-switch a {
  color: rgba(26, 26, 26, 0.6);
  border-color: rgba(26, 26, 26, 0.2);
}

.site-header.scrolled .lang-switch a.active {
  color: var(--noir);
  background: var(--dore);
  border-color: var(--dore);
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all var(--ease);
}

.site-header.scrolled .menu-toggle span { background: var(--noir); }

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 28px;
  color: white;
  transition: color var(--ease);
  letter-spacing: 1px;
  text-decoration: none;
}

.mobile-menu a:hover { color: var(--dore); }

/* ==========================================================================
   SHARED SECTION STYLES
   ========================================================================== */

.section {
  padding: var(--section-pad);
  position: relative;
}

.section--dark {
  background: var(--noir);
  color: white;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.section--darker {
  background: #141414;
  color: white;
}

.section--darker::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section p {
  text-wrap: pretty;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 60px; }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  text-wrap: balance;
  margin-bottom: 15px;
  line-height: 1.15;
}

.section-title--light { color: var(--noir); }
.section-title--dark { color: white; }

.title-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--dore), transparent);
  margin-bottom: 30px;
}

.title-line--center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--dore), transparent);
}

.section-intro {
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .section-intro { font-size: 17px; }
}

.section-intro--light { color: var(--text-dim); }
.section-intro--light strong { color: rgba(255, 255, 255, 0.7); }

.section-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .section-text { font-size: 16px; }
}

.section-text strong { color: var(--bordeaux); }
.section-text--light { color: var(--text-light); }
.section-text--light strong { color: var(--dore); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--ease);
  cursor: pointer;
  text-decoration: none;
}

@media (min-width: 768px) {
  .btn { padding: 16px 40px; font-size: 12px; }
}

.btn--primary {
  background: var(--bordeaux);
  color: white;
}
.btn--primary:hover {
  background: var(--bordeaux-light);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: white;
  border: 1px solid var(--dore);
}
.btn--secondary:hover {
  background: var(--dore);
  color: var(--noir);
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   CAROUSEL (shared)
   ========================================================================== */

.carousel-wrapper {
  position: relative;
}

.carousel-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 25px;
  bottom: 25px;
  border: 2px solid var(--dore);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

@media (min-width: 768px) {
  .carousel-frame {
    top: -20px;
    left: -20px;
    right: 35px;
    bottom: 35px;
  }
}

.carousel-frame--bordeaux {
  border-color: var(--bordeaux);
  top: 20px;
  left: 30px;
  right: -15px;
  bottom: -15px;
}

@media (min-width: 768px) {
  .carousel-frame--bordeaux {
    top: 25px;
    left: 40px;
    right: -20px;
    bottom: -20px;
  }
}

.carousel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
  height: 280px;
}

@media (min-width: 768px) {
  .carousel { height: 380px; }
}

@media (min-width: 1024px) {
  .carousel { height: 450px; }
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform var(--ease-slow);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.carousel-nav {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  z-index: 10;
}

.carousel-nav--center { justify-content: center; }
.carousel-nav--right { justify-content: flex-end; }

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--dore);
  transform: scale(1.25);
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10;
  pointer-events: none;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--noir);
  pointer-events: all;
  transition: all var(--ease);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
  background: var(--dore);
  color: white;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-section {
  height: 100vh;
  min-height: 550px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  height: 140%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

@media (min-width: 768px) {
  .hero-logo { margin-bottom: 40px; }
}

.hero-logo img {
  max-height: 120px;
  width: auto;
}

@media (min-width: 768px) {
  .hero-logo img { max-height: 160px; }
}

.hero-logo .logo-text-hero {
  font-family: var(--font-heading);
  font-size: clamp(36px, 8vw, 72px);
  color: white;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 5px;
  text-wrap: balance;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 16px; letter-spacing: 6px; }
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn { width: 260px; }
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 22px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 11px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: var(--dore);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 16px; opacity: 0.4; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   DOMAINE
   ========================================================================== */

.domaine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 1024px) {
  .domaine-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
  }
}

.domaine-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #ddd;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .domaine-stats { gap: 50px; margin-top: 40px; padding-top: 35px; }
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--dore);
  font-weight: 600;
  line-height: 1;
}

@media (min-width: 768px) {
  .stat__number { font-size: 48px; }
}

.stat__label {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
  margin-top: 5px;
  text-transform: uppercase;
}

/* ==========================================================================
   VIGNERON
   ========================================================================== */

.vigneron-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 1024px) {
  .vigneron-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}

.vigneron-content { order: 2; }

@media (min-width: 1024px) {
  .vigneron-content { order: 1; }
  .vigneron-carousel { order: 2; }
}

.vigneron-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 20px;
  border-left: 3px solid var(--dore);
  margin-bottom: 25px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .vigneron-quote { font-size: 22px; padding-left: 25px; margin-bottom: 30px; }
}

/* ==========================================================================
   VINS
   ========================================================================== */

.vins-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .vins-thumbnails { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (min-width: 768px) {
  .vins-thumbnails { grid-template-columns: repeat(6, 1fr); gap: 14px; }
}

@media (min-width: 1200px) {
  .vins-thumbnails { gap: 22px; }
}

.vin-thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px 20px;
  background: #f9f6f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  min-height: 240px;
}

@media (min-width: 768px) {
  .vin-thumbnail { min-height: 280px; }
}

.vin-thumbnail:hover,
.vin-thumbnail.active {
  border-color: var(--dore);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.vin-thumbnail__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.vin-thumbnail__badge--blanc { background: var(--dore); color: white; }
.vin-thumbnail__badge--rouge { background: var(--bordeaux); color: white; }

.vin-thumbnail__image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 10px;
}

.vin-thumbnail__image img {
  max-height: 160px;
  width: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.12));
}

.vin-thumbnail__name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--noir);
  line-height: 1.3;
  margin-bottom: 4px;
}

.vin-thumbnail__appellation {
  font-size: 10px;
  color: #888;
  text-align: center;
  letter-spacing: 0.5px;
}

.vin-thumbnail__format {
  font-size: 10px;
  color: var(--dore);
  font-weight: 600;
  margin-top: 3px;
}

/* Vin detail cards */
.vin-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

.vin-detail {
  display: none;
  animation: slideDown 0.5s ease;
}

.vin-detail.active {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .vin-detail.active {
    flex-direction: row;
    align-items: stretch;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

.vin-detail__image {
  background: linear-gradient(160deg, #faf5ea 0%, #f0e8d8 50%, #e8ddc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  min-height: 320px;
}

@media (min-width: 768px) {
  .vin-detail__image {
    min-height: 480px;
    min-width: 300px;
    max-width: 340px;
    padding: 50px;
  }
}

.vin-detail__image img {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.18));
  transition: transform 0.4s ease;
}

@media (min-width: 768px) {
  .vin-detail__image img {
    max-height: 380px;
  }
}

.vin-detail__content {
  padding: 30px 25px;
  position: relative;
  flex: 1;
}

@media (min-width: 768px) {
  .vin-detail__content {
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.vin-detail__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 18px;
  color: #999;
  transition: all var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
}

.vin-detail__close:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: white;
}

.vin-detail__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 8px;
}

.vin-detail__name {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--noir);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .vin-detail__name { font-size: 38px; }
}

.vin-detail__badge {
  font-size: 10px;
  padding: 5px 14px;
  border: 1px solid;
  border-radius: 3px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  flex-shrink: 0;
}

.vin-detail__badge--rouge { color: var(--bordeaux); border-color: var(--bordeaux); }
.vin-detail__badge--blanc { color: var(--dore); border-color: var(--dore); }

.vin-detail__appellation {
  font-family: var(--font-heading);
  font-size: 15px;
  color: #888;
  margin-bottom: 2px;
  letter-spacing: 0.03em;
}

.vin-detail__cepage {
  font-size: 14px;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.vin-detail__format { margin-bottom: 14px; }
.vin-detail__format strong { color: var(--dore); font-size: 13px; letter-spacing: 1px; }

.vin-detail__description {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}

.vin-detail__description strong { color: var(--bordeaux); }

.vin-detail__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

@media (min-width: 480px) {
  .vin-detail__info { grid-template-columns: repeat(3, 1fr); }
}

.vin-info__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--dore);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.vin-info__value {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--noir);
  line-height: 1.4;
}

.vin-detail__tech {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.5px;
}

.vin-tech__separator { color: var(--dore); }

/* ==========================================================================
   ILS PARLENT DE NOUS
   ========================================================================== */

.presse-carousel {
  position: relative;
  overflow: hidden;
}

.presse-track {
  display: flex;
  transition: transform var(--ease-slow);
}

.presse-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .presse-slide {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0;
    align-items: center;
  }
}

.presse-quote {
  padding: 25px 0 25px 25px;
  border-left: 3px solid var(--dore);
}

@media (min-width: 768px) {
  .presse-quote { padding: 40px 0 40px 35px; }
}

.presse-quote__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  text-wrap: balance;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .presse-quote__text { font-size: 24px; }
}

/* Light theme (cream bg) */
.section:not(.section--dark) .presse-quote__text { color: var(--noir); }

/* Dark theme */
.section--dark .presse-quote__text { color: rgba(255, 255, 255, 0.9); }

.presse-quote__source {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.presse-quote__publication {
  font-size: 14px;
  font-weight: 600;
  color: var(--bordeaux);
  letter-spacing: 0.5px;
}

.section--dark .presse-quote__publication { color: var(--dore); }

.presse-quote__date {
  font-size: 12px;
  color: #999;
}

.presse-image {
  position: relative;
}

.presse-image__frame {
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 2px solid var(--dore);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .presse-image__frame {
    top: -18px;
    right: -18px;
    bottom: 18px;
    left: 18px;
  }
}

.presse-image__placeholder {
  position: relative;
  z-index: 2;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.presse-image__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

@media (min-width: 768px) {
  .presse-image__placeholder { min-height: 300px; }
}

.presse-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
}

.section--dark .presse-nav .carousel-dot { background: rgba(255, 255, 255, 0.25); }
.presse-nav .carousel-dot.active { background: var(--dore); }

.presse-arrows {
  display: none;
}

@media (min-width: 768px) {
  .presse-arrows {
    display: flex;
    position: absolute;
    top: 50%;
    left: -15px;
    right: -15px;
    transform: translateY(-50%);
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
  }
}

@media (min-width: 1024px) {
  .presse-arrows { left: -25px; right: -25px; }
}

.presse-arrows .carousel-arrow {
  pointer-events: all;
}

/* ==========================================================================
   OU NOUS TROUVER
   ========================================================================== */

.trouver-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.trouver-track {
  display: flex;
  transition: transform var(--ease-slow);
  gap: 20px;
}

.trouver-slide {
  min-width: calc(100% - 0px);
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .trouver-slide { min-width: calc(50% - 10px); }
}

@media (min-width: 1024px) {
  .trouver-slide { min-width: calc(33.333% - 14px); }
}

.trouver-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--ease);
}

.trouver-card:hover {
  border-color: var(--dore-border);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.trouver-card__img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3e2723, #4a3028, #5d4037);
}

@media (min-width: 768px) {
  .trouver-card__img { height: 200px; }
}

.trouver-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trouver-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  background: var(--dore);
  color: var(--noir);
  z-index: 2;
}

.trouver-card__body {
  padding: 20px;
}

.trouver-card__name {
  font-family: var(--font-heading);
  font-size: 20px;
  color: white;
  margin-bottom: 6px;
}

.trouver-card__addr {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}

.trouver-card__link {
  font-size: 11px;
  color: var(--dore);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--ease);
  text-decoration: none;
}

.trouver-card__link:hover { color: var(--dore); }

.trouver-nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.trouver-nav {
  display: flex;
  gap: 8px;
}

.trouver-nav .carousel-dot { background: rgba(255, 255, 255, 0.25); }
.trouver-nav .carousel-dot.active { background: var(--dore); }

.trouver-arrow-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--ease);
  background: transparent;
  cursor: pointer;
}

.trouver-arrow-btn:hover {
  border-color: var(--dore);
  color: var(--dore);
}

/* Map */
.trouver-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 250px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .trouver-map { height: 350px; }
}

.trouver-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.trouver-map--placeholder {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.trouver-map__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .contact-grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (min-width: 1024px) {
  .contact-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}

.contact-col {
  display: flex;
  flex-direction: column;
  background: var(--white-glass);
  border: 1px solid var(--white-border);
  border-radius: 10px;
  padding: 25px 20px;
}

@media (min-width: 768px) {
  .contact-col { padding: 30px; min-height: 420px; }
}

@media (max-width: 767px) {
  .contact-col--map { order: -1; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact-col--map { grid-column: span 2; }
}

.contact-col__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dore-border);
}

/* CF7 form style overrides */
.contact-col--form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 14px;
}

.contact-col--form input[type="text"],
.contact-col--form input[type="email"],
.contact-col--form textarea,
.contact-col--form select {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--noir);
  background: rgba(255, 255, 255, 0.93);
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all var(--ease);
}

.contact-col--form input:focus,
.contact-col--form textarea:focus,
.contact-col--form select:focus {
  outline: none;
  border-color: var(--dore);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.contact-col--form textarea {
  min-height: 80px;
  resize: vertical;
}

.contact-col--form .wpcf7-submit,
.contact-col--form input[type="submit"] {
  width: 100%;
  padding: 13px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  background: var(--bordeaux);
  border: 2px solid var(--bordeaux);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--ease);
}

.contact-col--form .wpcf7-submit:hover,
.contact-col--form input[type="submit"]:hover {
  background: var(--bordeaux-light);
  border-color: var(--bordeaux-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(114, 47, 55, 0.3);
}

.contact-col--form label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 6px;
}

/* Contact info */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-grow: 1;
}

.contact-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item__icon {
  display: none;
}

.contact-item__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dore);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-item__label::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 12px;
  background: var(--dore);
  border-radius: 2px;
  flex-shrink: 0;
}

.contact-item__value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  padding-left: 9px;
}

.contact-item__value a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--ease);
  text-decoration: none;
}

.contact-item__value a:hover {
  color: var(--dore);
}

/* Contact map */
.contact-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--white-border);
  flex-grow: 1;
  min-height: 200px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
}

.contact-map__link {
  display: block;
  margin-top: 12px;
  padding: 12px 18px;
  background: var(--dore-dim);
  border: 1px solid var(--dore-border);
  border-radius: 4px;
  color: var(--dore);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--ease);
  text-decoration: none;
}

.contact-map__link:hover {
  background: rgba(201, 162, 39, 0.25);
  color: var(--dore);
  transform: translateY(-2px);
}

/* Contact quotes */
.contact-quote {
  margin-top: 45px;
  padding: 25px 30px;
  text-align: center;
  background: rgba(201, 162, 39, 0.05);
  border-top: 1px solid var(--dore-border);
  border-bottom: 1px solid var(--dore-border);
}

@media (min-width: 768px) {
  .contact-quote { padding: 30px 50px; }
}

.contact-quote--mobile {
  margin-top: 0;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .contact-quote--mobile { display: none; }
}

.contact-quote--desktop {
  display: none;
}

@media (min-width: 768px) {
  .contact-quote--desktop { display: block; }
}

.contact-quote p {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .contact-quote p { font-size: 20px; }
}

.contact-quote cite {
  font-size: 14px;
  color: var(--dore);
  font-style: normal;
}

.contact-geo-text {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--white-border);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.6;
}

.contact-geo-text strong { color: rgba(255, 255, 255, 0.7); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #0d0d0d;
  padding: 40px 20px 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer { padding: 60px 60px 40px; }
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
}

.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  color: white;
  font-weight: 400;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .footer-links { gap: 30px; }
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color var(--ease);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover { color: var(--dore); }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  text-decoration: none;
  transition: color var(--ease);
}

.footer-legal a:hover { color: var(--dore); }

.footer-copyright {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  margin-bottom: 10px;
}

.footer-warning {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  margin-bottom: 18px;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.footer-credit a {
  color: var(--dore);
  transition: color var(--ease);
  text-decoration: none;
}

.footer-credit a:hover { color: var(--dore); }

/* Footer Social */
.footer-social {
  margin-bottom: 24px;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
  text-decoration: none;
}

.footer-social__link:hover {
  color: var(--dore);
  border-color: var(--dore);
  background: rgba(201, 162, 39, 0.12);
}

/* ==========================================================================
   UTILITY
   ========================================================================== */

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   404
   ========================================================================== */

.section-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-404__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 100px 20px;
}

.section-404__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--dore);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-404__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--creme);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.section-404__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.section-404__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   TROUVER — Enrichissements rubrique "Où nous trouver" (2026-04-24)
   Ajouts pour : layout 2 colonnes, présentation + awards, Leaflet popup,
   cadre bordeau style vigneron, sync carousel <-> map
   ========================================================================== */

/* Layout 2 colonnes : cards 2/3 + carte 1/3 */
.trouver-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .trouver-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
.trouver-main,
.trouver-aside {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 740px;
}
@media (max-width: 1023px) {
  .trouver-main, .trouver-aside { height: auto; }
}
@media (max-width: 767px) {
  .trouver-main { --card-img-h: 240px; }
}

/* Overrides carousel quand utilisé dans trouver-main (carousel vigneron-style) */
.trouver-main .carousel-wrapper {
  flex: 1; min-width: 0; min-height: 0;
  position: relative; display: flex; flex-direction: column;
}
.trouver-main .carousel {
  flex: 1; width: 100%; min-width: 0; min-height: 0;
  overflow: hidden; position: relative;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.25);
}
.trouver-main .carousel-track {
  width: 100%; height: 100%;
  display: flex;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.trouver-main .carousel-slide {
  min-width: 100%; max-width: 100%; height: 100%;
  flex-shrink: 0; flex-grow: 0;
  overflow: hidden;
}
.trouver-main .trouver-card {
  width: 100%; max-width: 100%; height: 100%;
  min-width: 0;
  background: linear-gradient(rgba(255,255,255,0.035), rgba(255,255,255,0.035)), #141414;
}
.trouver-main .trouver-card__body {
  min-width: 0; overflow: hidden; padding-bottom: 44px;
}

/* Arrows centrées sur l'image (pas sur la card entière) */
:root { --card-img-h: 340px; }
@media (max-width: 1023px) { :root { --card-img-h: 300px; } }
@media (max-width: 767px) { :root { --card-img-h: 240px; } }

.trouver-main .trouver-card__img { height: var(--card-img-h); }
.trouver-main .carousel-arrows {
  top: calc(var(--card-img-h) / 2);
  transform: translateY(-50%);
}

/* Dots du carousel trouver en overlay bas-droite (hauteurs alignées avec map) */
.trouver-main .carousel-nav--right {
  position: absolute;
  right: 20px; bottom: 16px;
  margin-top: 0;
  z-index: 11;
}

/* Nom resto — Cormorant italic 500 */
.trouver-main .trouver-card__name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

/* Adresse — avec icône pin dorée */
.trouver-main .trouver-card__addr {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 6px;
  overflow-wrap: anywhere;
}
.trouver-main .trouver-card__addr::before {
  content: '';
  display: inline-block;
  width: 10px; height: 14px; margin-top: 3px; flex-shrink: 0;
  background: var(--dore);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1C5.24 1 3 3.24 3 6c0 4.5 5 9 5 9s5-4.5 5-9c0-2.76-2.24-5-5-5zm0 6.5a1.5 1.5 0 110-3 1.5 1.5 0 010 3z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1C5.24 1 3 3.24 3 6c0 4.5 5 9 5 9s5-4.5 5-9c0-2.76-2.24-5-5-5zm0 6.5a1.5 1.5 0 110-3 1.5 1.5 0 010 3z'/></svg>") no-repeat center / contain;
}

/* Présentation — body font, filet doré à gauche, **mots** en doré gras */
.trouver-card__presentation {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  border-left: 3px solid var(--dore);
  padding-left: 14px;
  margin: 4px 0;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}
.trouver-card__presentation strong,
.trouver-card strong {
  color: var(--dore);
  font-weight: 600;
}

/* Chef */
.trouver-card__chef {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 14px;
}

/* Awards — chips dorés */
.trouver-card__awards {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 2px 0 10px;
  padding: 0;
}
.trouver-card__awards li {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dore);
  background: var(--dore-dim);
  border: 1px solid var(--dore-border);
  border-radius: 3px;
}

/* Séparateur doré */
.trouver-card__sep {
  height: 1px;
  background: var(--dore-border);
  margin: 10px 0 14px;
}

/* Liens (Site, Instagram, Michelin, G&M, Facebook) */
.trouver-card__links {
  list-style: none;
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 0; padding: 0;
}
.trouver-card__links a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--dore);
  color: var(--dore);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all var(--ease);
  border-radius: 3px;
}
.trouver-card__links a:hover,
.trouver-card__links a:focus-visible {
  background: var(--dore); color: var(--noir); outline: none;
}
/* Bouton "Réserver" = primaire, doré plein */
.trouver-card__links a.is-primary {
  background: var(--dore); color: var(--noir); font-weight: 600;
}
.trouver-card__links a.is-primary:hover,
.trouver-card__links a.is-primary:focus-visible {
  transform: translateY(-2px);
}
.trouver-card__links .empty {
  font-size: 11px; color: var(--text-dim); font-style: italic;
}

/* Téléphone clic-to-call */
.trouver-card__tel {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
}
.trouver-card__tel a {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}
.trouver-card__tel a:hover { color: var(--dore); }

/* ==========================================================================
   Carte Leaflet à droite
   ========================================================================== */
.trouver-map--leaflet {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255,255,255,0.03);
  padding: 6px;
  flex: 1;
  display: flex;
  min-height: 0;
}
@media (max-width: 1023px) {
  .trouver-map--leaflet { height: 440px; flex: none; }
}
#pointsMap {
  flex: 1;
  width: 100%;
  min-height: 420px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--noir);
}

/* Popups Leaflet — sombre, cohérents avec la section */
.leaflet-popup-content-wrapper {
  background: #141414;
  border: 1px solid var(--dore-border);
  border-radius: 0;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.7);
  padding: 0;
  overflow: hidden;
}
.leaflet-popup-tip {
  background: #141414;
  border: 1px solid var(--dore-border);
}
.leaflet-popup-content {
  font-family: var(--font-body);
  margin: 0;
  min-width: 260px;
  max-width: 280px;
  color: white;
}

.popup-image {
  aspect-ratio: 16 / 9;
  background-color: #3e2723;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 1px solid var(--dore-border);
}
.popup-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(20,20,20,0.55) 100%);
}
.popup-image.is-placeholder {
  background: linear-gradient(135deg, #3e2723, #5d4037);
  display: flex; align-items: center; justify-content: center;
}
.popup-image.is-placeholder::before {
  content: '';
  width: 28px; height: 28px;
  background: var(--dore); opacity: 0.35;
  clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 75% 100%, 25% 100%, 0% 70%, 0% 35%, 20% 10%);
}

.popup-body { padding: 14px 18px 18px; }

.popup-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin: 0 0 4px;
}
.popup-loc {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dore);
  font-weight: 600;
  margin-bottom: 10px;
}
.popup-ornament {
  width: 28px; height: 1px;
  background: var(--dore);
  margin: 8px 0 10px;
}
.popup-cuisine {
  font-family: var(--font-heading);
  font-size: 13px;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0 0 10px;
}
.popup-awards {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-bottom: 12px;
}
.popup-awards span {
  padding: 2px 7px;
  font-family: var(--font-body);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--dore);
  background: var(--dore-dim);
  border: 1px solid var(--dore-border);
  border-radius: 2px;
}

/* Override Leaflet : lien "Découvrir" en doré (leaflet.css force bleu par défaut) */
.leaflet-container .popup-link,
.leaflet-popup-content .popup-link {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--dore);
  text-decoration: none;
  border-bottom: 1px solid var(--dore);
  padding-bottom: 2px;
  margin-top: 4px;
  transition: all var(--ease);
}
.leaflet-container .popup-link:hover,
.leaflet-popup-content .popup-link:hover {
  color: var(--dore);
  border-color: var(--dore);
}
.leaflet-container a:not(.leaflet-popup-close-button) { color: var(--dore); }
.leaflet-container a:not(.leaflet-popup-close-button):hover { color: var(--dore); }

.leaflet-popup-close-button {
  color: rgba(255,255,255,0.6) !important;
  font-size: 22px !important;
  padding: 8px 12px 0 0 !important;
  font-weight: 300 !important;
}
.leaflet-popup-close-button:hover { color: var(--dore) !important; }

/* Marqueurs customs — goutte dorée + actif en bordeaux avec pulse */
.galeyrand-marker { background: transparent; border: none; }
.galeyrand-marker .pin {
  width: 20px; height: 20px;
  background: var(--dore);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: all var(--ease);
}
.galeyrand-marker.active .pin {
  width: 30px; height: 30px;
  background: var(--bordeaux-light);
  border: 3px solid var(--dore);
  box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.25),
              0 6px 20px rgba(0,0,0,0.7);
  animation: pulse-marker 1.6s infinite ease-in-out;
}
@keyframes pulse-marker {
  0%, 100% { box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.25), 0 6px 20px rgba(0,0,0,0.7); }
  50% { box-shadow: 0 0 0 10px rgba(201, 162, 39, 0.08), 0 6px 20px rgba(0,0,0,0.7); }
}

.leaflet-control-attribution {
  background: rgba(26,26,26,0.85) !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 10px !important;
}
.leaflet-control-attribution a { color: var(--dore) !important; }

/* Override : sous-titre de section avec strong doré (intro "Où nous trouver") */
.section-intro--light strong {
  color: var(--dore);
  font-weight: 600;
}

/* Accessibilité : respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .galeyrand-marker.active .pin { animation: none; }
  .trouver-main .carousel-track { transition: none; }
}

/* ==========================================================================
   NOTE 2026-04-24 : le template PHP utilise maintenant JUSTE class="carousel-*"
   (pas "trouver-*") — cf carousel vigneron. Donc pas d'override CSS requis
   pour le drift. Les règles .carousel-slide { min-width: 100% } du natif sont
   correctes. Le translateX(%) du JS fonctionne nativement.
   ========================================================================== */

/* ==========================================================================
   TROUVER — VUE MOBILE COMPACTE (< 768px)
   Strip de vignettes + flèches + dots + bloc info synchronisé.
   La carte Leaflet et le carousel desktop sont cachés en mobile.
   Cf. design doc : 2026-04_galeyrand_design-trouver-mobile_MTY.md
   ========================================================================== */

.trouver-mobile { display: none; }

@media (max-width: 767px) {
  .trouver-mobile { display: block; padding-top: 8px; }
  .trouver-aside { display: none; }
  .trouver-main { display: none; }
  .trouver-layout { gap: 0; }
}

/* Strip de vignettes scrollable */
.trouver-mobile__strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 16px 14px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.trouver-mobile__strip::-webkit-scrollbar { display: none; }

.trouver-mobile__thumb {
  flex: 0 0 130px;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-color: #141414;
  border: 2px solid transparent;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  padding: 0;
  scroll-snap-align: start;
  filter: grayscale(0.85) brightness(0.55);
  transition: filter 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.trouver-mobile__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.trouver-mobile__thumb.is-active {
  border-color: var(--dore);
  transform: scale(1.04);
  filter: none;
}
.trouver-mobile__thumb.is-active::after { opacity: 0; }
.trouver-mobile__thumb:focus-visible {
  outline: 2px solid var(--dore);
  outline-offset: 2px;
}

.trouver-mobile__thumb-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 7px;
  background: var(--dore);
  color: var(--noir);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Barre de navigation : flèches + dots */
.trouver-mobile__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 12px;
  gap: 10px;
}
.trouver-mobile__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dore-dim);
  border: 1px solid var(--dore-border);
  color: var(--dore);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
  flex-shrink: 0;
  font-family: inherit;
  transition: background var(--ease), color var(--ease);
}
.trouver-mobile__arrow:hover,
.trouver-mobile__arrow:focus-visible {
  background: var(--dore);
  color: var(--noir);
  outline: none;
}
.trouver-mobile__dots {
  display: flex;
  gap: 5px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 6px;
}
.trouver-mobile__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.trouver-mobile__dot.is-active {
  background: var(--dore);
  width: 18px;
  border-radius: 3px;
}
.trouver-mobile__dot:focus-visible {
  outline: 2px solid var(--dore);
  outline-offset: 2px;
}

/* Bloc info dynamique */
.trouver-mobile__info {
  background: #141414;
  margin: 0 16px 30px;
  padding: 18px 18px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--dore);
  color: white;
}
.trouver-mobile__info-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
  text-wrap: balance;
}
.trouver-mobile__info-loc {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 12px;
}
.trouver-mobile__info-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.trouver-mobile__info-btn {
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--dore);
  color: var(--dore);
  text-decoration: none;
  border-radius: 3px;
  background: transparent;
  font-family: var(--font-body);
}
.trouver-mobile__info-btn:hover,
.trouver-mobile__info-btn:focus-visible {
  background: var(--dore);
  color: var(--noir);
  outline: none;
}
.trouver-mobile__info-btn--primary {
  background: var(--dore);
  color: var(--noir);
  font-weight: 600;
}
.trouver-mobile__info-tel {
  font-size: 12px;
  color: var(--text-dim);
  margin: 6px 0 4px;
}
.trouver-mobile__info-tel a {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}
.trouver-mobile__info-tel a:hover { color: var(--dore); }

.trouver-mobile__info-more {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  padding: 10px 0 2px;
  color: var(--dore);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
}
.trouver-mobile__info-more::after { content: ' \25BE'; }
.trouver-mobile__info[data-open="true"] .trouver-mobile__info-more::after { content: ' \25B4'; }
.trouver-mobile__info-more:focus-visible {
  outline: 2px solid var(--dore);
  outline-offset: 2px;
}

.trouver-mobile__info-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.trouver-mobile__info[data-open="true"] .trouver-mobile__info-details {
  max-height: 800px;
}
.trouver-mobile__info-details-inner {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}
.trouver-mobile__info-pres {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 12px;
}
.trouver-mobile__info-pres strong { color: var(--dore); font-weight: 600; }
.trouver-mobile__info-awards {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 0 0 10px;
}
.trouver-mobile__info-awards li {
  padding: 3px 8px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--dore);
  background: var(--dore-dim);
  border: 1px solid var(--dore-border);
  border-radius: 3px;
}
.trouver-mobile__info-chef {
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   ILS PARLENT DE NOUS — Rubrique presse v3 (Direction C, 2026-04-26)
   Niveau 1 : sommaire + détail desktop / accordéon mobile
   Niveau 2 : grille de logos cliquables + expand inline
   Cf. design doc : 2026-04_galeyrand_design-presse-direction-C_MTY.md
   ========================================================================== */

/* === NIVEAU 1 — Desktop (sommaire + détail) === */
.presse-spread {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  background: #141414;
  border-radius: 6px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 767px) {
  .presse-spread { display: none; }
}
.presse-list { list-style: none; padding: 0; margin: 0; }
.presse-list li {
  padding: 16px 14px;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.presse-list li:last-child { border-bottom: 0; }
.presse-list li.is-active {
  border-left-color: var(--dore);
  background: rgba(201, 162, 39, 0.05);
}
.presse-list li:hover { background: rgba(201, 162, 39, 0.03); }
.presse-list__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}
.presse-list li.is-active .presse-list__name { color: var(--dore); }
.presse-list__meta {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.presse-detail {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: center;
}
.presse-detail__cover-wrap { width: 100%; }
.presse-detail__cover {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  display: block;
}
.presse-detail__cover--logo-on-dark {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1f1f1f, #2a1f1f);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}
.presse-detail__cover--logo-on-dark::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  border-radius: 1px;
}
.presse-detail__cover--logo-on-dark img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  filter: brightness(1.05);
}

.presse-detail__quote {
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  color: white;
  margin-bottom: 18px;
  padding-left: 22px;
  position: relative;
  text-wrap: pretty;
}
.presse-detail__quote::before {
  content: '\201C';
  position: absolute;
  left: -10px;
  top: -16px;
  font-size: 56px;
  color: var(--dore);
  opacity: 0.5;
  line-height: 1;
}
.presse-detail__source-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dore);
  margin-bottom: 2px;
}
.presse-detail__source-meta {
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.presse-detail__link {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--dore);
  color: var(--dore);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  font-family: var(--font-body);
  transition: all 0.25s;
}
.presse-detail__link:hover,
.presse-detail__link:focus-visible {
  background: var(--dore);
  color: var(--noir);
  outline: none;
}

/* === NIVEAU 1 — Mobile (accordéon) === */
.presse-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #141414;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: none;
}
@media (max-width: 767px) {
  .presse-mobile-list { display: block; }
}
.presse-mobile-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.presse-mobile-list li:last-child { border-bottom: 0; }
.presse-mobile-list__head {
  width: 100%;
  background: transparent;
  border: 0;
  border-left: 2px solid transparent;
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.presse-mobile-list li.is-active .presse-mobile-list__head {
  border-left-color: var(--dore);
  background: rgba(201, 162, 39, 0.04);
}
.presse-mobile-list__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: white;
}
.presse-mobile-list li.is-active .presse-mobile-list__name { color: var(--dore); }
.presse-mobile-list__meta {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}
.presse-mobile-list__chevron {
  color: var(--dore);
  font-size: 14px;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s;
}
.presse-mobile-list li.is-active .presse-mobile-list__chevron {
  transform: rotate(180deg);
}
.presse-mobile-list__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.presse-mobile-list li.is-active .presse-mobile-list__detail {
  max-height: 1200px;
}
.presse-mobile-list__detail-inner {
  padding: 4px 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.presse-mobile-list__cover-wrap {
  max-width: 180px;
  margin: 16px auto 18px;
}
.presse-mobile-list__cover {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
  display: block;
}
.presse-mobile-list__quote {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
  color: white;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
  text-wrap: pretty;
}
.presse-mobile-list__quote::before {
  content: '\201C';
  position: absolute;
  left: -8px;
  top: -14px;
  font-size: 50px;
  color: var(--dore);
  opacity: 0.5;
  line-height: 1;
}
.presse-mobile-list__source-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--dore);
  margin-bottom: 2px;
}
.presse-mobile-list__source-meta {
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.presse-mobile-list__link {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--dore);
  color: var(--dore);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  font-family: var(--font-body);
}

/* === NIVEAU 2 : Grille logos + expand === */
.presse-lvl2 {
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.presse-lvl2__title {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  color: var(--dore);
  margin: 0 0 6px;
  font-weight: 600;
}
.presse-lvl2__sub {
  text-align: center;
  font-size: 12px;
  opacity: 0.55;
  margin: 0 0 28px;
  font-style: italic;
  font-family: var(--font-heading);
}
.presse-lvl2__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .presse-lvl2__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 460px;
  }
}
@media (max-width: 600px) {
  .presse-lvl2__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-width: 340px;
  }
}
.presse-lvl2__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 8px 6px 6px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  min-height: 78px;
  font-family: inherit;
  color: inherit;
}
.presse-lvl2__card:hover {
  background: rgba(201, 162, 39, 0.06);
  border-color: var(--dore-border);
  transform: translateY(-2px);
}
.presse-lvl2__card.is-active {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--dore);
  transform: translateY(-2px);
}
.presse-lvl2__card:focus-visible {
  outline: 2px solid var(--dore);
  outline-offset: 2px;
}
.presse-lvl2__logo {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 2px 0;
}
.presse-lvl2__logo img {
  max-width: 70%;
  max-height: 36px;
  object-fit: contain;
  filter: brightness(1.05);
}
.presse-lvl2__card.is-active .presse-lvl2__logo img {
  filter: brightness(1.1);
}
.presse-lvl2__name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.1;
}
.presse-lvl2__card.is-active .presse-lvl2__name { color: var(--dore); }

.presse-lvl2__detail {
  margin-top: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.presse-lvl2__detail.is-open {
  max-height: 600px;
}
.presse-lvl2__detail-inner {
  padding: 22px 26px;
  background: #141414;
  border-left: 3px solid var(--dore);
  border-radius: 4px;
}
.presse-lvl2__detail-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: white;
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
  text-wrap: pretty;
}
.presse-lvl2__detail-quote::before {
  content: '\201C';
  position: absolute;
  left: -8px;
  top: -14px;
  font-size: 48px;
  color: var(--dore);
  opacity: 0.5;
  line-height: 1;
}

/* Bilingual EN translation under FR quote — option A : italic + thin separator (2026-04-27) */
.presse-detail__quote--en,
.presse-mobile-list__quote--en,
.presse-lvl2__detail-quote--en {
  font-size: 0.88em;
  opacity: 0.65;
  margin-top: 14px;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.presse-detail__quote--en::before,
.presse-mobile-list__quote--en::before,
.presse-lvl2__detail-quote--en::before {
  content: none;
}

.presse-lvl2__detail-source {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--dore);
  margin-bottom: 12px;
}
.presse-lvl2__detail-link {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--dore);
  color: var(--dore);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  font-family: var(--font-body);
  transition: all 0.25s;
}
.presse-lvl2__detail-link:hover,
.presse-lvl2__detail-link:focus-visible {
  background: var(--dore);
  color: var(--noir);
  outline: none;
}

/* Override : si presse-spread est masqué, ajuster bordure */
@media (max-width: 767px) {
  .presse-detail { display: none; }
}
