


:root {
  
  --bg-primary:     #F5F0EB;  
  --bg-secondary:   #E8DDD3;  
  --bg-dark:        #3C3228;  
  --bg-footer:      #1E1814;  

  
  --accent:         #7A8B5C;  
  --accent-light:   #A3B18A;  
  --accent-text:    #556040;  

  
  --text-primary:   #2A2118;  
  --text-secondary: #7A6A5A;  

  
  --text-on-dark:   #F5F0EB;
  --text-on-dark-2: #C4A882;

  
  --border-light:   rgba(42, 33, 24, 0.1);
  --border-dark:    rgba(245, 240, 235, 0.07);

  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);

  
  --section-v: 120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; }

address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.9;
}



.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}



section {
  padding: var(--section-v) 0;
  position: relative;
}


.section-toned {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}



.btn-primary {
  display: inline-block;
  padding: 1rem 2.75rem;
  background: var(--accent);
  color: #F5F0EB;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}


.btn-primary--light {
  background: transparent;
  color: #F5F0EB;
  border-color: #F5F0EB;
}

.btn-primary--light:hover {
  background: #F5F0EB;
  color: var(--bg-dark);
  border-color: #F5F0EB;
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--accent-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #F5F0EB;
}



.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 4;
}



[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

[data-animate="slide-left"]  { transform: translateX(-48px); }
[data-animate="slide-right"] { transform: translateX(48px); }

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}



#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3.5rem;
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s var(--ease),
    padding 0.45s var(--ease),
    border-color 0.45s var(--ease);
}


.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #F5F0EB;
  z-index: 901;
  transition: color var(--transition);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.8);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-light);
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover {
  color: #F5F0EB;
}

.nav-menu a:hover::after,
.nav-menu a.active-link::after {
  width: 100%;
}

.nav-menu a.active-link {
  color: #F5F0EB;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 901;
}

.burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #F5F0EB;
  transform-origin: center;
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s var(--ease);
}


#navbar.scrolled {
  background: rgba(245, 240, 235, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.25rem 3.5rem;
  border-bottom-color: var(--border-light);
}

#navbar.scrolled .nav-logo {
  color: var(--text-primary);
}

#navbar.scrolled .nav-menu a {
  color: var(--text-secondary);
}

#navbar.scrolled .nav-menu a:hover,
#navbar.scrolled .nav-menu a.active-link {
  color: var(--text-primary);
}

#navbar.scrolled .nav-menu a::after {
  background: var(--accent);
}

#navbar.scrolled .burger span {
  background: var(--text-primary);
}


.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 33, 24, 0.55);
  z-index: 898;
  backdrop-filter: blur(3px);
}

.nav-overlay.visible { display: block; }



#hero {
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: -18%;
  width: 136%;
  height: 136%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(42, 33, 24, 0.28) 0%,
    rgba(42, 33, 24, 0.58) 55%,
    rgba(26, 20, 14, 0.88) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 2rem;
  animation: heroIn 1.3s var(--ease) forwards;
}

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

.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroIn 1s var(--ease) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: #F5F0EB;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroIn 1s var(--ease) 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(245, 240, 235, 0.75);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: heroIn 1s var(--ease) 0.6s forwards;
}

.hero-content .btn-primary {
  opacity: 0;
  animation: heroIn 1s var(--ease) 0.8s forwards;
}


#hero .btn-primary {
  background: var(--accent);
  color: #F5F0EB;
  border-color: var(--accent);
}

#hero .btn-primary:hover {
  background: transparent;
  color: var(--accent-light);
  border-color: var(--accent-light);
}


.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--accent-light));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  80%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}



#histoire {
  background: var(--bg-primary);
  overflow: hidden;
}

.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.histoire-content .section-label,
.histoire-content .section-title {
  text-align: left;
}

.histoire-content .section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  margin-bottom: 1.75rem;
}

.histoire-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.histoire-content .btn-secondary { margin-top: 1.25rem; }

.histoire-image-wrapper { position: relative; }

.histoire-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.histoire-image-accent {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  width: 55%;
  height: 55%;
  border: 1.5px solid var(--accent);
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}



#carte {
  background: var(--bg-secondary);
}

.carte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.carte-card {
  background: #FEFCF9;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.carte-card:hover {
  transform: translateY(-8px);
  border-color: rgba(122, 139, 92, 0.4);
  box-shadow:
    0 8px 24px rgba(42, 33, 24, 0.08),
    0 24px 56px rgba(42, 33, 24, 0.06);
}

.carte-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.carte-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.carte-card:hover .carte-card-img {
  transform: scale(1.09);
}

.carte-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(85, 96, 64, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.carte-card:hover .carte-card-overlay {
  opacity: 1;
}

.carte-card-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: #F5F0EB;
}

.carte-card-body { padding: 1.5rem 1.6rem 1.75rem; }

.carte-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.carte-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}



.menu-wrapper {
  margin-top: 4rem;
  border-top: 1px solid var(--border-light);
}

.menu-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.menu-block-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-block-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-primary);
}

.menu-block-hours {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-text);
}


