:root {
  --cream: #F4EEE1;
  --cream-soft: #ECE2D0;
  --ink: #3C3127;
  --ink-soft: #4A3D30;
  --taupe: #8A8478;
  --taupe-dark: #443A2F;
  --rust: #A35E36;
  --rust-deep: #7E4527;
  --wine: #5E1F16;
  --gold: #C9A35C;
  --line: rgba(60, 49, 39, 0.16);
  --line-light: rgba(244, 238, 225, 0.18);
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --brand: 'Copperplate Gothic Light', 'Copperplate', 'Trajan Pro', 'Cinzel', var(--sans);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-line {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-line.in { opacity: 1; transform: translateY(0); }

/* If JS fails to load, .no-js on <html> keeps everything visible instead of stuck at opacity:0 */
html.no-js .reveal,
html.no-js .reveal-line {
  opacity: 1;
  transform: none;
}

/* stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-line, html { transition: none !important; transform: none !important; opacity: 1 !important; scroll-behavior: auto !important; }
}

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 238, 225, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--brand);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0em;
}
.nav-logo img { height: 42px; width: auto; transition: height 0.4s ease; }
.nav.scrolled .nav-logo img { height: 32px; }
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
  opacity: 0.85;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rust);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 28px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px;
}
.lang-btn {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 100px;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active {
  background: var(--rust);
  color: var(--cream);
}
.nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 22px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--taupe-dark); color: var(--cream); }
.nav-burger { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-switch { margin-right: 0; }
  .hero-logo { height: 76px; margin-bottom: 22px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--taupe-dark);
  color: var(--cream);
  overflow: hidden;
  padding: 0 24px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('table-pizza-pates.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.4;
  transform: scale(1.08);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(68,58,47,0.55) 0%, rgba(68,58,47,0.8) 55%, rgba(68,58,47,0.97) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  height: 110px;
  width: auto;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 1.1s ease 0s forwards;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(36px, 7vw, 84px);
  line-height: 1.15;
  letter-spacing: 0em;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1.1s ease 0.4s forwards;
}
.hero-sub {
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: rgba(244,238,225,0.78);
  max-width: 440px;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.65s forwards;
}
.hero-loc {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 1.1s ease 0.8s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--rust);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee span {
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.marquee span::after {
  content: '\2022';
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Intro / Histoire ---------- */
.intro {
  padding: 140px 0 120px;
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.intro-eyebrow {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin-bottom: 22px;
}
.intro h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.12;
  margin-bottom: 28px;
}
.intro h2 em { font-style: italic; color: var(--rust); font-weight: 400; }
.intro p {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 18px;
}
.intro-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-stats {
  display: flex;
  gap: 56px;
  margin-top: 44px;
}
.intro-stat-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--rust);
  font-weight: 500;
}
.intro-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-img { order: -1; }
}

/* ---------- Section heading shared ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}
.section-eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.1;
}
.section-head h2 em { font-style: italic; color: var(--rust); font-weight: 400; }
.section-head p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ---------- Menu ---------- */
.menu-section {
  background: var(--taupe-dark);
  color: var(--cream);
  padding: 130px 0 120px;
  position: relative;
}
.menu-section .section-eyebrow { color: var(--gold); }
.menu-section .section-head p { color: rgba(244,238,225,0.65); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.menu-tab {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--line-light);
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: rgba(244,238,225,0.7);
  transition: all 0.3s ease;
  font-family: var(--sans);
}
.menu-tab:hover { border-color: var(--gold); color: var(--cream); }
.menu-tab.active {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--cream);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
}
.menu-col-single { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }

.menu-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}
.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.menu-item-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}
.menu-item-price {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(244,238,225,0.58);
  font-style: italic;
  max-width: 90%;
}
.menu-sub-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin: 36px 0 8px;
}
.menu-sub-label:first-child { margin-top: 0; }

.menu-note {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(244,238,225,0.5);
}

@media (max-width: 760px) {
  .menu-cols { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 130px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.gallery-grid > div:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid > div:nth-child(2) { grid-column: span 1; grid-row: span 2; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 0.7s ease, filter 0.5s ease;
}
.gallery-grid > div { overflow: hidden; cursor: pointer; }
.gallery-grid > div:hover img { transform: scale(1.06); filter: saturate(1.1) contrast(1.05); }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 160px 160px 160px; }
  .gallery-grid > div:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid > div:nth-child(2) { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--cream-soft);
  padding: 130px 0;
}
.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.reviews-score-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
}
.reviews-stars {
  color: var(--rust);
  font-size: 18px;
  letter-spacing: 2px;
}
.reviews-count {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  flex-shrink: 0;
}
.review-name {
  font-size: 14.5px;
  font-weight: 600;
}
.review-meta {
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.75;
}
.review-stars {
  color: var(--rust);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.reviews-cta {
  text-align: center;
  margin-top: 44px;
}
.reviews-cta a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- Infos / Practical ---------- */
.infos {
  padding: 130px 0;
  background: var(--cream);
}
.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.info-card {
  text-align: center;
  padding: 8px;
}
.info-icon {
  width: 52px; height: 52px;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 22px; height: 22px; stroke: var(--rust); }
.info-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
}
.info-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; }
.info-card a { color: var(--rust-deep); border-bottom: 1px solid currentColor; }

.map-embed {
  margin-top: 64px;
  border-radius: var(--border-radius-lg, 12px);
  overflow: hidden;
  border: 1px solid var(--line);
  filter: saturate(0.9);
}
.map-embed iframe { display: block; }

@media (max-width: 760px) {
  .infos-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ---------- Reservation CTA ---------- */
.cta-band {
  background: var(--taupe-dark);
  color: var(--cream);
  padding: 110px 0;
  text-align: center;
}
.cta-band .section-eyebrow { color: var(--gold); }
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  margin-bottom: 14px;
}
.cta-band h2 em { font-style: italic; color: var(--rust); font-weight: 400; }
.cta-band p { color: rgba(244,238,225,0.65); margin-bottom: 38px; font-size: 16px; }
.btn-primary {
  display: inline-block;
  background: var(--rust);
  color: var(--cream);
  padding: 17px 44px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover { background: var(--rust-deep); transform: translateY(-2px); }

/* ---------- Footer ---------- */
footer {
  background: var(--taupe-dark);
  color: rgba(244,238,225,0.7);
  padding: 70px 0 30px;
  border-top: 1px solid var(--line-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-light);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--brand);
  font-size: 18px;
  letter-spacing: 0em;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-logo img { height: 44px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 9px;
  color: rgba(244,238,225,0.68);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 12.5px;
  color: rgba(244,238,225,0.45);
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
