:root {
  --green: #87b91b;
  --green-dark: #5f870d;
  --green-soft: #f2f8e5;
  --brown: #6b3414;
  --cream: #fffaf2;
  --ink: #25231f;
  --muted: #6e6a62;
  --line: #e9e4da;
  --white: #fff;
  --shadow: 0 18px 50px rgba(48, 42, 31, .10);
}

/* =========================================================
   BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.hero-ephemere-img {
    display: block;
    width: 70%;
    max-width: 70%;
    margin: 0 auto;
    border-radius: 20%;
}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.site-header {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107, 52, 20, .08);
}

.navbar {
  min-height: 82px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "DM Serif Display", serif;
  color: var(--brown);
  font-size: 1.32rem;
  font-weight: 400;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--green-dark);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-link {
  padding: .75rem .9rem !important;
  color: #514b43;
  font-size: .88rem;
  font-weight: 750;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-dark);
}

/* =========================================================
   BOUTONS
========================================================= */

.btn-order,
.btn-primary-custom {
  padding: .82rem 1.2rem;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(135, 185, 27, .25);
  font-weight: 800;
}

.btn-order:hover,
.btn-primary-custom:hover {
  color: #fff;
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-outline-custom {
  padding: .82rem 1.2rem;
  color: var(--brown);
  background: transparent;
  border: 1px solid rgba(107, 52, 20, .25);
  border-radius: 999px;
  font-weight: 800;
}

.btn-outline-custom:hover {
  color: var(--brown);
  background: #fff;
  border-color: var(--brown);
}

/* =========================================================
   CONTENU PRINCIPAL
========================================================= */

main {
  padding-top: 82px;
}

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

.hero {
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(135, 185, 27, .20),
      transparent 32%
    ),
    var(--cream);
}

.hero .container,
.hero .row {
  min-height: 680px;
}

.eyebrow {
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title {
  color: var(--brown);
  font-family: "DM Serif Display", serif;
  font-weight: 300;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: .94;
  letter-spacing: -.03em;
}

.hero-lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-visual {
  position: relative;
  padding: 45px;
}

.hero-image {
  width: 100%;
  height: 535px;
  object-fit: cover;
  border-radius: 35% 42% 50% 35%;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  bottom: 70px;
  left: 2px;
  display: grid;
  place-content: center;
  width: 150px;
  height: 150px;
  padding: 15px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(71, 101, 9, .25);
  text-align: center;
  transform: rotate(-8deg);
}

.hero-badge strong {
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.hero-badge span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* =========================================================
   SECTIONS
========================================================= */

.section-pad {
  padding: 100px 0;
}

.section-soft {
  background: var(--green-soft);
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
}

.section-copy {
  color: var(--muted);
  line-height: 1.8;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .9rem;
  color: #4f681c;
  background: #fff;
  border: 1px solid #e7efda;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}

/* =========================================================
   PRODUITS
========================================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 205px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: .22s ease;
}

.product-card:hover {
  border-color: rgba(135, 185, 27, .55);
  box-shadow: 0 16px 35px rgba(53, 49, 41, .08);
  transform: translateY(-4px);
}

.product-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.product-category {
  color: var(--green-dark);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-price {
  color: var(--brown);
  white-space: nowrap;
}

.product-card h3 {
  margin: 15px 0 7px;
  color: var(--brown);
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.product-card p {
  flex-grow: 1;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tag {
  padding: .28rem .55rem;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: .63rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* =========================================================
   SAVOIR-FAIRE
========================================================= */

.artisan-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.artisan-gallery {
  position: relative;
  min-height: 560px;
}

.artisan-image-main {
  width: 82%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(31, 38, 32, .13);
}

.artisan-image-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 250px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(31, 38, 32, .16);
}

/* =========================================================
   CARTES D'INFORMATIONS
========================================================= */

.info-card {
  height: 100%;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.info-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--green);
  border-radius: 15px;
  font-size: 1.2rem;
}

.info-card h3 {
  margin: 18px 0 8px;
  color: var(--brown);
  font-size: 1rem;
  font-weight: 900;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}

/* =========================================================
   CTA
========================================================= */

.cta-band {
  padding: 45px;
  color: #fff;
  background: var(--brown);
  border-radius: 32px;
}

.cta-band h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
}

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

.page-hero {
  padding: 95px 0 70px;
  background: var(--cream);
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}

/* =========================================================
   FILTRES DU MENU
========================================================= */

.filters-sticky {
  position: sticky;
  top: 81px;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.filters-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 0;
  scrollbar-width: none;
}

.filter-btn {
  padding: .68rem 1rem;
  color: #625e56;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.search-wrap {
  position: relative;
  min-width: 240px;
  margin-left: auto;
}

.search-wrap i {
  position: absolute;
  top: 50%;
  left: 14px;
  color: #888278;
  transform: translateY(-50%);
}

.search-wrap input {
  width: 100%;
  padding: .72rem 1rem .72rem 2.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.search-wrap input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(135, 185, 27, .10);
}

.menu-meta {
  color: var(--muted);
  font-size: .86rem;
}

.empty-state {
  padding: 70px 15px;
  color: var(--muted);
  text-align: center;
}

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

.contact-card {
  height: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
}

.contact-card h2 {
  color: var(--brown);
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 25px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 14px;
}

.contact-item i {
  color: var(--green-dark);
  font-size: 1.15rem;
}

.map-placeholder {
  display: grid;
  place-content: center;
  min-height: 430px;
  padding: 30px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #edf5df, #d9e8bd);
  border-radius: 25px;
  text-align: center;
}

