/* ═══════════════════════════════════════════════════════════════════
   SERGENT WILLYS — style.css
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ──────────────────────────────────────────────── */
:root {
  --green:        #2F5D50;
  --green-dark:   #1E3D34;
  --green-deep:   #152C26;
  --sand:         #D8C9A3;
  --sand-light:   #EDE6D6;
  --white:        #FFFFFF;
  --text-body:    #C8BFA8;
  --overlay:      rgba(21, 44, 38, 0.82);

  --font-display: 'Bebas Neue', cursive;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Lato', sans-serif;

  --radius:       6px;
  --trans:        0.35s ease;
  --section-pad:  110px 0;
}

/* ─── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--green-deep);
  color: var(--sand-light);
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── NOISE TEXTURE OVERLAY ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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: .035;
  pointer-events: none;
  z-index: 9999;
}

/* ─── UTILITIES ──────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
}
.section-title span { color: var(--sand); }

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--trans);
}
.btn-primary {
  background: var(--sand);
  color: var(--green-deep);
  border-color: var(--sand);
}
.btn-primary:hover {
  background: transparent;
  color: var(--sand);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-deep);
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible    { opacity: 1; transform: translateY(0); }
.reveal-delay-1    { transition-delay: .1s; }
.reveal-delay-2    { transition-delay: .22s; }
.reveal-delay-3    { transition-delay: .34s; }

.season-banner {
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: none;
}
.season-banner.open {
  display: block;
  background: var(--sand);
  color: var(--green-deep);
}
.season-banner.closed {
  display: block;
  background: var(--green-dark);
  color: var(--text-body);
  border-bottom: 1px solid rgba(216,201,163,.15);
}

/* ══════════════════════════════════════════════════════════════════ */
/* NAVBAR                                                             */
/* ══════════════════════════════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans), transform .3s ease;
}

#navbar.hidden {
  transform: translateY(-100%);
}

#navbar.scrolled {
  background: var(--green-dark);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: .08em;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo img {
  height: 70px;
  width: auto;
  display: block;
}
.nav-logo span { color: var(--sand); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sand-light);
  position: relative;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--sand);
  transition: width var(--trans);
}
.nav-links a:hover        { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta                  { margin-left: 16px; }

/* Desktop right */
.nav-desktop-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile right */
.nav-mobile-right {
  display: none;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--sand-light);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav déroulant */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--green-dark);
  position: absolute;
  top: 100%; left: 0; right: 0;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(216,201,163,.15);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand-light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(216,201,163,.1);
  transition: color var(--trans);
}
.nav-mobile a:hover { color: var(--sand); }
.nav-mobile .btn    { margin-top: 16px; align-self: flex-start; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links          { display: none; }
  .nav-desktop-right  { display: none; }
  .nav-mobile-right   { display: flex; }
  .nav-logo img       { height: 50px; }
}



/* ══════════════════════════════════════════════════════════════════ */
/* HERO                                                               */
/* ══════════════════════════════════════════════════════════════════ */
#accueil {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.hero-bg svg {
  position: absolute;
  width: 100%; height: 100%;
  opacity: .07;
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 70% 70% at 60% 50%, rgba(47,93,80,.6) 0%, transparent 70%);
}
.hero-stripes {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  z-index: 2;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(216,201,163,.04) 48px,
    rgba(216,201,163,.04) 50px
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp .8s ease .2s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--sand);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: .92;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp .9s ease .35s both;
}
.hero-title .accent { color: var(--sand); }
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--sand-light);
  margin-bottom: 48px;
  max-width: 500px;
  animation: fadeUp .9s ease .5s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .9s ease .65s both;
}
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease .9s both;
}
.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .7;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(216,201,163,.4);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--sand);
  border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}

/* Stars decoration */
.hero-stars {
  position: absolute;
  top: 60px; right: 80px;
  display: flex;
  gap: 10px;
  animation: fadeUp 1s ease 1s both;
}
.star {
  width: 8px; height: 8px;
  background: var(--sand);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  opacity: .6;
}
.star:nth-child(2) { opacity: .35; transform: scale(.7); }
.star:nth-child(3) { opacity: .2;  transform: scale(.5); }

