/* ============================================================
   Suite Soixante — Bar & Cuisine Urbaine, Trois-Rivières
   Feuille de styles principale
   ============================================================ */

:root {
  --ink: #16110d;
  --ink2: #1d1713;
  --panel: #1d1713;
  --line: rgba(244, 236, 224, 0.1);
  --cream: #f4ece0;
  --white: #fdf8ef;
  --soft: #cabfb1;
  --mute: #b6a99a;
  --dim: #8a7d6f;
  --wine: #8f2d33;
  --wine2: #a23942;
  --gold: #c8a96b;
  --gold2: #e7d8b8;
  --disp: "Cormorant Garamond", Georgia, serif;
  --body: "Montserrat", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--wine); color: #fff; }

h1, h2, h3 { font-family: var(--disp); font-weight: 600; margin: 0; line-height: 1.04; color: var(--white); }

.container { max-width: var(--maxw); margin: 0 auto; }

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 44px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.btn--wine { background: var(--wine); color: #fff; box-shadow: 0 14px 36px rgba(143, 45, 51, 0.4); }
.btn--wine:hover { background: var(--wine2); transform: translateY(-2px); }
.btn--ghost { background: rgba(255, 255, 255, 0.08); color: var(--white); border: 1px solid rgba(244, 236, 224, 0.4); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: var(--gold); }
.btn--gold { background: var(--gold); color: var(--ink); font-weight: 700; }
.btn--gold:hover { background: #d8bd86; transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; transform: translateY(-2px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0 clamp(20px, 4vw, 52px);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  background: linear-gradient(180deg, rgba(10, 7, 5, 0.55), transparent);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 11, 8, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 236, 224, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.4s ease;
}
.nav.scrolled .nav__inner { height: 70px; }

.logo-badge {
  display: inline-flex;
  align-items: center;
  flex: none;
  background: var(--cream);
  padding: 9px 15px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  transition: transform 0.3s ease;
}
.logo-badge:hover { transform: translateY(-1px); }
.logo-badge img { height: clamp(40px, 6.5vw, 52px); width: auto; }
.nav.scrolled .logo-badge img { height: 42px; }

.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 38px); }
.nav__link {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.nav__link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav__cta {
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.3s;
}
.nav__cta:hover { background: #d8bd86; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { display: block; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s; }
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 24px; }
.hamburger span:nth-child(3) { width: 16px; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: linear-gradient(160deg, #1d1713, #16110d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.drawer.open { opacity: 1; transform: none; pointer-events: auto; }
.drawer a { color: var(--cream); text-decoration: none; font-family: var(--disp); font-size: 34px; }
.drawer__close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--cream); font-size: 34px; line-height: 1; cursor: pointer; font-family: var(--disp); }
.drawer__call { margin-top: 14px; color: var(--ink) !important; background: var(--gold); padding: 14px 28px; border-radius: 40px; font-family: var(--body) !important; font-size: 15px !important; font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 22px 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18, 13, 10, 0.55) 0%, rgba(18, 13, 10, 0.45) 38%, rgba(18, 13, 10, 0.82) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 880px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px;
  color: var(--gold2); letter-spacing: 0.34em; text-transform: uppercase;
  font-size: clamp(10px, 1.5vw, 12px); font-weight: 500;
}
.hero__kicker span { width: 34px; height: 1px; background: var(--gold); opacity: 0.8; }
.hero h1 { font-size: clamp(58px, 15vw, 140px); letter-spacing: 0.01em; color: var(--white); text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4); margin: 0; }
.hero__sub { font-family: var(--disp); font-style: italic; font-size: clamp(20px, 4.6vw, 34px); color: var(--gold2); margin: 14px 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: clamp(32px, 5vw, 48px); }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--gold2); text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
}
.hero__scroll i { display: block; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(76px, 11vw, 130px) 22px; }
.section--ink { background: var(--ink); }
.section--panel { background: var(--ink2); border-top: 1px solid rgba(244, 236, 224, 0.07); }
.section__title { font-size: clamp(34px, 6vw, 58px); margin: 0; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* About */
.about__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.about p { color: var(--soft); font-size: clamp(15px, 1.9vw, 17px); line-height: 1.85; margin: 0 0 18px; }
.about p strong { color: var(--cream); font-weight: 600; }
.about h2 { margin: 0 0 26px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag { border: 1px solid rgba(200, 169, 107, 0.4); color: var(--gold2); padding: 9px 16px; border-radius: 30px; font-size: 12px; letter-spacing: 0.06em; }
.about__media { position: relative; }
.about__media img { width: 100%; height: 100%; min-height: 340px; max-height: 600px; object-fit: cover; border-radius: 4px; }
.about__badge { position: absolute; bottom: -1px; left: -1px; background: var(--wine); color: #fff; padding: 18px 22px; border-top-right-radius: 4px; }
.about__badge b { font-family: var(--disp); font-size: 30px; font-weight: 600; display: block; line-height: 1; }
.about__badge span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; display: block; color: #f3d9c7; }

/* Menu */
.menu-wrap { max-width: 1100px; margin: 0 auto; text-align: center; }
.menu-wrap > p.lead { color: var(--mute); font-size: clamp(15px, 1.9vw, 17px); line-height: 1.7; max-width: 560px; margin: 0 auto 40px; }
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.menu-tab {
  cursor: pointer; border: 1px solid rgba(200, 169, 107, 0.34); background: transparent; color: var(--soft);
  padding: 13px 22px; border-radius: 40px; font-family: var(--body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; transition: all 0.3s ease;
}
.menu-tab.active { background: var(--wine); border-color: var(--wine); color: #fff; box-shadow: 0 10px 26px rgba(143, 45, 51, 0.4); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 20px; }
.menu-arrow {
  cursor: pointer; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.4); background: rgba(244, 236, 224, 0.04); color: var(--cream);
  font-size: 22px; line-height: 1; display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.menu-arrow:hover { background: var(--wine); border-color: var(--wine); }
.menu-ind { color: var(--mute); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; min-width: 92px; }
.menu-img { max-width: 100%; width: auto; max-height: 80vh; margin: 0 auto; border-radius: 4px; cursor: zoom-in; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5); border: 1px solid rgba(244, 236, 224, 0.08); }
.menu-img.hidden { display: none; }

/* Terrasse */
.terrasse { position: relative; padding: clamp(90px, 14vw, 160px) 22px; overflow: hidden; }
.terrasse__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.terrasse__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18, 13, 10, 0.78), rgba(18, 13, 10, 0.6)); }
.terrasse__content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.terrasse__content .eyebrow { color: var(--gold2); }
.terrasse__content h2 { font-size: clamp(34px, 6.5vw, 62px); margin: 0 0 22px; }
.terrasse__content p { color: var(--gold2); font-size: clamp(16px, 2.1vw, 19px); line-height: 1.8; margin: 0 0 34px; }
.terrasse__strip { display: flex; gap: 12px; justify-content: center; margin-top: 42px; flex-wrap: wrap; }
.terrasse__strip img { width: clamp(96px, 26vw, 150px); height: clamp(72px, 18vw, 104px); object-fit: cover; border-radius: 3px; border: 1px solid rgba(244, 236, 224, 0.2); }
.play-ico { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); font-size: 11px; }