.map-embed {
  height: 100%;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

/* =========================================================
   ÉPHÉMÈRE DU MOIS
========================================================= */

.ephemere-section {
  background: #fff;
}

.ephemere-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.ephemere-image {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: fill;
}

.ephemere-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: clamp(2rem, 5vw, 5rem);
}

.ephemere-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ephemere-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .7rem .95rem;
  color: var(--brown);
  background: #fff;
  border: 1px solid #e4ddcf;
  border-radius: 999px;
  font-size: .8rem;
}

.ephemere-meta i {
  color: var(--green-dark);
}

.sandwich-image {
  object-position: center;
}

/* =========================================================
   ACTUALITÉS
========================================================= */

.news-section {
  overflow: hidden;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31, 38, 32, .08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(31, 38, 32, .08);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.news-card:hover {
  box-shadow: 0 24px 55px rgba(31, 38, 32, .13);
  transform: translateY(-6px);
}

.news-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ece8df;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.news-card:hover .news-image {
  transform: scale(1.04);
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.news-date {
  margin-bottom: 12px;
  color: var(--bs-secondary-color);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.news-title {
  margin-bottom: 14px;
  font-family: "DM Serif Display", serif;
  font-size: 1.65rem;
  line-height: 1.15;
}

.news-text {
  margin-bottom: 20px;
  color: #62665f;
  line-height: 1.7;
}

.news-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

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

.site-footer {
  color: #fff;
  background: #21170f;
}

.footer-brand {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
}

.footer-title {
  color: #a9cc61;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-text {
  color: rgba(255, 255, 255, .67);
  line-height: 1.7;
}

/*
  Liens standards du footer.
  On exclut :
  - le bouton Facebook ;
  - la signature AventWeb ;
  - les mentions légales ;
  - les liens contenus dans le modal.
*/

.site-footer a:not(.social-link):not(.footer-aventweb):not(.footer-legal):not(.modal-body a) {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .67);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer a.footer-text,
.site-footer .footer-text a {
  color: inherit;
}

.social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .09);
  border-radius: 50%;
}

/* =========================================================
   BAS DU FOOTER
========================================================= */

.footer-bottom {
  padding: 18px 0;
  color: rgba(255, 255, 255, .68);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 40px;
}

/*
  Bas du footer standardisé :
  - 50 % gauche = contenu propre au site
  - 50 % droite = composant central AventWeb / Manager
*/
.footer-site-half,
.footer-manager-half {
  flex: 0 0 calc(50% - 15px);
  width: calc(50% - 15px);
  min-width: 0;
}

.footer-site-half {
  text-align: left;
}

.footer-manager-half {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.footer-manager-half > [data-aw-footer-tools] {
  display: inline-block;
  max-width: 100%;
}

/* Partie gauche */

.footer-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
}

.footer-copyright {
  margin: 0;
  white-space: nowrap;
}

.footer-dot {
  opacity: .4;
  user-select: none;
}

.footer-legal {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  margin: 0 !important;
  padding: 0;
  color: inherit !important;
  background: transparent;
  border: 0;
  font: inherit;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  opacity: .9;
  transition:
    color .25s ease,
    opacity .25s ease;
}

.footer-legal:hover {
  color: #fff !important;
  opacity: 1;
}

/* Partie droite AventWeb */

.footer-aventweb {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: auto !important;
  margin: 0 !important;
  color: inherit !important;
  text-decoration: none;
  white-space: nowrap;
  opacity: .92;
  transition:
    color .25s ease,
    opacity .25s ease;
}

.footer-aventweb img {
  width: 32px;
  height: 32px;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform .25s ease;
}

.footer-aventweb strong {
  color: inherit;
  font-weight: 700;
}

.footer-aventweb:hover {
  color: #fff !important;
  opacity: 1;
}

.footer-aventweb:hover img {
  transform: rotate(-6deg) scale(1.08);
}

/* =========================================================
   MODAL MENTIONS LÉGALES
========================================================= */

.site-footer .modal {
  color: var(--ink);
  text-align: left;
}

.site-footer .modal-dialog {
  color: var(--ink);
}

.site-footer .modal-content {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
}

.site-footer .modal-header {
  padding: 1.4rem 1.5rem;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.site-footer .modal-title {
  margin: 0;
  color: var(--brown);
  font-family: "DM Serif Display", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.site-footer .modal-body {
  padding: 1.5rem;
  color: var(--ink);
  background: #fff;
  font-size: .95rem;
  line-height: 1.8;
}

.site-footer .modal-body h6 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer .modal-body p {
  color: var(--muted);
}

.site-footer .modal-body strong {
  color: var(--ink);
}

.site-footer .modal-body hr {
  margin: 1.5rem 0;
  border-color: var(--line);
  opacity: 1;
}

.site-footer .modal-body a {
  display: inline !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--green-dark) !important;
  background: transparent !important;
  font-weight: 700;
  text-decoration: none;
}

.site-footer .modal-body a:hover {
  color: var(--brown) !important;
  text-decoration: underline;
}

/* =========================================================
   DIVERS
========================================================= */

.facebook-nav {
  color: #1877f2 !important;
  font-size: 1.15rem;
}

/* =========================================================
   RESPONSIVE TABLETTE
========================================================= */

@media (max-width: 991.98px) {

  .navbar-collapse {
    margin: 10px -12px -8px;
    padding: 15px 20px 22px;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .hero,
  .hero .container,
  .hero .row {
    min-height: auto;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-visual {
    padding: 10px 15px 0;
  }

  .hero-image {
    height: 440px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters-wrap {
    flex-wrap: nowrap;
  }

  .search-wrap {
    min-width: 210px;
  }

  .ephemere-image {
    min-height: 390px;
  }

  .facebook-nav {
    padding-left: .9rem !important;
  }

  .artisan-gallery {
    min-height: 510px;
  }

  .artisan-image-main {
    width: 88%;
    height: 390px;
  }

  .artisan-image-secondary {
    width: 55%;
    height: 220px;
  }
}

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

@media (max-width: 767.98px) {

  .footer-bottom-bar {
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    min-height: auto;
    text-align: center;
  }

  .footer-site-half,
  .footer-manager-half {
    flex: 0 0 100%;
    width: 100%;
  }

  .footer-site-half,
  .footer-manager-half {
    text-align: center;
  }

  .footer-manager-half {
    justify-content: center;
  }

  .footer-left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
  }

  .footer-aventweb {
    justify-content: center;
    white-space: nowrap;
  }

  .footer-aventweb img {
    width: 34px;
    height: 34px;
  }

  .news-card-body {
    padding: 23px;
  }

  .news-title {
    font-size: 1.45rem;
  }
}

/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 575.98px) {

  .brand-copy small {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  main {
    padding-top: 72px;
  }

  .navbar {
    min-height: 72px;
  }

  .hero {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-image {
    height: 330px;
    border-radius: 28px;
  }

  .hero-badge {
    bottom: 18px;
    width: 118px;
    height: 118px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    min-height: 185px;
  }

  .artisan-image {
    height: 380px;
  }

  .filters-sticky {
    top: 71px;
  }

  .filters-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
  }

  .filter-btn {
    width: 100%;
  }

  .search-wrap {
    grid-column: 1 / -1;
    min-width: 0;
    margin: 5px 0 0;
  }

  .cta-band {
    padding: 30px 24px;
  }

  .ephemere-card {
    border-radius: 22px;
  }

  .ephemere-image {
    min-height: 300px;
  }

  .ephemere-content {
    padding: 2rem 1.4rem;
  }

  .map-embed {
    min-height: 390px;
  }

  .artisan-gallery {
    display: grid;
    gap: 18px;
    min-height: auto;
  }

  .artisan-image-main,
  .artisan-image-secondary {
    position: static;
    width: 100%;
    height: 280px;
    border: 0;
  }

  .artisan-image-secondary {
    height: 220px;
  }

  .footer-bottom {
    padding: 16px 0;
  }

  .footer-left {
    font-size: .78rem;
  }

  .footer-aventweb {
    gap: 9px;
    font-size: .78rem;
  }

  .footer-aventweb img {
    width: 32px;
    height: 32px;
  }

  .site-footer .modal-dialog {
    margin: .75rem;
  }

  .site-footer .modal-header,
  .site-footer .modal-body {
    padding: 1.25rem;
  }
}

/* Très petits écrans */

@media (max-width: 390px) {

  .footer-left {
    flex-direction: column;
    gap: 5px;
  }

  .footer-dot {
    display: none;
  }

  .footer-aventweb {
    white-space: normal;
    line-height: 1.45;
  }
}
/* =========================================================
   CARTE EN BOUTIQUE — VISUELS 2026
========================================================= */

.menu-boards {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.menu-board-card {
  overflow: hidden;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(53, 49, 41, .08);
}

.menu-board-card img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.menu-board-card figcaption {
  padding: 15px 18px;
  color: var(--brown);
  font-weight: 800;
}

.product-card[data-category="potage"] {
  background: linear-gradient(145deg, #f8fbf0, #fff);
  border-color: rgba(135, 185, 27, .28);
}

@media (max-width: 991.98px) {
  .menu-board-card img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}


/* =========================================================
   PLATEAUX ENTREPRISES & ÉVÉNEMENTS
========================================================= */

.events-section { background:#fff; }

.events-gallery {
  display:grid;
  grid-template-columns:1.45fr .85fr;
  grid-template-rows:1fr 1fr;
  gap:16px;
}

.events-photo {
  position:relative;
  overflow:hidden;
  margin:0;
  border-radius:24px;
  background:#f4f0e8;
  box-shadow:0 18px 50px rgba(53,49,41,.11);
}

.events-photo-main {
  grid-row:1 / 3;
  min-height:530px;
}

.events-photo-small { min-height:255px; }

.events-photo img {
  display:block;
  width:100%;
  height:100%;
  min-height:inherit;
  object-fit:cover;
  transition:transform .45s ease;
}

.events-photo:last-child img { object-position:center 28%; }

.events-photo:hover img { transform:scale(1.025); }

.events-photo figcaption {
  position:absolute;
  right:14px;
  bottom:14px;
  left:14px;
  padding:11px 14px;
  border-radius:14px;
  color:#fff;
  font-size:.86rem;
  font-weight:800;
  line-height:1.3;
  background:rgba(45,29,18,.76);
  backdrop-filter:blur(8px);
}

/* =========================================================
   AVIS GOOGLE
========================================================= */

.google-rating-line {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  color:#6b665e;
}

.google-rating-line strong {
  color:var(--brown);
  font-family:"DM Serif Display",serif;
  font-size:2rem;
  line-height:1;
}

.review-stars {
  color:#f5b301;
  font-size:1.08rem;
  letter-spacing:.08em;
}

.review-card {
  display:flex;
  flex-direction:column;
  padding:26px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 42px rgba(53,49,41,.07);
}

.review-card-top {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.review-avatar {
  display:grid;
  flex:0 0 44px;
  width:44px;
  height:44px;
  place-items:center;
  border-radius:50%;
  color:#fff;
  font-weight:800;
  background:var(--green);
}

.review-card p {
  flex:1;
  margin:0 0 18px;
  color:#5e5a53;
  line-height:1.72;
}

.review-source {
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#77716a;
  font-size:.82rem;
  font-weight:700;
}

.review-note {
  color:#817b74;
  font-size:.79rem;
  text-align:center;
}

/* =========================================================
   HORAIRES
========================================================= */

.opening-hours {
  display:grid;
  gap:5px;
  margin-top:3px;
}

.opening-hours span { display:block; }

.footer-hours {
  display:grid;
  gap:5px;
  line-height:1.55;
}

@media (max-width:991.98px) {
  .events-gallery { grid-template-columns:1.2fr .8fr; }
  .events-photo-main { min-height:430px; }
  .events-photo-small { min-height:205px; }
}

@media (max-width:575.98px) {
  .events-gallery {
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto auto;
  }

  .events-photo-main {
    grid-column:1 / -1;
    grid-row:auto;
    min-height:290px;
  }

  .events-photo-small { min-height:190px; }

  .events-photo figcaption {
    right:9px;
    bottom:9px;
    left:9px;
    padding:9px 10px;
    font-size:.74rem;
  }

  .google-rating-line strong { font-size:1.65rem; }
}


/* =========================================================
   NOTRE SAVOIR-FAIRE — STYLE ORIGINAL
========================================================= */

.artisan-gallery-original {
  position: relative;
  min-height: 560px;
}

.artisan-gallery-original .artisan-image-main {
  position: static;
  display: block;
  width: 82%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(31, 38, 32, 0.13);
}

.artisan-gallery-original .artisan-image-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 250px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(31, 38, 32, 0.16);
}


/* =========================================================
   ENTREPRISES & ÉVÉNEMENTS — MÊME STYLE / FOND PLUS LIGHT
========================================================= */

.events-section-light {
  background: #fbfcf7;
}

.events-artisan-gallery {
  position: relative;
  min-height: 535px;
}

.events-artisan-main {
  display: block;
  width: 84%;
  height: 405px;
  object-fit: cover;
  border-radius: 28px;
  border-bottom: 8px solid var(--green);
  box-shadow: 0 22px 52px rgba(31, 38, 32, 0.11);
}

.events-artisan-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 245px;
  object-fit: cover;
  border: 8px solid #fff;
  border-bottom: 8px solid var(--green);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(31, 38, 32, 0.14);
}

@media (max-width: 991.98px) {
  .artisan-gallery-original {
    min-height: 510px;
  }

  .artisan-gallery-original .artisan-image-main {
    width: 88%;
    height: 390px;
  }

  .artisan-gallery-original .artisan-image-secondary {
    width: 55%;
    height: 220px;
  }

  .events-artisan-gallery {
    min-height: 485px;
  }

  .events-artisan-main {
    width: 88%;
    height: 370px;
  }

  .events-artisan-secondary {
    width: 54%;
    height: 215px;
  }
}

@media (max-width: 575.98px) {
  .artisan-gallery-original,
  .events-artisan-gallery {
    display: grid;
    gap: 16px;
    min-height: auto;
  }

  .artisan-gallery-original .artisan-image-main,
  .artisan-gallery-original .artisan-image-secondary,
  .events-artisan-main,
  .events-artisan-secondary {
    position: static;
    width: 100%;
    height: 270px;
  }

  .artisan-gallery-original .artisan-image-secondary,
  .events-artisan-secondary {
    height: 215px;
  }

  .events-artisan-main,
  .events-artisan-secondary {
    border-bottom-color: var(--green);
  }
}


/* Article de presse — thumbnail + lightbox */
.press-thumbnail{display:inline-flex;align-items:center;gap:14px;max-width:330px;padding:8px 14px 8px 8px;border:1px solid var(--border);border-radius:18px;background:#fff;color:var(--brown);text-align:left;font-weight:800;cursor:pointer;box-shadow:0 10px 28px rgba(31,38,32,.08);transition:transform .2s ease,box-shadow .2s ease}.press-thumbnail:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(31,38,32,.13)}.press-thumbnail img{width:72px;height:72px;object-fit:cover;object-position:top;border-radius:12px;flex:0 0 72px}.press-thumbnail span{display:flex;align-items:center;gap:10px;line-height:1.25}.press-lightbox-content{border:0;border-radius:22px;overflow:hidden}.press-lightbox-image{display:block;width:auto;max-width:100%;max-height:78vh;margin:0 auto;object-fit:contain}@media(max-width:575.98px){.press-thumbnail{max-width:100%;width:100%}}


/* =========================================================
   ÉPHÉMÈRES — RECTANGLE + IMAGE NON DÉFORMÉE
   v20260903
========================================================= */

.ephemere-card > .row {
  min-height: 520px;
}

.ephemere-media-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 520px;
  padding: clamp(22px, 3vw, 42px);
  background:
    radial-gradient(circle at 20% 15%, rgba(135,185,27,.12), transparent 34%),
    #edf5df;
}

.ephemere-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(84%, 430px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(31,38,32,.15);
}

.ephemere-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #fff;
}


/* =========================================================
   FOOTER — HORAIRES ALIGNÉS
========================================================= */

.footer-hours {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  line-height: 1.45;
}

.footer-hours-icon {
  padding-top: 2px;
  color: rgba(255,255,255,.82);
}

.footer-hours-list {
  display: grid;
  gap: 7px;
}

.footer-hours-row {
  display: grid;
  grid-template-columns: minmax(135px, auto) 1fr;
  column-gap: 8px;
  align-items: baseline;
}

.footer-hours-row strong {
  color: rgba(255,255,255,.80);
  font-weight: 700;
}

.footer-hours-row span {
  color: rgba(255,255,255,.67);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .ephemere-card > .row {
    min-height: 0;
  }

  .ephemere-media-panel {
    min-height: 430px;
  }

  .ephemere-image-frame {
    width: min(74%, 390px);
  }
}

@media (max-width: 575.98px) {
  .ephemere-media-panel {
    min-height: 340px;
    padding: 22px;
  }

  .ephemere-image-frame {
    width: min(78%, 285px);
    border-width: 6px;
    border-radius: 22px;
  }

  .ephemere-content {
    padding: 2rem 1.35rem;
  }

  .footer-hours-row {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .footer-hours-list {
    gap: 10px;
  }
}


/* =========================================================
   ÉPHÉMÈRES — CONCEPT D "CARTE INFORMELLE"
   v20260904-01
========================================================= */

.ephemere-card > .row {
  min-height: 520px;
}

.ephemere-note-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 520px;
  padding: 42px 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(135,185,27,.16), transparent 34%),
    linear-gradient(135deg, #eef5df 0%, #f6f7ed 100%);
}

.ephemere-paper-card {
  position: relative;
  z-index: 2;
  width: min(76%, 430px);
  padding: 18px 18px 14px;
  border: 1px solid rgba(107,52,20,.11);
  border-radius: 4px 4px 12px 12px;
  background:
    linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.84)),
    repeating-linear-gradient(
      0deg,
      rgba(107,52,20,.025) 0,
      rgba(107,52,20,.025) 1px,
      transparent 1px,
      transparent 4px
    ),
    #f6eedf;
  box-shadow: 0 24px 52px rgba(44,50,36,.17);
  transform: rotate(-1.2deg);
}

.ephemere-paper-card::before {
  content: "";
  position: absolute;
  inset: -7px 8px 8px -7px;
  z-index: -1;
  border-radius: 7px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 28px rgba(44,50,36,.08);
  transform: rotate(.9deg);
}

.ephemere-paper-pin {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 70px;
  height: 26px;
  border-radius: 2px;
  background: rgba(221,198,154,.78);
  box-shadow: 0 3px 8px rgba(64,54,39,.10);
  transform: translateX(-50%) rotate(1.5deg);
}

.ephemere-photo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
}

.ephemere-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #fff;
}

.ephemere-paper-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 5px 0;
  color: var(--green-dark);
  font-size: .93rem;
  font-weight: 750;
  font-style: italic;
}