/* ── Keyframes ── */
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════ */
/* TICKER BANNER                                                      */
/* ══════════════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--sand);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker {
  display: inline-flex;
  gap: 0;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .15em;
  color: var(--green-deep);
  padding: 0 40px;
}
.ticker-item::before {
  content: '★';
  margin-right: 40px;
  opacity: .5;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════════ */
/* CONCEPT                                                            */
/* ══════════════════════════════════════════════════════════════════ */
#concept {
  padding: var(--section-pad);
  background: var(--green-dark);
  position: relative;
}
#concept::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,201,163,.3), transparent);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 90px;
}
.concept-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 16px;
}
.concept-text p strong { color: var(--sand-light); font-weight: 700; }
.concept-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  border-left: 3px solid var(--sand);
  padding-left: 24px;
  margin-top: 32px;
  line-height: 1.5;
}
.concept-image-block { position: relative; }
.concept-image-frame {
  aspect-ratio: 4/5;
  background: var(--green);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.concept-image-frame .img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.concept-image-frame .img-placeholder svg { width: 80px; opacity: .2; }
.concept-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--sand);
  color: var(--green-deep);
  padding: 20px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .05em;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.concept-badge small {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 4px;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--green-deep);
  border: 1px solid rgba(216,201,163,.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.pillar-card:hover {
  border-color: rgba(216,201,163,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 52px; height: 52px;
  background: rgba(216,201,163,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* ══════════════════════════════════════════════════════════════════ */
/* MENU                                                               */
/* ══════════════════════════════════════════════════════════════════ */
#menu {
  padding: var(--section-pad);
  background: var(--green-deep);
  position: relative;
}
#menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,201,163,.3), transparent);
}
.menu-header { text-align: center; margin-bottom: 64px; }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 2px solid rgba(216,201,163,.25);
  border-radius: 40px;
  background: transparent;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--sand);
  color: var(--green-deep);
  border-color: var(--sand);
}
.menu-panel        { display: none; }
.menu-panel.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--green-dark);
  border: 1px solid rgba(216,201,163,.1);
  border-radius: var(--radius);
  transition: border-color var(--trans), background var(--trans);
}
.menu-item:hover {
  border-color: rgba(216,201,163,.3);
  background: rgba(47,93,80,.4);
}
.menu-item-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.menu-item-info p {
  font-size: .82rem;
  line-height: 1.5;
  color: var(--text-body);
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sand);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-category-label {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(216,201,163,.2);
}

/* ══════════════════════════════════════════════════════════════════ */
/* GALERIE                                                            */
/* ══════════════════════════════════════════════════════════════════ */
#galerie {
  padding: var(--section-pad);
  background: var(--green-dark);
  position: relative;
}
#galerie::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,201,163,.3), transparent);
}
.galerie-header { text-align: center; margin-bottom: 56px; }