/* Reservation */
.reservation { background: var(--wine); color: #fdf3ef; }
.reservation__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 4vw, 48px); }
.reservation .eyebrow { color: #f3d9c7; }
.reservation h2 { color: #fff; font-size: clamp(34px, 6vw, 58px); margin: 0 0 20px; }
.reservation p { color: #f4ddd3; font-size: clamp(15px, 2vw, 18px); line-height: 1.8; margin: 0; max-width: 560px; }
.reservation__actions { display: flex; flex-direction: column; gap: 14px; flex: none; }
.reservation__actions .btn--msg { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1px solid rgba(255, 255, 255, 0.35); text-transform: none; letter-spacing: 0.04em; font-weight: 500; }
.reservation__actions .btn--msg:hover { background: rgba(255, 255, 255, 0.24); }

/* Contact */
.contact__head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px, 3.5vw, 40px); align-items: stretch; }
.contact__col { display: flex; flex-direction: column; gap: 28px; }
.card { background: var(--panel); border: 1px solid rgba(244, 236, 224, 0.08); border-radius: 6px; padding: clamp(24px, 4vw, 34px); }
.card h3 { font-size: 26px; margin: 0 0 20px; display: flex; align-items: center; gap: 10px; }
.card h3 .ico { color: var(--gold); font-size: 18px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(244, 236, 224, 0.07); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--soft); }
.hours-row .time { color: var(--cream); text-align: right; font-size: 14px; }
.hours-row .closed { color: var(--dim); font-style: italic; }
.contact-line { display: flex; align-items: flex-start; gap: 13px; color: var(--soft); text-decoration: none; margin-bottom: 16px; line-height: 1.5; }
.contact-line .ico { color: var(--gold); margin-top: 2px; }
.contact-line:hover { color: var(--gold); }
.contact-phone { display: flex; align-items: center; gap: 13px; color: var(--cream); text-decoration: none; font-size: 18px; font-weight: 600; margin-bottom: 22px; }
.contact-phone:hover { color: var(--gold); }
.contact-phone .ico { color: var(--gold); }
.contact-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-btns a { flex: 1; min-width: 140px; text-align: center; text-decoration: none; padding: 13px 16px; border-radius: 40px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; transition: background 0.3s; }
.contact-btns .msg { background: var(--wine); color: #fff; }
.contact-btns .msg:hover { background: var(--wine2); }
.contact-btns .virt { background: rgba(244, 236, 224, 0.06); color: var(--cream); border: 1px solid rgba(200, 169, 107, 0.4); }
.contact-btns .virt:hover { background: rgba(244, 236, 224, 0.12); }
.map-col { display: flex; flex-direction: column; min-height: 380px; }
#map { flex: 1; min-height: 340px; width: 100%; border-radius: 6px; overflow: hidden; border: 1px solid rgba(244, 236, 224, 0.08); background: var(--ink2); }
.leaflet-container { font-family: var(--body); }

/* Footer */
.footer { background: #0f0b08; color: var(--soft); padding: clamp(54px, 8vw, 80px) 22px 34px; border-top: 1px solid rgba(244, 236, 224, 0.07); }
.footer__content { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.footer__logo { background: var(--cream); padding: 16px 20px; border-radius: 14px; }
.footer__logo img { height: 64px; width: auto; }
.footer p.about-foot { max-width: 620px; margin: 0; font-size: 13px; line-height: 1.8; color: var(--dim); }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(244, 236, 224, 0.18); border-radius: 50%; color: var(--cream); text-decoration: none; font-weight: 700; transition: background 0.3s, border-color 0.3s; }
.footer__social a:hover { background: var(--wine); border-color: var(--wine); }
.footer__rule { width: 100%; max-width: 520px; height: 1px; background: rgba(244, 236, 224, 0.08); margin: 6px 0; }
.footer__copy { margin: 0; font-size: 12px; color: var(--dim); }
.footer__credits { margin: 0; font-size: 11px; color: #6b5f53; }
.footer__credits a { color: var(--dim); text-decoration: none; }

/* ============================================================
   MODALS (video + lightbox)
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 120; background: rgba(7, 5, 3, 0.93); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal__close { position: fixed; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; z-index: 2; }
.video-box { position: relative; width: min(960px, 94vw); max-height: 88vh; }
.video-box video { width: 100%; max-height: 88vh; border-radius: 6px; background: #000; }
.video-box .modal__close { top: -46px; right: 0; }

.lightbox { position: fixed; inset: 0; z-index: 130; background: rgba(7, 5, 3, 0.95); display: none; align-items: center; justify-content: center; padding: 20px; overflow: hidden; }
.lightbox.open { display: flex; }
.lightbox.zoomed { overflow: auto; align-items: flex-start; justify-content: flex-start; }
.lightbox__hint { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); color: var(--gold2); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; z-index: 2; text-align: center; padding: 0 16px; }
.lightbox img { max-width: 94vw; max-height: 86vh; width: auto; cursor: zoom-in; border-radius: 4px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); }
.lightbox.zoomed img { max-width: none; max-height: none; width: auto; cursor: zoom-out; margin: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; }
  .reservation__inner { flex-direction: column; align-items: flex-start; }
  .reservation__actions { width: 100%; }
}
@media (max-width: 560px) {
  .nav { padding: 0 16px; }
  .nav__inner { height: 72px; }
}