.ephemere-paper-caption span {
  color: var(--brown);
  font-size: 1.25rem;
}

.ephemere-note-copy {
  position: absolute;
  top: 78px;
  left: 38px;
  z-index: 3;
  display: grid;
  color: var(--green-dark);
  font-family: "DM Serif Display", serif;
  font-size: 1.55rem;
  line-height: .98;
  transform: rotate(-6deg);
}

.ephemere-note-copy strong {
  font-size: 1.9rem;
  font-weight: 400;
}

.ephemere-note-copy i {
  margin: 8px 0 0 44px;
  font-size: 1.25rem;
}

.ephemere-doodle {
  position: absolute;
  z-index: 1;
  width: 90px;
  height: 90px;
  opacity: .32;
}

.ephemere-doodle-one {
  right: 22px;
  bottom: 28px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  border-radius: 0 0 70px 0;
  transform: rotate(12deg);
}

.ephemere-doodle-two {
  top: 34px;
  right: 54px;
  width: 54px;
  height: 54px;
  border: 2px dashed rgba(135,185,27,.65);
  border-radius: 50%;
}

.ephemere-content {
  padding: clamp(2rem, 4vw, 4.2rem);
}

.ephemere-meta {
  margin-top: 1.5rem !important;
}


/* Désactive l'ancien rendu "grand rectangle + cadre carré" */
.ephemere-media-panel,
.ephemere-image-frame {
  display: none !important;
}