.menu-items-list { width: 100%; }

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-light);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.menu-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.menu-item-desc {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--accent-text);
  white-space: nowrap;
  flex-shrink: 0;
}


.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.menu-subcategory-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}


.menu-signature {
  padding: 1.4rem 1.6rem;
  background: var(--bg-primary);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.5rem;
}

.menu-signature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.menu-signature-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
}

.menu-signature-note {
  font-size: 0.83rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}


.menu-options-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.menu-options-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.menu-option-pill {
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 2px;
}


.menu-recettes-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.menu-recette-price-tag {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.menu-recette-price-tag strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

.menu-recette-sep {
  color: var(--border-light);
  font-size: 1rem;
}

.menu-recettes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.menu-recette-card {
  padding: 1.25rem 1.4rem 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 4px 4px;
}

.menu-recette-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.menu-recette-desc {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
}


.menu-sides { margin-bottom: 2rem; }

.menu-sides-list { max-width: 360px; }


.menu-formules {
  padding: 1.75rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}

.menu-formules-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 1rem;
}

.menu-formules-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-bottom: 0.75rem;
}

.menu-formule-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.menu-formule-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--accent-text);
  min-width: 1.6rem;
}

.menu-formules-note {
  font-size: 0.77rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}


.menu-vitrine {
  padding: 2.5rem;
  text-align: center;
  border: 1px dashed rgba(122, 139, 92, 0.45);
  border-radius: 6px;
  margin: 2rem 0;
}

.menu-vitrine .section-label {
  text-align: center;
  margin-bottom: 0.75rem;
}

.menu-vitrine-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}


.menu-brunch {
  padding: 3rem;
  background: var(--bg-dark);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.menu-brunch-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}

.menu-brunch-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 0.4rem;
}

.menu-brunch-hours { color: var(--accent-light); }

.menu-brunch-price-block {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  flex-shrink: 0;
}

.menu-brunch-price {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1;
}

.menu-brunch-price-currency {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-top: 0.5rem;
}

.menu-brunch-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.menu-brunch-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.menu-brunch-item {
  border-bottom-color: var(--border-dark);
}

.menu-brunch-item .menu-item-name { color: var(--text-on-dark); }
.menu-brunch-item .menu-item-desc { color: var(--text-on-dark-2); }

.menu-brunch-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-brunch-list li {
  font-size: 0.88rem;
  color: var(--text-on-dark-2);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  line-height: 1.5;
}

.menu-brunch-list li::before {
  content: '—';
  color: var(--accent-light);
  flex-shrink: 0;
}

.menu-brunch-list em {
  font-style: italic;
  opacity: 0.75;
}



#experience {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.experience-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  transform: translateZ(0);
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 34, 24, 0.88) 0%,
    rgba(60, 50, 40, 0.72) 100%
  );
  z-index: 1;
}

.experience-content {
  position: relative;
  z-index: 3;
  padding: var(--section-v) 2.5rem;
  width: 100%;
  text-align: center;
}


#experience .section-label {
  color: var(--accent-light);
}

#experience .section-title {
  color: var(--text-on-dark);
}

#experience .section-title em {
  color: var(--accent-light);
}

.experience-title {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  margin-bottom: 5rem;
}

.experience-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 0 5rem;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.stat-icon {
  display: block;
  font-size: 1.8rem;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-2);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border-dark);
  flex-shrink: 0;
  border: none;
}



#galerie {
  background: var(--bg-primary);
}

#galerie .container { margin-bottom: 3rem; }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 240px);
  gap: 6px;
  padding: 0 1.5rem;
}

.galerie-item:nth-child(1) { grid-row: 1 / 3; }
.galerie-item:nth-child(7) { grid-column: 2 / 4; }

.galerie-item {
  position: relative;
  overflow: hidden;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.galerie-item:hover img,
.galerie-item:focus-visible img {
  transform: scale(1.06);
}

.galerie-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(85, 96, 64, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galerie-item-overlay span {
  font-size: 3rem;
  font-weight: 200;
  color: #fff;
  line-height: 1;
}

.galerie-item:hover .galerie-item-overlay,
.galerie-item:focus-visible .galerie-item-overlay {
  opacity: 1;
}

.galerie-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}



#avis {
  background: var(--bg-secondary);
}

.elfsight-wrapper {
  margin-top: 2rem;
  transform: scale(0.85);
  transform-origin: top center;
  margin-bottom: -2rem;
}



#trouver {
  background: var(--bg-primary);
}

.trouver-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.trouver-info {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.trouver-block-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.85rem;
}

.horaires-table {
  border-collapse: collapse;
  width: 100%;
}

.horaires-table td {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.horaires-table td:last-child {
  text-align: right;
  color: var(--text-primary);
  font-weight: 500;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.social-link:hover { color: var(--accent-text); }

.trouver-map {
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  filter: sepia(12%) saturate(0.85) brightness(0.97);
  transition: filter var(--transition);
}

.trouver-map:hover {
  filter: sepia(5%) saturate(1) brightness(1);
}



#footer {
  background: var(--bg-footer);
  padding: 5rem 0 2.5rem;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 2rem;
}

.footer-logo {
  display: block;
  color: #F5F0EB;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-on-dark-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.footer-social a {
  color: var(--text-on-dark-2);
  transition: color var(--transition);
}

.footer-social a:hover { color: var(--accent-light); }

.footer-nav-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-on-dark-2);
  transition: color var(--transition);
}

