:root {
  /* Palette — crème + bois + doré */
  --cream:        #F4ECDC;
  --cream-soft:   #FAF4E7;
  --cream-deep:   #E8DDC6;
  --ink:          #1B1410;
  --ink-soft:     #3A2E25;
  --ink-mute:     #6B5B4A;
  --gold:         #B08A3E;
  --gold-deep:    #8A6A2A;
  --wood:         #6B4A28;
  --wood-deep:    #3F2A17;
  --line:         rgba(27, 20, 16, 0.14);
  --line-soft:    rgba(27, 20, 16, 0.08);

  --bg:           var(--cream);
  --surface:      var(--cream-soft);
  --on-bg:        var(--ink);
  --on-bg-mute:   var(--ink-mute);
  --accent:       var(--gold);

  --display:      "Cormorant Garamond", "Cormorant", Georgia, serif;
  --body:         "DM Sans", ui-sans-serif, system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--on-bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─────────────── shared ─────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.left::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
h2 { font-size: clamp(38px, 5vw, 60px); font-weight: 500; }
h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 500; }
p  { margin: 0; }

.lede { font-size: 18px; line-height: 1.65; color: var(--ink-soft); max-width: 56ch; }

/* Decorative little fleuron */
.fleuron {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold);
  margin: 18px 0;
}
.fleuron .line { height: 1px; width: 72px; background: currentColor; opacity: 0.55; }
.fleuron svg { width: 18px; height: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream-soft);
  text-decoration: none;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .25s, color .25s, transform .25s;
}
.btn:hover { background: var(--wood-deep); border-color: var(--wood-deep); transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--cream-soft); }
.btn svg { width: 16px; height: 16px; }

/* ─────────────── NAV ─────────────── */
nav.top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: 22px 0;
}
nav.top .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
nav.top .brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--cream-soft);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
nav.top .brand img { width: 36px; height: 36px; filter: invert(1); }
nav.top ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 32px;
}
nav.top ul a {
  color: var(--cream-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity .2s;
}
nav.top ul a:hover { opacity: 1; }
nav.top .tel {
  color: var(--cream-soft);
  text-decoration: none;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid rgba(244, 236, 220, 0.45);
  padding: 10px 16px;
  border-radius: 999px;
}
nav.top .tel:hover { background: rgba(244, 236, 220, 0.12); }

@media (max-width: 880px) {
  nav.top ul { display: none; }
}

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("images/bar.webp");
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.55) saturate(0.85);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(27, 20, 16, 0.55) 0%,
    rgba(27, 20, 16, 0.25) 35%,
    rgba(27, 20, 16, 0.55) 100%);
  z-index: -1;
}
.hero .wrap {
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  width: 100%;
}
.hero-content {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.hero-logo {
  width: clamp(120px, 14vw, 170px);
  height: clamp(120px, 14vw, 170px);
  margin: 0 auto 28px;
  filter: invert(1);
}
.hero h1 {
  font-family: var(--display);
  color: var(--cream-soft);
  font-size: clamp(46px, 7.5vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 8px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #E8C77E;
}
.hero .sub {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  font-weight: 300;
  opacity: 0.92;
  margin-top: 4px;
}
.hero .tagline {
  margin: 32px auto 0;
  max-width: 540px;
  color: rgba(244, 236, 220, 0.86);
  font-size: 17px;
  line-height: 1.65;
}
.hero-ctas {
  margin-top: 40px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.hero .btn {
  background: var(--cream-soft);
  color: var(--ink);
  border-color: var(--cream-soft);
}
.hero .btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.hero .btn.ghost {
  background: transparent;
  color: var(--cream-soft);
  border-color: rgba(244, 236, 220, 0.6);
}
.hero .btn.ghost:hover { background: rgba(244, 236, 220, 0.12); color: var(--cream-soft); }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(244, 236, 220, 0.7);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 36px;
  background: currentColor;
  animation: cue 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ─────────────── SECTION ─────────────── */
section {
  padding-block: clamp(80px, 10vw, 130px);
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin: 18px auto 0; max-width: 56ch; color: var(--ink-soft); font-size: 17px; }

/* ─────────────── ABOUT ─────────────── */
.about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-text h2 { font-size: clamp(40px, 4.5vw, 56px); margin-top: 18px; }
.about-text p { margin-top: 22px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.about-text p + p { margin-top: 14px; }
.about-sig {
  margin-top: 32px;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(27, 20, 16, 0.35);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(244, 236, 220, 0.55);
  pointer-events: none;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 4/3; max-width: 100%; }
}

/* ─────────────── CARTE ─────────────── */
.carte-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 14px;
}
.carte-img {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--wood-deep) 0%, var(--wood) 100%);
}
.carte-img.c-main {
  grid-row: 1 / 3;
}
.carte-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}
.carte-img:hover img { transform: scale(1.04); }
.carte-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(27, 20, 16, 0.72) 100%);
  pointer-events: none;
}
.carte-img figcaption {
  position: absolute;
  bottom: 22px; left: 26px;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--cream-soft);
  font-style: italic;
  line-height: 1;
}
.carte-footer {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.carte-footer > p {
  font-size: 16px;
  color: var(--ink-mute);
  font-style: italic;
  max-width: 52ch;
}
.carte-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .carte-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .carte-img.c-main { grid-row: auto; }
  .carte-img { aspect-ratio: 4/3; }
  .carte-footer { flex-direction: column; align-items: flex-start; }
}