@media (max-width: 991.98px) {
  .ephemere-note-stage {
    min-height: 460px;
  }

  .ephemere-paper-card {
    width: min(68%, 400px);
  }

  .ephemere-note-copy {
    left: 48px;
  }
}

@media (max-width: 575.98px) {
  .ephemere-note-stage {
    min-height: 390px;
    padding: 34px 20px 28px;
  }

  .ephemere-paper-card {
    width: min(82%, 300px);
    padding: 13px 13px 11px;
  }

  .ephemere-note-copy {
    top: 28px;
    left: 18px;
    font-size: 1.15rem;
  }

  .ephemere-note-copy strong {
    font-size: 1.4rem;
  }

  .ephemere-note-copy i {
    margin-left: 28px;
    font-size: 1rem;
  }

  .ephemere-paper-caption {
    font-size: .8rem;
  }

  .ephemere-content {
    padding: 2rem 1.35rem;
  }
}


/* =========================================================
   ÉPHÉMÈRES — CONCEPT E "BADGE + ARDOISE"
   v20260904-01
========================================================= */

.ephemere-card > .row {
  min-height: 500px;
}

.ephemere-badge-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 500px;
  padding: 38px 36px 38px 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(135,185,27,.13), transparent 30%),
    linear-gradient(135deg, #edf5df 0%, #f6f8ef 100%);
}

