:root {
  --terracotta: #c4622d;
  --terracotta-dark: #9f481f;
  --cream: #faf8f5;
  --paper: #fffdf9;
  --beige: #e8d9c4;
  --gold: #d4a853;
  --ink: #1c1008;
  --ink-soft: #5a3d28;
  --muted: #817266;
  --line: rgba(90, 61, 40, 0.16);
  --side: 52px;
  --ticker: 42px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--terracotta); color: var(--ink); font-family: var(--sans); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -150%);
  z-index: 500;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
}
.skip-link:focus { transform: translate(-50%, 0); }

.side-rail {
  position: fixed;
  top: 0;
  bottom: var(--ticker);
  width: var(--side);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: rgba(255,255,255,.9);
  transition: background .2s ease;
}
.side-rail:hover, .side-rail:focus-visible { background: var(--terracotta-dark); }
.side-rail.left { left: 0; }
.side-rail.right { right: 0; }
.side-rail span {
  white-space: nowrap;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.side-rail.left span { transform: rotate(-90deg); }
.side-rail.right span { transform: rotate(90deg); }

.ticker {
  position: fixed;
  left: var(--side);
  right: var(--side);
  bottom: 0;
  height: var(--ticker);
  z-index: 110;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--beige);
  border-top: 1px solid rgba(196,98,45,.2);
}
.ticker-track { display: flex; align-items: center; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-track span { padding: 0 1.65rem; color: var(--ink-soft); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.ticker-track .dot { padding: 0; color: var(--terracotta); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .ticker-track { animation: none; } }

.site-shell { min-height: 100vh; margin: 0 var(--side); padding-bottom: var(--ticker); background: var(--cream); overflow: hidden; }
.site-header {
  position: fixed;
  top: 0;
  left: var(--side);
  right: var(--side);
  z-index: 100;
  height: 64px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled, .site-header.inner { background: rgba(250,248,245,.97); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(10px); }
.header-logo { opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.site-header.scrolled .header-logo, .site-header.inner .header-logo { opacity: 1; pointer-events: auto; }
.header-logo img { width: auto; height: 38px; }
.desktop-nav { display: flex; align-items: center; gap: 1.9rem; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-left: .35rem;
  padding-left: .85rem;
  border-left: 1px solid var(--line);
}
.language-switcher a {
  min-width: 28px;
  padding: 5px 4px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.desktop-nav .language-switcher a::after { display: none; }
.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="true"] { background: var(--beige); color: var(--ink); }
.mobile-language-switcher { display: flex; gap: .6rem; margin-top: 1rem; }
.mobile-language-switcher a { display: grid; place-items: center; width: 48px; min-height: 40px; border: 1px solid var(--line); font: 600 10px/1 var(--sans); letter-spacing: .1em; }
.mobile-language-switcher a[aria-current="true"] { border-color: var(--terracotta); background: var(--terracotta); color: #fff; }
.desktop-nav a {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.desktop-nav a:not(.reserve-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--terracotta);
  transition: right .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.reserve-link, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid var(--terracotta);
  background: var(--terracotta);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.reserve-link:hover, .button:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.button.outline { background: transparent; color: var(--ink); }
.button.outline:hover { color: #fff; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px auto; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: 64px var(--side) var(--ticker);
  z-index: 95;
  display: none;
  padding: 3rem 2rem;
  background: var(--cream);
}
.mobile-nav.open { display: flex; flex-direction: column; justify-content: center; gap: 1.4rem; }
.mobile-nav a { font-family: var(--serif); font-size: clamp(1.8rem, 9vw, 3rem); }
.mobile-nav .reserve-link { width: fit-content; margin-top: 1rem; font-family: var(--sans); font-size: 10px; }

.hero { position: relative; height: 100vh; min-height: 650px; overflow: hidden; background: var(--ink); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.room img { object-position: center; }
.hero-slide.terrace img { object-position: center 48%; }
.hero-slide.team img { object-position: center 45%; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(28,16,8,.12), rgba(28,16,8,.34)); }
.hero-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; padding: 5rem 2rem; text-align: center; }
.hero-logo { width: min(48vw, 440px); }
.hero-logo img { width: 100%; height: min(58vh, 590px); object-fit: contain; }
.hero-tagline { margin: 0; color: rgba(255,255,255,.9); font-size: 10px; letter-spacing: .23em; text-transform: uppercase; }
.hero-scroll { position: absolute; left: 50%; bottom: calc(var(--ticker) + 1.5rem); z-index: 3; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.hero-dots { position: absolute; right: 1.5rem; bottom: calc(var(--ticker) + 2rem); z-index: 4; display: grid; gap: 8px; }
.hero-dot { width: 8px; height: 8px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.hero-dot.active { background: #fff; }

.section { padding: clamp(5rem, 10vw, 8rem) clamp(2rem, 6vw, 6rem); }
.section.narrow { max-width: 980px; margin: 0 auto; }
.section-label { margin: 0 0 1rem; color: var(--terracotta); font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.display-title { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4.8vw, 4.2rem); font-weight: 400; line-height: 1.08; }
.display-title em { font-weight: 400; }
.lede { max-width: 660px; margin: 1.8rem auto 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.8; }
.center { text-align: center; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.photo-feature { padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem); }
.photo-feature figure { position: relative; margin: 0; aspect-ratio: 16/9; max-height: 760px; overflow: hidden; }
.photo-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.photo-feature figure:hover img { transform: scale(1.018); }
.photo-feature figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 5rem clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem); color: #fff; background: linear-gradient(transparent, rgba(25, 17, 13, .72)); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.photo-feature figcaption strong { font: 400 clamp(2rem, 4vw, 4rem)/1 var(--serif); }
.photo-feature figcaption span { max-width: 340px; font-size: .76rem; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: var(--paper); }
.split.beige { background: var(--beige); }
.split-media { min-height: 520px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(3rem, 7vw, 6rem); }
.split-copy h2 { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(1.8rem, 3.6vw, 3.1rem); line-height: 1.12; }
.split-copy p { max-width: 520px; color: var(--muted); line-height: 1.8; }
.text-link { margin-top: 1rem; padding-bottom: 4px; border-bottom: 1px solid var(--terracotta); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0; }
.pill { padding: 6px 12px; border: 1px solid var(--terracotta); color: var(--terracotta); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

.reputation { display: grid; grid-template-columns: repeat(3,1fr); padding: 5rem 3rem; background: var(--terracotta); color: #fff; }
.rating { padding: 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.22); }
.rating:last-child { border: 0; }
.rating strong { display: block; font-family: var(--serif); font-size: clamp(3rem, 6vw, 5rem); line-height: 1; }
.rating span { display: block; margin-top: .7rem; color: rgba(255,255,255,.75); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }

.ambience { position: relative; min-height: 65vh; display: grid; place-items: center; overflow: hidden; }
.ambience > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ambience::after { content: ""; position: absolute; inset: 0; background: rgba(28,16,8,.5); }
.ambience-copy { position: relative; z-index: 1; padding: 3rem; color: #fff; text-align: center; }
.ambience-copy .section-label { color: var(--gold); }
.ambience-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 400; font-style: italic; }
.ambience-copy p { line-height: 1.8; color: rgba(255,255,255,.8); }

.page-hero { position: relative; min-height: 62vh; display: grid; align-items: end; overflow: hidden; background: var(--ink); }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,16,8,.2), rgba(28,16,8,.68)); }
.page-hero-content { position: relative; z-index: 1; max-width: 1000px; padding: 9rem clamp(2rem, 7vw, 7rem) 5rem; color: #fff; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 6.5vw, 5.4rem); font-weight: 400; line-height: 1; }
.page-hero p { max-width: 610px; margin: 1.4rem 0 0; color: rgba(255,255,255,.84); line-height: 1.7; }

.category-nav { position: sticky; top: 64px; z-index: 50; display: flex; gap: 1.8rem; overflow-x: auto; padding: 1.2rem clamp(2rem, 7vw, 7rem); background: rgba(250,248,245,.96); border-bottom: 1px solid var(--line); scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
.category-nav a { flex: 0 0 auto; font-size: 9px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }

.menu-section { padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 8vw, 8rem); }
.menu-section:nth-of-type(even) { background: var(--paper); }
.menu-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--terracotta); }
.menu-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 3.3rem); font-weight: 400; }
.menu-heading span { color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 5rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: .35rem 1.25rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.menu-item h3 { margin: 0; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; }
.menu-item .price { color: var(--terracotta); font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }
.menu-item p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-family: var(--serif); font-size: .95rem; line-height: 1.55; }
.menu-note { margin: 2rem 0 0; color: var(--muted); font-size: .86rem; line-height: 1.7; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.feature-card { min-height: 330px; padding: 3.5rem 2.5rem; background: var(--paper); }
.feature-card .number { color: var(--terracotta); font-family: var(--serif); font-size: 1.1rem; }
.feature-card h2, .feature-card h3 { margin: 2rem 0 1rem; font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; }
.feature-card p { color: var(--muted); line-height: 1.75; }
.event-moments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.event-moments-grid figure { margin: 0; background: var(--paper); }
.event-moments-grid img { display: block; width: 100%; height: clamp(300px, 38vw, 520px); object-fit: cover; }
.event-moments-grid figure:first-child img { object-position: center 38%; }
.event-moments-grid figcaption { padding: 1rem 1.2rem; font-family: var(--serif); font-size: 1.2rem; }
@media (max-width: 700px) { .event-moments-grid { grid-template-columns: 1fr; } }

.portrait-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(5rem, 9vw, 8rem); }
.portrait { margin: 0; background: var(--paper); }
.portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.portrait figcaption { padding: 1.4rem; }
.portrait strong { display: block; font-family: var(--serif); font-size: 1.5rem; }
.portrait span { color: var(--terracotta); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.contact-card { padding: clamp(3rem, 6vw, 5rem); background: var(--paper); }
#adresse { scroll-margin-top: 80px; }
.contact-card h2 { margin: 0 0 1.5rem; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; }
.contact-card p, .contact-card address { color: var(--muted); font-style: normal; line-height: 1.9; }
.contact-card a:not(.button) { border-bottom: 1px solid var(--terracotta); }
.map-link { min-height: 480px; padding: clamp(2rem, 6vw, 6rem); color: var(--cream); background: linear-gradient(135deg, rgba(45, 34, 28, .78), rgba(193, 75, 41, .76)), url('../images/salle-v2.webp') center/cover; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 1rem; text-decoration: none; }
.map-link strong { max-width: 650px; color: #fff; font: 600 clamp(1.9rem, 4vw, 3.6rem)/1.08 var(--serif); }
.map-link > span:last-child { border-bottom: 1px solid currentColor; padding-bottom: .2rem; }
.map-link:hover > span:last-child { color: #fff; }
.booking-card { max-width: 820px; margin: 0 auto; padding: clamp(3rem, 7vw, 6rem); background: var(--paper); text-align: center; box-shadow: 0 25px 80px rgba(28,16,8,.08); }
.booking-card h2 { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 400; }
.booking-card p { max-width: 600px; margin: 0 auto 2rem; color: var(--muted); line-height: 1.8; }
.button-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; }

.cta { padding: clamp(5rem, 10vw, 9rem) 2rem; background: var(--cream); text-align: center; }
.cta h2 { margin: 0 0 1.5rem; font-family: var(--serif); font-size: clamp(2.2rem, 4.8vw, 4rem); font-weight: 400; font-style: italic; line-height: 1.05; }
.cta p { margin: 0 0 2rem; color: var(--muted); line-height: 1.9; }

.site-footer { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 4rem; padding: 5rem clamp(2rem, 6vw, 6rem) 4rem; background: var(--ink); color: rgba(255,255,255,.65); }
.footer-brand img { width: 105px; height: 105px; object-fit: contain; filter: brightness(10); }
.site-footer h2 { margin: 0 0 1rem; color: var(--terracotta); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.site-footer p, .site-footer address, .site-footer a { color: rgba(255,255,255,.65); font-size: 13px; font-style: normal; line-height: 1.9; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem clamp(2rem, 6vw, 6rem); background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom span, .footer-bottom a { color: rgba(255,255,255,.38); font-size: 10px; }

.legal { max-width: 850px; margin: 0 auto; }
.legal h2 { margin-top: 3rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.legal p, .legal li { color: var(--muted); line-height: 1.8; }

@media (max-width: 980px) {
  :root { --side: 32px; }
  .site-header { padding: 0 1.5rem; }
  .desktop-nav a:not(.reserve-link) { display: none; }
  .desktop-nav .language-switcher { display: none; }
  .menu-toggle { display: block; }
  .header-actions { display: flex; align-items: center; gap: .25rem; }
  .hero-logo { width: min(62vw, 390px); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-media { min-height: 62vw; }
  .menu-list { grid-template-columns: 1fr; }
  .feature-grid, .portrait-grid { grid-template-columns: 1fr; }
  .portrait img { aspect-ratio: 4/3; }
  .reputation { grid-template-columns: 1fr; }
  .rating { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .site-footer { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  :root { --side: 26px; --ticker: 38px; }
  .side-rail span { font-size: 8px; }
  .site-header { height: 58px; padding: 0 .75rem; }
  .header-logo img { height: 32px; }
  .desktop-nav { gap: .25rem; }
  .desktop-nav .reserve-link { padding: 9px 12px; min-height: 40px; }
  .mobile-nav { inset: 58px var(--side) var(--ticker); }
  .hero { min-height: 620px; }
  .hero-logo { width: 64vw; }
  .hero-tagline { font-size: 8px; }
  .hero-dots { display: none; }
  .photo-feature figure { aspect-ratio: 4/3; }
  .photo-feature figcaption { align-items: flex-start; flex-direction: column; }
  .photo-feature figcaption span { text-align: left; }
  .split-media { min-height: 110vw; }
  .page-hero { min-height: 72vh; }
  .category-nav { top: 58px; }
  .menu-heading { display: block; }
  .menu-heading span { display: block; margin-top: .6rem; }
  .footer-bottom { flex-direction: column; }
}