.footer-nav a:hover { color: #F5F0EB; }

.footer-contact address {
  font-size: 0.9rem;
  color: var(--text-on-dark-2);
}

.footer-contact a {
  color: var(--accent-light);
  transition: color var(--transition);
}

.footer-contact a:hover { color: #F5F0EB; }


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--text-on-dark-2);
  opacity: 0.55;
}

.footer-legal a {
  color: inherit;
  transition: opacity var(--transition);
}

.footer-legal a:hover { opacity: 1; }

.footer-credit {
  font-size: 0.78rem;
  color: var(--text-on-dark-2);
  opacity: 0.55;
  transition: opacity var(--transition);
}

.footer-credit:hover { opacity: 1; }

.footer-credit a {
  color: var(--accent-light);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: #F5F0EB;
  opacity: 1;
}



.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 24, 20, 0.97);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80vw;
  max-height: 88vh;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 88vh;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(245, 240, 235, 0.6);
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  transition:
    color var(--transition),
    transform var(--transition);
}

.lightbox-close:hover {
  color: #F5F0EB;
  transform: rotate(90deg);
}

.lightbox-btn {
  background: rgba(245, 240, 235, 0.06);
  border: 1px solid rgba(245, 240, 235, 0.12);
  color: rgba(245, 240, 235, 0.8);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.lightbox-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #F5F0EB;
}



@media (max-width: 1100px) {
  #navbar { padding: 1.75rem 2.5rem; }
  #navbar.scrolled { padding: 1.1rem 2.5rem; }

  .histoire-grid { gap: 4rem; }
  .histoire-image { height: 480px; }

  .menu-recettes-grid { grid-template-columns: repeat(2, 1fr); }

  .stat { padding: 0 3rem; }

  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 220px);
  }
  .galerie-item:nth-child(1) { grid-row: 1 / 3; grid-column: auto; }
  .galerie-item:nth-child(7) { grid-column: auto; grid-row: auto; }

  .trouver-grid { gap: 3rem; }
  .trouver-map { height: 420px; }

  .footer-grid { gap: 2.5rem; }
}



@media (max-width: 768px) {
  :root { --section-v: 80px; }

  .container { padding: 0 1.5rem; }

  
  #navbar { padding: 1.2rem 1.5rem; }
  #navbar.scrolled { padding: 1rem 1.5rem; }

  .burger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(80vw, 320px);
    height: 100vh;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.75rem;
    transition: right 0.45s var(--ease);
    z-index: 899;
  }

  .nav-menu.active { right: 0; }

  
  .nav-menu a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.16em;
  }
  .nav-menu a:hover,
  .nav-menu a.active-link { color: var(--text-primary); }
  .nav-menu a::after { background: var(--accent); }

  
  .burger span { background: #F5F0EB; }
  #navbar.scrolled .burger span { background: var(--text-primary); }

  
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-subtitle { font-size: 0.95rem; }

  
  .histoire-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .histoire-image-wrapper { order: -1; }
  .histoire-image { height: 320px; }
  .histoire-image-accent { display: none; }
  .histoire-content .section-title { font-size: 1.9rem; }

  
  .menu-cols { grid-template-columns: 1fr; gap: 2rem; }
  .menu-recettes-grid { grid-template-columns: 1fr; }
  .menu-brunch { padding: 2rem; }
  .menu-brunch-body { grid-template-columns: 1fr; gap: 2rem; }
  .menu-brunch-price { font-size: 3rem; }

  
  .experience-bg { background-attachment: scroll; }
  .experience-title { margin-bottom: 3.5rem; }
  .stat { padding: 0 1.5rem; min-width: 150px; }

  
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
    padding: 0 1.5rem;
  }
  .galerie-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .galerie-item:nth-child(7) { grid-column: 1 / 3; }

  
  .avis-track { min-height: 380px; }

  
  .trouver-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trouver-map { height: 300px; }

  
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }

  
  .lightbox { gap: 0.75rem; padding: 1rem; }
  .lightbox-btn { width: 42px; height: 42px; }
  .lightbox-img-wrapper { max-width: 88vw; }
  .lightbox-img { max-width: 88vw; }
}



@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .galerie-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 1.25rem;
  }
  .galerie-item { height: 220px; }
  .galerie-item:nth-child(7) { grid-column: auto; }

  .experience-stats { flex-direction: column; gap: 2.5rem; }
  .stat-divider { width: 50px; height: 1px; }

  .histoire-image { height: 260px; }
  .hero-title { font-size: 2.2rem; }
  .menu-brunch { padding: 1.5rem; }
  .menu-vitrine { padding: 1.75rem; }
  .menu-formules { padding: 1.25rem; }
}