.ephemere-ribbon {
  position: absolute;
  top: 0;
  left: 26px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 86px;
  min-height: 210px;
  padding: 22px 10px 34px;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg,#6da80c 0%,#79b916 62%,#609708 100%);
  box-shadow: 0 14px 26px rgba(74,111,12,.22);
}

.ephemere-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 0;
  height: 0;
  border-left: 43px solid transparent;
  border-right: 43px solid transparent;
  border-top: 28px solid #609708;
}

.ephemere-ribbon-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-size: 1.15rem;
}

.ephemere-ribbon span,
.ephemere-ribbon strong {
  display: block;
  font-size: .72rem;
  line-height: 1.3;
  letter-spacing: .08em;
}

.ephemere-ribbon strong {
  margin-top: 2px;
  font-weight: 800;
}

.ephemere-ribbon small {
  margin-top: 15px;
  font-size: .8rem;
}

.ephemere-board-wrap {
  position: relative;
  z-index: 2;
  width: min(82%, 500px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 7px solid #b98a56;
  border-radius: 8px;
  background: #1e211d;
  box-shadow: 0 24px 48px rgba(36,45,31,.18),0 0 0 1px rgba(72,48,25,.12);
}

.ephemere-board-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), inset 0 0 20px rgba(0,0,0,.12);
}