.gallery-grid {
  columns: 3;
  column-gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-ph {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.gallery-ph img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-item:hover .gallery-ph { transform: scale(1.04); }
@media (max-width: 600px) {
  .gallery-grid { columns: 1; }
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay svg { width: 32px; color: var(--white); opacity: .9; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-note {
  text-align: center;
  margin-top: 18px;
  font-size: .78rem;
  color: var(--text-body);
  opacity: .5;
  font-family: var(--font-heading);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════════
   NOUS TROUVER
   ══════════════════════════════════════════════════════════════════ */
#nous-trouver {
  padding: var(--section-pad);
  background: var(--green-dark);
  position: relative;
}
#nous-trouver::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,201,163,.3), transparent);
}
.trouver-header {
  text-align: center;
  margin-bottom: 56px;
}

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

/* Carte SVG */
.map-block {}
.map-frame {
  border: 1px solid rgba(216,201,163,.2);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.arromanches-map {
  display: block;
  width: 100%;
  height: auto;
}
.map-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--sand);
  opacity: .8;
}

/* Infos pratiques */
.infos-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--green-deep);
  border: 1px solid rgba(216,201,163,.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color var(--trans);
}
.info-card:hover { border-color: rgba(216,201,163,.25); }
.info-card-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-card h4 {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 6px;
}
.info-card a, .info-card p {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.6;
  transition: color var(--trans);
}
.info-card a:hover { color: var(--sand-light); }

.hours-card { align-items: flex-start; }

.seasons-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.season {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-radius: 4px;
  gap: 12px;
}
.season-peak {
  background: rgba(216,201,163,.08);
  border: 1px solid rgba(216,201,163,.2);
}
.season-closed {
  opacity: .45;
}
.season-name {
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--sand-light);
}
.season-hours {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 600;
  color: var(--sand);
  white-space: nowrap;
}
.season-closed .season-hours {
  color: var(--text-body);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Responsive nous trouver */
@media (max-width: 900px) {
  .trouver-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════ */
/* CONTACT                                                            */
/* ══════════════════════════════════════════════════════════════════ */
#contact {
  padding: var(--section-pad);
  background: var(--green-deep);
  position: relative;
}
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,201,163,.3), transparent);
}
.contact-header { text-align: center; margin-bottom: 64px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-card {
  background: var(--green-dark);
  border: 1px solid rgba(216,201,163,.1);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: border-color var(--trans);
}
.contact-card:hover { border-color: rgba(216,201,163,.25); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: rgba(216,201,163,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.contact-card h4 {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
}
.contact-card p,
.contact-card a {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-body);
}
.contact-card a:hover { color: var(--sand-light); }

.hours-list { display: flex; flex-direction: column; gap: 6px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--text-body);
}
.hours-row span:first-child { font-family: var(--font-heading); font-size: .8rem; letter-spacing: .06em; }
.hours-row span:last-child  { color: var(--sand-light); }

/* ══════════════════════════════════════════════════════════════════ */
/* FOOTER                                                             */
/* ══════════════════════════════════════════════════════════════════ */
footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(216,201,163,.12);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand-logo span { color: var(--sand); }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 280px;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(216,201,163,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--text-body);
  transition: var(--trans);
}
.social-link:hover {
  border-color: var(--sand);
  color: var(--sand);
  background: rgba(216,201,163,.08);
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}
.footer-col ul            { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a       { font-size: .88rem; color: var(--text-body); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--sand-light); }
.footer-bottom {
  border-top: 1px solid rgba(216,201,163,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: var(--text-body); opacity: .6; }

/* ══════════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                         */
/* ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .concept-grid        { grid-template-columns: 1fr; gap: 48px; }
  .concept-image-block { max-width: 500px; }
  .resa-inner          { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
}

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

  .nav-links, .nav-cta    { display: none; }
  .hamburger               { display: flex; }
  .pillars                 { grid-template-columns: 1fr; }
  .contact-grid            { grid-template-columns: 1fr; }
  .gallery-grid            { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .form-row                { grid-template-columns: 1fr; }
  .footer-grid             { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom           { flex-direction: column; text-align: center; }
  .hero-stars              { display: none; }
  .hero-actions            { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .menu-grid               { grid-template-columns: 1fr; }
  .gallery-grid            { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}

/* ══════════════════════════════════════════════════════════════════
   MENU — nouvelles additions
   ══════════════════════════════════════════════════════════════════ */
.menu-subtitle {
  font-size: .95rem;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.menu-subtitle strong { color: var(--sand); }

.combo-banner {
  background: rgba(216,201,163,.08);
  border: 1px solid rgba(216,201,163,.2);
  border-left: 3px solid var(--sand);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--sand-light);
}
.combo-banner strong { color: var(--sand); }

.extras-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(216,201,163,.06);
  border: 1px solid rgba(216,201,163,.15);
  border-radius: var(--radius);
}
.extras-label {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--sand);
  text-transform: uppercase;
  margin-right: 4px;
}
.extras-item {
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--sand-light);
}
.extras-sep { color: var(--text-body); opacity: .5; }
.extras-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--sand);
  margin-left: auto;
}

/* ══════════════════════════════════════════════════════════════════
   LANGUE SWITCHER
   ══════════════════════════════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  background: rgba(216,201,163,.1);
  border: 1px solid rgba(216,201,163,.2);
  border-radius: 40px;
  padding: 3px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-body);
  background: transparent;
  border: none;
  border-radius: 40px;
  padding: 5px 10px;
  cursor: pointer;
  transition: var(--trans);
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active {
  background: var(--sand);
  color: var(--green-deep);
}
.lang-btn svg,
.lang-btn span {
  pointer-events: none;
  flex-shrink: 0;
}
.lang-btn svg {
  border-radius: 2px;
}
@media (max-width: 768px) {
  .lang-switcher { margin-left: 8px; }
  .lang-btn span { display: none; }
}

#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--sand);
  color: var(--green-deep);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}
#scrollTop:hover {
  background: var(--white);
}