/* ─────────────── GALERIE ─────────────── */
.galerie { background: var(--wood-deep); color: var(--cream-soft); }
.galerie .eyebrow { color: var(--gold); }
.galerie h2 { color: var(--cream-soft); }
.galerie .section-head p { color: rgba(244, 236, 220, 0.78); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gal-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.gal-grid figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s ease;
}
.gal-grid figure:hover img { transform: scale(1.04); }
.gal-grid .g1 { grid-column: span 7; aspect-ratio: 4/3; }
.gal-grid .g2 { grid-column: span 5; aspect-ratio: 4/3; }
.gal-grid .g3 { grid-column: span 5; aspect-ratio: 4/3; }
.gal-grid .g4 { grid-column: span 7; aspect-ratio: 4/3; }
@media (max-width: 760px) {
  .gal-grid { grid-template-columns: 1fr; }
  .gal-grid .g1, .gal-grid .g2, .gal-grid .g3, .gal-grid .g4 { grid-column: 1 / -1; aspect-ratio: 4/3; }
}

/* ─────────────── INFOS (horaires + adresse) ─────────────── */
.infos { background: var(--surface); }
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: stretch;
}
.info-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  padding: 44px;
  border-radius: 6px;
  display: flex; flex-direction: column;
}
.info-card h3 {
  font-size: 32px;
  margin-bottom: 6px;
}
.info-card .sub {
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hours { display: flex; flex-direction: column; gap: 0; }
.hours li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.hours li:last-child { border-bottom: 0; }
.hours .day { color: var(--ink); font-weight: 500; letter-spacing: 0.02em; }
.hours .time { color: var(--ink-mute); font-variant-numeric: tabular-nums; }
.hours .today { color: var(--gold-deep); font-weight: 600; }
.hours .today .day::after {
  content: "Aujourd'hui";
  display: inline-block;
  margin-left: 10px;
  font-family: var(--body);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(176, 138, 62, 0.14);
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
}
.hours-status {
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(176, 138, 62, 0.10);
  border: 1px solid rgba(176, 138, 62, 0.28);
  border-radius: 4px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}
.hours-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2E8B57;
  box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.18);
}
.hours-status.closed .dot { background: #C24C3F; box-shadow: 0 0 0 4px rgba(194, 76, 63, 0.18); }

.map-card {
  display: flex; flex-direction: column;
}
.map-card .addr {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 6px;
}
.map-card .city {
  color: var(--ink-mute);
  font-size: 15px;
  margin-bottom: 22px;
}
.map-frame {
  flex: 1;
  min-height: 320px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  margin-top: auto;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 320px; filter: saturate(0.85) contrast(0.95); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 22px;
}
.contact-item {
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--cream);
}
.contact-item .ico { color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.contact-item .ico svg { width: 14px; height: 14px; }
.contact-item .val { font-family: var(--display); font-size: 20px; color: var(--ink); }
.contact-item a { text-decoration: none; }
.contact-item a:hover .val { color: var(--gold-deep); }
@media (max-width: 820px) {
  .infos-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─────────────── FOOTER ─────────────── */
footer.bottom {
  background: var(--wood-deep);
  color: rgba(244, 236, 220, 0.75);
  padding: 70px 0 30px;
}
footer.bottom .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
footer.bottom .brand-wrap { color: var(--cream-soft); }
footer.bottom .brand-wrap svg { width: 64px; height: 64px; color: var(--gold); margin-bottom: 16px; }
footer.bottom .brand-wrap .nm {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.1;
  color: var(--cream-soft);
}
footer.bottom .brand-wrap .sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: rgba(244, 236, 220, 0.72);
  margin-top: 4px;
}
footer.bottom h4 {
  font-family: var(--body);
  color: var(--cream-soft);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
footer.bottom ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
footer.bottom a { color: rgba(244, 236, 220, 0.78); text-decoration: none; font-size: 14.5px; }
footer.bottom a:hover { color: var(--gold); }
footer.bottom .copy {
  grid-column: 1 / -1;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 236, 220, 0.12);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12px;
  color: rgba(244, 236, 220, 0.55);
}
@media (max-width: 760px) {
  footer.bottom .wrap { grid-template-columns: 1fr; }
}

/* Accessibility focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