.ephemere-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #1e211d;
}

.ephemere-accent {
  position: absolute;
  z-index: 1;
  display: block;
  width: 52px;
  height: 2px;
  background: var(--green);
  opacity: .7;
}

.ephemere-accent::before,
.ephemere-accent::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 34px;
  height: 2px;
  background: inherit;
}

.ephemere-accent::before {
  top: -9px;
  transform: rotate(24deg);
}

.ephemere-accent::after {
  top: 9px;
  transform: rotate(-24deg);
}

.ephemere-accent-top {
  top: 52px;
  right: 40px;
  transform: rotate(-12deg);
}

.ephemere-accent-bottom {
  left: 62px;
  bottom: 50px;
  transform: rotate(18deg);
}

.ephemere-note-stage,
.ephemere-paper-card,
.ephemere-paper-pin,
.ephemere-photo-wrap,
.ephemere-paper-caption,
.ephemere-note-copy,
.ephemere-doodle,
.ephemere-media-panel,
.ephemere-image-frame {
  display: none !important;
}

.ephemere-content {
  padding: clamp(2rem,4vw,4rem);
}

.ephemere-content .section-title {
  max-width: 520px;
}

.ephemere-content .section-copy {
  max-width: 540px;
}

.ephemere-meta {
  margin-top: 1.4rem !important;
}

@media (max-width:1199.98px) {
  .ephemere-badge-stage { padding-left:80px; }
  .ephemere-ribbon { left:20px; width:78px; }
  .ephemere-ribbon::after { border-left-width:39px; border-right-width:39px; }
  .ephemere-board-wrap { width:min(80%,440px); }
}

@media (max-width:991.98px) {
  .ephemere-card > .row { min-height:0; }
  .ephemere-badge-stage { min-height:450px; padding:42px 34px 42px 90px; }
  .ephemere-board-wrap { width:min(72%,390px); }
  .ephemere-ribbon { left:28px; }
}

@media (max-width:575.98px) {
  .ephemere-badge-stage { min-height:390px; padding:48px 18px 28px 68px; }
  .ephemere-ribbon { left:12px; width:64px; min-height:168px; padding:16px 7px 27px; }
  .ephemere-ribbon::after {
    bottom:-22px;
    border-left-width:32px;
    border-right-width:32px;
    border-top-width:22px;
  }
  .ephemere-ribbon-icon { width:34px; height:34px; margin-bottom:11px; font-size:.9rem; }
  .ephemere-ribbon span,
  .ephemere-ribbon strong { font-size:.58rem; }
  .ephemere-ribbon small { margin-top:9px; }
  .ephemere-board-wrap { width:min(88%,285px); border-width:5px; }
  .ephemere-accent-top { top:28px; right:15px; }
  .ephemere-accent-bottom { left:38px; bottom:26px; }
  .ephemere-content { padding:2rem 1.35rem; }
}


/* =========================================================
   ÉPHÉMÈRES — VERSION EXACTE FANION + ARDOISE
   v20260904-04
========================================================= */

.ephemere-card-exact {
  overflow: hidden;
  border: 1px solid #e4ddcf;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.ephemere-card-exact > .row {
  min-height: 520px;
}

.ephemere-visual-exact {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 520px;
  padding: 48px 34px 48px 145px;
  background:
    radial-gradient(circle at 18% 18%, rgba(135,185,27,.10), transparent 30%),
    linear-gradient(135deg,#eef5df 0%,#f7f9f1 100%);
}

.ephemere-fanion-exact {
  position: absolute;
  top: 0;
  left: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 116px;
  min-height: 300px;
  padding: 32px 12px 44px;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg,#6e8f34 0%,#75983a 68%,#5f7f2e 100%);
  box-shadow: 0 14px 26px rgba(68,88,38,.18);
}

.ephemere-fanion-exact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -38px;
  width: 0;
  height: 0;
  border-left: 58px solid transparent;
  border-right: 58px solid transparent;
  border-top: 38px solid #5f7f2e;
}

.ephemere-fanion-logo {
  display: grid;
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(35,48,22,.16);
}

.ephemere-fanion-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ephemere-fanion-text {
  display: grid;
  gap: 2px;
  font-size: .79rem;
  line-height: 1.3;
  letter-spacing: .07em;
}

.ephemere-fanion-text strong {
  font-weight: 800;
}

.ephemere-fanion-star {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-size: .72rem;
}

.ephemere-fanion-star span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,.55);
}

.ephemere-fanion-star i {
  font-style: normal;
}

.ephemere-board-exact {
  width: 100%;
  max-width: 535px;
  overflow: hidden;
  border: 7px solid #bd8c58;
  border-radius: 5px;
  background: #1f211e;
  box-shadow: 0 24px 50px rgba(36,45,31,.18);
}

.ephemere-board-exact .ephemere-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  background: transparent;
}

.ephemere-card-exact .ephemere-content {
  justify-content: center;
  padding: clamp(2.4rem,4.2vw,4.5rem);
  background: #fbf7ef;
}

.ephemere-card-exact .ephemere-content .section-title {
  max-width: 540px;
}

.ephemere-card-exact .ephemere-content .section-copy {
  max-width: 560px;
}

.ephemere-card-exact .ephemere-meta {
  display: grid;
  justify-items: start;
  gap: 10px;
}

/* Neutralise tous les anciens concepts visuels de cette section */
.ephemere-badge-stage,
.ephemere-ribbon,
.ephemere-board-wrap,
.ephemere-accent,
.ephemere-note-stage,
.ephemere-paper-card,
.ephemere-paper-pin,
.ephemere-photo-wrap,
.ephemere-paper-caption,
.ephemere-note-copy,
.ephemere-doodle,
.ephemere-media-panel,
.ephemere-image-frame,
.ephemere-rays {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .ephemere-visual-exact {
    padding-left: 132px;
  }

  .ephemere-fanion-exact {
    left: 22px;
    width: 104px;
  }

  .ephemere-fanion-exact::after {
    border-left-width: 52px;
    border-right-width: 52px;
  }

  .ephemere-fanion-logo {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 991.98px) {
  .ephemere-card-exact > .row {
    min-height: 0;
  }

  .ephemere-visual-exact {
    min-height: 470px;
    padding: 48px 38px 48px 140px;
  }

  .ephemere-board-exact {
    max-width: 500px;
  }
}

@media (max-width: 575.98px) {
  .ephemere-card-exact {
    border-radius: 22px;
  }

  .ephemere-visual-exact {
    min-height: 390px;
    padding: 42px 18px 32px 82px;
  }

  .ephemere-fanion-exact {
    left: 10px;
    width: 68px;
    min-height: 190px;
    padding: 16px 6px 28px;
  }

  .ephemere-fanion-exact::after {
    bottom: -22px;
    border-left-width: 34px;
    border-right-width: 34px;
    border-top-width: 22px;
  }

  .ephemere-fanion-logo {
    width: 52px;
    height: 52px;
    margin-bottom: 13px;
  }

  .ephemere-fanion-text {
    font-size: .54rem;
  }

  .ephemere-fanion-star {
    gap: 4px;
    margin-top: 10px;
    font-size: .56rem;
  }

  .ephemere-fanion-star span {
    width: 12px;
  }

  .ephemere-board-exact {
    border-width: 5px;
  }

  .ephemere-card-exact .ephemere-content {
    padding: 2rem 1.35rem;
  }
}


/* =========================================================
   ÉPHÉMÈRES — AJUSTEMENT FIDÈLE AU MOCKUP
   v20260904-05
   Modification limitée à cette section.
========================================================= */

.ephemere-card-exact > .row {
  min-height: 610px;
}

/* Zone visuelle plus large comme sur le mockup */
.ephemere-visual-exact {
  min-height: 610px;
  padding: 72px 38px 58px 165px;
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(135,185,27,.09), transparent 28%),
    linear-gradient(135deg,#eef5df 0%,#f7f9f1 100%);
}

/* Fanion plus présent et proportionné comme la référence */
.ephemere-fanion-exact {
  top: 0;
  left: 36px;
  width: 140px;
  min-height: 360px;
  padding: 38px 14px 52px;
  background: linear-gradient(180deg,#708f3c 0%,#75973f 70%,#607f32 100%);
  box-shadow: 0 15px 28px rgba(68,88,38,.16);
}

.ephemere-fanion-exact::after {
  bottom: -46px;
  border-left-width: 70px;
  border-right-width: 70px;
  border-top-width: 46px;
  border-top-color: #607f32;
}

.ephemere-fanion-logo {
  width: 104px;
  height: 104px;
  margin-bottom: 28px;
}

.ephemere-fanion-text {
  gap: 4px;
  font-size: .88rem;
  line-height: 1.35;
  letter-spacing: .055em;
}

.ephemere-fanion-star {
  gap: 9px;
  margin-top: 26px;
  font-size: .78rem;
}

.ephemere-fanion-star span {
  width: 26px;
}

/* Ardoise nettement plus grande et collée visuellement au fanion */
.ephemere-board-exact {
  width: 100%;
  max-width: 650px;
  border-width: 7px;
  box-shadow: 0 26px 54px rgba(36,45,31,.17);
}

/* Colonne droite un peu plus compacte comme le mockup */
.ephemere-card-exact .ephemere-content {
  padding: 3.6rem 3.25rem;
}

.ephemere-card-exact .ephemere-content .section-title {
  max-width: 560px;
}

.ephemere-card-exact .ephemere-content .section-copy {
  max-width: 520px;
}

@media (max-width: 1199.98px) {
  .ephemere-card-exact > .row {
    min-height: 560px;
  }

  .ephemere-visual-exact {
    min-height: 560px;
    padding: 64px 30px 52px 145px;
  }

  .ephemere-fanion-exact {
    left: 26px;
    width: 124px;
    min-height: 330px;
  }

  .ephemere-fanion-exact::after {
    border-left-width: 62px;
    border-right-width: 62px;
  }

  .ephemere-fanion-logo {
    width: 92px;
    height: 92px;
  }

  .ephemere-board-exact {
    max-width: 570px;
  }

  .ephemere-card-exact .ephemere-content {
    padding: 3rem 2.4rem;
  }
}

@media (max-width: 991.98px) {
  .ephemere-card-exact > .row {
    min-height: 0;
  }

  .ephemere-visual-exact {
    min-height: 510px;
    padding: 58px 34px 50px 145px;
  }

  .ephemere-board-exact {
    max-width: 520px;
  }
}

@media (max-width: 575.98px) {
  .ephemere-visual-exact {
    min-height: 390px;
    padding: 46px 16px 30px 82px;
  }

  .ephemere-fanion-exact {
    left: 10px;
    width: 68px;
    min-height: 190px;
    padding: 16px 6px 28px;
  }

  .ephemere-fanion-exact::after {
    bottom: -22px;
    border-left-width: 34px;
    border-right-width: 34px;
    border-top-width: 22px;
  }

  .ephemere-fanion-logo {
    width: 52px;
    height: 52px;
    margin-bottom: 13px;
  }

  .ephemere-fanion-text {
    font-size: .54rem;
  }

  .ephemere-fanion-star {
    gap: 4px;
    margin-top: 10px;
    font-size: .56rem;
  }

  .ephemere-fanion-star span {
    width: 12px;
  }

  .ephemere-card-exact .ephemere-content {
    padding: 2rem 1.35rem;
  }
}


/* =========================================================
   ÉPHÉMÈRES — VERSION SIMPLE
   v20260904-06
========================================================= */

.ephemere-card-simple {
  overflow: hidden;
  border: 1px solid #e4ddcf;
  border-radius: 30px;
  background: #fbf7ef;
  box-shadow: var(--shadow);
}

.ephemere-card-simple > .row {
  min-height: 520px;
}

/* Même fond sur toute la box */
.ephemere-card-simple .col-lg-6 {
  background: #fbf7ef;
}

.ephemere-simple-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 44px;
}

.ephemere-simple-media .ephemere-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  border: 6px solid #b98a56;
  border-radius: 6px;
  background: transparent;
  box-shadow: 0 20px 42px rgba(36,45,31,.15);
}

.ephemere-card-simple .ephemere-content {
  justify-content: center;
  padding: clamp(2.5rem,4.5vw,4.5rem);
  background: transparent;
}

.ephemere-card-simple .ephemere-content .section-title {
  max-width: 540px;
}

.ephemere-card-simple .ephemere-content .section-copy {
  max-width: 560px;
}

.ephemere-card-simple .ephemere-meta {
  display: grid;
  justify-items: start;
  gap: 10px;
}

/* Désactive tout ancien habillage de la section */
.ephemere-fanion-exact,
.ephemere-visual-exact,
.ephemere-board-exact,
.ephemere-badge-stage,
.ephemere-ribbon,
.ephemere-board-wrap,
.ephemere-accent,
.ephemere-note-stage,
.ephemere-paper-card,
.ephemere-paper-pin,
.ephemere-photo-wrap,
.ephemere-paper-caption,
.ephemere-note-copy,
.ephemere-doodle,
.ephemere-media-panel,
.ephemere-image-frame,
.ephemere-rays {
  display: none !important;
}

@media (max-width: 991.98px) {
  .ephemere-card-simple > .row {
    min-height: 0;
  }

  .ephemere-simple-media {
    min-height: 420px;
    padding: 36px;
  }

  .ephemere-simple-media .ephemere-image {
    max-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .ephemere-card-simple {
    border-radius: 22px;
  }

  .ephemere-simple-media {
    min-height: 320px;
    padding: 24px;
  }

  .ephemere-simple-media .ephemere-image {
    max-height: 280px;
    border-width: 4px;
  }

  .ephemere-card-simple .ephemere-content {
    padding: 2rem 1.35rem;
  }
}


/* =========================================================
   ÉPHÉMÈRES — CADRE BOIS PARTAGÉ
   Accueil + page La carte
   v20260904-07
========================================================= */

.ephemere-wood-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  overflow: hidden;
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      7deg,
      rgba(255,255,255,.10) 0 2px,
      rgba(82,45,18,.07) 2px 4px,
      transparent 4px 8px
    ),
    linear-gradient(
      90deg,
      #9b673c 0%,
      #c28b58 12%,
      #a76f40 28%,
      #d3a06c 44%,
      #9a6034 61%,
      #c68e59 78%,
      #9b6539 100%
    );
  box-shadow:
    0 20px 42px rgba(36,45,31,.15),
    inset 0 0 0 1px rgba(93,54,25,.28),
    inset 0 0 0 3px rgba(255,255,255,.10);
}

.ephemere-wood-frame::before {
  content: "";
  position: absolute;
  inset: 3px;
  pointer-events: none;
  border: 1px solid rgba(80,43,19,.22);
  border-radius: 5px;
}

.ephemere-wood-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border: 0 !important;
  border-radius: 2px !important;
  background: transparent;
}

/* Accueil */
.ephemere-simple-media .ephemere-wood-frame-home {
  width: auto;
  max-width: 100%;
}

.ephemere-simple-media .ephemere-wood-frame-home .ephemere-image {
  width: auto;
  max-width: 100%;
  max-height: 430px;
  object-fit: contain;
  box-shadow: none;
}

/* La carte : même cadre, même rendu d'image */
.hero-ephemere {
  display: flex;
  justify-content: center;
}

.ephemere-wood-frame-menu {
  width: min(78%, 360px);
}

.ephemere-wood-frame-menu .hero-ephemere-img {
  width: 100%;
  max-width: none;
  margin: 0;
  object-fit: contain;
  border-radius: 2px;
}

/* Neutralise l'ancien style rond de l'image de la carte */
.hero-ephemere-img {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 2px;
}

@media (max-width: 991.98px) {
  .ephemere-wood-frame {
    padding: 10px;
  }

  .ephemere-simple-media .ephemere-wood-frame-home .ephemere-image {
    max-height: 360px;
  }

  .ephemere-wood-frame-menu {
    width: min(68%, 330px);
  }
}

@media (max-width: 575.98px) {
  .ephemere-wood-frame {
    padding: 8px;
  }

  .ephemere-simple-media .ephemere-wood-frame-home .ephemere-image {
    max-height: 280px;
  }

  .ephemere-wood-frame-menu {
    width: min(78%, 290px);
  }
}
